1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
|
#include <cppunit/extensions/HelperMacros.h>
#include "cppUnitHelper.hxx"
#include "DummyProducts.hxx"
#include "Factory.hxx" // CLAM
#include <list>
namespace CLAMTest
{
class FactoryTest;
CPPUNIT_TEST_SUITE_REGISTRATION( FactoryTest );
class FactoryTest : public CppUnit::TestFixture
{
CPPUNIT_TEST_SUITE( FactoryTest );
CPPUNIT_TEST( testCreateFooReturnsAFoo );
CPPUNIT_TEST( testCreate_ReturnsAFoo );
CPPUNIT_TEST( testCreateSafe_WithABadKey );
CPPUNIT_TEST( testAddCreator_WithRepeatedKey );
CPPUNIT_TEST( testAddCreatorSafe_WithRepeatedKey );
CPPUNIT_TEST( testGetRegisteredNames_WithNoKeys );
CPPUNIT_TEST_SUITE_END();
protected:
class MyFactoryType : public CLAM::Factory<DummyProduct>
{
public:
static MyFactoryType& GetInstance()
{
static MyFactoryType theInstance;
return theInstance;
}
};
MyFactoryType* mTheFactory;
public:
void setUp()
{
mTheFactory = new MyFactoryType;
}
void tearDown()
{
delete mTheFactory;
}
// helper methods:
class FooCreator : public MyFactoryType::Creator
{
public:
DummyProduct *Create()
{
return new DummyProductFoo();
}
};
class BarCreator : public MyFactoryType::Creator
{
public:
DummyProduct *Create()
{
return new DummyProductBar();
}
};
// Tests definition :
protected:
void testCreateFooReturnsAFoo()
{
DummyProduct* returned = FooCreator().Create();
CLAMTEST_ASSERT_EQUAL_RTTYPES( DummyProductFoo, *returned );
delete returned;
}
void testCreate_ReturnsAFoo()
{
mTheFactory->AddCreator( "DummyProductFoo", new FooCreator() );
DummyProduct* returned = mTheFactory->Create("DummyProductFoo");
CLAMTEST_ASSERT_EQUAL_RTTYPES( DummyProductFoo, *returned );
// tear down:
delete returned;
mTheFactory->Clear();
}
void testCreateSafe_WithABadKey()
{
try{
mTheFactory->CreateSafe("XXX");
CPPUNIT_FAIL("Should throw an exception");
} catch ( CLAM::ErrFactory& ) {}
}
void testAddCreator_WithRepeatedKey()
{
mTheFactory->AddCreator("DummyProductFoo", new FooCreator() );
try{
mTheFactory->AddCreator("DummyProductFoo", new FooCreator());
CPPUNIT_FAIL("an assertion should happen");
} catch ( CLAM::ErrAssertionFailed& )
{}
}
void testAddCreatorSafe_WithRepeatedKey()
{
mTheFactory->AddCreator("DummyProductFoo", new BarCreator() );
try{
mTheFactory->AddCreatorSafe("DummyProductFoo", new FooCreator());
CPPUNIT_FAIL("an ErrFactory should be raised");
} catch (CLAM::ErrFactory&) {
}
}
void testGetRegisteredNames_WithNoKeys()
{
std::list<std::string> registeredNames;
mTheFactory->GetRegisteredNames( registeredNames );
CPPUNIT_ASSERT_EQUAL( true, registeredNames.empty() );
}
};
///////////////////////////////////////////////////////////////////////
class FactorySingletonTest;
CPPUNIT_TEST_SUITE_REGISTRATION( FactorySingletonTest );
class FactorySingletonTest : public FactoryTest
{
CPPUNIT_TEST_SUITE( FactorySingletonTest );
CPPUNIT_TEST( testCreateFooReturnsAFoo );
CPPUNIT_TEST( testCreate_ReturnsAFoo );
CPPUNIT_TEST( testCreateSafe_WithABadKey );
CPPUNIT_TEST( testFactoryIsSingleton );
CPPUNIT_TEST_SUITE_END();
public:
void setUp()
{
mTheFactory = &MyFactoryType::GetInstance();
}
void tearDown()
{
mTheFactory->Clear();
}
private:
void testFactoryIsSingleton()
{
MyFactoryType &ref1 = MyFactoryType::GetInstance();
MyFactoryType &ref2 = MyFactoryType::GetInstance();
CPPUNIT_ASSERT_MESSAGE(
"Both Factory refs should point the same object ",
&ref1 == &ref2);
}
};
} // namespace CLAMTest
|