1 | /*
|
---|
2 | * AnalysisCorrelationToSurfaceUnitTest.cpp
|
---|
3 | *
|
---|
4 | * Created on: Oct 13, 2009
|
---|
5 | * Author: heber
|
---|
6 | */
|
---|
7 |
|
---|
8 | using namespace std;
|
---|
9 |
|
---|
10 | #include <cppunit/CompilerOutputter.h>
|
---|
11 | #include <cppunit/extensions/TestFactoryRegistry.h>
|
---|
12 | #include <cppunit/ui/text/TestRunner.h>
|
---|
13 |
|
---|
14 | #include "analysis_correlation.hpp"
|
---|
15 | #include "AnalysisCorrelationToSurfaceUnitTest.hpp"
|
---|
16 |
|
---|
17 | #include "atom.hpp"
|
---|
18 | #include "boundary.hpp"
|
---|
19 | #include "element.hpp"
|
---|
20 | #include "molecule.hpp"
|
---|
21 | #include "linkedcell.hpp"
|
---|
22 | #include "periodentafel.hpp"
|
---|
23 | #include "tesselation.hpp"
|
---|
24 |
|
---|
25 | /********************************************** Test classes **************************************/
|
---|
26 |
|
---|
27 | // Registers the fixture into the 'registry'
|
---|
28 | CPPUNIT_TEST_SUITE_REGISTRATION( AnalysisCorrelationToSurfaceUnitTest );
|
---|
29 |
|
---|
30 | void AnalysisCorrelationToSurfaceUnitTest::setUp()
|
---|
31 | {
|
---|
32 | atom *Walker = NULL;
|
---|
33 |
|
---|
34 | // init private all pointers to zero
|
---|
35 | TestMolecule = NULL;
|
---|
36 | hydrogen = NULL;
|
---|
37 | tafel = NULL;
|
---|
38 | surfacemap = NULL;
|
---|
39 | binmap = NULL;
|
---|
40 | Surface = NULL;
|
---|
41 | LC = NULL;
|
---|
42 |
|
---|
43 |
|
---|
44 | // construct element
|
---|
45 | hydrogen = new element;
|
---|
46 | hydrogen->Z = 1;
|
---|
47 | strcpy(hydrogen->name, "hydrogen");
|
---|
48 | hydrogen->symbol[0] = 'H';
|
---|
49 |
|
---|
50 | // construct periodentafel
|
---|
51 | tafel = new periodentafel;
|
---|
52 | tafel->AddElement(hydrogen);
|
---|
53 |
|
---|
54 | // construct molecule (tetraeder of hydrogens)
|
---|
55 | TestMolecule = new molecule(tafel);
|
---|
56 | Walker = new atom();
|
---|
57 | Walker->type = hydrogen;
|
---|
58 | Walker->node->Init(1., 0., 1. );
|
---|
59 | TestMolecule->AddAtom(Walker);
|
---|
60 | Walker = new atom();
|
---|
61 | Walker->type = hydrogen;
|
---|
62 | Walker->node->Init(0., 1., 1. );
|
---|
63 | TestMolecule->AddAtom(Walker);
|
---|
64 | Walker = new atom();
|
---|
65 | Walker->type = hydrogen;
|
---|
66 | Walker->node->Init(1., 1., 0. );
|
---|
67 | TestMolecule->AddAtom(Walker);
|
---|
68 | Walker = new atom();
|
---|
69 | Walker->type = hydrogen;
|
---|
70 | Walker->node->Init(0., 0., 0. );
|
---|
71 | TestMolecule->AddAtom(Walker);
|
---|
72 |
|
---|
73 | // check that TestMolecule was correctly constructed
|
---|
74 | CPPUNIT_ASSERT_EQUAL( TestMolecule->AtomCount, 4 );
|
---|
75 |
|
---|
76 | // init tesselation and linked cell
|
---|
77 | Surface = new Tesselation;
|
---|
78 | TestMolecule->TesselStruct = Surface;
|
---|
79 | FindNonConvexBorder((ofstream *)&cout, TestMolecule, LC, 2.5, NULL);
|
---|
80 | LC = new LinkedCell(TestMolecule, 5.);
|
---|
81 | CPPUNIT_ASSERT_EQUAL( (size_t)4, Surface->PointsOnBoundary.size() );
|
---|
82 | CPPUNIT_ASSERT_EQUAL( (size_t)6, Surface->LinesOnBoundary.size() );
|
---|
83 | CPPUNIT_ASSERT_EQUAL( (size_t)4, Surface->TrianglesOnBoundary.size() );
|
---|
84 |
|
---|
85 | // init maps
|
---|
86 | surfacemap = CorrelationToSurface( (ofstream *)&cout, TestMolecule, hydrogen, Surface, LC );
|
---|
87 | binmap = NULL;
|
---|
88 |
|
---|
89 | };
|
---|
90 |
|
---|
91 |
|
---|
92 | void AnalysisCorrelationToSurfaceUnitTest::tearDown()
|
---|
93 | {
|
---|
94 | if (surfacemap != NULL)
|
---|
95 | delete(surfacemap);
|
---|
96 | if (binmap != NULL)
|
---|
97 | delete(binmap);
|
---|
98 |
|
---|
99 | // remove
|
---|
100 | delete(TestMolecule);
|
---|
101 | // note that Surface and all the atoms are cleaned by TestMolecule
|
---|
102 | delete(LC);
|
---|
103 | delete(tafel);
|
---|
104 | // note that element is cleaned by periodentafel
|
---|
105 | };
|
---|
106 |
|
---|
107 |
|
---|
108 | void AnalysisCorrelationToSurfaceUnitTest::CorrelationToSurfaceTest()
|
---|
109 | {
|
---|
110 | // do the pair correlation
|
---|
111 | CPPUNIT_ASSERT( surfacemap != NULL );
|
---|
112 | CPPUNIT_ASSERT_EQUAL( (size_t)4, surfacemap->size() );
|
---|
113 | };
|
---|
114 |
|
---|
115 | void AnalysisCorrelationToSurfaceUnitTest::CorrelationToSurfaceBinNoRangeTest()
|
---|
116 | {
|
---|
117 | BinPairMap::iterator tester;
|
---|
118 | // put pair correlation into bins and check with no range
|
---|
119 | binmap = BinData( (ofstream *)&cout, surfacemap, 0.5, 0., 0. );
|
---|
120 | CPPUNIT_ASSERT_EQUAL( (size_t)1, binmap->size() );
|
---|
121 | //OutputCorrelation ( (ofstream *)&cout, binmap );
|
---|
122 | tester = binmap->begin();
|
---|
123 | CPPUNIT_ASSERT_EQUAL( 0., tester->first );
|
---|
124 | CPPUNIT_ASSERT_EQUAL( 4, tester->second );
|
---|
125 |
|
---|
126 | };
|
---|
127 |
|
---|
128 | void AnalysisCorrelationToSurfaceUnitTest::CorrelationToSurfaceBinRangeTest()
|
---|
129 | {
|
---|
130 | BinPairMap::iterator tester;
|
---|
131 | // ... and check with [0., 2.] range
|
---|
132 | binmap = BinData( (ofstream *)&cout, surfacemap, 0.5, 0., 2. );
|
---|
133 | CPPUNIT_ASSERT_EQUAL( (size_t)5, binmap->size() );
|
---|
134 | //OutputCorrelation ( (ofstream *)&cout, binmap );
|
---|
135 | tester = binmap->begin();
|
---|
136 | CPPUNIT_ASSERT_EQUAL( 0., tester->first );
|
---|
137 | CPPUNIT_ASSERT_EQUAL( 4, tester->second );
|
---|
138 | tester = binmap->find(1.);
|
---|
139 | CPPUNIT_ASSERT_EQUAL( 1., tester->first );
|
---|
140 | CPPUNIT_ASSERT_EQUAL( 0, tester->second );
|
---|
141 |
|
---|
142 | };
|
---|
143 |
|
---|
144 | /********************************************** Main routine **************************************/
|
---|
145 |
|
---|
146 | int main(int argc, char **argv)
|
---|
147 | {
|
---|
148 | // Get the top level suite from the registry
|
---|
149 | CppUnit::Test *suite = CppUnit::TestFactoryRegistry::getRegistry().makeTest();
|
---|
150 |
|
---|
151 | // Adds the test to the list of test to run
|
---|
152 | CppUnit::TextUi::TestRunner runner;
|
---|
153 | runner.addTest( suite );
|
---|
154 |
|
---|
155 | // Change the default outputter to a compiler error format outputter
|
---|
156 | runner.setOutputter( new CppUnit::CompilerOutputter( &runner.result(),
|
---|
157 | std::cerr ) );
|
---|
158 | // Run the tests.
|
---|
159 | bool wasSucessful = runner.run();
|
---|
160 |
|
---|
161 | // Return error code 1 if the one of test failed.
|
---|
162 | return wasSucessful ? 0 : 1;
|
---|
163 | };
|
---|