X-Git-Url: http://lists.indexdata.com/cgi-bin?a=blobdiff_plain;f=src%2Ftest_filter_z3950_client.cpp;h=2785abe6ffe7a74f24148085ee8df1b0f9b45ec1;hb=f9f3d602802e3bff73a58479b5754d5a13dbc691;hp=0391b9e558158ee047f22277b0a30565235b85e8;hpb=f26cca046b4879a78261ea436c3e21bb3b851b52;p=metaproxy-moved-to-github.git diff --git a/src/test_filter_z3950_client.cpp b/src/test_filter_z3950_client.cpp index 0391b9e..2785abe 100644 --- a/src/test_filter_z3950_client.cpp +++ b/src/test_filter_z3950_client.cpp @@ -1,7 +1,7 @@ -/* $Id: test_filter_z3950_client.cpp,v 1.6 2005-10-30 17:13:36 adam Exp $ - Copyright (c) 2005, Index Data. +/* $Id: test_filter_z3950_client.cpp,v 1.12 2007-04-16 21:54:52 adam Exp $ + Copyright (c) 2005-2007, Index Data. -%LICENSE% + See the LICENSE file for details */ #include "config.hpp" @@ -20,34 +20,36 @@ #include #include -using namespace boost::unit_test; +#include +using namespace boost::unit_test; +namespace mp = metaproxy_1; -BOOST_AUTO_TEST_CASE( test_filter_z3950_client_1 ) +BOOST_AUTO_UNIT_TEST( test_filter_z3950_client_1 ) { try { - yp2::filter::Z3950Client zc; // can we construct OK? + mp::filter::Z3950Client zc; // can we construct OK? } catch ( ... ) { BOOST_CHECK (false); } } -BOOST_AUTO_TEST_CASE( test_filter_z3950_client_2 ) +BOOST_AUTO_UNIT_TEST( test_filter_z3950_client_2 ) { try { - yp2::RouterChain router; + mp::RouterChain router; - yp2::filter::Z3950Client zc; + mp::filter::Z3950Client zc; router.append(zc); // Create package with Z39.50 init request in it - yp2::Package pack; + mp::Package pack; - yp2::odr odr; + mp::odr odr; Z_APDU *apdu = zget_APDU(odr, Z_APDU_initRequest); BOOST_CHECK(apdu); @@ -75,20 +77,20 @@ BOOST_AUTO_TEST_CASE( test_filter_z3950_client_2 ) } } -BOOST_AUTO_TEST_CASE( test_filter_z3950_client_3 ) +BOOST_AUTO_UNIT_TEST( test_filter_z3950_client_3 ) { try { - yp2::RouterChain router; + mp::RouterChain router; - yp2::filter::Z3950Client zc; + mp::filter::Z3950Client zc; router.append(zc); // Create package with Z39.50 present request in it - yp2::Package pack; + mp::Package pack; - yp2::odr odr; + mp::odr odr; Z_APDU *apdu = zget_APDU(odr, Z_APDU_presentRequest); BOOST_CHECK(apdu); @@ -116,26 +118,28 @@ BOOST_AUTO_TEST_CASE( test_filter_z3950_client_3 ) } } -BOOST_AUTO_TEST_CASE( test_filter_z3950_client_4 ) +BOOST_AUTO_UNIT_TEST( test_filter_z3950_client_4 ) { try { - yp2::RouterChain router; + mp::RouterChain router; - yp2::filter::Z3950Client zc; + mp::filter::Z3950Client zc; router.append(zc); // Create package with Z39.50 init request in it - yp2::Package pack; + mp::Package pack; - yp2::odr odr; + mp::odr odr; Z_APDU *apdu = zget_APDU(odr, Z_APDU_initRequest); const char *vhost = "localhost:9999"; if (vhost) - yaz_oi_set_string_oidval(&apdu->u.initRequest->otherInfo, - odr, VAL_PROXY, 1, vhost); + { + yaz_oi_set_string_oid(&apdu->u.initRequest->otherInfo, + odr, yaz_oid_userinfo_proxy, 1, vhost); + } BOOST_CHECK(apdu); pack.request() = apdu;