[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"
|
---|
[5f612ee] | 55 | #include "World.hpp"
|
---|
[f844ef] | 56 |
|
---|
[dfe8ef] | 57 | #include "CountBondsUnitTest.hpp"
|
---|
| 58 |
|
---|
[5f612ee] | 59 | #ifdef HAVE_TESTRUNNER
|
---|
| 60 | #include "UnitTestMain.hpp"
|
---|
| 61 | #endif /*HAVE_TESTRUNNER*/
|
---|
| 62 |
|
---|
[dfe8ef] | 63 | /********************************************** Test classes **************************************/
|
---|
| 64 |
|
---|
| 65 | // Registers the fixture into the 'registry'
|
---|
| 66 | CPPUNIT_TEST_SUITE_REGISTRATION( CountBondsTest );
|
---|
| 67 |
|
---|
| 68 |
|
---|
| 69 | void CountBondsTest::setUp()
|
---|
| 70 | {
|
---|
| 71 | atom *Walker = NULL;
|
---|
| 72 |
|
---|
| 73 | // construct element
|
---|
[4eb4fe] | 74 | hydrogen = World::getInstance().getPeriode()->FindElement(1);
|
---|
| 75 | oxygen = World::getInstance().getPeriode()->FindElement(8);
|
---|
| 76 | CPPUNIT_ASSERT(hydrogen != NULL && "could not find element hydrogen");
|
---|
| 77 | CPPUNIT_ASSERT(oxygen != NULL && "could not find element oxygen");
|
---|
[dfe8ef] | 78 |
|
---|
[826e8c] | 79 | //setVerbosity(3);
|
---|
| 80 |
|
---|
[dfe8ef] | 81 | // construct molecule (water molecule)
|
---|
[5f612ee] | 82 | TestMolecule1 = World::getInstance().createMolecule();
|
---|
[826e8c] | 83 | CPPUNIT_ASSERT(TestMolecule1 != 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 | TestMolecule1->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 | TestMolecule1->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 | TestMolecule1->AddAtom(Walker);
|
---|
| 99 |
|
---|
[2bfc5b] | 100 | molecules.push_back(TestMolecule1);
|
---|
[dfe8ef] | 101 |
|
---|
[826e8c] | 102 | // check that TestMolecule1 was correctly constructed
|
---|
[a7b761b] | 103 | CPPUNIT_ASSERT_EQUAL( TestMolecule1->getAtomCount(), 3 );
|
---|
[dfe8ef] | 104 |
|
---|
| 105 | // create a small file with table
|
---|
| 106 | BG = new BondGraph(true);
|
---|
[4eb4fe] | 107 | CPPUNIT_ASSERT(BG != NULL && "could not create BondGraph");
|
---|
[dfe8ef] | 108 |
|
---|
| 109 | // construct bond graphs
|
---|
[9317be] | 110 | World::AtomComposite Set1 = TestMolecule1->getAtomSet();
|
---|
[3738f0] | 111 | BG->CreateAdjacency(Set1);
|
---|
| 112 | CPPUNIT_ASSERT( TestMolecule1->getBondCount() != 0);
|
---|
[dfe8ef] | 113 | // TestMolecule1->Output((ofstream *)&cout);
|
---|
[4b5cf8] | 114 | // TestMolecule1->OutputBondsList(std::cout);
|
---|
[dfe8ef] | 115 | };
|
---|
| 116 |
|
---|
| 117 |
|
---|
| 118 | void CountBondsTest::tearDown()
|
---|
| 119 | {
|
---|
| 120 | // remove the file
|
---|
| 121 | delete(BG);
|
---|
| 122 |
|
---|
[2bfc5b] | 123 | molecules.clear();
|
---|
| 124 |
|
---|
[5f612ee] | 125 | World::purgeInstance();
|
---|
[dfe8ef] | 126 | };
|
---|
| 127 |
|
---|
| 128 | /** UnitTest for CountBondsTest::BondsOfTwoTest().
|
---|
| 129 | */
|
---|
| 130 | void CountBondsTest::BondsOfTwoTest()
|
---|
| 131 | {
|
---|
[826e8c] | 132 | CPPUNIT_ASSERT_EQUAL( 2 , CountBondsOfTwo(molecules, hydrogen, oxygen) );
|
---|
[dfe8ef] | 133 | CPPUNIT_ASSERT_EQUAL( 0 , CountBondsOfTwo(molecules, hydrogen, hydrogen) );
|
---|
| 134 | CPPUNIT_ASSERT_EQUAL( 0 , CountBondsOfTwo(molecules, oxygen, oxygen) );
|
---|
| 135 | };
|
---|
| 136 |
|
---|
| 137 | /** UnitTest for CountBondsTest::BondsOfThreeTest().
|
---|
| 138 | */
|
---|
| 139 | void CountBondsTest::BondsOfThreeTest()
|
---|
| 140 | {
|
---|
[826e8c] | 141 | CPPUNIT_ASSERT_EQUAL( 1 , CountBondsOfThree(molecules, hydrogen, oxygen, hydrogen) );
|
---|
[dfe8ef] | 142 | CPPUNIT_ASSERT_EQUAL( 0 , CountBondsOfThree(molecules, oxygen, hydrogen, oxygen) );
|
---|
| 143 | };
|
---|
| 144 |
|
---|
| 145 | /** UnitTest for CountBondsTest::HydrogenBridgeBondsTest().
|
---|
| 146 | */
|
---|
| 147 | void CountBondsTest::HydrogenBridgeBondsTest()
|
---|
| 148 | {
|
---|
[833b15] | 149 | double mirror[3];
|
---|
[4eb4fe] | 150 | CPPUNIT_ASSERT(mirror != NULL && "could not create array of doubles");
|
---|
[dfe8ef] | 151 | for (int i=0;i<3;i++)
|
---|
| 152 | mirror[i] = -1.;
|
---|
| 153 | Vector Translator;
|
---|
[62c9c0] | 154 |
|
---|
[826e8c] | 155 | // create TestMolecule2 as copy
|
---|
| 156 | TestMolecule2 = TestMolecule1->CopyMolecule();
|
---|
[2bfc5b] | 157 | molecules.push_back(TestMolecule2);
|
---|
[826e8c] | 158 | CPPUNIT_ASSERT_EQUAL( TestMolecule2->getAtomCount(), 3 );
|
---|
[62c9c0] | 159 |
|
---|
[fe238c] | 160 | cout << "Case 1: offset of (3,0,0), hence angles are (104.5, 0, 75.5, 180) < 30." << endl;
|
---|
[8cbb97] | 161 | Translator = Vector(3,0,0);
|
---|
[833b15] | 162 | TestMolecule1->Translate(Translator);
|
---|
[bfd839] | 163 | CPPUNIT_ASSERT_EQUAL( 1 , CountHydrogenBridgeBonds(molecules, NULL, NULL) );
|
---|
| 164 | CPPUNIT_ASSERT_EQUAL( 0 , CountHydrogenBridgeBonds(molecules, oxygen, NULL) );
|
---|
[8cbb97] | 165 | Translator = Vector(-3,0,0);
|
---|
[833b15] | 166 | TestMolecule1->Translate(Translator);
|
---|
[dfe8ef] | 167 |
|
---|
[fe238c] | 168 | 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] | 169 | Translator = Vector(0,3,0);
|
---|
[833b15] | 170 | TestMolecule1->Translate(Translator);
|
---|
[bfd839] | 171 | CPPUNIT_ASSERT_EQUAL( 1 , CountHydrogenBridgeBonds(molecules, NULL, NULL) );
|
---|
[8cbb97] | 172 | Translator = Vector(0,-3,0);
|
---|
[833b15] | 173 | TestMolecule1->Translate(Translator);
|
---|
[dfe8ef] | 174 |
|
---|
[fe238c] | 175 | cout << "Case 3: offset of (0,-3,0) and mirror, hence angle are (165.5, 90, 165.5, 90) > 30." << endl;
|
---|
[8cbb97] | 176 | Translator = Vector(0,-3,0);
|
---|
[833b15] | 177 | TestMolecule1->Scale(&mirror[0]);
|
---|
| 178 | TestMolecule1->Translate(Translator);
|
---|
[bfd839] | 179 | CPPUNIT_ASSERT_EQUAL( 0 , CountHydrogenBridgeBonds(molecules, NULL, NULL) );
|
---|
[8cbb97] | 180 | Translator = Vector(0,3,0);
|
---|
[833b15] | 181 | TestMolecule1->Translate(Translator);
|
---|
| 182 | TestMolecule1->Scale(&mirror[0]);
|
---|
[dfe8ef] | 183 |
|
---|
[fe238c] | 184 | cout << "Case 4: offset of (2,1,0), hence angle are (78, 26.6, 102, 153.4) < 30." << endl;
|
---|
[8cbb97] | 185 | Translator = Vector(2,1,0);
|
---|
[833b15] | 186 | TestMolecule1->Translate(Translator);
|
---|
[bfd839] | 187 | CPPUNIT_ASSERT_EQUAL( 1 , CountHydrogenBridgeBonds(molecules, NULL, NULL) );
|
---|
[8cbb97] | 188 | Translator = Vector(-2,-1,0);
|
---|
[833b15] | 189 | TestMolecule1->Translate(Translator);
|
---|
[dfe8ef] | 190 |
|
---|
[fe238c] | 191 | cout << "Case 5: offset of (0,0,3), hence angle are (90, 90, 90, 90) > 30." << endl;
|
---|
[8cbb97] | 192 | Translator = Vector(0,0,3);
|
---|
[833b15] | 193 | TestMolecule1->Translate(Translator);
|
---|
[bfd839] | 194 | CPPUNIT_ASSERT_EQUAL( 0 , CountHydrogenBridgeBonds(molecules, NULL, NULL) );
|
---|
[8cbb97] | 195 | Translator = Vector(0,0,-3);
|
---|
[833b15] | 196 | TestMolecule1->Translate(Translator);
|
---|
[dfe8ef] | 197 |
|
---|
[fe238c] | 198 | cout << "Case 6: offset of (-3,0,0) and mirror, hence angle are (75.5, 180, 104.5, 180) > 30." << endl;
|
---|
[8cbb97] | 199 | Translator = Vector(-3,0,0);
|
---|
[833b15] | 200 | TestMolecule1->Scale(&mirror[0]);
|
---|
| 201 | TestMolecule1->Translate(Translator);
|
---|
[bfd839] | 202 | CPPUNIT_ASSERT_EQUAL( 0 , CountHydrogenBridgeBonds(molecules, NULL, NULL) );
|
---|
[8cbb97] | 203 | Translator = Vector(3,0,0);
|
---|
[833b15] | 204 | TestMolecule1->Translate(Translator);
|
---|
| 205 | TestMolecule1->Scale(&mirror[0]);
|
---|
[fe238c] | 206 |
|
---|
| 207 | 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] | 208 | Translator = Vector(3,0,0);
|
---|
[833b15] | 209 | TestMolecule1->Scale(&mirror[0]);
|
---|
| 210 | TestMolecule1->Translate(Translator);
|
---|
[bfd839] | 211 | CPPUNIT_ASSERT_EQUAL( 0 , CountHydrogenBridgeBonds(molecules, NULL, NULL) );
|
---|
[8cbb97] | 212 | Translator = Vector(-3,0,0);
|
---|
[833b15] | 213 | TestMolecule1->Translate(Translator);
|
---|
| 214 | TestMolecule1->Scale(&mirror[0]);
|
---|
[fe238c] | 215 |
|
---|
| 216 | cout << "Case 8: offset of (0,3,0), hence angle are (14.5, 90, 14.5, 90) < 30, but interfering hydrogens." << endl;
|
---|
[8cbb97] | 217 | Translator = Vector(0,3,0);
|
---|
[833b15] | 218 | TestMolecule1->Scale(&mirror[0]);
|
---|
| 219 | TestMolecule1->Translate(Translator);
|
---|
[bfd839] | 220 | CPPUNIT_ASSERT_EQUAL( 0 , CountHydrogenBridgeBonds(molecules, NULL, NULL) );
|
---|
[8cbb97] | 221 | Translator = Vector(0,-3,0);
|
---|
[833b15] | 222 | TestMolecule1->Translate(Translator);
|
---|
| 223 | TestMolecule1->Scale(&mirror[0]);
|
---|
[dfe8ef] | 224 | };
|
---|