X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=src%2Ftest_filter_record_transform.cpp;h=bcbab1dafee430923f5c6a754fca8188810406b8;hb=0264192f26c10308aad161983ea29568c96521a6;hp=cf54ff42e6244b8c6e54781b3f15f4c23054f90b;hpb=e637fc7750457b84b070b71e009c733887b0dd73;p=metaproxy-moved-to-github.git diff --git a/src/test_filter_record_transform.cpp b/src/test_filter_record_transform.cpp index cf54ff4..bcbab1d 100644 --- a/src/test_filter_record_transform.cpp +++ b/src/test_filter_record_transform.cpp @@ -1,7 +1,22 @@ -/* $Id: test_filter_record_transform.cpp,v 1.1 2006-10-03 14:04:22 marc Exp $ - Copyright (c) 2005-2006, Index Data. +/* $Id: test_filter_record_transform.cpp,v 1.7 2007-11-02 17:47:41 adam Exp $ + Copyright (c) 2005-2007, Index Data. - See the LICENSE file for details +This file is part of Metaproxy. + +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 Metaproxy; see the file LICENSE. If not, write to the +Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA +02111-1307, USA. */ #include "config.hpp" @@ -16,8 +31,12 @@ //#include #define BOOST_AUTO_TEST_MAIN +#define BOOST_TEST_DYN_LINK #include +#include + + using namespace boost::unit_test; namespace mp = metaproxy_1; @@ -25,7 +44,7 @@ namespace mp = metaproxy_1; -BOOST_AUTO_UNIT_TEST( test_filter_record_transform_1 ) +BOOST_AUTO_TEST_CASE( test_filter_record_transform_1 ) { try { @@ -36,7 +55,7 @@ BOOST_AUTO_UNIT_TEST( test_filter_record_transform_1 ) } } -BOOST_AUTO_UNIT_TEST( test_filter_record_transform_2 ) +BOOST_AUTO_TEST_CASE( test_filter_record_transform_2 ) { try { @@ -58,56 +77,65 @@ BOOST_AUTO_UNIT_TEST( test_filter_record_transform_2 ) } -// BOOST_AUTO_UNIT_TEST( test_filter_record_transform_3 ) -// { +BOOST_AUTO_TEST_CASE( test_filter_record_transform_3 ) +{ -// try -// { -// mp::RouterChain router; + try + { + mp::RouterChain router; -// std::string xmlconf = -// "\n" -// "\n" -// "\n" -// ; + std::string xmlconf = + "\n" + "\n" + "" + "" + "" + "" + "" + "\n" + ; -// //std::cout << xmlconf << std::endl; + //std::cout << xmlconf << std::endl; -// // reading and parsing XML conf -// xmlDocPtr doc = xmlParseMemory(xmlconf.c_str(), xmlconf.size()); -// BOOST_CHECK(doc); -// xmlNode *root_element = xmlDocGetRootElement(doc); + // reading and parsing XML conf + xmlDocPtr doc = xmlParseMemory(xmlconf.c_str(), xmlconf.size()); + BOOST_CHECK(doc); + xmlNode *root_element = xmlDocGetRootElement(doc); -// // creating and configuring filter -// mp::filter::RecordTransform f_rec_trans; -// f_rec_trans.configure(root_element); + // creating and configuring filter + mp::filter::RecordTransform f_rec_trans; + f_rec_trans.configure(root_element); -// // remeber to free XML DOM -// xmlFreeDoc(doc); + // remeber to free XML DOM + xmlFreeDoc(doc); -// // add only filter to router -// router.append(f_rec_trans); - -// // start testing -// check_sru_to_z3950_init(router); -// check_sru_to_z3950_search(router, -// "@attrset Bib-1 @attr 1=4 the", -// "@attrset Bib-1 @attr 1=4 the"); - -// } - -// catch (std::exception &e) { -// std::cout << e.what() << "\n"; -// BOOST_CHECK (false); -// } - -// catch ( ... ) { -// BOOST_CHECK (false); -// } -// } + // add only filter to router + router.append(f_rec_trans); + + // start testing + //check_sru_to_z3950_init(router); + //check_sru_to_z3950_search(router, + // "@attrset Bib-1 @attr 1=4 the", + // "@attrset Bib-1 @attr 1=4 the"); + + } + + catch (std::exception &e) { + std::cout << e.what() << "\n"; + BOOST_CHECK (false); + } + + catch ( ... ) { + BOOST_CHECK (false); + } +} /* * Local variables: