Make exception class for XML router
[metaproxy-moved-to-github.git] / src / test_router_flexml.cpp
1 /* $Id: test_router_flexml.cpp,v 1.6 2005-12-08 15:34:08 adam Exp $
2    Copyright (c) 2005, Index Data.
3
4 %LICENSE%
5  */
6
7 #include "config.hpp"
8 #include <iostream>
9 #include <stdexcept>
10
11 #include "filter.hpp"
12 #include "router_flexml.hpp"
13
14 #define BOOST_AUTO_TEST_MAIN
15 #include <boost/test/auto_unit_test.hpp>
16
17 using namespace boost::unit_test;
18
19 class TFilter: public yp2::filter::Base {
20 public:
21     void process(yp2::Package & package) const {};
22 };
23     
24
25 BOOST_AUTO_UNIT_TEST( test_router_flexml_1 )
26 {
27     try
28     {
29         std::string xmlconf = "<?xml version=\"1.0\"?>\n"
30             "<yp2 xmlns=\"http://indexdata.dk/yp2/config/1\">\n"
31             "<start route=\"start\"/>\n"
32             "<filters>\n"
33             "<filter id=\"front_default\" type=\"frontend-net\">\n"
34             "<port>210</port>\n"
35             "</filter>\n"
36             "<filter id=\"log_cout\" type=\"log\">\n"
37             "<logfile>mylog.log</logfile>\n"
38             "</filter>\n"
39             "</filters>\n"
40             "<routes>\n"  
41             "<route id=\"start\">\n"
42             "<filter refid=\"front_default\"/>\n"
43             "<filter refid=\"log_cout\"/>\n"
44             "</route>\n"
45             "</routes>\n"
46             "</yp2>\n";
47        
48         yp2::RouterFleXML rflexml(xmlconf);
49     }
50     catch ( ... ) {
51         BOOST_CHECK (false);
52     }
53 }
54
55 BOOST_AUTO_UNIT_TEST( test_router_flexml_2 )
56 {
57     bool got_xml_error = false;
58     try
59     {
60         std::string xmlconf_invalid = "<?xml version=\"1.0\"?>\n"
61             "<yp2 xmlns=\"http://indexdata.dk/yp2/config/1\">\n"
62             "<start route=\"start\"/>\n"
63             "<filters>\n";
64
65         yp2::RouterFleXML rflexml(xmlconf_invalid);
66     }
67     catch ( yp2::RouterFleXML::XMLError &e) {
68         got_xml_error = true;
69     }
70     catch ( ... ) {
71         ;
72     }
73     BOOST_CHECK(got_xml_error);
74 }
75
76 BOOST_AUTO_UNIT_TEST( test_router_flexml_3 )
77 {
78     try
79     {
80         std::string xmlconf = "<?xml version=\"1.0\"?>\n"
81             "<y:yp2 xmlns:y=\"http://indexdata.dk/yp2/config/1\">\n"
82             "  <start route=\"start\"/>\n"
83             "  <filters>\n"
84             "    <filter id=\"front_default\" type=\"frontend-net\">\n"
85             "      <port>210</port>\n"
86             "    </filter>\n"
87             "    <filter id=\"log_cout\" type=\"log\">\n"
88             "      <logfile>mylog.log</logfile>\n"
89             "    </filter>\n"
90             "  </filters>\n"
91             "  <routes>\n"  
92             "    <route id=\"start\">\n"
93             "      <filter refid=\"front_default\"/>\n"
94             "      <filter refid=\"log_cout\"/>\n"
95             "    </route>\n"
96             "  </routes>\n"
97             "</y:yp2>\n";
98        
99         yp2::RouterFleXML rflexml(xmlconf);
100     }
101     catch ( ... ) {
102         BOOST_CHECK (false);
103     }
104 }
105
106
107
108 /*
109  * Local variables:
110  * c-basic-offset: 4
111  * indent-tabs-mode: nil
112  * c-file-style: "stroustrup"
113  * End:
114  * vim: shiftwidth=4 tabstop=8 expandtab
115  */