forked from Openlights/firemix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.py
101 lines (78 loc) · 2.93 KB
/
test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
import unittest
import string
import core.mixer
import core.networking
import lib.pattern
import lib.color_fade
import lib.playlist
import lib.scene
divider = '------'
class TestExample(unittest.TestCase):
def setUp(self):
print divider
print('Starting test: ' + self.id().split('.')[-2] + ' ' + self.id().split('.')[-1])
print divider
def tearDown(self):
print divider
print('Ending test: ' + self.id().split('.')[-2] + ' ' + self.id().split('.')[-1])
print divider
def test_example(self):
self.assertTrue(True)
class TestScene(unittest.TestCase):
def setUp(self):
print divider
print('Starting test: ' + self.id().split('.')[-2] + ' ' + self.id().split('.')[-1])
print divider
def tearDown(self):
print divider
print('Ending test: ' + self.id().split('.')[-2] + ' ' + self.id().split('.')[-1])
print divider
def test_extents(self):
# TODO lib.scene.extents()
pass
def test_centerpoint(self):
#TODO lib.scene.center_point()
pass
class TestPlaylist(unittest.TestCase):
def setUp(self):
print divider
print('Starting test: ' + self.id().split('.')[-2] + ' ' + self.id().split('.')[-1])
print divider
def tearDown(self):
print divider
print('Ending test: ' + self.id().split('.')[-2] + ' ' + self.id().split('.')[-1])
print divider
def test_slugify_changes_to_lowercase(self):
test_chars = set([i for i in string.ascii_uppercase])
print 'test_chars: '
print test_chars
test_string = lib.playlist.slugify('GHJK')
print 'test_string: ' + test_string
self.assertFalse(string_contains_characters(test_string, test_chars))
self.assertEqual(test_string, 'ghjk')
# TODO determine behavior expected
# def test_slugify_changes_spaces_to_hyphens(self):
# test_chars = set([' '])
# test_string = lib.playlist.slugify(' ')
# print 'test_string: ' + test_string
# self.assertFalse(string_contains_characters(test_string, test_chars))
# self.assertEqual(test_string, '-----')
def test_slugify_removes_nonalpha(self):
test_string = lib.playlist.slugify('~!@#$%^&*()+=')
print 'test_string: ' + test_string
self.assertTrue(test_string.isalnum() or not test_string)
#TODO test tabs and other whitespace handling
#test_chars = set([i for i in string.whitespace])
if __name__ == "__main__":
unittest.main()
def string_contains_characters(testString, set):
"""
Tests if a given string contains any of the characters in the given set
:param testString: string to test
:param set: set of characters to check for the presence of in testString
:return: True if characters are present in string; else False
"""
for char in set:
if char in testString:
return True
return False