1 | /*
|
---|
2 | * Project: MoleCuilder
|
---|
3 | * Description: creates and alters molecular systems
|
---|
4 | * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
|
---|
5 | * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
|
---|
6 | */
|
---|
7 |
|
---|
8 | /*
|
---|
9 | * ParserXyzUnitTest.cpp
|
---|
10 | *
|
---|
11 | * Created on: Mar 3, 2010
|
---|
12 | * Author: metzler
|
---|
13 | */
|
---|
14 |
|
---|
15 | // include config.h
|
---|
16 | #ifdef HAVE_CONFIG_H
|
---|
17 | #include <config.h>
|
---|
18 | #endif
|
---|
19 |
|
---|
20 | #include "ParserXyzUnitTest.hpp"
|
---|
21 |
|
---|
22 | #include <cppunit/CompilerOutputter.h>
|
---|
23 | #include <cppunit/extensions/TestFactoryRegistry.h>
|
---|
24 | #include <cppunit/ui/text/TestRunner.h>
|
---|
25 |
|
---|
26 | #include "Atom/atom.hpp"
|
---|
27 | #include "Atom/AtomObserver.hpp"
|
---|
28 | #include "CodePatterns/Log.hpp"
|
---|
29 | #include "Descriptors/AtomTypeDescriptor.hpp"
|
---|
30 | #include "Element/element.hpp"
|
---|
31 | #include "Element/periodentafel.hpp"
|
---|
32 | #include "Parser/ChangeTracker.hpp"
|
---|
33 | #include "Parser/XyzParser.hpp"
|
---|
34 | #include "World.hpp"
|
---|
35 |
|
---|
36 | #ifdef HAVE_TESTRUNNER
|
---|
37 | #include "UnitTestMain.hpp"
|
---|
38 | #endif /*HAVE_TESTRUNNER*/
|
---|
39 |
|
---|
40 | using namespace std;
|
---|
41 |
|
---|
42 | // Registers the fixture into the 'registry'
|
---|
43 | CPPUNIT_TEST_SUITE_REGISTRATION( ParserXyzUnitTest );
|
---|
44 |
|
---|
45 | static string waterXyz = "\
|
---|
46 | 3\n\
|
---|
47 | \tH2O: water molecule\n\
|
---|
48 | O\t0\t0\t0\n\
|
---|
49 | H\t0.758602\t0\t0.504284\n\
|
---|
50 | H\t0.758602\t0\t-0.504284\n";
|
---|
51 | static string waterMultiXyz = "\
|
---|
52 | 3\n\
|
---|
53 | \tH2O: water molecule, time step 0\n\
|
---|
54 | O\t0\t0\t0\n\
|
---|
55 | H\t0.758602\t0\t0.504284\n\
|
---|
56 | H\t0.758602\t0\t-0.504284\n\
|
---|
57 | 3\n\
|
---|
58 | \tH2O: water molecule, time step 1\n\
|
---|
59 | O\t0\t0\t0\n\
|
---|
60 | H\t0.76\t0\t0.504284\n\
|
---|
61 | H\t0.756\t0\t-0.504284\n";
|
---|
62 |
|
---|
63 | void ParserXyzUnitTest::setUp() {
|
---|
64 | World::getInstance();
|
---|
65 |
|
---|
66 | parser = new FormatParser<xyz>();
|
---|
67 |
|
---|
68 | setVerbosity(2);
|
---|
69 |
|
---|
70 | // we need hydrogens and oxygens in the following tests
|
---|
71 | CPPUNIT_ASSERT(World::getInstance().getPeriode()->FindElement(1) != NULL);
|
---|
72 | CPPUNIT_ASSERT(World::getInstance().getPeriode()->FindElement(8) != NULL);
|
---|
73 | }
|
---|
74 |
|
---|
75 | void ParserXyzUnitTest::tearDown()
|
---|
76 | {
|
---|
77 | delete parser;
|
---|
78 | ChangeTracker::purgeInstance();
|
---|
79 | AtomObserver::purgeInstance();
|
---|
80 | World::purgeInstance();
|
---|
81 | }
|
---|
82 |
|
---|
83 | /************************************ tests ***********************************/
|
---|
84 |
|
---|
85 | void ParserXyzUnitTest::rewriteAnXyzTest() {
|
---|
86 | cout << "Testing the XYZ parser." << endl;
|
---|
87 | stringstream input;
|
---|
88 | input << waterXyz;
|
---|
89 | parser->load(&input);
|
---|
90 | input.clear();
|
---|
91 |
|
---|
92 | CPPUNIT_ASSERT_EQUAL(3, World::getInstance().numAtoms());
|
---|
93 |
|
---|
94 | // store and parse in again
|
---|
95 | {
|
---|
96 | stringstream output;
|
---|
97 | std::vector<atom *> atoms = World::getInstance().getAllAtoms();
|
---|
98 | parser->save(&output, atoms);
|
---|
99 | input << output.str();
|
---|
100 | parser->load(&input);
|
---|
101 | }
|
---|
102 |
|
---|
103 | // now twice as many
|
---|
104 | CPPUNIT_ASSERT_EQUAL(6, World::getInstance().numAtoms());
|
---|
105 |
|
---|
106 | // check every atom
|
---|
107 | std::vector<atom *> atoms = World::getInstance().getAllAtoms();
|
---|
108 | std::vector<atom *>::const_iterator firstiter = atoms.begin();
|
---|
109 | std::vector<atom *>::const_iterator seconditer = atoms.begin();
|
---|
110 | for (size_t i=0;i<3;i++)
|
---|
111 | ++seconditer;
|
---|
112 | for (;
|
---|
113 | seconditer != atoms.end();
|
---|
114 | ++firstiter,++seconditer) {
|
---|
115 | // check position and type (only stuff xyz stores)
|
---|
116 | CPPUNIT_ASSERT_EQUAL((*firstiter)->getPosition(),(*seconditer)->getPosition());
|
---|
117 | CPPUNIT_ASSERT_EQUAL((*firstiter)->getType(),(*seconditer)->getType());
|
---|
118 | }
|
---|
119 | }
|
---|
120 |
|
---|
121 | void ParserXyzUnitTest::readMultiXyzTest() {
|
---|
122 | cout << "Testing the multi time step XYZ parser." << endl;
|
---|
123 | stringstream input;
|
---|
124 | input << waterMultiXyz;
|
---|
125 | parser->load(&input);
|
---|
126 | input.clear();
|
---|
127 |
|
---|
128 | // 3 not 6 atoms!
|
---|
129 | CPPUNIT_ASSERT_EQUAL(3, World::getInstance().numAtoms());
|
---|
130 |
|
---|
131 | // check for trajectory size
|
---|
132 | BOOST_FOREACH (atom *_atom, World::getInstance().getAllAtoms())
|
---|
133 | CPPUNIT_ASSERT_EQUAL((size_t) 2, _atom->getTrajectorySize());
|
---|
134 | }
|
---|
135 |
|
---|
136 | void ParserXyzUnitTest::writeMultiXyzTest() {
|
---|
137 | stringstream input;
|
---|
138 | input << waterMultiXyz;
|
---|
139 | parser->load(&input);
|
---|
140 | input.clear();
|
---|
141 |
|
---|
142 | // 3 not 6 atoms!
|
---|
143 | CPPUNIT_ASSERT_EQUAL(3, World::getInstance().numAtoms());
|
---|
144 |
|
---|
145 | // store and parse in again
|
---|
146 | {
|
---|
147 | stringstream output;
|
---|
148 | std::vector<atom *> atoms = World::getInstance().getAllAtoms();
|
---|
149 | parser->save(&output, atoms);
|
---|
150 | input << output.str();
|
---|
151 | parser->load(&input);
|
---|
152 | }
|
---|
153 |
|
---|
154 | // now twice as many
|
---|
155 | CPPUNIT_ASSERT_EQUAL(6, World::getInstance().numAtoms());
|
---|
156 |
|
---|
157 | // check for trajectory size of all 6! atoms
|
---|
158 | BOOST_FOREACH (atom *_atom, World::getInstance().getAllAtoms())
|
---|
159 | CPPUNIT_ASSERT_EQUAL((size_t) 2, _atom->getTrajectorySize());
|
---|
160 |
|
---|
161 | // check every atom
|
---|
162 | std::vector<atom *> atoms = World::getInstance().getAllAtoms();
|
---|
163 | std::vector<atom *>::const_iterator firstiter = atoms.begin();
|
---|
164 | std::vector<atom *>::const_iterator seconditer = atoms.begin();
|
---|
165 | for (size_t i=0;i<3;i++)
|
---|
166 | ++seconditer;
|
---|
167 | for (;
|
---|
168 | seconditer != atoms.end();
|
---|
169 | ++firstiter,++seconditer) {
|
---|
170 | CPPUNIT_ASSERT_EQUAL((*firstiter)->getType(),(*seconditer)->getType());
|
---|
171 | for (unsigned int step = 0; step < 2; ++step) {
|
---|
172 | // check position and type (only stuff xyz stores)
|
---|
173 | CPPUNIT_ASSERT_EQUAL(
|
---|
174 | (*firstiter)->getPositionAtStep(step),
|
---|
175 | (*seconditer)->getPositionAtStep(step));
|
---|
176 | }
|
---|
177 | }
|
---|
178 | }
|
---|