[d7d022] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
[0aa122] | 4 | * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
|
---|
[94d5ac6] | 5 | *
|
---|
| 6 | *
|
---|
| 7 | * This file is part of MoleCuilder.
|
---|
| 8 | *
|
---|
| 9 | * MoleCuilder is free software: you can redistribute it and/or modify
|
---|
| 10 | * it under the terms of the GNU General Public License as published by
|
---|
| 11 | * the Free Software Foundation, either version 2 of the License, or
|
---|
| 12 | * (at your option) any later version.
|
---|
| 13 | *
|
---|
| 14 | * MoleCuilder is distributed in the hope that it will be useful,
|
---|
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 17 | * GNU General Public License for more details.
|
---|
| 18 | *
|
---|
| 19 | * You should have received a copy of the GNU General Public License
|
---|
| 20 | * along with MoleCuilder. If not, see <http://www.gnu.org/licenses/>.
|
---|
[d7d022] | 21 | */
|
---|
| 22 |
|
---|
| 23 | /*
|
---|
| 24 | * ElementUnitTest.cpp
|
---|
| 25 | *
|
---|
| 26 | * Created on: Oct 29, 2009
|
---|
| 27 | * Author: heber
|
---|
| 28 | */
|
---|
| 29 |
|
---|
| 30 | // include config.h
|
---|
| 31 | #ifdef HAVE_CONFIG_H
|
---|
| 32 | #include <config.h>
|
---|
| 33 | #endif
|
---|
| 34 |
|
---|
| 35 | using namespace std;
|
---|
| 36 |
|
---|
| 37 | #include <cppunit/CompilerOutputter.h>
|
---|
| 38 | #include <cppunit/extensions/TestFactoryRegistry.h>
|
---|
| 39 | #include <cppunit/ui/text/TestRunner.h>
|
---|
| 40 |
|
---|
| 41 | #include <sstream>
|
---|
| 42 |
|
---|
[3bdb6d] | 43 | #include "Element/element.hpp"
|
---|
[d7d022] | 44 |
|
---|
| 45 | // include headers that implement a archive in simple text format
|
---|
| 46 | #include <boost/archive/text_oarchive.hpp>
|
---|
| 47 | #include <boost/archive/text_iarchive.hpp>
|
---|
| 48 |
|
---|
| 49 | #include "ElementUnitTest.hpp"
|
---|
| 50 |
|
---|
| 51 | #ifdef HAVE_TESTRUNNER
|
---|
| 52 | #include "UnitTestMain.hpp"
|
---|
| 53 | #endif /*HAVE_TESTRUNNER*/
|
---|
| 54 |
|
---|
| 55 | /********************************************** Test classes **************************************/
|
---|
| 56 |
|
---|
| 57 | // Registers the fixture into the 'registry'
|
---|
| 58 | CPPUNIT_TEST_SUITE_REGISTRATION( ElementTest );
|
---|
| 59 |
|
---|
| 60 |
|
---|
| 61 | void ElementTest::setUp()
|
---|
| 62 | {
|
---|
| 63 | testelement = new element();
|
---|
| 64 | testelement->setSymbol("H");
|
---|
| 65 | };
|
---|
| 66 |
|
---|
| 67 |
|
---|
| 68 | void ElementTest::tearDown()
|
---|
| 69 | {
|
---|
| 70 | delete testelement;
|
---|
| 71 | };
|
---|
| 72 |
|
---|
| 73 | /** Test whether assignment works
|
---|
| 74 | *
|
---|
| 75 | */
|
---|
| 76 | void ElementTest::AssignmentTest()
|
---|
| 77 | {
|
---|
| 78 | element * otherelement = new element();
|
---|
| 79 | element * const backup = otherelement;
|
---|
| 80 | CPPUNIT_ASSERT( otherelement != testelement );
|
---|
| 81 | otherelement = testelement;
|
---|
| 82 | CPPUNIT_ASSERT( otherelement == testelement );
|
---|
| 83 | otherelement = backup;
|
---|
| 84 | *otherelement = *testelement;
|
---|
| 85 | CPPUNIT_ASSERT( *otherelement == *testelement );
|
---|
| 86 | delete backup;
|
---|
| 87 |
|
---|
| 88 | otherelement = new element(*testelement);
|
---|
| 89 | CPPUNIT_ASSERT( otherelement != testelement );
|
---|
| 90 | CPPUNIT_ASSERT( *otherelement == *testelement );
|
---|
| 91 | delete otherelement;
|
---|
| 92 | }
|
---|
| 93 |
|
---|
| 94 | /** Test whether the getters are working.
|
---|
| 95 | *
|
---|
| 96 | */
|
---|
| 97 | void ElementTest::GetterTest()
|
---|
| 98 | {
|
---|
[ed26ae] | 99 | CPPUNIT_ASSERT_EQUAL( (atomId_t)0, testelement->getAtomicNumber() );
|
---|
[d7d022] | 100 | CPPUNIT_ASSERT_EQUAL( 0., testelement->getMass() );
|
---|
| 101 | const unsigned char * color = testelement->getColor();
|
---|
| 102 | for (size_t i = 0; i < 3; ++i)
|
---|
| 103 | CPPUNIT_ASSERT_EQUAL( (unsigned char)0, color[i] );
|
---|
| 104 | CPPUNIT_ASSERT_EQUAL( 0., testelement->getCovalentRadius() );
|
---|
| 105 | CPPUNIT_ASSERT_EQUAL( 0., testelement->getElectronegativity() );
|
---|
| 106 | CPPUNIT_ASSERT_EQUAL( 0., testelement->getVanDerWaalsRadius() );
|
---|
[37ef6d] | 107 | CPPUNIT_ASSERT_EQUAL( 0., testelement->getCharge() );
|
---|
[d7d022] | 108 | CPPUNIT_ASSERT_EQUAL( 0., testelement->getValence() );
|
---|
| 109 | CPPUNIT_ASSERT_EQUAL( 0, testelement->getNoValenceOrbitals() );
|
---|
| 110 | CPPUNIT_ASSERT_EQUAL( 0, testelement->getNoValenceOrbitals() );
|
---|
| 111 | for (size_t i = 0; i < 3; ++i)
|
---|
[c85c2e] | 112 | CPPUNIT_ASSERT_EQUAL( -1., testelement->getHBondDistance(i) );
|
---|
[d7d022] | 113 | for (size_t i = 0; i < 3; ++i)
|
---|
[c85c2e] | 114 | CPPUNIT_ASSERT_EQUAL( -1., testelement->getHBondAngle(i) );
|
---|
[d7d022] | 115 | }
|
---|
| 116 |
|
---|
| 117 | /** Test whether the setters are working.
|
---|
| 118 | *
|
---|
| 119 | */
|
---|
| 120 | void ElementTest::SetterTest()
|
---|
| 121 | {
|
---|
| 122 | // symbol
|
---|
| 123 | CPPUNIT_ASSERT( testelement->getSymbol() != std::string("He") );
|
---|
| 124 | testelement->setSymbol("He");
|
---|
| 125 | CPPUNIT_ASSERT_EQUAL( std::string("He"), testelement->getSymbol() );
|
---|
| 126 |
|
---|
| 127 | // name
|
---|
| 128 | CPPUNIT_ASSERT( testelement->getName() != std::string("Helium") );
|
---|
| 129 | testelement->setName("Helium");
|
---|
| 130 | CPPUNIT_ASSERT_EQUAL( std::string("Helium"), testelement->getName() );
|
---|
| 131 | }
|
---|
| 132 |
|
---|
| 133 | /** Unit test for operator==()
|
---|
| 134 | */
|
---|
| 135 | void ElementTest::ComparisonTest()
|
---|
| 136 | {
|
---|
| 137 | testelement->setSymbol("He");
|
---|
| 138 | testelement->setName("Helium");
|
---|
| 139 | element * newelement = new element();
|
---|
| 140 | newelement->setSymbol("H");
|
---|
| 141 | newelement->setName("Hydrogen");
|
---|
| 142 |
|
---|
| 143 | CPPUNIT_ASSERT( *testelement != *newelement );
|
---|
| 144 |
|
---|
| 145 | newelement->setSymbol("He");
|
---|
| 146 | newelement->setName("Helium");
|
---|
| 147 |
|
---|
| 148 | CPPUNIT_ASSERT( *testelement == *newelement );
|
---|
| 149 |
|
---|
| 150 | delete newelement;
|
---|
| 151 | }
|
---|
| 152 |
|
---|
| 153 | /** Tests whether serialization of the class works
|
---|
| 154 | */
|
---|
| 155 | void ElementTest::SerializeTest()
|
---|
| 156 | {
|
---|
| 157 | const std::string he("He");
|
---|
| 158 | const std::string helium("Helium");
|
---|
| 159 | testelement->setSymbol(he);
|
---|
| 160 | testelement->setName(helium);
|
---|
| 161 |
|
---|
| 162 | CPPUNIT_ASSERT_EQUAL ( he, testelement->getSymbol() );
|
---|
| 163 | CPPUNIT_ASSERT_EQUAL( helium, testelement->getName() );
|
---|
| 164 |
|
---|
| 165 | // write element to stream
|
---|
| 166 | std::stringstream stream;
|
---|
| 167 | boost::archive::text_oarchive oa(stream);
|
---|
| 168 | oa << testelement;
|
---|
| 169 |
|
---|
| 170 | std::cout << "Contents of archive is " << stream.str() << std::endl;
|
---|
| 171 |
|
---|
| 172 | // create and open an archive for input
|
---|
| 173 | boost::archive::text_iarchive ia(stream);
|
---|
| 174 | // read class state from archive
|
---|
[37ef6d] | 175 | element * newelement = NULL;
|
---|
[d7d022] | 176 |
|
---|
| 177 | ia >> newelement;
|
---|
| 178 |
|
---|
| 179 | CPPUNIT_ASSERT_EQUAL( he, newelement->getSymbol() );
|
---|
| 180 | CPPUNIT_ASSERT_EQUAL( helium, newelement->getName() );
|
---|
| 181 |
|
---|
| 182 | CPPUNIT_ASSERT (*testelement == *newelement);
|
---|
| 183 |
|
---|
| 184 | delete newelement;
|
---|
| 185 | };
|
---|