- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/unittests/analysisbondsunittest.cpp
r4eb4fe r6056f1 14 14 #include <iostream> 15 15 #include <stdio.h> 16 #include <cstring>17 16 18 #include "World.hpp"19 #include "analysis_bonds.hpp"20 #include "analysisbondsunittest.hpp"21 17 #include "atom.hpp" 22 18 #include "bond.hpp" … … 25 21 #include "molecule.hpp" 26 22 #include "periodentafel.hpp" 27 28 #ifdef HAVE_TESTRUNNER 29 #include "UnitTestMain.hpp" 30 #endif /*HAVE_TESTRUNNER*/ 23 #include "analysisbondsunittest.hpp" 31 24 32 25 /********************************************** Test classes **************************************/ … … 40 33 atom *Walker = NULL; 41 34 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"); 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); 47 55 48 56 // construct molecule (tetraeder of hydrogens) 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"); 57 TestMolecule = new molecule(tafel); 58 Walker = new atom(); 53 59 Walker->type = hydrogen; 54 *Walker->node = Vector(1.5, 0., 1.5);60 Walker->node->Init(1., 0., 1. ); 55 61 TestMolecule->AddAtom(Walker); 56 Walker = World::getInstance().createAtom(); 57 CPPUNIT_ASSERT(Walker != NULL && "could not create atom"); 62 Walker = new atom(); 58 63 Walker->type = hydrogen; 59 *Walker->node = Vector(0., 1.5, 1.5);64 Walker->node->Init(0., 1., 1. ); 60 65 TestMolecule->AddAtom(Walker); 61 Walker = World::getInstance().createAtom(); 62 CPPUNIT_ASSERT(Walker != NULL && "could not create atom"); 66 Walker = new atom(); 63 67 Walker->type = hydrogen; 64 *Walker->node = Vector(1.5, 1.5, 0. );68 Walker->node->Init(1., 1., 0. ); 65 69 TestMolecule->AddAtom(Walker); 66 Walker = World::getInstance().createAtom(); 67 CPPUNIT_ASSERT(Walker != NULL && "could not create atom"); 70 Walker = new atom(); 68 71 Walker->type = hydrogen; 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 ); 72 Walker->node->Init(0., 0., 0. ); 75 73 TestMolecule->AddAtom(Walker); 76 74 77 75 // check that TestMolecule was correctly constructed 78 CPPUNIT_ASSERT_EQUAL( TestMolecule->AtomCount, 5);76 CPPUNIT_ASSERT_EQUAL( TestMolecule->AtomCount, 4 ); 79 77 80 78 // create a small file with table 81 79 filename = new string("test.dat"); 82 CPPUNIT_ASSERT(filename != NULL && "could not create string");83 80 ofstream test(filename->c_str()); 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(); 81 test << ".\tH\tC\n"; 82 test << "H\t1.\t1.2\n"; 83 test << "C\t1.2\t1.5\n"; 92 84 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);101 85 }; 102 86 … … 110 94 111 95 // remove molecule 112 World::getInstance().destroyMolecule(TestMolecule);96 delete(TestMolecule); 113 97 // note that all the atoms are cleaned by TestMolecule 114 World::purgeInstance(); 98 delete(tafel); 99 // note that element is cleaned by periodentafel 115 100 }; 116 101 117 /** UnitTest for GetMaxMinMeanBondCount().102 /** UnitTest for AnalysisBondsTest::LoadBondLengthTable(). 118 103 */ 119 void AnalysisBondsTest:: GetMaxMinMeanBondCountTest()104 void AnalysisBondsTest::BondsTest() 120 105 { 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 ); 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 ); 128 112 129 113 }; 130 114 131 /** UnitTest for MinMaxBondDistanceBetweenElements().132 */ 133 void AnalysisBondsTest::MinMeanMaxBondDistanceBetweenElementsTest()115 /********************************************** Main routine **************************************/ 116 117 int main(int argc, char **argv) 134 118 { 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 ); 119 // Get the top level suite from the registry 120 CppUnit::Test *suite = CppUnit::TestFactoryRegistry::getRegistry().makeTest(); 149 121 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 ); 122 // Adds the test to the list of test to run 123 CppUnit::TextUi::TestRunner runner; 124 runner.addTest( suite ); 155 125 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 ); 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; 161 134 };
Note:
See TracChangeset
for help on using the changeset viewer.