X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Ftest_filter_z3950_client.cpp;h=34382cafc725b1c5070ffd0c544b6b3ec5fea850;hb=665559cbc22546e8df69be33a7d492294cab9fb1;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..34382ca 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.6 2005-10-30 17:13:36 adam Exp $ - Copyright (c) 2005, Index Data. +/* This file is part of Metaproxy. + Copyright (C) 2005-2008 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,18 +28,21 @@ #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_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); @@ -38,16 +53,16 @@ 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); @@ -79,16 +94,16 @@ 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); @@ -120,22 +135,24 @@ 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_TEST_CASE( 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 */ +