|
15 | 15 |
|
16 | 16 | """Tests for crystal module."""
|
17 | 17 |
|
18 |
| -import os |
19 | 18 | import unittest
|
| 19 | +import numpy |
20 | 20 |
|
21 |
| -from pyobjcryst.crystal import CreateCrystalFromCIF |
| 21 | +from pyobjcryst.tests.pyobjcrysttestutils import loadcifdata |
22 | 22 | from pyobjcryst.utils import putAtomsInMolecule
|
23 | 23 |
|
24 | 24 |
|
25 | 25 | class TestPutAtomsInMolecule(unittest.TestCase):
|
26 | 26 |
|
27 |
| - def _testPutAtomsInMolecule(self): |
28 |
| - """Make sure this utility method is correct.""" |
29 |
| - |
30 |
| - from math import floor |
31 |
| - f = lambda v: v - floor(v) |
32 |
| - import glob |
33 |
| - from pyobjcryst.tests.pyobjcrysttestutils import datafile |
34 |
| - pat = os.path.join(datafile(''), '*.cif') |
35 |
| - |
36 |
| - for fname in glob.glob(pat): |
37 |
| - print(fname) |
38 |
| - |
39 |
| - c = CreateCrystalFromCIF(open(fname)) |
40 |
| - |
41 |
| - # Get positions from unmodified structure |
42 |
| - pos1 = [] |
43 |
| - scl = c.GetScatteringComponentList() |
44 |
| - for s in scl: |
45 |
| - xyz = [f(xi) for xi in (s.X, s.Y, s.Z)] |
46 |
| - xyz = c.FractionalToOrthonormalCoords(*xyz) |
47 |
| - pos1.append(xyz) |
48 |
| - |
49 |
| - # Get positions from molecular structure |
50 |
| - putAtomsInMolecule(c) |
51 |
| - pos2 = [] |
52 |
| - scl = c.GetScatteringComponentList() |
53 |
| - for s in scl: |
54 |
| - xyz = [f(xi) for xi in (s.X, s.Y, s.Z)] |
55 |
| - xyz = c.FractionalToOrthonormalCoords(*xyz) |
56 |
| - pos2.append(xyz) |
57 |
| - |
58 |
| - # Now compare positions |
59 |
| - self.assertEqual(len(pos1), len(pos2)) |
60 |
| - |
61 |
| - for p1, p2 in zip(pos1, pos2): |
62 |
| - for i in range(3): |
63 |
| - self.assertAlmostEqual(p1[i], p2[i]) |
64 |
| - |
| 27 | + def test_caffeine(self): |
| 28 | + """Check molecule conversion for caffeine. |
| 29 | + """ |
| 30 | + c = loadcifdata('caffeine.cif') |
| 31 | + xyz0 = [(sc.X, sc.Y, sc.Z) for sc in c.GetScatteringComponentList()] |
| 32 | + self.assertEqual(24, c.GetNbScatterer()) |
| 33 | + putAtomsInMolecule(c, name='espresso') |
| 34 | + self.assertEqual(1, c.GetNbScatterer()) |
| 35 | + mol = c.GetScatterer(0) |
| 36 | + self.assertEqual('espresso', mol.GetName()) |
| 37 | + self.assertEqual(24, mol.GetNbAtoms()) |
| 38 | + xyz1 = [(sc.X, sc.Y, sc.Z) for sc in c.GetScatteringComponentList()] |
| 39 | + uc0 = numpy.array(xyz0) - numpy.floor(xyz0) |
| 40 | + uc1 = numpy.array(xyz1) - numpy.floor(xyz1) |
| 41 | + self.assertTrue(numpy.allclose(uc0, uc1)) |
65 | 42 | return
|
66 | 43 |
|
| 44 | +# End of class TestPutAtomsInMolecule |
| 45 | + |
67 | 46 | if __name__ == "__main__":
|
68 | 47 | unittest.main()
|
0 commit comments