blob: add2380ebadc427256538743823ffd91ab159f52 (
plain)
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
|
import unittest
import os
import os.path
import freebase
def main():
created = False
passwordfile = "test/.password.txt"
# setup password stuff
if not os.path.isfile(passwordfile):
created = True
USERNAME, PASSWORD = "", ""
print "RUNTESTSIn order to run the tests, we need to use a valid freebase username and password"
USERNAME = raw_input("Please enter your username: ")
PASSWORD = raw_input("Please enter your password (it'll appear in cleartext): ")
freebase.login(USERNAME, PASSWORD)
print "Thanks!"
fh = open(passwordfile, "w")
fh.write(USERNAME + "\n" + PASSWORD)
fh.close()
# run tests
import test_freebase
import test_schema_manipulation
# test_freebase.TestFreebase,
testcases = [test_schema_manipulation.TestSchemaManipulation, test_freebase.TestFreebase]
testcases_dumb = [test_freebase.TestFreebase, test_schema_manipulation.TestSchemaManipulation]
suites = [unittest.TestLoader().loadTestsFromTestCase(x)
for x in testcases]
suites_dumb = [unittest.TestLoader().loadTestsFromTestCase(x)
for x in testcases_dumb]
print sorted(suites)
print sorted(suites_dumb)
print sorted(suites) == sorted(suites_dumb)
print
print "SUITES", suites
s1 = unittest.TestLoader().loadTestsFromTestCase(test_freebase.TestFreebase)
s2 = unittest.TestLoader().loadTestsFromTestCase(test_schema_manipulation.TestSchemaManipulation)
anotherrun = unittest.TestSuite([s1, s2])
#run = unittest.TestSuite(suites)
# delete password stuff
if created: os.remove(passwordfile)
return anotherrun
if __name__ == '__main__':
main()
|