- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/unittests/manipulateAtomsTest.cpp
r57adc7 r975a11 18 18 #include "Actions/ManipulateAtomsProcess.hpp" 19 19 #include "Actions/ActionRegistry.hpp" 20 #include "Actions/ActionHistory.hpp" 20 21 21 22 #include "World.hpp" 22 23 #include "atom.hpp" 24 25 #ifdef HAVE_TESTRUNNER 26 #include "UnitTestMain.hpp" 27 #endif /*HAVE_TESTRUNNER*/ 23 28 24 29 // Registers the fixture into the 'registry' … … 30 35 AtomStub(int _id) : 31 36 atom(), 32 id(_id),33 manipulated(false)37 manipulated(false), 38 id(_id) 34 39 {} 35 40 … … 66 71 // set up and tear down 67 72 void manipulateAtomsTest::setUp(){ 68 World::get(); 73 ActionHistory::init(); 74 World::getInstance(); 69 75 for(int i=0;i<ATOM_COUNT;++i){ 70 76 atoms[i]= new AtomStub(i); 71 World::get ()->registerAtom(atoms[i]);77 World::getInstance().registerAtom(atoms[i]); 72 78 } 73 79 } 74 80 void manipulateAtomsTest::tearDown(){ 75 World::destroy(); 76 ActionRegistry::purgeRegistry(); 77 } 78 79 // some helper functions 80 static bool hasAll(std::vector<atom*> atoms,int min, int max, std::set<int> excluded = std::set<int>()){ 81 for(int i=min;i<max;++i){ 82 if(!excluded.count(i)){ 83 std::vector<atom*>::iterator iter; 84 bool res=false; 85 for(iter=atoms.begin();iter!=atoms.end();++iter){ 86 res |= (*iter)->getId() == i; 87 } 88 if(!res) { 89 cout << "Atom " << i << " missing in returned list" << endl; 90 return false; 91 } 92 } 93 } 94 return true; 95 } 96 97 static bool hasNoDuplicates(std::vector<atom*> atoms){ 98 std::set<int> found; 99 std::vector<atom*>::iterator iter; 100 for(iter=atoms.begin();iter!=atoms.end();++iter){ 101 int id = (*iter)->getId(); 102 if(found.count(id)) 103 return false; 104 found.insert(id); 105 } 106 return true; 81 World::purgeInstance(); 82 ActionRegistry::purgeInstance(); 83 ActionHistory::purgeInstance(); 107 84 } 108 85 … … 115 92 116 93 void manipulateAtomsTest::testManipulateSimple(){ 117 ManipulateAtomsProcess *proc = World::get ()->manipulateAtoms(boost::bind(operation,_1),"FOO",AllAtoms());94 ManipulateAtomsProcess *proc = World::getInstance().manipulateAtoms(boost::bind(operation,_1),"FOO",AllAtoms()); 118 95 proc->call(); 119 std::vector<atom*> allAtoms = World::get ()->getAllAtoms(AllAtoms());96 std::vector<atom*> allAtoms = World::getInstance().getAllAtoms(AllAtoms()); 120 97 std::vector<atom*>::iterator iter; 121 98 for(iter=allAtoms.begin();iter!=allAtoms.end();++iter){ … … 128 105 129 106 void manipulateAtomsTest::testManipulateExcluded(){ 130 ManipulateAtomsProcess *proc = World::get()->manipulateAtoms(boost::bind(operation,_1),"FOO",AllAtoms() && !AtomById(ATOM_COUNT/2)); 107 108 ManipulateAtomsProcess *proc = World::getInstance().manipulateAtoms(boost::bind(operation,_1),"FOO",AllAtoms() && !AtomById(ATOM_COUNT/2)); 131 109 proc->call(); 132 std::vector<atom*> allAtoms = World::get ()->getAllAtoms(AllAtoms());110 std::vector<atom*> allAtoms = World::getInstance().getAllAtoms(AllAtoms()); 133 111 std::vector<atom*>::iterator iter; 134 112 for(iter=allAtoms.begin();iter!=allAtoms.end();++iter){ … … 145 123 void manipulateAtomsTest::testObserver(){ 146 124 countObserver *obs = new countObserver(); 147 World::get ()->signOn(obs);148 ManipulateAtomsProcess *proc = World::get ()->manipulateAtoms(boost::bind(operation,_1),"FOO",AllAtoms() && !AtomById(ATOM_COUNT/2));125 World::getInstance().signOn(obs); 126 ManipulateAtomsProcess *proc = World::getInstance().manipulateAtoms(boost::bind(operation,_1),"FOO",AllAtoms()); 149 127 proc->call(); 150 128 151 129 CPPUNIT_ASSERT_EQUAL(1,obs->count); 152 World::get ()->signOff(obs);130 World::getInstance().signOff(obs); 153 131 delete obs; 154 132 }
Note:
See TracChangeset
for help on using the changeset viewer.