X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Ftest_filter_z3950_client.cpp;h=460a3b9e276e5953b39edc49b542a64474b40ca9;hb=d0123337d70b0fb97b578cc57467bb94980f1014;hp=c3cbd2c29c244905b66c336e9a5b7a19ee7bb139;hpb=77dee8966dd1304a0fb8540c3fc68d02dc6ce84a;p=metaproxy-moved-to-github.git diff --git a/src/test_filter_z3950_client.cpp b/src/test_filter_z3950_client.cpp index c3cbd2c..460a3b9 100644 --- a/src/test_filter_z3950_client.cpp +++ b/src/test_filter_z3950_client.cpp @@ -1,8 +1,20 @@ -/* $Id: test_filter_z3950_client.cpp,v 1.7 2005-12-02 12:21:07 adam Exp $ - Copyright (c) 2005, Index Data. +/* This file is part of Metaproxy. + Copyright (C) 2005-2009 Index Data -%LICENSE% - */ +Metaproxy is free software; you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free +Software Foundation; either version 2, or (at your option) any later +version. + +Metaproxy is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ #include "config.hpp" #include @@ -16,38 +28,41 @@ #include "package.hpp" #define BOOST_AUTO_TEST_MAIN +#define BOOST_TEST_DYN_LINK #include #include #include -using namespace boost::unit_test; +#include +using namespace boost::unit_test; +namespace mp = metaproxy_1; -BOOST_AUTO_UNIT_TEST( test_filter_z3950_client_1 ) +BOOST_AUTO_TEST_CASE( 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_UNIT_TEST( test_filter_z3950_client_2 ) +BOOST_AUTO_TEST_CASE( 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 +90,20 @@ BOOST_AUTO_UNIT_TEST( test_filter_z3950_client_2 ) } } -BOOST_AUTO_UNIT_TEST( test_filter_z3950_client_3 ) +BOOST_AUTO_TEST_CASE( 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 +131,28 @@ BOOST_AUTO_UNIT_TEST( test_filter_z3950_client_3 ) } } -BOOST_AUTO_UNIT_TEST( test_filter_z3950_client_4 ) +BOOST_AUTO_TEST_CASE( 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; @@ -168,8 +185,9 @@ BOOST_AUTO_UNIT_TEST( test_filter_z3950_client_4 ) /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil - * c-file-style: "stroustrup" * End: * vim: shiftwidth=4 tabstop=8 expandtab */ +