[31bd9c] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
| 4 | * Copyright (C) 2014 Frederik Heber. All rights reserved.
|
---|
| 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/>.
|
---|
| 21 | */
|
---|
| 22 |
|
---|
| 23 | /*
|
---|
| 24 | * IonUnitTest.cpp
|
---|
| 25 | *
|
---|
| 26 | * Created on: Mar 10, 2014
|
---|
| 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 "CodePatterns/Assert.hpp"
|
---|
| 42 |
|
---|
| 43 | #include <sstream>
|
---|
| 44 |
|
---|
| 45 | #include "Element/ion.hpp"
|
---|
| 46 |
|
---|
| 47 | // include headers that implement a archive in simple text format
|
---|
| 48 | #include <boost/archive/text_oarchive.hpp>
|
---|
| 49 | #include <boost/archive/text_iarchive.hpp>
|
---|
| 50 |
|
---|
| 51 | #include "IonUnitTest.hpp"
|
---|
| 52 |
|
---|
| 53 | #ifdef HAVE_TESTRUNNER
|
---|
| 54 | #include "UnitTestMain.hpp"
|
---|
| 55 | #endif /*HAVE_TESTRUNNER*/
|
---|
| 56 |
|
---|
| 57 | /********************************************** Test classes **************************************/
|
---|
| 58 |
|
---|
| 59 | // Registers the fixture into the 'registry'
|
---|
| 60 | CPPUNIT_TEST_SUITE_REGISTRATION( IonTest );
|
---|
| 61 |
|
---|
| 62 |
|
---|
| 63 | void IonTest::setUp()
|
---|
| 64 | {
|
---|
| 65 | // failing asserts should be thrown
|
---|
| 66 | ASSERT_DO(Assert::Throw);
|
---|
| 67 |
|
---|
| 68 | testelement = new element();
|
---|
| 69 | testelement->setSymbol("H");
|
---|
| 70 | testelement->Z = 1;
|
---|
| 71 | testelement->Valence = +1.;
|
---|
| 72 | testelement->NoValenceOrbitals = +1.;
|
---|
| 73 | // create H+
|
---|
| 74 | testion = new ion(*testelement, +1);
|
---|
| 75 | };
|
---|
| 76 |
|
---|
| 77 |
|
---|
| 78 | void IonTest::tearDown()
|
---|
| 79 | {
|
---|
| 80 | delete testelement;
|
---|
| 81 | delete testion;
|
---|
| 82 | };
|
---|
| 83 |
|
---|
| 84 | /** Test whether creations has correct asserts
|
---|
| 85 | *
|
---|
| 86 | */
|
---|
| 87 | void IonTest::CreationTest()
|
---|
| 88 | {
|
---|
| 89 | ion *otherion = NULL;
|
---|
| 90 |
|
---|
| 91 | // check for zero ionization
|
---|
| 92 | #ifndef NDEBUG
|
---|
| 93 | std::cout << "The following assertion is expected and does not mean a failure of the test." << std::endl;
|
---|
| 94 | CPPUNIT_ASSERT_THROW(otherion = new ion(testelement, 0), Assert::AssertionFailure);
|
---|
| 95 | #endif
|
---|
| 96 |
|
---|
| 97 | // check for ionization exceeding valence
|
---|
| 98 | #ifndef NDEBUG
|
---|
| 99 | std::cout << "The following assertion is expected and does not mean a failure of the test." << std::endl;
|
---|
| 100 | CPPUNIT_ASSERT_THROW(otherion = new ion(testelement, +2), Assert::AssertionFailure);
|
---|
| 101 | #endif
|
---|
| 102 | }
|
---|
| 103 |
|
---|
| 104 | /** Test whether assignment works
|
---|
| 105 | *
|
---|
| 106 | */
|
---|
| 107 | void IonTest::AssignmentTest()
|
---|
| 108 | {
|
---|
| 109 | ion * otherion = new ion(testelement, -1);
|
---|
| 110 | ion * const backup = otherion;
|
---|
| 111 | CPPUNIT_ASSERT( otherion != testion );
|
---|
| 112 | otherion = testion;
|
---|
| 113 | CPPUNIT_ASSERT( otherion == testion );
|
---|
| 114 | otherion = backup;
|
---|
| 115 | *otherion = *testion;
|
---|
| 116 | CPPUNIT_ASSERT( *otherion == *testion );
|
---|
| 117 | delete backup;
|
---|
| 118 |
|
---|
| 119 | otherion = new ion(*testion);
|
---|
| 120 | CPPUNIT_ASSERT( otherion != testion );
|
---|
| 121 | CPPUNIT_ASSERT( *otherion == *testion );
|
---|
| 122 | delete otherion;
|
---|
| 123 | }
|
---|
| 124 |
|
---|
| 125 | /** Test whether the getters are working.
|
---|
| 126 | *
|
---|
| 127 | */
|
---|
| 128 | void IonTest::GetterTest()
|
---|
| 129 | {
|
---|
| 130 | CPPUNIT_ASSERT_EQUAL( (atomId_t)0, testion->getAtomicNumber() );
|
---|
| 131 | CPPUNIT_ASSERT_EQUAL( 0., testion->getValence() );
|
---|
| 132 | CPPUNIT_ASSERT_EQUAL( +1., testion->getCharge() );
|
---|
| 133 |
|
---|
| 134 | ion * newion = new ion(testelement, -1);
|
---|
| 135 | CPPUNIT_ASSERT_EQUAL( (atomId_t)2, newion->getAtomicNumber() );
|
---|
| 136 | CPPUNIT_ASSERT_EQUAL( 2, newion->getNoValenceOrbitals() );
|
---|
| 137 | CPPUNIT_ASSERT_EQUAL( -1., newion->getCharge() );
|
---|
| 138 | delete newion;
|
---|
| 139 | }
|
---|
| 140 |
|
---|
| 141 | /** Unit test for operator==()
|
---|
| 142 | */
|
---|
| 143 | void IonTest::ComparisonTest()
|
---|
| 144 | {
|
---|
| 145 | {
|
---|
| 146 | ion * newion = new ion(testelement, -1);
|
---|
| 147 | CPPUNIT_ASSERT( *testion != *newion );
|
---|
| 148 | delete newion;
|
---|
| 149 | }
|
---|
| 150 |
|
---|
| 151 | {
|
---|
| 152 | ion * newion = new ion(testelement, +1);
|
---|
| 153 | CPPUNIT_ASSERT( *testion == *newion );
|
---|
| 154 | delete newion;
|
---|
| 155 | }
|
---|
| 156 | }
|
---|
| 157 |
|
---|
| 158 | /** Tests whether serialization of the class works
|
---|
| 159 | */
|
---|
| 160 | void IonTest::SerializeTest()
|
---|
| 161 | {
|
---|
| 162 | const std::string he("He");
|
---|
| 163 | const std::string helium("Helium");
|
---|
| 164 | testion->setSymbol(he);
|
---|
| 165 | testion->setName(helium);
|
---|
| 166 |
|
---|
| 167 | CPPUNIT_ASSERT_EQUAL ( he, testion->getSymbol() );
|
---|
| 168 | CPPUNIT_ASSERT_EQUAL( helium, testion->getName() );
|
---|
| 169 |
|
---|
| 170 | // write ion to stream
|
---|
| 171 | std::stringstream stream;
|
---|
| 172 | boost::archive::text_oarchive oa(stream);
|
---|
| 173 | oa << testion;
|
---|
| 174 |
|
---|
| 175 | std::cout << "Contents of archive is " << stream.str() << std::endl;
|
---|
| 176 |
|
---|
| 177 | // create and open an archive for input
|
---|
| 178 | boost::archive::text_iarchive ia(stream);
|
---|
| 179 | // read class state from archive
|
---|
| 180 | ion * newion = NULL;
|
---|
| 181 |
|
---|
| 182 | ia >> newion;
|
---|
| 183 |
|
---|
| 184 | CPPUNIT_ASSERT_EQUAL( he, newion->getSymbol() );
|
---|
| 185 | CPPUNIT_ASSERT_EQUAL( helium, newion->getName() );
|
---|
| 186 |
|
---|
| 187 | CPPUNIT_ASSERT (*testion == *newion);
|
---|
| 188 |
|
---|
| 189 | delete newion;
|
---|
| 190 | };
|
---|