1 | /*
|
---|
2 | * Project: MoleCuilder
|
---|
3 | * Description: creates and alters molecular systems
|
---|
4 | * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
|
---|
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/>.
|
---|
21 | */
|
---|
22 |
|
---|
23 | /*
|
---|
24 | * CountBondsUnitTest.cpp
|
---|
25 | *
|
---|
26 | * Created on: Mar 30, 2010
|
---|
27 | * Author: heber
|
---|
28 | */
|
---|
29 |
|
---|
30 | // include config.h
|
---|
31 | #ifdef HAVE_CONFIG_H
|
---|
32 | #include <config.h>
|
---|
33 | #endif
|
---|
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 |
|
---|
45 | #include "CodePatterns/Assert.hpp"
|
---|
46 |
|
---|
47 | #include "Analysis/analysis_bonds.hpp"
|
---|
48 | #include "Atom/atom.hpp"
|
---|
49 | #include "Bond/bond.hpp"
|
---|
50 | #include "CodePatterns/Log.hpp"
|
---|
51 | #include "Element/element.hpp"
|
---|
52 | #include "Element/periodentafel.hpp"
|
---|
53 | #include "Graph/BondGraph.hpp"
|
---|
54 | #include "molecule.hpp"
|
---|
55 | #include "MoleculeListClass.hpp"
|
---|
56 | #include "World.hpp"
|
---|
57 |
|
---|
58 | #include "CountBondsUnitTest.hpp"
|
---|
59 |
|
---|
60 | #ifdef HAVE_TESTRUNNER
|
---|
61 | #include "UnitTestMain.hpp"
|
---|
62 | #endif /*HAVE_TESTRUNNER*/
|
---|
63 |
|
---|
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
|
---|
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");
|
---|
79 |
|
---|
80 | //setVerbosity(3);
|
---|
81 |
|
---|
82 | // construct molecule (water molecule)
|
---|
83 | TestMolecule1 = World::getInstance().createMolecule();
|
---|
84 | CPPUNIT_ASSERT(TestMolecule1 != NULL && "could not create second molecule");
|
---|
85 | Walker = World::getInstance().createAtom();
|
---|
86 | CPPUNIT_ASSERT(Walker != NULL && "could not create atom");
|
---|
87 | Walker->setType(hydrogen);
|
---|
88 | Walker->setPosition(Vector(-0.2418, 0.9350, 0. ));
|
---|
89 | TestMolecule1->AddAtom(Walker);
|
---|
90 | Walker = World::getInstance().createAtom();
|
---|
91 | CPPUNIT_ASSERT(Walker != NULL && "could not create atom");
|
---|
92 | Walker->setType(hydrogen);
|
---|
93 | Walker->setPosition(Vector(0.9658, 0., 0. ));
|
---|
94 | TestMolecule1->AddAtom(Walker);
|
---|
95 | Walker = World::getInstance().createAtom();
|
---|
96 | CPPUNIT_ASSERT(Walker != NULL && "could not create atom");
|
---|
97 | Walker->setType(oxygen);
|
---|
98 | Walker->setPosition(Vector(0., 0., 0. ));
|
---|
99 | TestMolecule1->AddAtom(Walker);
|
---|
100 |
|
---|
101 | molecules = World::getInstance().getMolecules();
|
---|
102 | CPPUNIT_ASSERT(molecules != NULL && "could not obtain list of molecules");
|
---|
103 | molecules->insert(TestMolecule1);
|
---|
104 |
|
---|
105 | // check that TestMolecule1 was correctly constructed
|
---|
106 | CPPUNIT_ASSERT_EQUAL( TestMolecule1->getAtomCount(), 3 );
|
---|
107 |
|
---|
108 | // create a small file with table
|
---|
109 | BG = new BondGraph(true);
|
---|
110 | CPPUNIT_ASSERT(BG != NULL && "could not create BondGraph");
|
---|
111 |
|
---|
112 | // construct bond graphs
|
---|
113 | World::AtomComposite Set1 = TestMolecule1->getAtomSet();
|
---|
114 | BG->CreateAdjacency(Set1);
|
---|
115 | CPPUNIT_ASSERT( TestMolecule1->getBondCount() != 0);
|
---|
116 | // TestMolecule1->Output((ofstream *)&cout);
|
---|
117 | // TestMolecule1->OutputBondsList(std::cout);
|
---|
118 | };
|
---|
119 |
|
---|
120 |
|
---|
121 | void CountBondsTest::tearDown()
|
---|
122 | {
|
---|
123 | // remove the file
|
---|
124 | delete(BG);
|
---|
125 |
|
---|
126 | World::purgeInstance();
|
---|
127 | };
|
---|
128 |
|
---|
129 | /** UnitTest for CountBondsTest::BondsOfTwoTest().
|
---|
130 | */
|
---|
131 | void CountBondsTest::BondsOfTwoTest()
|
---|
132 | {
|
---|
133 | CPPUNIT_ASSERT_EQUAL( 2 , 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( 1 , CountBondsOfThree(molecules, hydrogen, oxygen, hydrogen) );
|
---|
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[3];
|
---|
151 | CPPUNIT_ASSERT(mirror != NULL && "could not create array of doubles");
|
---|
152 | for (int i=0;i<3;i++)
|
---|
153 | mirror[i] = -1.;
|
---|
154 | Vector Translator;
|
---|
155 |
|
---|
156 | // create TestMolecule2 as copy
|
---|
157 | TestMolecule2 = TestMolecule1->CopyMolecule();
|
---|
158 | molecules->insert(TestMolecule2);
|
---|
159 | CPPUNIT_ASSERT_EQUAL( TestMolecule2->getAtomCount(), 3 );
|
---|
160 |
|
---|
161 | cout << "Case 1: offset of (3,0,0), hence angles are (104.5, 0, 75.5, 180) < 30." << endl;
|
---|
162 | Translator = Vector(3,0,0);
|
---|
163 | TestMolecule1->Translate(Translator);
|
---|
164 | CPPUNIT_ASSERT_EQUAL( 1 , CountHydrogenBridgeBonds(molecules, NULL, NULL) );
|
---|
165 | CPPUNIT_ASSERT_EQUAL( 0 , CountHydrogenBridgeBonds(molecules, oxygen, NULL) );
|
---|
166 | Translator = Vector(-3,0,0);
|
---|
167 | TestMolecule1->Translate(Translator);
|
---|
168 |
|
---|
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;
|
---|
170 | Translator = Vector(0,3,0);
|
---|
171 | TestMolecule1->Translate(Translator);
|
---|
172 | CPPUNIT_ASSERT_EQUAL( 1 , CountHydrogenBridgeBonds(molecules, NULL, NULL) );
|
---|
173 | Translator = Vector(0,-3,0);
|
---|
174 | TestMolecule1->Translate(Translator);
|
---|
175 |
|
---|
176 | cout << "Case 3: offset of (0,-3,0) and mirror, hence angle are (165.5, 90, 165.5, 90) > 30." << endl;
|
---|
177 | Translator = Vector(0,-3,0);
|
---|
178 | TestMolecule1->Scale(&mirror[0]);
|
---|
179 | TestMolecule1->Translate(Translator);
|
---|
180 | CPPUNIT_ASSERT_EQUAL( 0 , CountHydrogenBridgeBonds(molecules, NULL, NULL) );
|
---|
181 | Translator = Vector(0,3,0);
|
---|
182 | TestMolecule1->Translate(Translator);
|
---|
183 | TestMolecule1->Scale(&mirror[0]);
|
---|
184 |
|
---|
185 | cout << "Case 4: offset of (2,1,0), hence angle are (78, 26.6, 102, 153.4) < 30." << endl;
|
---|
186 | Translator = Vector(2,1,0);
|
---|
187 | TestMolecule1->Translate(Translator);
|
---|
188 | CPPUNIT_ASSERT_EQUAL( 1 , CountHydrogenBridgeBonds(molecules, NULL, NULL) );
|
---|
189 | Translator = Vector(-2,-1,0);
|
---|
190 | TestMolecule1->Translate(Translator);
|
---|
191 |
|
---|
192 | cout << "Case 5: offset of (0,0,3), hence angle are (90, 90, 90, 90) > 30." << endl;
|
---|
193 | Translator = Vector(0,0,3);
|
---|
194 | TestMolecule1->Translate(Translator);
|
---|
195 | CPPUNIT_ASSERT_EQUAL( 0 , CountHydrogenBridgeBonds(molecules, NULL, NULL) );
|
---|
196 | Translator = Vector(0,0,-3);
|
---|
197 | TestMolecule1->Translate(Translator);
|
---|
198 |
|
---|
199 | cout << "Case 6: offset of (-3,0,0) and mirror, hence angle are (75.5, 180, 104.5, 180) > 30." << endl;
|
---|
200 | Translator = Vector(-3,0,0);
|
---|
201 | TestMolecule1->Scale(&mirror[0]);
|
---|
202 | TestMolecule1->Translate(Translator);
|
---|
203 | CPPUNIT_ASSERT_EQUAL( 0 , CountHydrogenBridgeBonds(molecules, NULL, NULL) );
|
---|
204 | Translator = Vector(3,0,0);
|
---|
205 | TestMolecule1->Translate(Translator);
|
---|
206 | TestMolecule1->Scale(&mirror[0]);
|
---|
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;
|
---|
209 | Translator = Vector(3,0,0);
|
---|
210 | TestMolecule1->Scale(&mirror[0]);
|
---|
211 | TestMolecule1->Translate(Translator);
|
---|
212 | CPPUNIT_ASSERT_EQUAL( 0 , CountHydrogenBridgeBonds(molecules, NULL, NULL) );
|
---|
213 | Translator = Vector(-3,0,0);
|
---|
214 | TestMolecule1->Translate(Translator);
|
---|
215 | TestMolecule1->Scale(&mirror[0]);
|
---|
216 |
|
---|
217 | cout << "Case 8: offset of (0,3,0), hence angle are (14.5, 90, 14.5, 90) < 30, but interfering hydrogens." << endl;
|
---|
218 | Translator = Vector(0,3,0);
|
---|
219 | TestMolecule1->Scale(&mirror[0]);
|
---|
220 | TestMolecule1->Translate(Translator);
|
---|
221 | CPPUNIT_ASSERT_EQUAL( 0 , CountHydrogenBridgeBonds(molecules, NULL, NULL) );
|
---|
222 | Translator = Vector(0,-3,0);
|
---|
223 | TestMolecule1->Translate(Translator);
|
---|
224 | TestMolecule1->Scale(&mirror[0]);
|
---|
225 | };
|
---|