source: src/Fragmentation/Homology/unittests/HomologyContainerUnitTest.cpp@ ffa69c

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since ffa69c was bf1d1b, checked in by Frederik Heber <heber@…>, 11 years ago

HomologyContainer now stores full struct as value to HomologyGraph key.

  • this structure does not only contain fragment and energy but also the sampled charge and potential distribution.
  • added version handling to HomologyContainer::value_t serialization.
  • added option "store-grids" to AnalyseFragmentationResultsAction.
  • TESTFIX: adapted HomologyContainerUnitTest such that new values are correctly constructed.
  • Property mode set to 100644
File size: 5.1 KB
Line 
1/*
2 * Project: MoleCuilder
3 * Description: creates and alters molecular systems
4 * Copyright (C) 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 * HomologyContainerUnitTest.cpp
25 *
26 * Created on: Sep 22, 2012
27 * Author: heber
28 */
29
30// include config.h
31#ifdef HAVE_CONFIG_H
32#include <config.h>
33#endif
34
35using namespace std;
36
37#include <cppunit/CompilerOutputter.h>
38#include <cppunit/extensions/TestFactoryRegistry.h>
39#include <cppunit/ui/text/TestRunner.h>
40
41// include headers that implement a archive in simple text format
42#include <boost/archive/text_oarchive.hpp>
43#include <boost/archive/text_iarchive.hpp>
44
45#include <boost/assign.hpp>
46
47#include "Fragmentation/Homology/HomologyContainer.hpp"
48#include "Fragmentation/Graph.hpp"
49
50#include "HomologyContainerUnitTest.hpp"
51
52#include <sstream>
53
54using namespace boost::assign;
55
56#ifdef HAVE_TESTRUNNER
57#include "UnitTestMain.hpp"
58#endif /*HAVE_TESTRUNNER*/
59
60/********************************************** Test classes **************************************/
61
62// Registers the fixture into the 'registry'
63CPPUNIT_TEST_SUITE_REGISTRATION( HomologyContainerTest );
64
65
66void HomologyContainerTest::setUp()
67{
68 // add nodes
69 nodes +=
70 std::make_pair(FragmentNode(1,1),1),
71 std::make_pair(FragmentNode(1,4),1),
72 std::make_pair(FragmentNode(2,2),1),
73 std::make_pair(FragmentNode(2,4),1);
74 othernodes +=
75 std::make_pair(FragmentNode(1,1),1),
76 std::make_pair(FragmentNode(1,4),1);
77
78 // add edges
79 edges +=
80 std::make_pair(FragmentEdge(1,1),1),
81 std::make_pair(FragmentEdge(1,4),1),
82 std::make_pair(FragmentEdge(2,2),1),
83 std::make_pair(FragmentEdge(2,4),1);
84 otheredges +=
85 std::make_pair(FragmentEdge(1,4),1),
86 std::make_pair(FragmentEdge(2,2),1);
87
88 // construct graphs
89 HomologyGraph graph(nodes, edges);
90 HomologyGraph othergraph(othernodes, otheredges);
91
92 // place in container
93 Fragment::position_t pos(3, 0.);
94 Fragment::positions_t positions(1, pos);
95 Fragment::charges_t charges(1,1.);
96 Fragment dummy(positions, charges);
97 charges[0] = 6.;
98 positions[0][0] = 1.;
99 Fragment dummy1(positions, charges);
100 positions[0][0] = 2.;
101 Fragment dummy2(positions, charges);
102 HomologyContainer::value_t value1;
103 value1.fragment = dummy1;
104 value1.energy = 1.;
105 HomologyContainer::value_t value2;
106 value2.fragment = dummy2;
107 value2.energy = 1.5;
108 HomologyContainer::value_t value3;
109 value3.fragment = dummy;
110 value3.energy = 2.;
111 container +=
112 std::make_pair( graph, value1 ),
113 std::make_pair( graph, value2 ),
114 std::make_pair( othergraph, value3 );
115 // create HomologyContainer
116 Keys = new HomologyContainer(container);
117}
118
119
120void HomologyContainerTest::tearDown()
121{
122 delete Keys;
123}
124
125/** UnitTest for whether homologies are correctly recognized
126 */
127void HomologyContainerTest::InsertionTest()
128{
129 // construct graphs
130 HomologyGraph graph(nodes, edges);
131
132 HomologyContainer::container_t newcontainer;
133 Fragment::position_t pos(3, 0.);
134 Fragment::positions_t positions(1, pos);
135 Fragment::charges_t charges(1,1.);
136 Fragment dummy(positions, charges);
137 HomologyContainer::value_t value;
138 value.fragment = dummy;
139 value.energy = 1.;
140 newcontainer +=
141 std::make_pair( graph, value );
142
143 Keys->insert(newcontainer);
144
145 CPPUNIT_ASSERT_EQUAL( (size_t)4, Keys->container.size() );
146}
147
148/** UnitTest for operator==() works correctly.
149 */
150void HomologyContainerTest::EqualityTest()
151{
152 // compare same container
153 CPPUNIT_ASSERT( *Keys == *Keys );
154
155 // construct other container
156 HomologyGraph graph(nodes, edges);
157 HomologyContainer::container_t newcontainer;
158 Fragment::position_t pos(3, 0.);
159 Fragment::positions_t positions(1, pos);
160 Fragment::charges_t charges(1,1.);
161 Fragment dummy(positions, charges);
162 HomologyContainer::value_t value;
163 value.fragment = dummy;
164 value.energy = 1.;
165 newcontainer +=
166 std::make_pair( graph, value );
167
168 HomologyContainer other(newcontainer);
169
170 CPPUNIT_ASSERT( *Keys != other );
171}
172
173/** UnitTest for serialization
174 */
175void HomologyContainerTest::serializeTest()
176{
177 // serialize
178 std::stringstream outputstream;
179 boost::archive::text_oarchive oa(outputstream);
180 oa << Keys;
181
182 // deserialize
183 HomologyContainer *samekeys = NULL;
184 std::stringstream returnstream(outputstream.str());
185 boost::archive::text_iarchive ia(returnstream);
186 ia >> samekeys;
187
188 CPPUNIT_ASSERT( samekeys != NULL );
189 //std::cout << *Keys << std::endl;
190 CPPUNIT_ASSERT_EQUAL( *Keys, *samekeys );
191
192 delete samekeys;
193}
Note: See TracBrowser for help on using the repository browser.