source: molecuilder/src/unittests/manipulateAtomsTest.cpp@ fe3540

Last change on this file since fe3540 was 43ed42, checked in by Tillmann Crueger <crueger@…>, 16 years ago

Added custom Assert makro that allows ignoring asserts

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