[9e4fd1] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
[0aa122] | 4 | * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
|
---|
[9e4fd1] | 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 |
|
---|
[6f0841] | 26 | #include "Atom/atom.hpp"
|
---|
[006e1e] | 27 | #include "Atom/AtomObserver.hpp"
|
---|
[255829] | 28 | #include "CodePatterns/Log.hpp"
|
---|
[9e4fd1] | 29 | #include "Descriptors/AtomTypeDescriptor.hpp"
|
---|
[006e1e] | 30 | #include "Element/element.hpp"
|
---|
| 31 | #include "Element/periodentafel.hpp"
|
---|
[765f16] | 32 | #include "Parser/ChangeTracker.hpp"
|
---|
| 33 | #include "Parser/XyzParser.hpp"
|
---|
[006e1e] | 34 | #include "World.hpp"
|
---|
[9e4fd1] | 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 |
|
---|
[0180d6] | 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";
|
---|
[9e4fd1] | 62 |
|
---|
| 63 | void ParserXyzUnitTest::setUp() {
|
---|
| 64 | World::getInstance();
|
---|
| 65 |
|
---|
[765f16] | 66 | parser = new FormatParser<xyz>();
|
---|
| 67 |
|
---|
[9e4fd1] | 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 |
|
---|
[765f16] | 75 | void ParserXyzUnitTest::tearDown()
|
---|
| 76 | {
|
---|
| 77 | delete parser;
|
---|
[9e4fd1] | 78 | ChangeTracker::purgeInstance();
|
---|
[006e1e] | 79 | AtomObserver::purgeInstance();
|
---|
[9e4fd1] | 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;
|
---|
[765f16] | 89 | parser->load(&input);
|
---|
[9e4fd1] | 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();
|
---|
[765f16] | 98 | parser->save(&output, atoms);
|
---|
[9e4fd1] | 99 | input << output.str();
|
---|
[765f16] | 100 | parser->load(&input);
|
---|
[9e4fd1] | 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 | }
|
---|
[0180d6] | 120 |
|
---|
| 121 | void ParserXyzUnitTest::readMultiXyzTest() {
|
---|
| 122 | cout << "Testing the multi time step XYZ parser." << endl;
|
---|
| 123 | stringstream input;
|
---|
| 124 | input << waterMultiXyz;
|
---|
[765f16] | 125 | parser->load(&input);
|
---|
[0180d6] | 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;
|
---|
[765f16] | 139 | parser->load(&input);
|
---|
[0180d6] | 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();
|
---|
[765f16] | 149 | parser->save(&output, atoms);
|
---|
[0180d6] | 150 | input << output.str();
|
---|
[765f16] | 151 | parser->load(&input);
|
---|
[0180d6] | 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 | }
|
---|