-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_parser.py
executable file
·73 lines (57 loc) · 2.2 KB
/
test_parser.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
#!/usr/bin/env python3
import parser
import unittest
# global to avoid setup for every test class
myparser = None
#------------------------------------------------------------
class parser_standard(unittest.TestCase):
def setUp(self):
global parser
self.parser = myparser
self.parser.cwd = "/root"
self.parser.remotes = {}
self.parser.remotes['remote'] = "dummy"
# --- abspath
def test_abspath_empty(self):
result = self.parser.abspath("")
self.assertEqual(result, '/root')
def test_abspath_folder(self):
result = self.parser.abspath("folder")
self.assertEqual(result, '/root/folder')
def test_abspath_prefix(self):
result = self.parser.abspath("prefix/")
self.assertEqual(result, '/root/prefix/')
def test_abspath_resolve(self):
result = self.parser.abspath("folder/child1/../child2")
self.assertEqual(result, '/root/folder/child2')
def test_abspath_prefix_resolve(self):
result = self.parser.abspath("folder/child1/../child2/")
self.assertEqual(result, '/root/folder/child2/')
# --- remote
# def test_remote_complete(self):
# self.parser.remote_add('mfclient', {'type':'mflux', 'protocol':'http', 'server':'localhost', 'port':80})
# result = self.parser.complete_remote("mf", "mf", 0, 2)
# if 'mfclient' in result:
# success = True
# else:
# success = False
# self.assertTrue(success)
#------------------------------------------------------------
if __name__ == '__main__':
try:
myparser = parser.parser()
print("\n----------------------------------------------------------------------")
print("Running tests for: parser module")
print("----------------------------------------------------------------------\n")
except Exception as e:
print(str(e))
exit(-1)
# classes to test
test_class_list = [parser_standard]
# build suite
suite_list = []
for test_class in test_class_list:
suite_list.append(unittest.TestLoader().loadTestsFromTestCase(test_class))
suite = unittest.TestSuite(suite_list)
# run suite
unittest.TextTestRunner(verbosity=2).run(suite)