source: molecuilder/src/unittests/manipulateAtomsTest.cpp@ fe3540

Last change on this file since fe3540 was 43ed42, checked in by Tillmann Crueger <crueger@…>, 16 years ago

Added custom Assert makro that allows ignoring asserts

  • Property mode set to 100644
File size: 3.0 KB
RevLine 
[cbc27f]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
[abab7e]24#ifdef HAVE_TESTRUNNER
25#include "UnitTestMain.hpp"
26#endif /*HAVE_TESTRUNNER*/
27
[cbc27f]28// Registers the fixture into the 'registry'
29CPPUNIT_TEST_SUITE_REGISTRATION( manipulateAtomsTest );
30
31// some stubs
32class AtomStub : public atom {
33public:
34 AtomStub(int _id) :
35 atom(),
[4c60ef]36 manipulated(false),
37 id(_id)
[cbc27f]38 {}
39
[f058ef]40 virtual atomId_t getId(){
[cbc27f]41 return id;
42 }
43
44 virtual void doSomething(){
45 manipulated = true;
46 }
47
48 bool manipulated;
49private:
[f058ef]50 atomId_t id;
[cbc27f]51};
52
[9ef76a]53class countObserver : public Observer{
54public:
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};
[cbc27f]69
70// set up and tear down
71void manipulateAtomsTest::setUp(){
[4c60ef]72 World::getInstance();
[cbc27f]73 for(int i=0;i<ATOM_COUNT;++i){
74 atoms[i]= new AtomStub(i);
[4c60ef]75 World::getInstance().registerAtom(atoms[i]);
[cbc27f]76 }
77}
78void manipulateAtomsTest::tearDown(){
[4c60ef]79 World::purgeInstance();
[8a4f12]80 ActionRegistry::purgeInstance();
[cbc27f]81}
82
[dc5413]83static void operation(atom* _atom){
[cbc27f]84 AtomStub *atom = dynamic_cast<AtomStub*>(_atom);
85 assert(atom);
86 atom->doSomething();
87}
88
89
90void manipulateAtomsTest::testManipulateSimple(){
[4c60ef]91 ManipulateAtomsProcess *proc = World::getInstance().manipulateAtoms(boost::bind(operation,_1),"FOO",AllAtoms());
[cbc27f]92 proc->call();
[4c60ef]93 std::vector<atom*> allAtoms = World::getInstance().getAllAtoms(AllAtoms());
[cbc27f]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
103void manipulateAtomsTest::testManipulateExcluded(){
[43ed42]104
[4c60ef]105 ManipulateAtomsProcess *proc = World::getInstance().manipulateAtoms(boost::bind(operation,_1),"FOO",AllAtoms() && !AtomById(ATOM_COUNT/2));
[cbc27f]106 proc->call();
[4c60ef]107 std::vector<atom*> allAtoms = World::getInstance().getAllAtoms(AllAtoms());
[cbc27f]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 assert(atom);
113 if(atom->getId()!=(int)ATOM_COUNT/2)
114 CPPUNIT_ASSERT(atom->manipulated);
115 else
116 CPPUNIT_ASSERT(!atom->manipulated);
117 }
118}
119
[9ef76a]120void manipulateAtomsTest::testObserver(){
121 countObserver *obs = new countObserver();
[4c60ef]122 World::getInstance().signOn(obs);
[5738177]123 ManipulateAtomsProcess *proc = World::getInstance().manipulateAtoms(boost::bind(operation,_1),"FOO",AllAtoms());
[9ef76a]124 proc->call();
125
126 CPPUNIT_ASSERT_EQUAL(1,obs->count);
[4c60ef]127 World::getInstance().signOff(obs);
[9ef76a]128 delete obs;
129}
Note: See TracBrowser for help on using the repository browser.