source: src/Graph/unittests/BondGraphUnitTest.cpp@ 1ac24b

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since 1ac24b was 1ac24b, checked in by Frederik Heber <heber@…>, 13 years ago

Added unit test function SerializationTest to BondGraphUnitTest.

  • Property mode set to 100644
File size: 5.8 KB
RevLine 
[bcf653]1/*
2 * Project: MoleCuilder
3 * Description: creates and alters molecular systems
4 * Copyright (C) 2010 University of Bonn. All rights reserved.
5 * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
6 */
7
[b70721]8/*
[f844ef]9 * BondGraphUnitTest.cpp
[b70721]10 *
11 * Created on: Oct 29, 2009
12 * Author: heber
13 */
14
[bf3817]15// include config.h
16#ifdef HAVE_CONFIG_H
17#include <config.h>
18#endif
19
[b70721]20using namespace std;
21
22#include <cppunit/CompilerOutputter.h>
23#include <cppunit/extensions/TestFactoryRegistry.h>
24#include <cppunit/ui/text/TestRunner.h>
25
[1ac24b]26// include headers that implement a archive in simple text format
27#include <boost/archive/text_oarchive.hpp>
28#include <boost/archive/text_iarchive.hpp>
29
[b70721]30#include <iostream>
31#include <stdio.h>
[49e1ae]32#include <cstring>
[b70721]33
[ad011c]34#include "CodePatterns/Assert.hpp"
[4eb4fe]35
[b70721]36#include "atom.hpp"
[129204]37#include "Bond/bond.hpp"
[ad011c]38#include "CodePatterns/Log.hpp"
[3bdb6d]39#include "Element/element.hpp"
[129204]40#include "Graph/BondGraph.hpp"
[b70721]41#include "molecule.hpp"
[3bdb6d]42#include "Element/periodentafel.hpp"
[e6fdbe]43#include "World.hpp"
[073a9e4]44#include "WorldTime.hpp"
[b70721]45
[f844ef]46#include "BondGraphUnitTest.hpp"
47
[9b6b2f]48#ifdef HAVE_TESTRUNNER
49#include "UnitTestMain.hpp"
50#endif /*HAVE_TESTRUNNER*/
[b70721]51
52/********************************************** Test classes **************************************/
53
54// Registers the fixture into the 'registry'
55CPPUNIT_TEST_SUITE_REGISTRATION( BondGraphTest );
56
57
58void BondGraphTest::setUp()
59{
60 atom *Walker = NULL;
61
62 // construct element
[4eb4fe]63 hydrogen = World::getInstance().getPeriode()->FindElement(1);
64 carbon = World::getInstance().getPeriode()->FindElement(6);
65 CPPUNIT_ASSERT(hydrogen != NULL && "could not find element hydrogen");
66 CPPUNIT_ASSERT(carbon != NULL && "could not find element carbon");
[b70721]67
68 // construct molecule (tetraeder of hydrogens)
[23b547]69 TestMolecule = World::getInstance().createMolecule();
[4eb4fe]70 CPPUNIT_ASSERT(TestMolecule != NULL && "could not create molecule");
[23b547]71 Walker = World::getInstance().createAtom();
[4eb4fe]72 CPPUNIT_ASSERT(Walker != NULL && "could not create atom");
[d74077]73 Walker->setType(carbon);
74 Walker->setPosition(Vector(1., 0., 1. ));
[b70721]75 TestMolecule->AddAtom(Walker);
[8cbb97]76
[23b547]77 Walker = World::getInstance().createAtom();
[4eb4fe]78 CPPUNIT_ASSERT(Walker != NULL && "could not create atom");
[d74077]79 Walker->setType(carbon);
80 Walker->setPosition(Vector(0., 1., 1. ));
[b70721]81 TestMolecule->AddAtom(Walker);
[8cbb97]82
[23b547]83 Walker = World::getInstance().createAtom();
[4eb4fe]84 CPPUNIT_ASSERT(Walker != NULL && "could not create atom");
[d74077]85 Walker->setType(carbon);
86 Walker->setPosition(Vector(1., 1., 0. ));
[b70721]87 TestMolecule->AddAtom(Walker);
[8cbb97]88
[23b547]89 Walker = World::getInstance().createAtom();
[4eb4fe]90 CPPUNIT_ASSERT(Walker != NULL && "could not create atom");
[d74077]91 Walker->setType(carbon);
92 Walker->setPosition(Vector(0., 0., 0. ));
[b70721]93 TestMolecule->AddAtom(Walker);
94
95 // check that TestMolecule was correctly constructed
[ea7176]96 CPPUNIT_ASSERT_EQUAL( TestMolecule->getAtomCount(), 4 );
[b70721]97
[4e855e]98 // create stream with table
[4eb4fe]99 test << ".\tH\tHe\tLi\tBe\tB\tC\n";
100 test << "H\t1.\t1.\t1.\t1.\t1.\t1.2\n";
101 test << "He\t1.\t1.\t1.\t1.\t1.\t1.\n";
102 test << "Li\t1.\t1.\t1.\t1.\t1.\t1.\n";
103 test << "Be\t1.\t1.\t1.\t1.\t1.\t1.\n";
104 test << "B\t1.\t1.\t1.\t1.\t1.\t1.\n";
105 test << "C\t1.2\t1.\t1.\t1.\t1.\t1.5\n";
[4e855e]106 // created bad stream (i.e. non-present file)
107 dummy.setstate(ios::eofbit);
108 CPPUNIT_ASSERT(dummy.eof());
[b70721]109 BG = new BondGraph(true);
[4eb4fe]110 CPPUNIT_ASSERT(BG != NULL && "could not create BondGraph");
[b70721]111};
112
113
114void BondGraphTest::tearDown()
115{
116 // remove the file
117 delete(BG);
118
119 // remove molecule
[23b547]120 World::getInstance().destroyMolecule(TestMolecule);
[a1510d]121 // note that all the atoms, molecules, the tafel and the elements
122 // are all cleaned when the world is destroyed
[23b547]123 World::purgeInstance();
[e6fdbe]124 logger::purgeInstance();
[b70721]125};
126
[9879f6]127/** Tests whether setup worked.
128 */
129void BondGraphTest::SetupTest()
130{
131 CPPUNIT_ASSERT_EQUAL (false, TestMolecule->empty());
132 CPPUNIT_ASSERT_EQUAL ((size_t)4, TestMolecule->size());
133};
134
[b70721]135/** UnitTest for BondGraphTest::LoadBondLengthTable().
136 */
137void BondGraphTest::LoadTableTest()
138{
[4e855e]139 CPPUNIT_ASSERT_EQUAL( true , BG->LoadBondLengthTable(test) );
[b70721]140 CPPUNIT_ASSERT_EQUAL( 1., BG->GetBondLength(0,0) );
[4eb4fe]141 CPPUNIT_ASSERT_EQUAL( 1.2, BG->GetBondLength(0,5) );
142 CPPUNIT_ASSERT_EQUAL( 1.5, BG->GetBondLength(5,5) );
[b70721]143};
144
[3738f0]145/** UnitTest for BondGraphTest::CreateAdjacency().
[b70721]146 */
[e5ad5c]147void BondGraphTest::ConstructGraphFromTableTest()
[b70721]148{
[9879f6]149 molecule::iterator Walker = TestMolecule->begin();
150 molecule::iterator Runner = TestMolecule->begin();
151 Runner++;
[4e855e]152 CPPUNIT_ASSERT_EQUAL( true , BG->LoadBondLengthTable(test) );
[3738f0]153 molecule::atomVector Set = TestMolecule->getAtomSet();
154 BG->CreateAdjacency(Set);
155 CPPUNIT_ASSERT( TestMolecule->getBondCount() != 0);
[073a9e4]156 CPPUNIT_ASSERT_EQUAL( true , (*Walker)->IsBondedTo(WorldTime::getTime(), (*Runner)) );
[b70721]157};
158
[3738f0]159/** UnitTest for BondGraphTest::CreateAdjacency().
[e5ad5c]160 */
161void BondGraphTest::ConstructGraphFromCovalentRadiiTest()
162{
[a7b761b]163
[4e855e]164 CPPUNIT_ASSERT_EQUAL( false , BG->LoadBondLengthTable(dummy) );
[3738f0]165 molecule::atomVector Set = TestMolecule->getAtomSet();
166 BG->CreateAdjacency(Set);
167 CPPUNIT_ASSERT( TestMolecule->getBondCount() != 0);
[a7b761b]168
169 // this cannot be assured using dynamic IDs
170 //CPPUNIT_ASSERT_EQUAL( true , Walker->IsBondedTo(Runner) );
[e5ad5c]171};
172
[9b6663]173/** UnitTest for operator==()
174 */
175void BondGraphTest::EqualityTest()
176{
177 // compare to self
178 CPPUNIT_ASSERT( *BG == *BG );
179
180 // create other instance
181 BondGraph *BG2 = new BondGraph(true);
182 CPPUNIT_ASSERT( *BG == *BG2 );
183 BG2->IsAngstroem = false;
184 CPPUNIT_ASSERT( *BG != *BG2 );
185 delete BG2;
186};
187
[1ac24b]188/** UnitTest for serialization
189 */
190void BondGraphTest::SerializationTest()
191{
192 // write element to stream
193 std::stringstream stream;
194 boost::archive::text_oarchive oa(stream);
195 oa << BG;
196
197 std::cout << "Contents of archive is " << stream.str() << std::endl;
198
199 // create and open an archive for input
200 boost::archive::text_iarchive ia(stream);
201 // read class state from archive
202 BondGraph *BG2;
203
204 ia >> BG2;
205
206 CPPUNIT_ASSERT (*BG == *BG2);
207
208 delete BG2;
209};
210
Note: See TracBrowser for help on using the repository browser.