2011-02-15 10:10:00 -08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
from interp.baker import pattern
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-02-15 10:27:45 -08:00
|
|
|
class Test(unittest.TestCase):
|
2011-02-15 10:10:00 -08:00
|
|
|
def setUp(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def testImports(self):
|
|
|
|
from interp.baker import pattern
|
|
|
|
|
2011-02-15 10:12:56 -08:00
|
|
|
def test_baker_eq_8(self):
|
2011-02-15 10:10:00 -08:00
|
|
|
b = sorted([tuple(sorted(i)) for i in ((1,2),(2,3),(3,1))])
|
|
|
|
p = sorted(pattern(power = 2, phicount = 3))
|
|
|
|
self.assertEqual(b,p)
|
|
|
|
|
2011-02-15 10:12:56 -08:00
|
|
|
def test_baker_eq_17(self):
|
2011-02-15 10:10:00 -08:00
|
|
|
b = sorted([tuple(sorted(i)) for i in ((1,2,2), (1,3,3), (2,1,1), (2,3,3), (3,1,1), (3,2,2), (1,2,3))])
|
|
|
|
p = sorted(pattern(power = 3, phicount = 3))
|
|
|
|
self.assertEqual(b,p)
|
|
|
|
|
2011-02-15 10:12:56 -08:00
|
|
|
def test_baker_eq_15(self):
|
2011-02-15 10:10:00 -08:00
|
|
|
b = sorted([tuple(sorted(i)) for i in (
|
|
|
|
(1,2), (1,3), (1,4),
|
|
|
|
(2,3), (2,4), (3,4))])
|
|
|
|
|
|
|
|
p = sorted(pattern(power = 2, phicount = 4))
|
|
|
|
|
|
|
|
self.assertEqual(b,p)
|
|
|
|
|
2011-02-15 10:12:56 -08:00
|
|
|
def test_smcquay_(self):
|
2011-02-15 10:10:00 -08:00
|
|
|
b = sorted([tuple(sorted(i)) for i in (
|
|
|
|
(1,2,3), (2,3,4), (1,2,4), (1,3,4),
|
|
|
|
(1,1,2), (1,2,2),
|
|
|
|
(2,3,3), (2,2,3),
|
|
|
|
(1,3,3), (1,1,3),
|
|
|
|
(2,4,4), (2,2,4),
|
|
|
|
(3,3,4), (3,4,4),
|
|
|
|
(1,4,4), (1,1,4))])
|
|
|
|
|
|
|
|
p = sorted(pattern(power = 3, phicount = 4))
|
|
|
|
self.assertEqual(b,p)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2011-02-15 10:27:45 -08:00
|
|
|
suite = unittest.TestLoader().loadTestsFromTestCase(Test)
|
2011-02-15 10:10:00 -08:00
|
|
|
unittest.TextTestRunner(verbosity=3).run(suite)
|