| 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 | #include "DummyUI.hpp"
 | 
|---|
| 26 | 
 | 
|---|
| 27 | #ifdef HAVE_TESTRUNNER
 | 
|---|
| 28 | #include "UnitTestMain.hpp"
 | 
|---|
| 29 | #endif /*HAVE_TESTRUNNER*/
 | 
|---|
| 30 | 
 | 
|---|
| 31 | // Registers the fixture into the 'registry'
 | 
|---|
| 32 | CPPUNIT_TEST_SUITE_REGISTRATION( manipulateAtomsTest );
 | 
|---|
| 33 | 
 | 
|---|
| 34 | // some stubs
 | 
|---|
| 35 | class AtomStub : public atom {
 | 
|---|
| 36 | public:
 | 
|---|
| 37 |   AtomStub(int _id) :
 | 
|---|
| 38 |   atom(),
 | 
|---|
| 39 |   manipulated(false),
 | 
|---|
| 40 |   id(_id)
 | 
|---|
| 41 |   {}
 | 
|---|
| 42 | 
 | 
|---|
| 43 |   virtual atomId_t getId(){
 | 
|---|
| 44 |     return id;
 | 
|---|
| 45 |   }
 | 
|---|
| 46 | 
 | 
|---|
| 47 |   virtual void doSomething(){
 | 
|---|
| 48 |     manipulated = true;
 | 
|---|
| 49 |   }
 | 
|---|
| 50 | 
 | 
|---|
| 51 |   bool manipulated;
 | 
|---|
| 52 | private:
 | 
|---|
| 53 |   atomId_t id;
 | 
|---|
| 54 | };
 | 
|---|
| 55 | 
 | 
|---|
| 56 | class countObserver : public Observer{
 | 
|---|
| 57 | public:
 | 
|---|
| 58 |   countObserver() :
 | 
|---|
| 59 |     Observer("countObserver"),
 | 
|---|
| 60 |     count(0)
 | 
|---|
| 61 |     {}
 | 
|---|
| 62 |   virtual ~countObserver(){}
 | 
|---|
| 63 | 
 | 
|---|
| 64 |   void update(Observable *){
 | 
|---|
| 65 |     count++;
 | 
|---|
| 66 |   }
 | 
|---|
| 67 | 
 | 
|---|
| 68 |   void subjectKilled(Observable *)
 | 
|---|
| 69 |   {}
 | 
|---|
| 70 | 
 | 
|---|
| 71 |   int count;
 | 
|---|
| 72 | };
 | 
|---|
| 73 | 
 | 
|---|
| 74 | // set up and tear down
 | 
|---|
| 75 | void manipulateAtomsTest::setUp(){
 | 
|---|
| 76 |   static bool hasDescriptor = false;
 | 
|---|
| 77 |   ActionHistory::init();
 | 
|---|
| 78 |   World::getInstance();
 | 
|---|
| 79 |   // TODO: find a way to really reset the factory to a clean state in tear-down
 | 
|---|
| 80 |   if(!hasDescriptor){
 | 
|---|
| 81 |     UIFactory::registerFactory(new DummyUIFactory::description());
 | 
|---|
| 82 |     hasDescriptor = true;
 | 
|---|
| 83 |   }
 | 
|---|
| 84 |   UIFactory::makeUserInterface("Dummy");
 | 
|---|
| 85 |   for(int i=0;i<ATOM_COUNT;++i){
 | 
|---|
| 86 |     atoms[i]= new AtomStub(i);
 | 
|---|
| 87 |     World::getInstance().registerAtom(atoms[i]);
 | 
|---|
| 88 |   }
 | 
|---|
| 89 | }
 | 
|---|
| 90 | void manipulateAtomsTest::tearDown(){
 | 
|---|
| 91 |   World::purgeInstance();
 | 
|---|
| 92 |   ActionRegistry::purgeInstance();
 | 
|---|
| 93 |   ActionHistory::purgeInstance();
 | 
|---|
| 94 |   UIFactory::purgeInstance();
 | 
|---|
| 95 | }
 | 
|---|
| 96 | 
 | 
|---|
| 97 | static void operation(atom* _atom){
 | 
|---|
| 98 |   AtomStub *atom = dynamic_cast<AtomStub*>(_atom);
 | 
|---|
| 99 |   CPPUNIT_ASSERT(atom);
 | 
|---|
| 100 |   atom->doSomething();
 | 
|---|
| 101 | }
 | 
|---|
| 102 | 
 | 
|---|
| 103 | 
 | 
|---|
| 104 | void manipulateAtomsTest::testManipulateSimple(){
 | 
|---|
| 105 |   ManipulateAtomsProcess *proc = World::getInstance().manipulateAtoms(boost::bind(operation,_1),"FOO",AllAtoms());
 | 
|---|
| 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 |     CPPUNIT_ASSERT(atom);
 | 
|---|
| 113 |     CPPUNIT_ASSERT(atom->manipulated);
 | 
|---|
| 114 |   }
 | 
|---|
| 115 | }
 | 
|---|
| 116 | 
 | 
|---|
| 117 | void manipulateAtomsTest::testManipulateExcluded(){
 | 
|---|
| 118 | 
 | 
|---|
| 119 |   ManipulateAtomsProcess *proc = World::getInstance().manipulateAtoms(boost::bind(operation,_1),"FOO",AllAtoms() && !AtomById(ATOM_COUNT/2));
 | 
|---|
| 120 |   proc->call();
 | 
|---|
| 121 |   std::vector<atom*> allAtoms = World::getInstance().getAllAtoms(AllAtoms());
 | 
|---|
| 122 |   std::vector<atom*>::iterator iter;
 | 
|---|
| 123 |   for(iter=allAtoms.begin();iter!=allAtoms.end();++iter){
 | 
|---|
| 124 |     AtomStub *atom;
 | 
|---|
| 125 |     atom = dynamic_cast<AtomStub*>(*iter);
 | 
|---|
| 126 |     CPPUNIT_ASSERT(atom);
 | 
|---|
| 127 |     if(atom->getId()!=(int)ATOM_COUNT/2)
 | 
|---|
| 128 |       CPPUNIT_ASSERT(atom->manipulated);
 | 
|---|
| 129 |     else
 | 
|---|
| 130 |       CPPUNIT_ASSERT(!atom->manipulated);
 | 
|---|
| 131 |   }
 | 
|---|
| 132 | }
 | 
|---|
| 133 | 
 | 
|---|
| 134 | void manipulateAtomsTest::testObserver(){
 | 
|---|
| 135 |   countObserver *obs = new countObserver();
 | 
|---|
| 136 |   World::getInstance().signOn(obs);
 | 
|---|
| 137 |   ManipulateAtomsProcess *proc = World::getInstance().manipulateAtoms(boost::bind(operation,_1),"FOO",AllAtoms());
 | 
|---|
| 138 |   proc->call();
 | 
|---|
| 139 | 
 | 
|---|
| 140 |   CPPUNIT_ASSERT_EQUAL(1,obs->count);
 | 
|---|
| 141 |   World::getInstance().signOff(obs);
 | 
|---|
| 142 |   delete obs;
 | 
|---|
| 143 | }
 | 
|---|