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
|
# -*- coding: utf-8 -*-
#
# Copyright (c) 2017, the cclib development team
#
# This file is part of cclib (http://cclib.github.io) and is distributed under
# the terms of the BSD 3-Clause License.
"""Unit tests for XYZ reader."""
import os
import unittest
import numpy as np
import cclib
__filedir__ = os.path.dirname(__file__)
__filepath__ = os.path.realpath(__filedir__)
__datadir__ = os.path.join(__filepath__, "..", "..")
class XYZReaderTest(unittest.TestCase):
def test_attributes_one(self):
"""Is an XYZ file with a single geometry read into a ccData properly?
"""
fpath = os.path.join(__datadir__, "test/bridge/uracil.xyz")
xyz = cclib.io.xyzreader.XYZ(fpath)
data = xyz.parse()
self.assertEqual(data.natom, 12)
atomnos = np.array([7, 6, 1, 8, 7, 6, 8, 6, 6, 1, 1, 1], dtype=int)
np.testing.assert_equal(data.atomnos, atomnos)
self.assertEqual(data.atomcoords.shape, (1, 12, 3))
def test_attributes_two(self):
"""Is an XYZ file with a two geometries read into a ccData properly?
"""
fpath = os.path.join(__filedir__, "data/uracil_two.xyz")
xyz = cclib.io.xyzreader.XYZ(fpath)
data = xyz.parse()
self.assertEqual(data.natom, 12)
atomnos = np.array([7, 6, 1, 8, 7, 6, 8, 6, 6, 1, 1, 1], dtype=int)
np.testing.assert_equal(data.atomnos, atomnos)
self.assertEqual(data.atomcoords.shape, (2, 12, 3))
self.assertEqual(data.metadata["comments"], ["uracil", " Energy: -97.0646597"])
if __name__ == "__main__":
unittest.main()
|