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