X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=src%2Ftest_filter_factory.cpp;h=9fc5987c073a3ab5272f11853dfdbbf3d6de3ac2;hb=1e61b0aa05e2351e33d909f7503eaf936a2d9bb0;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..9fc5987 100644 --- a/src/test_filter_factory.cpp +++ b/src/test_filter_factory.cpp @@ -1,50 +1,123 @@ -/* $Id: test_filter_factory.cpp,v 1.1 2005-10-28 10:35:30 marc Exp $ - Copyright (c) 2005, Index Data. - -%LICENSE% - */ +/* $Id: test_filter_factory.cpp,v 1.13 2006-06-10 14:29:12 adam Exp $ + Copyright (c) 2005-2006, Index Data. + See the LICENSE file for details +*/ #include #include #include "config.hpp" #include "filter.hpp" -#include "filter_factory.hpp" +#include "package.hpp" +#include "factory_filter.hpp" #define BOOST_AUTO_TEST_MAIN #include using namespace boost::unit_test; +namespace mp = metaproxy_1; -class XFilter: public yp2::filter::Base { +// XFilter +class XFilter: public mp::filter::Base { public: - void process(yp2::Package & package) const {}; + void process(mp::Package & package) const; }; -class YFilter: public yp2::filter::Base { +void XFilter::process(mp::Package & package) const +{ + package.data() = 1; +} + +static mp::filter::Base* xfilter_creator(){ + return new XFilter; +} + +// YFilter ... +class YFilter: public mp::filter::Base { public: - void process(yp2::Package & package) const {}; + void process(mp::Package & package) const; }; - -BOOST_AUTO_TEST_CASE( test_router_flexml_1 ) +void YFilter::process(mp::Package & package) const { - try{ + package.data() = 2; +} + +static mp::filter::Base* yfilter_creator(){ + return new YFilter; +} + +BOOST_AUTO_UNIT_TEST( test_filter_factory_1 ) +{ + try { - yp2::filter::FilterFactory ffactory; + mp::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)); + + mp::filter::Base* xfilter = 0; + xfilter = ffactory.create(xfid); + mp::filter::Base* yfilter = 0; + yfilter = ffactory.create(yfid); - //BOOST_CHECK_EQUAL(filter.name(), std::string("filter1")); + BOOST_CHECK(0 != xfilter); + BOOST_CHECK(0 != yfilter); + + mp::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 { + mp::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")); + + mp::filter::Base* filter = 0; + filter = ffactory.create(id); + + BOOST_CHECK(0 != filter); + + mp::Package pack; + filter->process(pack); + BOOST_CHECK_EQUAL(pack.data(), 42); // magic from filter_dl .. } catch ( ... ) { + throw; BOOST_CHECK (false); } } +#endif +#endif /* * Local variables: