Skip to content

Commit f9a0092

Browse files
committed
TST: reactivate test of putAtomsInMolecule.
Make it faster by checking just one CIF file. Add note to verify what function does in the future.
1 parent a320856 commit f9a0092

File tree

2 files changed

+24
-42
lines changed

2 files changed

+24
-42
lines changed

src/pyobjcryst/tests/testutils.py

+19-40
Original file line numberDiff line numberDiff line change
@@ -15,54 +15,33 @@
1515

1616
"""Tests for crystal module."""
1717

18-
import os
1918
import unittest
19+
import numpy
2020

21-
from pyobjcryst.crystal import CreateCrystalFromCIF
21+
from pyobjcryst.tests.pyobjcrysttestutils import loadcifdata
2222
from pyobjcryst.utils import putAtomsInMolecule
2323

2424

2525
class TestPutAtomsInMolecule(unittest.TestCase):
2626

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))
6542
return
6643

44+
# End of class TestPutAtomsInMolecule
45+
6746
if __name__ == "__main__":
6847
unittest.main()

src/pyobjcryst/utils.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
"""Utilities for crystals."""
1717

1818

19+
# FIXME: check if this function does any meaningful job.
20+
1921
def putAtomsInMolecule(crystal, alist = None, name = None):
2022
"""Place atoms from a crystal into a molecule inside the crystal.
2123
@@ -54,8 +56,8 @@ def putAtomsInMolecule(crystal, alist = None, name = None):
5456
f = lambda v: v - floor(v)
5557

5658
scat = []
57-
for id in alist:
58-
s = c.GetScatt(id)
59+
for idx in alist:
60+
s = c.GetScatt(idx)
5961
if not isinstance(s, Atom):
6062
raise TypeError("identifier '%s' does not specify an Atom")
6163
sp = s.GetScatteringPower()
@@ -87,6 +89,7 @@ def putAtomsInMolecule(crystal, alist = None, name = None):
8789

8890
return
8991

92+
9093
def _xyztostring(crystal):
9194
"""Helper function to write xyz coordinates of a crystal to a string."""
9295

0 commit comments

Comments
 (0)