[bcf653] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
[0aa122] | 4 | * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
|
---|
[94d5ac6] | 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/>.
|
---|
[bcf653] | 21 | */
|
---|
| 22 |
|
---|
[dfe8ef] | 23 | /*
|
---|
| 24 | * CountBondsUnitTest.cpp
|
---|
| 25 | *
|
---|
| 26 | * Created on: Mar 30, 2010
|
---|
| 27 | * Author: heber
|
---|
| 28 | */
|
---|
| 29 |
|
---|
[bf3817] | 30 | // include config.h
|
---|
| 31 | #ifdef HAVE_CONFIG_H
|
---|
| 32 | #include <config.h>
|
---|
| 33 | #endif
|
---|
[dfe8ef] | 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 <iostream>
|
---|
| 42 | #include <stdio.h>
|
---|
| 43 | #include <cstring>
|
---|
| 44 |
|
---|
[ad011c] | 45 | #include "CodePatterns/Assert.hpp"
|
---|
[4eb4fe] | 46 |
|
---|
[9b5a2c] | 47 | #include "Analysis/analysis_bonds.hpp"
|
---|
[6f0841] | 48 | #include "Atom/atom.hpp"
|
---|
[129204] | 49 | #include "Bond/bond.hpp"
|
---|
[826e8c] | 50 | #include "CodePatterns/Log.hpp"
|
---|
[3bdb6d] | 51 | #include "Element/element.hpp"
|
---|
[42127c] | 52 | #include "Element/periodentafel.hpp"
|
---|
[129204] | 53 | #include "Graph/BondGraph.hpp"
|
---|
[dfe8ef] | 54 | #include "molecule.hpp"
|
---|
[42127c] | 55 | #include "MoleculeListClass.hpp"
|
---|
[5f612ee] | 56 | #include "World.hpp"
|
---|
[f844ef] | 57 |
|
---|
[dfe8ef] | 58 | #include "CountBondsUnitTest.hpp"
|
---|
| 59 |
|
---|
[5f612ee] | 60 | #ifdef HAVE_TESTRUNNER
|
---|
| 61 | #include "UnitTestMain.hpp"
|
---|
| 62 | #endif /*HAVE_TESTRUNNER*/
|
---|
| 63 |
|
---|
[dfe8ef] | 64 | /********************************************** Test classes **************************************/
|
---|
| 65 |
|
---|
| 66 | // Registers the fixture into the 'registry'
|
---|
| 67 | CPPUNIT_TEST_SUITE_REGISTRATION( CountBondsTest );
|
---|
| 68 |
|
---|
| 69 |
|
---|
| 70 | void CountBondsTest::setUp()
|
---|
| 71 | {
|
---|
| 72 | atom *Walker = NULL;
|
---|
| 73 |
|
---|
| 74 | // construct element
|
---|
[4eb4fe] | 75 | hydrogen = World::getInstance().getPeriode()->FindElement(1);
|
---|
| 76 | oxygen = World::getInstance().getPeriode()->FindElement(8);
|
---|
| 77 | CPPUNIT_ASSERT(hydrogen != NULL && "could not find element hydrogen");
|
---|
| 78 | CPPUNIT_ASSERT(oxygen != NULL && "could not find element oxygen");
|
---|
[dfe8ef] | 79 |
|
---|
[826e8c] | 80 | //setVerbosity(3);
|
---|
| 81 |
|
---|
[dfe8ef] | 82 | // construct molecule (water molecule)
|
---|
[5f612ee] | 83 | TestMolecule1 = World::getInstance().createMolecule();
|
---|
[826e8c] | 84 | CPPUNIT_ASSERT(TestMolecule1 != NULL && "could not create second molecule");
|
---|
[5f612ee] | 85 | Walker = World::getInstance().createAtom();
|
---|
[4eb4fe] | 86 | CPPUNIT_ASSERT(Walker != NULL && "could not create atom");
|
---|
[d74077] | 87 | Walker->setType(hydrogen);
|
---|
| 88 | Walker->setPosition(Vector(-0.2418, 0.9350, 0. ));
|
---|
[dfe8ef] | 89 | TestMolecule1->AddAtom(Walker);
|
---|
[5f612ee] | 90 | Walker = World::getInstance().createAtom();
|
---|
[4eb4fe] | 91 | CPPUNIT_ASSERT(Walker != NULL && "could not create atom");
|
---|
[d74077] | 92 | Walker->setType(hydrogen);
|
---|
| 93 | Walker->setPosition(Vector(0.9658, 0., 0. ));
|
---|
[dfe8ef] | 94 | TestMolecule1->AddAtom(Walker);
|
---|
[5f612ee] | 95 | Walker = World::getInstance().createAtom();
|
---|
[4eb4fe] | 96 | CPPUNIT_ASSERT(Walker != NULL && "could not create atom");
|
---|
[d74077] | 97 | Walker->setType(oxygen);
|
---|
| 98 | Walker->setPosition(Vector(0., 0., 0. ));
|
---|
[dfe8ef] | 99 | TestMolecule1->AddAtom(Walker);
|
---|
| 100 |
|
---|
[5f612ee] | 101 | molecules = World::getInstance().getMolecules();
|
---|
[4eb4fe] | 102 | CPPUNIT_ASSERT(molecules != NULL && "could not obtain list of molecules");
|
---|
[5f612ee] | 103 | molecules->insert(TestMolecule1);
|
---|
[dfe8ef] | 104 |
|
---|
[826e8c] | 105 | // check that TestMolecule1 was correctly constructed
|
---|
[a7b761b] | 106 | CPPUNIT_ASSERT_EQUAL( TestMolecule1->getAtomCount(), 3 );
|
---|
[dfe8ef] | 107 |
|
---|
| 108 | // create a small file with table
|
---|
| 109 | BG = new BondGraph(true);
|
---|
[4eb4fe] | 110 | CPPUNIT_ASSERT(BG != NULL && "could not create BondGraph");
|
---|
[dfe8ef] | 111 |
|
---|
| 112 | // construct bond graphs
|
---|
[9317be] | 113 | World::AtomComposite Set1 = TestMolecule1->getAtomSet();
|
---|
[3738f0] | 114 | BG->CreateAdjacency(Set1);
|
---|
| 115 | CPPUNIT_ASSERT( TestMolecule1->getBondCount() != 0);
|
---|
[dfe8ef] | 116 | // TestMolecule1->Output((ofstream *)&cout);
|
---|
[4b5cf8] | 117 | // TestMolecule1->OutputBondsList(std::cout);
|
---|
[dfe8ef] | 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 | {
|
---|
[826e8c] | 133 | CPPUNIT_ASSERT_EQUAL( 2 , CountBondsOfTwo(molecules, hydrogen, oxygen) );
|
---|
[dfe8ef] | 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 | {
|
---|
[826e8c] | 142 | CPPUNIT_ASSERT_EQUAL( 1 , CountBondsOfThree(molecules, hydrogen, oxygen, hydrogen) );
|
---|
[dfe8ef] | 143 | CPPUNIT_ASSERT_EQUAL( 0 , CountBondsOfThree(molecules, oxygen, hydrogen, oxygen) );
|
---|
| 144 | };
|
---|
| 145 |
|
---|
| 146 | /** UnitTest for CountBondsTest::HydrogenBridgeBondsTest().
|
---|
| 147 | */
|
---|
| 148 | void CountBondsTest::HydrogenBridgeBondsTest()
|
---|
| 149 | {
|
---|
| 150 | double *mirror = new double[3];
|
---|
[4eb4fe] | 151 | CPPUNIT_ASSERT(mirror != NULL && "could not create array of doubles");
|
---|
[dfe8ef] | 152 | for (int i=0;i<3;i++)
|
---|
| 153 | mirror[i] = -1.;
|
---|
| 154 | Vector Translator;
|
---|
[62c9c0] | 155 |
|
---|
[826e8c] | 156 | // create TestMolecule2 as copy
|
---|
| 157 | TestMolecule2 = TestMolecule1->CopyMolecule();
|
---|
| 158 | molecules->insert(TestMolecule2);
|
---|
| 159 | CPPUNIT_ASSERT_EQUAL( TestMolecule2->getAtomCount(), 3 );
|
---|
[62c9c0] | 160 |
|
---|
[fe238c] | 161 | cout << "Case 1: offset of (3,0,0), hence angles are (104.5, 0, 75.5, 180) < 30." << endl;
|
---|
[8cbb97] | 162 | Translator = Vector(3,0,0);
|
---|
[826e8c] | 163 | TestMolecule1->Translate(&Translator);
|
---|
[bfd839] | 164 | CPPUNIT_ASSERT_EQUAL( 1 , CountHydrogenBridgeBonds(molecules, NULL, NULL) );
|
---|
| 165 | CPPUNIT_ASSERT_EQUAL( 0 , CountHydrogenBridgeBonds(molecules, oxygen, NULL) );
|
---|
[8cbb97] | 166 | Translator = Vector(-3,0,0);
|
---|
[826e8c] | 167 | TestMolecule1->Translate(&Translator);
|
---|
[dfe8ef] | 168 |
|
---|
[fe238c] | 169 | 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] | 170 | Translator = Vector(0,3,0);
|
---|
[826e8c] | 171 | TestMolecule1->Translate(&Translator);
|
---|
[bfd839] | 172 | CPPUNIT_ASSERT_EQUAL( 1 , CountHydrogenBridgeBonds(molecules, NULL, NULL) );
|
---|
[8cbb97] | 173 | Translator = Vector(0,-3,0);
|
---|
[826e8c] | 174 | TestMolecule1->Translate(&Translator);
|
---|
[dfe8ef] | 175 |
|
---|
[fe238c] | 176 | cout << "Case 3: offset of (0,-3,0) and mirror, hence angle are (165.5, 90, 165.5, 90) > 30." << endl;
|
---|
[8cbb97] | 177 | Translator = Vector(0,-3,0);
|
---|
[826e8c] | 178 | TestMolecule1->Scale((const double ** const)&mirror);
|
---|
| 179 | TestMolecule1->Translate(&Translator);
|
---|
[bfd839] | 180 | CPPUNIT_ASSERT_EQUAL( 0 , CountHydrogenBridgeBonds(molecules, NULL, NULL) );
|
---|
[8cbb97] | 181 | Translator = Vector(0,3,0);
|
---|
[826e8c] | 182 | TestMolecule1->Translate(&Translator);
|
---|
| 183 | TestMolecule1->Scale((const double ** const)&mirror);
|
---|
[dfe8ef] | 184 |
|
---|
[fe238c] | 185 | cout << "Case 4: offset of (2,1,0), hence angle are (78, 26.6, 102, 153.4) < 30." << endl;
|
---|
[8cbb97] | 186 | Translator = Vector(2,1,0);
|
---|
[826e8c] | 187 | TestMolecule1->Translate(&Translator);
|
---|
[bfd839] | 188 | CPPUNIT_ASSERT_EQUAL( 1 , CountHydrogenBridgeBonds(molecules, NULL, NULL) );
|
---|
[8cbb97] | 189 | Translator = Vector(-2,-1,0);
|
---|
[826e8c] | 190 | TestMolecule1->Translate(&Translator);
|
---|
[dfe8ef] | 191 |
|
---|
[fe238c] | 192 | cout << "Case 5: offset of (0,0,3), hence angle are (90, 90, 90, 90) > 30." << endl;
|
---|
[8cbb97] | 193 | Translator = Vector(0,0,3);
|
---|
[826e8c] | 194 | TestMolecule1->Translate(&Translator);
|
---|
[bfd839] | 195 | CPPUNIT_ASSERT_EQUAL( 0 , CountHydrogenBridgeBonds(molecules, NULL, NULL) );
|
---|
[8cbb97] | 196 | Translator = Vector(0,0,-3);
|
---|
[826e8c] | 197 | TestMolecule1->Translate(&Translator);
|
---|
[dfe8ef] | 198 |
|
---|
[fe238c] | 199 | cout << "Case 6: offset of (-3,0,0) and mirror, hence angle are (75.5, 180, 104.5, 180) > 30." << endl;
|
---|
[8cbb97] | 200 | Translator = Vector(-3,0,0);
|
---|
[826e8c] | 201 | TestMolecule1->Scale((const double ** const)&mirror);
|
---|
| 202 | TestMolecule1->Translate(&Translator);
|
---|
[bfd839] | 203 | CPPUNIT_ASSERT_EQUAL( 0 , CountHydrogenBridgeBonds(molecules, NULL, NULL) );
|
---|
[8cbb97] | 204 | Translator = Vector(3,0,0);
|
---|
[826e8c] | 205 | TestMolecule1->Translate(&Translator);
|
---|
| 206 | TestMolecule1->Scale((const double ** const)&mirror);
|
---|
[fe238c] | 207 |
|
---|
| 208 | 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] | 209 | Translator = Vector(3,0,0);
|
---|
[826e8c] | 210 | TestMolecule1->Scale((const double ** const)&mirror);
|
---|
| 211 | TestMolecule1->Translate(&Translator);
|
---|
[bfd839] | 212 | CPPUNIT_ASSERT_EQUAL( 0 , CountHydrogenBridgeBonds(molecules, NULL, NULL) );
|
---|
[8cbb97] | 213 | Translator = Vector(-3,0,0);
|
---|
[826e8c] | 214 | TestMolecule1->Translate(&Translator);
|
---|
| 215 | TestMolecule1->Scale((const double ** const)&mirror);
|
---|
[fe238c] | 216 |
|
---|
| 217 | cout << "Case 8: offset of (0,3,0), hence angle are (14.5, 90, 14.5, 90) < 30, but interfering hydrogens." << endl;
|
---|
[8cbb97] | 218 | Translator = Vector(0,3,0);
|
---|
[826e8c] | 219 | TestMolecule1->Scale((const double ** const)&mirror);
|
---|
| 220 | TestMolecule1->Translate(&Translator);
|
---|
[bfd839] | 221 | CPPUNIT_ASSERT_EQUAL( 0 , CountHydrogenBridgeBonds(molecules, NULL, NULL) );
|
---|
[8cbb97] | 222 | Translator = Vector(0,-3,0);
|
---|
[826e8c] | 223 | TestMolecule1->Translate(&Translator);
|
---|
| 224 | TestMolecule1->Scale((const double ** const)&mirror);
|
---|
[fe238c] | 225 |
|
---|
[5f612ee] | 226 | delete[](mirror);
|
---|
[dfe8ef] | 227 | };
|
---|