| [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 |  | 
|---|
| [dfe8ef] | 8 | /* | 
|---|
|  | 9 | * CountBondsUnitTest.cpp | 
|---|
|  | 10 | * | 
|---|
|  | 11 | *  Created on: Mar 30, 2010 | 
|---|
|  | 12 | *      Author: heber | 
|---|
|  | 13 | */ | 
|---|
|  | 14 |  | 
|---|
| [bf3817] | 15 | // include config.h | 
|---|
|  | 16 | #ifdef HAVE_CONFIG_H | 
|---|
|  | 17 | #include <config.h> | 
|---|
|  | 18 | #endif | 
|---|
| [dfe8ef] | 19 |  | 
|---|
|  | 20 | using namespace std; | 
|---|
|  | 21 |  | 
|---|
|  | 22 | #include <cppunit/CompilerOutputter.h> | 
|---|
|  | 23 | #include <cppunit/extensions/TestFactoryRegistry.h> | 
|---|
|  | 24 | #include <cppunit/ui/text/TestRunner.h> | 
|---|
|  | 25 |  | 
|---|
|  | 26 | #include <iostream> | 
|---|
|  | 27 | #include <stdio.h> | 
|---|
|  | 28 | #include <cstring> | 
|---|
|  | 29 |  | 
|---|
| [ad011c] | 30 | #include "CodePatterns/Assert.hpp" | 
|---|
| [4eb4fe] | 31 |  | 
|---|
| [388049] | 32 | #include "analysis_bonds.hpp" | 
|---|
| [dfe8ef] | 33 | #include "atom.hpp" | 
|---|
|  | 34 | #include "bond.hpp" | 
|---|
|  | 35 | #include "bondgraph.hpp" | 
|---|
|  | 36 | #include "element.hpp" | 
|---|
|  | 37 | #include "molecule.hpp" | 
|---|
|  | 38 | #include "periodentafel.hpp" | 
|---|
| [5f612ee] | 39 | #include "World.hpp" | 
|---|
| [f844ef] | 40 |  | 
|---|
| [dfe8ef] | 41 | #include "CountBondsUnitTest.hpp" | 
|---|
|  | 42 |  | 
|---|
| [5f612ee] | 43 | #ifdef HAVE_TESTRUNNER | 
|---|
|  | 44 | #include "UnitTestMain.hpp" | 
|---|
|  | 45 | #endif /*HAVE_TESTRUNNER*/ | 
|---|
|  | 46 |  | 
|---|
| [dfe8ef] | 47 | /********************************************** Test classes **************************************/ | 
|---|
|  | 48 |  | 
|---|
|  | 49 | // Registers the fixture into the 'registry' | 
|---|
|  | 50 | CPPUNIT_TEST_SUITE_REGISTRATION( CountBondsTest ); | 
|---|
|  | 51 |  | 
|---|
|  | 52 |  | 
|---|
|  | 53 | void CountBondsTest::setUp() | 
|---|
|  | 54 | { | 
|---|
|  | 55 | atom *Walker = NULL; | 
|---|
|  | 56 |  | 
|---|
|  | 57 | // construct element | 
|---|
| [4eb4fe] | 58 | hydrogen = World::getInstance().getPeriode()->FindElement(1); | 
|---|
|  | 59 | oxygen = World::getInstance().getPeriode()->FindElement(8); | 
|---|
|  | 60 | CPPUNIT_ASSERT(hydrogen != NULL && "could not find element hydrogen"); | 
|---|
|  | 61 | CPPUNIT_ASSERT(oxygen != NULL && "could not find element oxygen"); | 
|---|
| [dfe8ef] | 62 |  | 
|---|
|  | 63 | // construct molecule (water molecule) | 
|---|
| [5f612ee] | 64 | TestMolecule1 = World::getInstance().createMolecule(); | 
|---|
| [4eb4fe] | 65 | CPPUNIT_ASSERT(TestMolecule1 != NULL && "could not create first molecule"); | 
|---|
| [5f612ee] | 66 | Walker = World::getInstance().createAtom(); | 
|---|
| [4eb4fe] | 67 | CPPUNIT_ASSERT(Walker != NULL && "could not create atom"); | 
|---|
| [d74077] | 68 | Walker->setType(hydrogen); | 
|---|
|  | 69 | Walker->setPosition(Vector(-0.2418, 0.9350, 0. )); | 
|---|
| [dfe8ef] | 70 | TestMolecule1->AddAtom(Walker); | 
|---|
| [5f612ee] | 71 | Walker = World::getInstance().createAtom(); | 
|---|
| [4eb4fe] | 72 | CPPUNIT_ASSERT(Walker != NULL && "could not create atom"); | 
|---|
| [d74077] | 73 | Walker->setType(hydrogen); | 
|---|
|  | 74 | Walker->setPosition(Vector(0.9658, 0., 0. )); | 
|---|
| [dfe8ef] | 75 | TestMolecule1->AddAtom(Walker); | 
|---|
| [5f612ee] | 76 | Walker = World::getInstance().createAtom(); | 
|---|
| [4eb4fe] | 77 | CPPUNIT_ASSERT(Walker != NULL && "could not create atom"); | 
|---|
| [d74077] | 78 | Walker->setType(oxygen); | 
|---|
|  | 79 | Walker->setPosition(Vector(0., 0., 0. )); | 
|---|
| [dfe8ef] | 80 | TestMolecule1->AddAtom(Walker); | 
|---|
|  | 81 |  | 
|---|
| [5f612ee] | 82 | TestMolecule2 = World::getInstance().createMolecule(); | 
|---|
| [4eb4fe] | 83 | CPPUNIT_ASSERT(TestMolecule2 != NULL && "could not create second molecule"); | 
|---|
| [5f612ee] | 84 | Walker = World::getInstance().createAtom(); | 
|---|
| [4eb4fe] | 85 | CPPUNIT_ASSERT(Walker != NULL && "could not create atom"); | 
|---|
| [d74077] | 86 | Walker->setType(hydrogen); | 
|---|
|  | 87 | Walker->setPosition(Vector(-0.2418, 0.9350, 0. )); | 
|---|
| [dfe8ef] | 88 | TestMolecule2->AddAtom(Walker); | 
|---|
| [5f612ee] | 89 | Walker = World::getInstance().createAtom(); | 
|---|
| [4eb4fe] | 90 | CPPUNIT_ASSERT(Walker != NULL && "could not create atom"); | 
|---|
| [d74077] | 91 | Walker->setType(hydrogen); | 
|---|
|  | 92 | Walker->setPosition(Vector(0.9658, 0., 0. )); | 
|---|
| [dfe8ef] | 93 | TestMolecule2->AddAtom(Walker); | 
|---|
| [5f612ee] | 94 | Walker = World::getInstance().createAtom(); | 
|---|
| [4eb4fe] | 95 | CPPUNIT_ASSERT(Walker != NULL && "could not create atom"); | 
|---|
| [d74077] | 96 | Walker->setType(oxygen); | 
|---|
|  | 97 | Walker->setPosition(Vector(0., 0., 0. )); | 
|---|
| [dfe8ef] | 98 | TestMolecule2->AddAtom(Walker); | 
|---|
| [5f612ee] | 99 |  | 
|---|
|  | 100 | molecules = World::getInstance().getMolecules(); | 
|---|
| [4eb4fe] | 101 | CPPUNIT_ASSERT(molecules != NULL && "could not obtain list of molecules"); | 
|---|
| [5f612ee] | 102 | molecules->insert(TestMolecule1); | 
|---|
| [dfe8ef] | 103 | molecules->insert(TestMolecule2); | 
|---|
|  | 104 |  | 
|---|
|  | 105 | // check that TestMolecule was correctly constructed | 
|---|
| [a7b761b] | 106 | CPPUNIT_ASSERT_EQUAL( TestMolecule1->getAtomCount(), 3 ); | 
|---|
|  | 107 | CPPUNIT_ASSERT_EQUAL( TestMolecule2->getAtomCount(), 3 ); | 
|---|
| [dfe8ef] | 108 |  | 
|---|
|  | 109 | // create a small file with table | 
|---|
|  | 110 | BG = new BondGraph(true); | 
|---|
| [4eb4fe] | 111 | CPPUNIT_ASSERT(BG != NULL && "could not create BondGraph"); | 
|---|
| [dfe8ef] | 112 |  | 
|---|
|  | 113 | // construct bond graphs | 
|---|
|  | 114 | CPPUNIT_ASSERT_EQUAL( true , BG->ConstructBondGraph(TestMolecule1) ); | 
|---|
|  | 115 | CPPUNIT_ASSERT_EQUAL( true , BG->ConstructBondGraph(TestMolecule2) ); | 
|---|
|  | 116 | //  TestMolecule1->Output((ofstream *)&cout); | 
|---|
|  | 117 | //  TestMolecule1->OutputBondsList(); | 
|---|
|  | 118 | }; | 
|---|
|  | 119 |  | 
|---|
|  | 120 |  | 
|---|
|  | 121 | void CountBondsTest::tearDown() | 
|---|
|  | 122 | { | 
|---|
|  | 123 | // remove the file | 
|---|
|  | 124 | delete(BG); | 
|---|
|  | 125 |  | 
|---|
| [5f612ee] | 126 | World::purgeInstance(); | 
|---|
| [dfe8ef] | 127 | }; | 
|---|
|  | 128 |  | 
|---|
|  | 129 | /** UnitTest for CountBondsTest::BondsOfTwoTest(). | 
|---|
|  | 130 | */ | 
|---|
|  | 131 | void CountBondsTest::BondsOfTwoTest() | 
|---|
|  | 132 | { | 
|---|
|  | 133 | CPPUNIT_ASSERT_EQUAL( 4 , CountBondsOfTwo(molecules, hydrogen, oxygen) ); | 
|---|
|  | 134 | CPPUNIT_ASSERT_EQUAL( 0 , CountBondsOfTwo(molecules, hydrogen, hydrogen) ); | 
|---|
|  | 135 | CPPUNIT_ASSERT_EQUAL( 0 , CountBondsOfTwo(molecules, oxygen, oxygen) ); | 
|---|
|  | 136 | }; | 
|---|
|  | 137 |  | 
|---|
|  | 138 | /** UnitTest for CountBondsTest::BondsOfThreeTest(). | 
|---|
|  | 139 | */ | 
|---|
|  | 140 | void CountBondsTest::BondsOfThreeTest() | 
|---|
|  | 141 | { | 
|---|
|  | 142 | CPPUNIT_ASSERT_EQUAL( 2 , CountBondsOfThree(molecules, hydrogen, oxygen, hydrogen) ); | 
|---|
|  | 143 | CPPUNIT_ASSERT_EQUAL( 0 , CountBondsOfThree(molecules, oxygen, hydrogen, oxygen) ); | 
|---|
|  | 144 | }; | 
|---|
|  | 145 |  | 
|---|
| [62c9c0] | 146 | void OutputTestMolecule(molecule *mol, const char *name) | 
|---|
|  | 147 | { | 
|---|
|  | 148 | ofstream output(name); | 
|---|
|  | 149 | mol->OutputXYZ(&output); | 
|---|
|  | 150 | output.close(); | 
|---|
|  | 151 | } | 
|---|
|  | 152 |  | 
|---|
| [dfe8ef] | 153 | /** UnitTest for CountBondsTest::HydrogenBridgeBondsTest(). | 
|---|
|  | 154 | */ | 
|---|
|  | 155 | void CountBondsTest::HydrogenBridgeBondsTest() | 
|---|
|  | 156 | { | 
|---|
|  | 157 | double *mirror = new double[3]; | 
|---|
| [4eb4fe] | 158 | CPPUNIT_ASSERT(mirror != NULL && "could not create array of doubles"); | 
|---|
| [dfe8ef] | 159 | for (int i=0;i<3;i++) | 
|---|
|  | 160 | mirror[i] = -1.; | 
|---|
|  | 161 | Vector Translator; | 
|---|
| [62c9c0] | 162 |  | 
|---|
|  | 163 | //OutputTestMolecule(TestMolecule1, "testmolecule1.xyz"); | 
|---|
|  | 164 |  | 
|---|
| [fe238c] | 165 | cout << "Case 1: offset of (3,0,0), hence angles are (104.5, 0, 75.5, 180) < 30." << endl; | 
|---|
| [8cbb97] | 166 | Translator  = Vector(3,0,0); | 
|---|
| [dfe8ef] | 167 | TestMolecule2->Translate(&Translator); | 
|---|
| [bfd839] | 168 | CPPUNIT_ASSERT_EQUAL( 1 , CountHydrogenBridgeBonds(molecules, NULL, NULL) ); | 
|---|
|  | 169 | CPPUNIT_ASSERT_EQUAL( 0 , CountHydrogenBridgeBonds(molecules, oxygen, NULL) ); | 
|---|
| [62c9c0] | 170 | //OutputTestMolecule(TestMolecule2, "testmolecule2-1.xyz"); | 
|---|
| [8cbb97] | 171 | Translator = Vector(-3,0,0); | 
|---|
| [dfe8ef] | 172 | TestMolecule2->Translate(&Translator); | 
|---|
|  | 173 |  | 
|---|
| [fe238c] | 174 | cout << "Case 2: offset of (0,3,0), hence angle are (14.5, 165.5, 90) < 30 (only three, because other 90 is missing due to first H01 only fulfilling H-bond criteria)." << endl; | 
|---|
| [8cbb97] | 175 | Translator = Vector(0,3,0); | 
|---|
| [dfe8ef] | 176 | TestMolecule2->Translate(&Translator); | 
|---|
| [bfd839] | 177 | CPPUNIT_ASSERT_EQUAL( 1 , CountHydrogenBridgeBonds(molecules, NULL, NULL) ); | 
|---|
| [62c9c0] | 178 | //OutputTestMolecule(TestMolecule2, "testmolecule2-2.xyz"); | 
|---|
| [8cbb97] | 179 | Translator = Vector(0,-3,0); | 
|---|
| [dfe8ef] | 180 | TestMolecule2->Translate(&Translator); | 
|---|
|  | 181 |  | 
|---|
| [fe238c] | 182 | cout << "Case 3: offset of (0,-3,0) and mirror, hence angle are (165.5, 90, 165.5, 90) > 30." << endl; | 
|---|
| [8cbb97] | 183 | Translator = Vector(0,-3,0); | 
|---|
| [dfe8ef] | 184 | TestMolecule2->Scale((const double ** const)&mirror); | 
|---|
|  | 185 | TestMolecule2->Translate(&Translator); | 
|---|
| [bfd839] | 186 | CPPUNIT_ASSERT_EQUAL( 0 , CountHydrogenBridgeBonds(molecules, NULL, NULL) ); | 
|---|
| [62c9c0] | 187 | //OutputTestMolecule(TestMolecule2, "testmolecule2-3.xyz"); | 
|---|
| [8cbb97] | 188 | Translator = Vector(0,3,0); | 
|---|
| [dfe8ef] | 189 | TestMolecule2->Translate(&Translator); | 
|---|
|  | 190 | TestMolecule2->Scale((const double ** const)&mirror); | 
|---|
|  | 191 |  | 
|---|
| [fe238c] | 192 | cout << "Case 4: offset of (2,1,0), hence angle are (78, 26.6, 102, 153.4) < 30." << endl; | 
|---|
| [8cbb97] | 193 | Translator = Vector(2,1,0); | 
|---|
| [dfe8ef] | 194 | TestMolecule2->Translate(&Translator); | 
|---|
| [bfd839] | 195 | CPPUNIT_ASSERT_EQUAL( 1 , CountHydrogenBridgeBonds(molecules, NULL, NULL) ); | 
|---|
| [62c9c0] | 196 | //OutputTestMolecule(TestMolecule2, "testmolecule2-4.xyz"); | 
|---|
| [8cbb97] | 197 | Translator = Vector(-2,-1,0); | 
|---|
| [dfe8ef] | 198 | TestMolecule2->Translate(&Translator); | 
|---|
|  | 199 |  | 
|---|
| [fe238c] | 200 | cout << "Case 5: offset of (0,0,3), hence angle are (90, 90, 90, 90) > 30." << endl; | 
|---|
| [8cbb97] | 201 | Translator = Vector(0,0,3); | 
|---|
| [dfe8ef] | 202 | TestMolecule2->Translate(&Translator); | 
|---|
| [bfd839] | 203 | CPPUNIT_ASSERT_EQUAL( 0 , CountHydrogenBridgeBonds(molecules, NULL, NULL) ); | 
|---|
| [62c9c0] | 204 | //OutputTestMolecule(TestMolecule2, "testmolecule2-5.xyz"); | 
|---|
| [8cbb97] | 205 | Translator = Vector(0,0,-3); | 
|---|
| [dfe8ef] | 206 | TestMolecule2->Translate(&Translator); | 
|---|
|  | 207 |  | 
|---|
| [fe238c] | 208 | cout << "Case 6: offset of (-3,0,0) and mirror, hence angle are (75.5, 180, 104.5, 180) > 30." << endl; | 
|---|
| [8cbb97] | 209 | Translator = Vector(-3,0,0); | 
|---|
| [dfe8ef] | 210 | TestMolecule2->Scale((const double ** const)&mirror); | 
|---|
|  | 211 | TestMolecule2->Translate(&Translator); | 
|---|
| [bfd839] | 212 | CPPUNIT_ASSERT_EQUAL( 0 , CountHydrogenBridgeBonds(molecules, NULL, NULL) ); | 
|---|
| [62c9c0] | 213 | //OutputTestMolecule(TestMolecule2, "testmolecule2-6.xyz"); | 
|---|
| [8cbb97] | 214 | Translator = Vector(3,0,0); | 
|---|
| [dfe8ef] | 215 | TestMolecule2->Translate(&Translator); | 
|---|
|  | 216 | TestMolecule2->Scale((const double ** const)&mirror); | 
|---|
| [fe238c] | 217 |  | 
|---|
|  | 218 | cout << "Case 7: offset of (3,0,0) and mirror, hence angles are (104.5, 0, 104.5, 0) < 30, but interfering hydrogens." << endl; | 
|---|
| [8cbb97] | 219 | Translator = Vector(3,0,0); | 
|---|
| [fe238c] | 220 | TestMolecule2->Scale((const double ** const)&mirror); | 
|---|
|  | 221 | TestMolecule2->Translate(&Translator); | 
|---|
| [bfd839] | 222 | CPPUNIT_ASSERT_EQUAL( 0 , CountHydrogenBridgeBonds(molecules, NULL, NULL) ); | 
|---|
| [fe238c] | 223 | //OutputTestMolecule(TestMolecule2, "testmolecule2-7.xyz"); | 
|---|
| [8cbb97] | 224 | Translator = Vector(-3,0,0); | 
|---|
| [fe238c] | 225 | TestMolecule2->Translate(&Translator); | 
|---|
|  | 226 | TestMolecule2->Scale((const double ** const)&mirror); | 
|---|
|  | 227 |  | 
|---|
|  | 228 | cout << "Case 8: offset of (0,3,0), hence angle are (14.5, 90, 14.5, 90) < 30, but interfering hydrogens." << endl; | 
|---|
| [8cbb97] | 229 | Translator = Vector(0,3,0); | 
|---|
| [fe238c] | 230 | TestMolecule2->Scale((const double ** const)&mirror); | 
|---|
|  | 231 | TestMolecule2->Translate(&Translator); | 
|---|
|  | 232 | //OutputTestMolecule(TestMolecule2, "testmolecule2-8.xyz"); | 
|---|
| [bfd839] | 233 | CPPUNIT_ASSERT_EQUAL( 0 , CountHydrogenBridgeBonds(molecules, NULL, NULL) ); | 
|---|
| [8cbb97] | 234 | Translator = Vector(0,-3,0); | 
|---|
| [fe238c] | 235 | TestMolecule2->Translate(&Translator); | 
|---|
|  | 236 | TestMolecule2->Scale((const double ** const)&mirror); | 
|---|
|  | 237 |  | 
|---|
| [5f612ee] | 238 | delete[](mirror); | 
|---|
| [dfe8ef] | 239 | }; | 
|---|