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