Added test for filter backend_test.
authorAdam Dickmeiss <adam@indexdata.dk>
Tue, 25 Oct 2005 21:32:28 +0000 (21:32 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Tue, 25 Oct 2005 21:32:28 +0000 (21:32 +0000)
src/test_filter_backend_test.cpp [new file with mode: 0644]

diff --git a/src/test_filter_backend_test.cpp b/src/test_filter_backend_test.cpp
new file mode 100644 (file)
index 0000000..a561258
--- /dev/null
@@ -0,0 +1,174 @@
+/* $Id: test_filter_backend_test.cpp,v 1.1 2005-10-25 21:32:28 adam Exp $
+   Copyright (c) 2005, Index Data.
+
+%LICENSE%
+ */
+
+#include "config.hpp"
+#include <iostream>
+#include <stdexcept>
+
+#include "test_util.hpp"
+#include "filter_backend_test.hpp"
+#include "filter_log.hpp"
+
+#include "router.hpp"
+#include "session.hpp"
+#include "package.hpp"
+
+#include <yaz/zgdu.h>
+#include <yaz/pquery.h>
+#include <yaz/otherinfo.h>
+
+#define BOOST_AUTO_TEST_MAIN
+#include <boost/test/auto_unit_test.hpp>
+using namespace boost::unit_test;
+
+BOOST_AUTO_TEST_CASE( test_filter_backend_test_1 )
+{
+    try 
+    {
+        yp2::filter::Backend_test btest;
+    }
+    catch ( ... ) {
+        BOOST_CHECK (false);
+    }
+}
+
+BOOST_AUTO_TEST_CASE( test_filter_backend_test_2 )
+{
+    try 
+    {
+        yp2::RouterChain router;
+        
+        yp2::filter::Backend_test btest;
+        router.rule(btest);
+        
+        yp2::Package pack;
+        
+        ODR odr = odr_createmem(ODR_ENCODE);
+        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(); 
+        
+        // Inspect that we got Z39.50 init Response OK.
+        yazpp_1::GDU *gdu = &pack.response();
+        
+        BOOST_CHECK(!pack.session().is_closed()); 
+        
+        Z_GDU *z_gdu = gdu->get();
+        BOOST_CHECK(z_gdu);
+        if (z_gdu) {
+            BOOST_CHECK_EQUAL(z_gdu->which, Z_GDU_Z3950);
+            BOOST_CHECK_EQUAL(z_gdu->u.z3950->which, Z_APDU_initResponse);
+        }
+    }
+    catch ( ... ) {
+        BOOST_CHECK (false);
+    }
+}
+
+BOOST_AUTO_TEST_CASE( test_filter_backend_test_3 )
+{
+    try 
+    {
+        yp2::RouterChain router;
+        
+        yp2::filter::Backend_test btest;
+        router.rule(btest);
+        
+        yp2::Package pack;
+        
+        // send search request as first request.. That should fail with
+        // a close from the backend
+        ODR odr = odr_createmem(ODR_ENCODE);
+        Z_APDU *apdu = zget_APDU(odr, Z_APDU_searchRequest);
+
+        yp2::util::pqf(odr, apdu, "computer");
+        
+        apdu->u.searchRequest->num_databaseNames = 1;
+        apdu->u.searchRequest->databaseNames = (char**)
+            odr_malloc(odr, sizeof(char *));
+        apdu->u.searchRequest->databaseNames[0] = odr_strdup(odr, "Default");
+        
+        BOOST_CHECK(apdu);
+        
+        pack.request() = apdu;
+        odr_destroy(odr);
+        
+        // Put it in router
+        pack.router(router).move(); 
+        
+        // Inspect that we got Z39.50 close
+        yazpp_1::GDU *gdu = &pack.response();
+        
+        BOOST_CHECK(pack.session().is_closed()); 
+        
+        Z_GDU *z_gdu = gdu->get();
+        BOOST_CHECK(z_gdu);
+        if (z_gdu) {
+            BOOST_CHECK_EQUAL(z_gdu->which, Z_GDU_Z3950);
+            BOOST_CHECK_EQUAL(z_gdu->u.z3950->which, Z_APDU_close);
+        }
+    }
+    catch ( ... ) {
+        BOOST_CHECK (false);
+    }
+}
+
+BOOST_AUTO_TEST_CASE( test_filter_backend_test_4 )
+{
+    try 
+    {
+        yp2::RouterChain router;
+        
+        yp2::filter::Backend_test btest;
+        router.rule(btest);
+        
+        yp2::Package pack;
+        
+        // send present request as first request.. That should fail with
+        // a close from the backend
+        ODR odr = odr_createmem(ODR_ENCODE);
+        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(); 
+        
+        // Inspect that we got Z39.50 close
+        yazpp_1::GDU *gdu = &pack.response();
+        
+        BOOST_CHECK(pack.session().is_closed()); 
+        
+        Z_GDU *z_gdu = gdu->get();
+        BOOST_CHECK(z_gdu);
+        if (z_gdu) {
+            BOOST_CHECK_EQUAL(z_gdu->which, Z_GDU_Z3950);
+            BOOST_CHECK_EQUAL(z_gdu->u.z3950->which, Z_APDU_close);
+        }
+    }
+    catch ( ... ) {
+        BOOST_CHECK (false);
+    }
+}
+
+
+/*
+ * Local variables:
+ * c-basic-offset: 4
+ * indent-tabs-mode: nil
+ * c-file-style: "stroustrup"
+ * End:
+ * vim: shiftwidth=4 tabstop=8 expandtab
+ */