1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
/*
* libopenraw - xmlhandler.cpp
*
* Copyright (C) 2008 Hubert Figuiere
*
* This library is free software: you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation, either version 3 of
* the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see
* <http://www.gnu.org/licenses/>.
*/
#include <string>
#include <boost/test/minimal.hpp>
#include "xmlhandler.h"
enum {
XML_root = 1,
XML_foo = 2,
XML_bar = 3
};
static const xml::tag_map_definition_t tags[] = {
{ "root", XML_root },
{ "foo", XML_foo },
{ "bar", XML_bar },
{ 0, 0 }
};
class TestHandler
: public xml::Handler
{
public:
TestHandler(const std::string & filename)
: xml::Handler(filename)
, rootFound(false)
{
mapTags(tags);
}
virtual xml::ContextPtr startElement(int32_t element)
{
xml::ContextPtr ctx;
switch(element) {
case XML_root:
rootFound = true;
break;
case XML_foo:
ctx.reset(new xml::SimpleElementContext(boost::static_pointer_cast<xml::Handler>(shared_from_this()),
foo));
break;
case XML_bar:
ctx.reset(new xml::SimpleElementContext(boost::static_pointer_cast<xml::Handler>(shared_from_this()),
bar));
break;
default:
break;
}
if(!ctx) {
ctx = shared_from_this();
}
return ctx;
}
bool rootFound;
std::string foo;
std::string bar;
};
int test_main( int, char *[] ) // note the name!
{
std::string dir;
const char * pdir = getenv("srcdir");
if(pdir == NULL) {
dir = ".";
}
else {
dir = pdir;
}
xml::HandlerPtr handler(new TestHandler(dir + "/test.xml"));
BOOST_CHECK(handler->process());
BOOST_CHECK(boost::static_pointer_cast<TestHandler>(handler)->rootFound);
BOOST_CHECK(boost::static_pointer_cast<TestHandler>(handler)->foo == "foo");
BOOST_CHECK(boost::static_pointer_cast<TestHandler>(handler)->bar == "bar");
return 0;
}
|