-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtest_quicktions.py
59 lines (44 loc) · 1.53 KB
/
test_quicktions.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
import os
import glob
import unittest
from Cython.Build import Cythonize
import quicktions
F = quicktions.Fraction
gcd = quicktions._gcd
class CImportTest(unittest.TestCase):
def setUp(self):
self.module_files = []
def tearDown(self):
for fn in self.module_files:
if os.path.exists(fn):
os.remove(fn)
def build_test_module(self):
module_code = '\n'.join([
'# cython: language_level=3str',
'from quicktions cimport Fraction',
'def get_fraction():',
' return Fraction(1, 2)',
])
base_path = os.path.abspath(os.path.dirname(__file__))
module_name = 'quicktions_importtest'
module_filename = os.path.join(base_path, '.'.join([module_name, 'pyx']))
with open(module_filename, 'w') as f:
f.write(module_code)
Cythonize.main(['-i', module_filename])
for fn in glob.glob(os.path.join(base_path, '.'.join([module_name, '*']))):
self.module_files.append(os.path.abspath(fn))
def test_cimport(self):
self.build_test_module()
from quicktions_importtest import get_fraction
self.assertEqual(get_fraction(), F(1,2))
def test_main():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(CImportTest))
return suite
def main():
suite = test_main()
runner = unittest.TextTestRunner(sys.stdout, verbosity=2)
result = runner.run(suite)
sys.exit(not result.wasSuccessful())
if __name__ == '__main__':
main()