[9e4fd1] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
[0aa122] | 4 | * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
|
---|
[5aaa43] | 5 | * Copyright (C) 2013 Frederik Heber. All rights reserved.
|
---|
[94d5ac6] | 6 | *
|
---|
| 7 | *
|
---|
| 8 | * This file is part of MoleCuilder.
|
---|
| 9 | *
|
---|
| 10 | * MoleCuilder is free software: you can redistribute it and/or modify
|
---|
| 11 | * it under the terms of the GNU General Public License as published by
|
---|
| 12 | * the Free Software Foundation, either version 2 of the License, or
|
---|
| 13 | * (at your option) any later version.
|
---|
| 14 | *
|
---|
| 15 | * MoleCuilder is distributed in the hope that it will be useful,
|
---|
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 18 | * GNU General Public License for more details.
|
---|
| 19 | *
|
---|
| 20 | * You should have received a copy of the GNU General Public License
|
---|
| 21 | * along with MoleCuilder. If not, see <http://www.gnu.org/licenses/>.
|
---|
[9e4fd1] | 22 | */
|
---|
| 23 |
|
---|
| 24 | /*
|
---|
| 25 | * ParserXyzUnitTest.cpp
|
---|
| 26 | *
|
---|
| 27 | * Created on: Mar 3, 2010
|
---|
| 28 | * Author: metzler
|
---|
| 29 | */
|
---|
| 30 |
|
---|
| 31 | // include config.h
|
---|
| 32 | #ifdef HAVE_CONFIG_H
|
---|
| 33 | #include <config.h>
|
---|
| 34 | #endif
|
---|
| 35 |
|
---|
| 36 | #include "ParserXyzUnitTest.hpp"
|
---|
| 37 |
|
---|
| 38 | #include <cppunit/CompilerOutputter.h>
|
---|
| 39 | #include <cppunit/extensions/TestFactoryRegistry.h>
|
---|
| 40 | #include <cppunit/ui/text/TestRunner.h>
|
---|
| 41 |
|
---|
[6f0841] | 42 | #include "Atom/atom.hpp"
|
---|
[006e1e] | 43 | #include "Atom/AtomObserver.hpp"
|
---|
[255829] | 44 | #include "CodePatterns/Log.hpp"
|
---|
[9e4fd1] | 45 | #include "Descriptors/AtomTypeDescriptor.hpp"
|
---|
[006e1e] | 46 | #include "Element/element.hpp"
|
---|
| 47 | #include "Element/periodentafel.hpp"
|
---|
[765f16] | 48 | #include "Parser/ChangeTracker.hpp"
|
---|
| 49 | #include "Parser/XyzParser.hpp"
|
---|
[006e1e] | 50 | #include "World.hpp"
|
---|
[9e4fd1] | 51 |
|
---|
| 52 | #ifdef HAVE_TESTRUNNER
|
---|
| 53 | #include "UnitTestMain.hpp"
|
---|
| 54 | #endif /*HAVE_TESTRUNNER*/
|
---|
| 55 |
|
---|
| 56 | using namespace std;
|
---|
| 57 |
|
---|
| 58 | // Registers the fixture into the 'registry'
|
---|
| 59 | CPPUNIT_TEST_SUITE_REGISTRATION( ParserXyzUnitTest );
|
---|
| 60 |
|
---|
[0180d6] | 61 | static string waterXyz = "\
|
---|
| 62 | 3\n\
|
---|
| 63 | \tH2O: water molecule\n\
|
---|
| 64 | O\t0\t0\t0\n\
|
---|
| 65 | H\t0.758602\t0\t0.504284\n\
|
---|
| 66 | H\t0.758602\t0\t-0.504284\n";
|
---|
| 67 | static string waterMultiXyz = "\
|
---|
| 68 | 3\n\
|
---|
| 69 | \tH2O: water molecule, time step 0\n\
|
---|
| 70 | O\t0\t0\t0\n\
|
---|
| 71 | H\t0.758602\t0\t0.504284\n\
|
---|
| 72 | H\t0.758602\t0\t-0.504284\n\
|
---|
| 73 | 3\n\
|
---|
| 74 | \tH2O: water molecule, time step 1\n\
|
---|
| 75 | O\t0\t0\t0\n\
|
---|
| 76 | H\t0.76\t0\t0.504284\n\
|
---|
| 77 | H\t0.756\t0\t-0.504284\n";
|
---|
[9e4fd1] | 78 |
|
---|
| 79 | void ParserXyzUnitTest::setUp() {
|
---|
| 80 | World::getInstance();
|
---|
| 81 |
|
---|
[765f16] | 82 | parser = new FormatParser<xyz>();
|
---|
| 83 |
|
---|
[9e4fd1] | 84 | setVerbosity(2);
|
---|
| 85 |
|
---|
| 86 | // we need hydrogens and oxygens in the following tests
|
---|
| 87 | CPPUNIT_ASSERT(World::getInstance().getPeriode()->FindElement(1) != NULL);
|
---|
| 88 | CPPUNIT_ASSERT(World::getInstance().getPeriode()->FindElement(8) != NULL);
|
---|
| 89 | }
|
---|
| 90 |
|
---|
[765f16] | 91 | void ParserXyzUnitTest::tearDown()
|
---|
| 92 | {
|
---|
| 93 | delete parser;
|
---|
[9e4fd1] | 94 | ChangeTracker::purgeInstance();
|
---|
| 95 | World::purgeInstance();
|
---|
[708277] | 96 | AtomObserver::purgeInstance();
|
---|
[9e4fd1] | 97 | }
|
---|
| 98 |
|
---|
| 99 | /************************************ tests ***********************************/
|
---|
| 100 |
|
---|
| 101 | void ParserXyzUnitTest::rewriteAnXyzTest() {
|
---|
| 102 | cout << "Testing the XYZ parser." << endl;
|
---|
| 103 | stringstream input;
|
---|
| 104 | input << waterXyz;
|
---|
[765f16] | 105 | parser->load(&input);
|
---|
[9e4fd1] | 106 | input.clear();
|
---|
| 107 |
|
---|
| 108 | CPPUNIT_ASSERT_EQUAL(3, World::getInstance().numAtoms());
|
---|
| 109 |
|
---|
| 110 | // store and parse in again
|
---|
| 111 | {
|
---|
| 112 | stringstream output;
|
---|
| 113 | std::vector<atom *> atoms = World::getInstance().getAllAtoms();
|
---|
[765f16] | 114 | parser->save(&output, atoms);
|
---|
[9e4fd1] | 115 | input << output.str();
|
---|
[765f16] | 116 | parser->load(&input);
|
---|
[9e4fd1] | 117 | }
|
---|
| 118 |
|
---|
| 119 | // now twice as many
|
---|
| 120 | CPPUNIT_ASSERT_EQUAL(6, World::getInstance().numAtoms());
|
---|
| 121 |
|
---|
| 122 | // check every atom
|
---|
| 123 | std::vector<atom *> atoms = World::getInstance().getAllAtoms();
|
---|
| 124 | std::vector<atom *>::const_iterator firstiter = atoms.begin();
|
---|
| 125 | std::vector<atom *>::const_iterator seconditer = atoms.begin();
|
---|
| 126 | for (size_t i=0;i<3;i++)
|
---|
| 127 | ++seconditer;
|
---|
| 128 | for (;
|
---|
| 129 | seconditer != atoms.end();
|
---|
| 130 | ++firstiter,++seconditer) {
|
---|
| 131 | // check position and type (only stuff xyz stores)
|
---|
| 132 | CPPUNIT_ASSERT_EQUAL((*firstiter)->getPosition(),(*seconditer)->getPosition());
|
---|
| 133 | CPPUNIT_ASSERT_EQUAL((*firstiter)->getType(),(*seconditer)->getType());
|
---|
| 134 | }
|
---|
| 135 | }
|
---|
[0180d6] | 136 |
|
---|
| 137 | void ParserXyzUnitTest::readMultiXyzTest() {
|
---|
| 138 | cout << "Testing the multi time step XYZ parser." << endl;
|
---|
| 139 | stringstream input;
|
---|
| 140 | input << waterMultiXyz;
|
---|
[765f16] | 141 | parser->load(&input);
|
---|
[0180d6] | 142 | input.clear();
|
---|
| 143 |
|
---|
| 144 | // 3 not 6 atoms!
|
---|
| 145 | CPPUNIT_ASSERT_EQUAL(3, World::getInstance().numAtoms());
|
---|
| 146 |
|
---|
| 147 | // check for trajectory size
|
---|
| 148 | BOOST_FOREACH (atom *_atom, World::getInstance().getAllAtoms())
|
---|
| 149 | CPPUNIT_ASSERT_EQUAL((size_t) 2, _atom->getTrajectorySize());
|
---|
| 150 | }
|
---|
| 151 |
|
---|
| 152 | void ParserXyzUnitTest::writeMultiXyzTest() {
|
---|
| 153 | stringstream input;
|
---|
| 154 | input << waterMultiXyz;
|
---|
[765f16] | 155 | parser->load(&input);
|
---|
[0180d6] | 156 | input.clear();
|
---|
| 157 |
|
---|
| 158 | // 3 not 6 atoms!
|
---|
| 159 | CPPUNIT_ASSERT_EQUAL(3, World::getInstance().numAtoms());
|
---|
| 160 |
|
---|
| 161 | // store and parse in again
|
---|
| 162 | {
|
---|
| 163 | stringstream output;
|
---|
| 164 | std::vector<atom *> atoms = World::getInstance().getAllAtoms();
|
---|
[765f16] | 165 | parser->save(&output, atoms);
|
---|
[0180d6] | 166 | input << output.str();
|
---|
[765f16] | 167 | parser->load(&input);
|
---|
[0180d6] | 168 | }
|
---|
| 169 |
|
---|
| 170 | // now twice as many
|
---|
| 171 | CPPUNIT_ASSERT_EQUAL(6, World::getInstance().numAtoms());
|
---|
| 172 |
|
---|
| 173 | // check for trajectory size of all 6! atoms
|
---|
| 174 | BOOST_FOREACH (atom *_atom, World::getInstance().getAllAtoms())
|
---|
| 175 | CPPUNIT_ASSERT_EQUAL((size_t) 2, _atom->getTrajectorySize());
|
---|
| 176 |
|
---|
| 177 | // check every atom
|
---|
| 178 | std::vector<atom *> atoms = World::getInstance().getAllAtoms();
|
---|
| 179 | std::vector<atom *>::const_iterator firstiter = atoms.begin();
|
---|
| 180 | std::vector<atom *>::const_iterator seconditer = atoms.begin();
|
---|
| 181 | for (size_t i=0;i<3;i++)
|
---|
| 182 | ++seconditer;
|
---|
| 183 | for (;
|
---|
| 184 | seconditer != atoms.end();
|
---|
| 185 | ++firstiter,++seconditer) {
|
---|
| 186 | CPPUNIT_ASSERT_EQUAL((*firstiter)->getType(),(*seconditer)->getType());
|
---|
| 187 | for (unsigned int step = 0; step < 2; ++step) {
|
---|
| 188 | // check position and type (only stuff xyz stores)
|
---|
| 189 | CPPUNIT_ASSERT_EQUAL(
|
---|
| 190 | (*firstiter)->getPositionAtStep(step),
|
---|
| 191 | (*seconditer)->getPositionAtStep(step));
|
---|
| 192 | }
|
---|
| 193 | }
|
---|
| 194 | }
|
---|