source: src/unittests/manipulateAtomsTest.cpp@ ed6dd8

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 ed6dd8 was 6d574a, checked in by Tillmann Crueger <crueger@…>, 15 years ago

Replaced several old-style asserts with more usable ASSERTs

  • Property mode set to 100644
File size: 3.1 KB
RevLine 
[b2cfdb]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"
[975a11]20#include "Actions/ActionHistory.hpp"
[b2cfdb]21
22#include "World.hpp"
23#include "atom.hpp"
24
[7ca806]25#ifdef HAVE_TESTRUNNER
26#include "UnitTestMain.hpp"
27#endif /*HAVE_TESTRUNNER*/
28
[b2cfdb]29// Registers the fixture into the 'registry'
30CPPUNIT_TEST_SUITE_REGISTRATION( manipulateAtomsTest );
31
32// some stubs
33class AtomStub : public atom {
34public:
35 AtomStub(int _id) :
36 atom(),
[23b547]37 manipulated(false),
38 id(_id)
[b2cfdb]39 {}
40
[57adc7]41 virtual atomId_t getId(){
[b2cfdb]42 return id;
43 }
44
45 virtual void doSomething(){
46 manipulated = true;
47 }
48
49 bool manipulated;
50private:
[57adc7]51 atomId_t id;
[b2cfdb]52};
53
[afb47f]54class countObserver : public Observer{
55public:
56 countObserver() :
[cd5047]57 Observer("countObserver"),
[afb47f]58 count(0)
59 {}
60 virtual ~countObserver(){}
61
62 void update(Observable *){
63 count++;
64 }
65
66 void subjectKilled(Observable *)
67 {}
68
69 int count;
70};
[b2cfdb]71
72// set up and tear down
73void manipulateAtomsTest::setUp(){
[975a11]74 ActionHistory::init();
[23b547]75 World::getInstance();
[b2cfdb]76 for(int i=0;i<ATOM_COUNT;++i){
77 atoms[i]= new AtomStub(i);
[23b547]78 World::getInstance().registerAtom(atoms[i]);
[b2cfdb]79 }
80}
81void manipulateAtomsTest::tearDown(){
[23b547]82 World::purgeInstance();
[e73a8a2]83 ActionRegistry::purgeInstance();
[975a11]84 ActionHistory::purgeInstance();
[b2cfdb]85}
86
[a1510d]87static void operation(atom* _atom){
[b2cfdb]88 AtomStub *atom = dynamic_cast<AtomStub*>(_atom);
[6d574a]89 CPPUNIT_ASSERT(atom);
[b2cfdb]90 atom->doSomething();
91}
92
93
94void manipulateAtomsTest::testManipulateSimple(){
[23b547]95 ManipulateAtomsProcess *proc = World::getInstance().manipulateAtoms(boost::bind(operation,_1),"FOO",AllAtoms());
[b2cfdb]96 proc->call();
[23b547]97 std::vector<atom*> allAtoms = World::getInstance().getAllAtoms(AllAtoms());
[b2cfdb]98 std::vector<atom*>::iterator iter;
99 for(iter=allAtoms.begin();iter!=allAtoms.end();++iter){
100 AtomStub *atom;
101 atom = dynamic_cast<AtomStub*>(*iter);
[6d574a]102 CPPUNIT_ASSERT(atom);
[b2cfdb]103 CPPUNIT_ASSERT(atom->manipulated);
104 }
105}
106
107void manipulateAtomsTest::testManipulateExcluded(){
[229e3c]108
[23b547]109 ManipulateAtomsProcess *proc = World::getInstance().manipulateAtoms(boost::bind(operation,_1),"FOO",AllAtoms() && !AtomById(ATOM_COUNT/2));
[b2cfdb]110 proc->call();
[23b547]111 std::vector<atom*> allAtoms = World::getInstance().getAllAtoms(AllAtoms());
[b2cfdb]112 std::vector<atom*>::iterator iter;
113 for(iter=allAtoms.begin();iter!=allAtoms.end();++iter){
114 AtomStub *atom;
115 atom = dynamic_cast<AtomStub*>(*iter);
[6d574a]116 CPPUNIT_ASSERT(atom);
[b2cfdb]117 if(atom->getId()!=(int)ATOM_COUNT/2)
118 CPPUNIT_ASSERT(atom->manipulated);
119 else
120 CPPUNIT_ASSERT(!atom->manipulated);
121 }
122}
123
[afb47f]124void manipulateAtomsTest::testObserver(){
125 countObserver *obs = new countObserver();
[23b547]126 World::getInstance().signOn(obs);
[6e97e5]127 ManipulateAtomsProcess *proc = World::getInstance().manipulateAtoms(boost::bind(operation,_1),"FOO",AllAtoms());
[afb47f]128 proc->call();
129
130 CPPUNIT_ASSERT_EQUAL(1,obs->count);
[23b547]131 World::getInstance().signOff(obs);
[afb47f]132 delete obs;
133}
Note: See TracBrowser for help on using the repository browser.