X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Ftest_filter_z3950_client.cpp;h=0391b9e558158ee047f22277b0a30565235b85e8;hb=59d918dab1dba1b921ee55e617042313e1736cdd;hp=7090d4c23d790adf7da3a5bd687b8e79f48dff62;hpb=d732b2b2ea19a0669f9a42ca6fd7bc14a3845fc5;p=metaproxy-moved-to-github.git diff --git a/src/test_filter_z3950_client.cpp b/src/test_filter_z3950_client.cpp index 7090d4c..0391b9e 100644 --- a/src/test_filter_z3950_client.cpp +++ b/src/test_filter_z3950_client.cpp @@ -1,4 +1,4 @@ -/* $Id: test_filter_z3950_client.cpp,v 1.3 2005-10-24 14:33:30 adam Exp $ +/* $Id: test_filter_z3950_client.cpp,v 1.6 2005-10-30 17:13:36 adam Exp $ Copyright (c) 2005, Index Data. %LICENSE% @@ -9,8 +9,9 @@ #include #include "filter_z3950_client.hpp" +#include "util.hpp" -#include "router.hpp" +#include "router_chain.hpp" #include "session.hpp" #include "package.hpp" @@ -41,18 +42,17 @@ BOOST_AUTO_TEST_CASE( test_filter_z3950_client_2 ) yp2::filter::Z3950Client zc; - router.rule(zc); + router.append(zc); // Create package with Z39.50 init request in it yp2::Package pack; - ODR odr = odr_createmem(ODR_ENCODE); + yp2::odr odr; Z_APDU *apdu = zget_APDU(odr, Z_APDU_initRequest); BOOST_CHECK(apdu); pack.request() = apdu; - odr_destroy(odr); // Put it in router pack.router(router).move(); @@ -83,18 +83,17 @@ BOOST_AUTO_TEST_CASE( test_filter_z3950_client_3 ) yp2::filter::Z3950Client zc; - router.rule(zc); + router.append(zc); // Create package with Z39.50 present request in it yp2::Package pack; - ODR odr = odr_createmem(ODR_ENCODE); + yp2::odr odr; Z_APDU *apdu = zget_APDU(odr, Z_APDU_presentRequest); BOOST_CHECK(apdu); pack.request() = apdu; - odr_destroy(odr); // Put it in router pack.router(router).move(); @@ -125,12 +124,12 @@ BOOST_AUTO_TEST_CASE( test_filter_z3950_client_4 ) yp2::filter::Z3950Client zc; - router.rule(zc); + router.append(zc); // Create package with Z39.50 init request in it yp2::Package pack; - ODR odr = odr_createmem(ODR_ENCODE); + yp2::odr odr; Z_APDU *apdu = zget_APDU(odr, Z_APDU_initRequest); const char *vhost = "localhost:9999"; @@ -140,7 +139,6 @@ BOOST_AUTO_TEST_CASE( test_filter_z3950_client_4 ) BOOST_CHECK(apdu); pack.request() = apdu; - odr_destroy(odr); // Put it in router pack.router(router).move();