- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/unittests/analysisbondsunittest.cpp
r6056f1 r4eb4fe 14 14 #include <iostream> 15 15 #include <stdio.h> 16 #include <cstring> 16 17 18 #include "World.hpp" 19 #include "analysis_bonds.hpp" 20 #include "analysisbondsunittest.hpp" 17 21 #include "atom.hpp" 18 22 #include "bond.hpp" … … 21 25 #include "molecule.hpp" 22 26 #include "periodentafel.hpp" 23 #include "analysisbondsunittest.hpp" 27 28 #ifdef HAVE_TESTRUNNER 29 #include "UnitTestMain.hpp" 30 #endif /*HAVE_TESTRUNNER*/ 24 31 25 32 /********************************************** Test classes **************************************/ … … 33 40 atom *Walker = NULL; 34 41 35 // init private all pointers to zero 36 TestMolecule = NULL; 37 hydrogen = NULL; 38 tafel = NULL; 39 40 // construct element 41 hydrogen = new element; 42 hydrogen->Z = 1; 43 strcpy(hydrogen->name, "hydrogen"); 44 strcpy(hydrogen->symbol, "H"); 45 carbon = new element; 46 carbon->Z = 2; 47 strcpy(carbon->name, "carbon"); 48 strcpy(carbon->symbol, "C"); 49 50 51 // construct periodentafel 52 tafel = new periodentafel; 53 tafel->AddElement(hydrogen); 54 tafel->AddElement(carbon); 42 // get elements 43 hydrogen = World::getInstance().getPeriode()->FindElement(1); 44 carbon = World::getInstance().getPeriode()->FindElement(6); 45 CPPUNIT_ASSERT(hydrogen != NULL && "could not find element hydrogen"); 46 CPPUNIT_ASSERT(carbon != NULL && "could not find element carbon"); 55 47 56 48 // construct molecule (tetraeder of hydrogens) 57 TestMolecule = new molecule(tafel); 58 Walker = new atom(); 49 TestMolecule = World::getInstance().createMolecule(); 50 CPPUNIT_ASSERT(TestMolecule != NULL && "could not create molecule"); 51 Walker = World::getInstance().createAtom(); 52 CPPUNIT_ASSERT(Walker != NULL && "could not create atom"); 59 53 Walker->type = hydrogen; 60 Walker->node->Init(1., 0., 1.);54 *Walker->node = Vector(1.5, 0., 1.5 ); 61 55 TestMolecule->AddAtom(Walker); 62 Walker = new atom(); 56 Walker = World::getInstance().createAtom(); 57 CPPUNIT_ASSERT(Walker != NULL && "could not create atom"); 63 58 Walker->type = hydrogen; 64 Walker->node->Init(0., 1., 1.);59 *Walker->node = Vector(0., 1.5, 1.5 ); 65 60 TestMolecule->AddAtom(Walker); 66 Walker = new atom(); 61 Walker = World::getInstance().createAtom(); 62 CPPUNIT_ASSERT(Walker != NULL && "could not create atom"); 67 63 Walker->type = hydrogen; 68 Walker->node->Init(1., 1., 0. );64 *Walker->node = Vector(1.5, 1.5, 0. ); 69 65 TestMolecule->AddAtom(Walker); 70 Walker = new atom(); 66 Walker = World::getInstance().createAtom(); 67 CPPUNIT_ASSERT(Walker != NULL && "could not create atom"); 71 68 Walker->type = hydrogen; 72 Walker->node->Init(0., 0., 0. ); 69 *Walker->node = Vector(0., 0., 0. ); 70 TestMolecule->AddAtom(Walker); 71 Walker = World::getInstance().createAtom(); 72 CPPUNIT_ASSERT(Walker != NULL && "could not create atom"); 73 Walker->type = carbon; 74 *Walker->node = Vector(0.5, 0.5, 0.5 ); 73 75 TestMolecule->AddAtom(Walker); 74 76 75 77 // check that TestMolecule was correctly constructed 76 CPPUNIT_ASSERT_EQUAL( TestMolecule->AtomCount, 4);78 CPPUNIT_ASSERT_EQUAL( TestMolecule->AtomCount, 5 ); 77 79 78 80 // create a small file with table 79 81 filename = new string("test.dat"); 82 CPPUNIT_ASSERT(filename != NULL && "could not create string"); 80 83 ofstream test(filename->c_str()); 81 test << ".\tH\tC\n"; 82 test << "H\t1.\t1.2\n"; 83 test << "C\t1.2\t1.5\n"; 84 test << ".\tH\tHe\tLi\tBe\tB\tC\n"; 85 test << "H\t1.\t1.\t1.\t1.\t1.\t1.2\n"; 86 test << "He\t1.\t1.\t1.\t1.\t1.\t1.\n"; 87 test << "Li\t1.\t1.\t1.\t1.\t1.\t1.\n"; 88 test << "Be\t1.\t1.\t1.\t1.\t1.\t1.\n"; 89 test << "B\t1.\t1.\t1.\t1.\t1.\t1.\n"; 90 test << "C\t1.2\t1.\t1.\t1.\t1.\t1.5\n"; 91 test.close(); 84 92 BG = new BondGraph(true); 93 CPPUNIT_ASSERT(BG != NULL && "could not create BondGraph"); 94 95 CPPUNIT_ASSERT_EQUAL( true , BG->LoadBondLengthTable(*filename) ); 96 CPPUNIT_ASSERT_EQUAL( 1., BG->GetBondLength(0,0) ); 97 CPPUNIT_ASSERT_EQUAL( 1.2, BG->GetBondLength(0,5) ); 98 CPPUNIT_ASSERT_EQUAL( 1.5, BG->GetBondLength(5,5) ); 99 100 BG->ConstructBondGraph(TestMolecule); 85 101 }; 86 102 … … 94 110 95 111 // remove molecule 96 delete(TestMolecule);112 World::getInstance().destroyMolecule(TestMolecule); 97 113 // note that all the atoms are cleaned by TestMolecule 98 delete(tafel); 99 // note that element is cleaned by periodentafel 114 World::purgeInstance(); 100 115 }; 101 116 102 /** UnitTest for AnalysisBondsTest::LoadBondLengthTable().117 /** UnitTest for GetMaxMinMeanBondCount(). 103 118 */ 104 void AnalysisBondsTest:: BondsTest()119 void AnalysisBondsTest::GetMaxMinMeanBondCountTest() 105 120 { 106 CPPUNIT_ASSERT_EQUAL( true , BG->LoadBondLengthTable(*filename) ); 107 CPPUNIT_ASSERT_EQUAL( 1., BG->GetBondLength(0,0) ); 108 CPPUNIT_ASSERT_EQUAL( 1.2, BG->GetBondLength(0,1) ); 109 CPPUNIT_ASSERT_EQUAL( 1.5, BG->GetBondLength(1,1) ); 110 111 CPPUNIT_ASSERT_EQUAL( true , true ); 121 double Min = 20.; // check that initialization resets these arbitrary values 122 double Mean = 200.; 123 double Max = 1e-6; 124 GetMaxMinMeanBondCount(TestMolecule, Min, Mean, Max); 125 CPPUNIT_ASSERT_EQUAL( 1., Min ); 126 CPPUNIT_ASSERT_EQUAL( 1.6, Mean ); 127 CPPUNIT_ASSERT_EQUAL( 4., Max ); 112 128 113 129 }; 114 130 115 /********************************************** Main routine **************************************/ 131 /** UnitTest for MinMaxBondDistanceBetweenElements(). 132 */ 133 void AnalysisBondsTest::MinMeanMaxBondDistanceBetweenElementsTest() 134 { 135 double Min = 20.; // check that initialization resets these arbitrary values 136 double Mean = 2e+6; 137 double Max = 1e-6; 138 double Min2 = 20.; 139 double Mean2 = 2e+6; 140 double Max2 = 1e-6; 141 const double maxbondlength = sqrt(1.*1. + 1.*1. + .5*.5); 142 const double minbondlength = sqrt(.5*.5 + .5*.5 + .5*.5); 143 const double meanbondlength = (minbondlength+3.*maxbondlength)/4.; 144 // check bond lengths C-H 145 MinMeanMaxBondDistanceBetweenElements(TestMolecule, hydrogen, carbon, Min, Mean, Max); 146 CPPUNIT_ASSERT_EQUAL( minbondlength , Min ); 147 CPPUNIT_ASSERT_EQUAL( meanbondlength , Mean ); 148 CPPUNIT_ASSERT_EQUAL( maxbondlength , Max ); 116 149 117 int main(int argc, char **argv) 118 { 119 // Get the top level suite from the registry 120 CppUnit::Test *suite = CppUnit::TestFactoryRegistry::getRegistry().makeTest(); 150 // check that elements are symmetric, i.e. C-H == H-C 151 MinMeanMaxBondDistanceBetweenElements(TestMolecule, carbon, hydrogen, Min2, Mean2, Max2); 152 CPPUNIT_ASSERT_EQUAL( Min , Min2 ); 153 CPPUNIT_ASSERT_EQUAL( Mean , Mean2 ); 154 CPPUNIT_ASSERT_EQUAL( Max , Max2 ); 121 155 122 // Adds the test to the list of test to run 123 CppUnit::TextUi::TestRunner runner; 124 runner.addTest( suite ); 125 126 // Change the default outputter to a compiler error format outputter 127 runner.setOutputter( new CppUnit::CompilerOutputter( &runner.result(), 128 std::cerr ) ); 129 // Run the tests. 130 bool wasSucessful = runner.run(); 131 132 // Return error code 1 if the one of test failed. 133 return wasSucessful ? 0 : 1; 156 // check no bond case (no bonds H-H in system!) 157 MinMeanMaxBondDistanceBetweenElements(TestMolecule, hydrogen, hydrogen, Min, Mean, Max); 158 CPPUNIT_ASSERT_EQUAL( 0. , Min ); 159 CPPUNIT_ASSERT_EQUAL( 0. , Mean ); 160 CPPUNIT_ASSERT_EQUAL( 0. , Max ); 134 161 };
Note:
See TracChangeset
for help on using the changeset viewer.