[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'
|
---|
| 30 | CPPUNIT_TEST_SUITE_REGISTRATION( manipulateAtomsTest );
|
---|
| 31 |
|
---|
| 32 | // some stubs
|
---|
| 33 | class AtomStub : public atom {
|
---|
| 34 | public:
|
---|
| 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;
|
---|
| 50 | private:
|
---|
[57adc7] | 51 | atomId_t id;
|
---|
[b2cfdb] | 52 | };
|
---|
| 53 |
|
---|
[afb47f] | 54 | class countObserver : public Observer{
|
---|
| 55 | public:
|
---|
| 56 | countObserver() :
|
---|
| 57 | count(0)
|
---|
| 58 | {}
|
---|
| 59 | virtual ~countObserver(){}
|
---|
| 60 |
|
---|
| 61 | void update(Observable *){
|
---|
| 62 | count++;
|
---|
| 63 | }
|
---|
| 64 |
|
---|
| 65 | void subjectKilled(Observable *)
|
---|
| 66 | {}
|
---|
| 67 |
|
---|
| 68 | int count;
|
---|
| 69 | };
|
---|
[b2cfdb] | 70 |
|
---|
| 71 | // set up and tear down
|
---|
| 72 | void manipulateAtomsTest::setUp(){
|
---|
[975a11] | 73 | ActionHistory::init();
|
---|
[23b547] | 74 | World::getInstance();
|
---|
[b2cfdb] | 75 | for(int i=0;i<ATOM_COUNT;++i){
|
---|
| 76 | atoms[i]= new AtomStub(i);
|
---|
[23b547] | 77 | World::getInstance().registerAtom(atoms[i]);
|
---|
[b2cfdb] | 78 | }
|
---|
| 79 | }
|
---|
| 80 | void manipulateAtomsTest::tearDown(){
|
---|
[23b547] | 81 | World::purgeInstance();
|
---|
[e73a8a2] | 82 | ActionRegistry::purgeInstance();
|
---|
[975a11] | 83 | ActionHistory::purgeInstance();
|
---|
[b2cfdb] | 84 | }
|
---|
| 85 |
|
---|
[a1510d] | 86 | static void operation(atom* _atom){
|
---|
[b2cfdb] | 87 | AtomStub *atom = dynamic_cast<AtomStub*>(_atom);
|
---|
| 88 | assert(atom);
|
---|
| 89 | atom->doSomething();
|
---|
| 90 | }
|
---|
| 91 |
|
---|
| 92 |
|
---|
| 93 | void manipulateAtomsTest::testManipulateSimple(){
|
---|
[23b547] | 94 | ManipulateAtomsProcess *proc = World::getInstance().manipulateAtoms(boost::bind(operation,_1),"FOO",AllAtoms());
|
---|
[b2cfdb] | 95 | proc->call();
|
---|
[23b547] | 96 | std::vector<atom*> allAtoms = World::getInstance().getAllAtoms(AllAtoms());
|
---|
[b2cfdb] | 97 | std::vector<atom*>::iterator iter;
|
---|
| 98 | for(iter=allAtoms.begin();iter!=allAtoms.end();++iter){
|
---|
| 99 | AtomStub *atom;
|
---|
| 100 | atom = dynamic_cast<AtomStub*>(*iter);
|
---|
| 101 | assert(atom);
|
---|
| 102 | CPPUNIT_ASSERT(atom->manipulated);
|
---|
| 103 | }
|
---|
| 104 | }
|
---|
| 105 |
|
---|
| 106 | void manipulateAtomsTest::testManipulateExcluded(){
|
---|
[229e3c] | 107 |
|
---|
[23b547] | 108 | ManipulateAtomsProcess *proc = World::getInstance().manipulateAtoms(boost::bind(operation,_1),"FOO",AllAtoms() && !AtomById(ATOM_COUNT/2));
|
---|
[b2cfdb] | 109 | proc->call();
|
---|
[23b547] | 110 | std::vector<atom*> allAtoms = World::getInstance().getAllAtoms(AllAtoms());
|
---|
[b2cfdb] | 111 | std::vector<atom*>::iterator iter;
|
---|
| 112 | for(iter=allAtoms.begin();iter!=allAtoms.end();++iter){
|
---|
| 113 | AtomStub *atom;
|
---|
| 114 | atom = dynamic_cast<AtomStub*>(*iter);
|
---|
| 115 | assert(atom);
|
---|
| 116 | if(atom->getId()!=(int)ATOM_COUNT/2)
|
---|
| 117 | CPPUNIT_ASSERT(atom->manipulated);
|
---|
| 118 | else
|
---|
| 119 | CPPUNIT_ASSERT(!atom->manipulated);
|
---|
| 120 | }
|
---|
| 121 | }
|
---|
| 122 |
|
---|
[afb47f] | 123 | void manipulateAtomsTest::testObserver(){
|
---|
| 124 | countObserver *obs = new countObserver();
|
---|
[23b547] | 125 | World::getInstance().signOn(obs);
|
---|
[6e97e5] | 126 | ManipulateAtomsProcess *proc = World::getInstance().manipulateAtoms(boost::bind(operation,_1),"FOO",AllAtoms());
|
---|
[afb47f] | 127 | proc->call();
|
---|
| 128 |
|
---|
| 129 | CPPUNIT_ASSERT_EQUAL(1,obs->count);
|
---|
[23b547] | 130 | World::getInstance().signOff(obs);
|
---|
[afb47f] | 131 | delete obs;
|
---|
| 132 | }
|
---|