X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=src%2Ftest_filter_factory.cpp;h=3b6be2c959c5982ac4fb195f71c623eca90db258;hb=872baf038ffe10f670ba45082c6911201e2ac4cb;hp=37b2a57bd4c1eb46f0c8a5a4d441393480278156;hpb=349c7da1d51fc13c35a03c0be3fd6b2b63af8875;p=metaproxy-moved-to-github.git diff --git a/src/test_filter_factory.cpp b/src/test_filter_factory.cpp index 37b2a57..3b6be2c 100644 --- a/src/test_filter_factory.cpp +++ b/src/test_filter_factory.cpp @@ -1,16 +1,16 @@ -/* $Id: test_filter_factory.cpp,v 1.1 2005-10-28 10:35:30 marc Exp $ +/* $Id: test_filter_factory.cpp,v 1.11 2006-01-19 09:41:01 adam Exp $ Copyright (c) 2005, Index Data. %LICENSE% - */ - +*/ #include #include #include "config.hpp" #include "filter.hpp" -#include "filter_factory.hpp" +#include "package.hpp" +#include "factory_filter.hpp" #define BOOST_AUTO_TEST_MAIN @@ -18,33 +18,105 @@ using namespace boost::unit_test; +// XFilter class XFilter: public yp2::filter::Base { public: - void process(yp2::Package & package) const {}; + void process(yp2::Package & package) const; }; +void XFilter::process(yp2::Package & package) const +{ + package.data() = 1; +} + +static yp2::filter::Base* xfilter_creator(){ + return new XFilter; +} + +// YFilter ... class YFilter: public yp2::filter::Base { public: - void process(yp2::Package & package) const {}; + void process(yp2::Package & package) const; }; - -BOOST_AUTO_TEST_CASE( test_router_flexml_1 ) +void YFilter::process(yp2::Package & package) const { - try{ + package.data() = 2; +} + +static yp2::filter::Base* yfilter_creator(){ + return new YFilter; +} + +BOOST_AUTO_UNIT_TEST( test_filter_factory_1 ) +{ + try { - yp2::filter::FilterFactory ffactory; + yp2::FactoryFilter ffactory; + XFilter xf; + YFilter yf; - BOOST_CHECK (true); + const std::string xfid = "XFilter"; + const std::string yfid = "YFilter"; + + BOOST_CHECK(ffactory.add_creator(xfid, xfilter_creator)); + BOOST_CHECK(ffactory.drop_creator(xfid)); + BOOST_CHECK(ffactory.add_creator(xfid, xfilter_creator)); + BOOST_CHECK(ffactory.add_creator(yfid, yfilter_creator)); + + yp2::filter::Base* xfilter = 0; + xfilter = ffactory.create(xfid); + yp2::filter::Base* yfilter = 0; + yfilter = ffactory.create(yfid); - //BOOST_CHECK_EQUAL(filter.name(), std::string("filter1")); + BOOST_CHECK(0 != xfilter); + BOOST_CHECK(0 != yfilter); + + yp2::Package pack; + xfilter->process(pack); + BOOST_CHECK_EQUAL(pack.data(), 1); + + yfilter->process(pack); + BOOST_CHECK_EQUAL(pack.data(), 2); + } + catch ( ... ) { + throw; + BOOST_CHECK (false); + } +} + +#if HAVE_DL_SUPPORT +#if HAVE_DLFCN_H +BOOST_AUTO_UNIT_TEST( test_filter_factory_2 ) +{ + try { + yp2::FactoryFilter ffactory; + + const std::string id = "dl"; + // first load + BOOST_CHECK(ffactory.add_creator_dl(id, ".libs")); + + // test double load + BOOST_CHECK(ffactory.add_creator_dl(id, ".libs")); + + yp2::filter::Base* filter = 0; + filter = ffactory.create(id); + + BOOST_CHECK(0 != filter); + + yp2::Package pack; + filter->process(pack); + BOOST_CHECK_EQUAL(pack.data(), 42); // magic from filter_dl .. } catch ( ... ) { + throw; BOOST_CHECK (false); } } +#endif +#endif /* * Local variables: