source: src/unittests/manipulateAtomsTest.cpp@ d25863

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 d25863 was 23b547, checked in by Tillmann Crueger <crueger@…>, 16 years ago

Added generic singleton Pattern that can be inherited to any class making that class a singleton.

  • Property mode set to 100644
File size: 2.9 KB
Line 
1/*
2 * manipulateAtomsTest.cpp
3 *
4 * Created on: Feb 18, 2010
5 * Author: crueger
6 */
7
8#include "manipulateAtomsTest.hpp"
9
10#include <cppunit/CompilerOutputter.h>
11#include <cppunit/extensions/TestFactoryRegistry.h>
12#include <cppunit/ui/text/TestRunner.h>
13#include <iostream>
14#include <boost/bind.hpp>
15
16#include "Descriptors/AtomDescriptor.hpp"
17#include "Descriptors/AtomIdDescriptor.hpp"
18#include "Actions/ManipulateAtomsProcess.hpp"
19#include "Actions/ActionRegistry.hpp"
20
21#include "World.hpp"
22#include "atom.hpp"
23
24// Registers the fixture into the 'registry'
25CPPUNIT_TEST_SUITE_REGISTRATION( manipulateAtomsTest );
26
27// some stubs
28class AtomStub : public atom {
29public:
30 AtomStub(int _id) :
31 atom(),
32 manipulated(false),
33 id(_id)
34 {}
35
36 virtual atomId_t getId(){
37 return id;
38 }
39
40 virtual void doSomething(){
41 manipulated = true;
42 }
43
44 bool manipulated;
45private:
46 atomId_t id;
47};
48
49class countObserver : public Observer{
50public:
51 countObserver() :
52 count(0)
53 {}
54 virtual ~countObserver(){}
55
56 void update(Observable *){
57 count++;
58 }
59
60 void subjectKilled(Observable *)
61 {}
62
63 int count;
64};
65
66// set up and tear down
67void manipulateAtomsTest::setUp(){
68 World::getInstance();
69 for(int i=0;i<ATOM_COUNT;++i){
70 atoms[i]= new AtomStub(i);
71 World::getInstance().registerAtom(atoms[i]);
72 }
73}
74void manipulateAtomsTest::tearDown(){
75 World::purgeInstance();
76 ActionRegistry::purgeRegistry();
77}
78
79static void operation(atom* _atom){
80 AtomStub *atom = dynamic_cast<AtomStub*>(_atom);
81 assert(atom);
82 atom->doSomething();
83}
84
85
86void manipulateAtomsTest::testManipulateSimple(){
87 ManipulateAtomsProcess *proc = World::getInstance().manipulateAtoms(boost::bind(operation,_1),"FOO",AllAtoms());
88 proc->call();
89 std::vector<atom*> allAtoms = World::getInstance().getAllAtoms(AllAtoms());
90 std::vector<atom*>::iterator iter;
91 for(iter=allAtoms.begin();iter!=allAtoms.end();++iter){
92 AtomStub *atom;
93 atom = dynamic_cast<AtomStub*>(*iter);
94 assert(atom);
95 CPPUNIT_ASSERT(atom->manipulated);
96 }
97}
98
99void manipulateAtomsTest::testManipulateExcluded(){
100 ManipulateAtomsProcess *proc = World::getInstance().manipulateAtoms(boost::bind(operation,_1),"FOO",AllAtoms() && !AtomById(ATOM_COUNT/2));
101 proc->call();
102 std::vector<atom*> allAtoms = World::getInstance().getAllAtoms(AllAtoms());
103 std::vector<atom*>::iterator iter;
104 for(iter=allAtoms.begin();iter!=allAtoms.end();++iter){
105 AtomStub *atom;
106 atom = dynamic_cast<AtomStub*>(*iter);
107 assert(atom);
108 if(atom->getId()!=(int)ATOM_COUNT/2)
109 CPPUNIT_ASSERT(atom->manipulated);
110 else
111 CPPUNIT_ASSERT(!atom->manipulated);
112 }
113}
114
115void manipulateAtomsTest::testObserver(){
116 countObserver *obs = new countObserver();
117 World::getInstance().signOn(obs);
118 ManipulateAtomsProcess *proc = World::getInstance().manipulateAtoms(boost::bind(operation,_1),"FOO",AllAtoms() && !AtomById(ATOM_COUNT/2));
119 proc->call();
120
121 CPPUNIT_ASSERT_EQUAL(1,obs->count);
122 World::getInstance().signOff(obs);
123 delete obs;
124}
Note: See TracBrowser for help on using the repository browser.