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 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
|
/* Copyright (C) 2015 The libxml++ development team
*
* 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 2.1 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, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <config.h>
#include <libxml++/libxml++.h>
#include <cstdlib>
#include <glibmm.h>
#include <stdexcept>
class OnCdataBlockTestParser : public xmlpp::SaxParser
{
protected:
void on_cdata_block(const Glib::ustring& text) override
{
g_assert_cmpstr(text.c_str(), ==, "some CDATA");
throw std::runtime_error("on_cdata_block runtime exception");
}
};
void test_on_cdata_block()
{
OnCdataBlockTestParser parser;
bool exceptionThrown = false;
try
{
parser.parse_memory("<root><![CDATA[some CDATA]]></root>");
}
#ifdef LIBXMLXX_HAVE_EXCEPTION_PTR
catch(const std::runtime_error& e)
#else
catch(const xmlpp::exception& e)
#endif
{
exceptionThrown = true;
g_assert_cmpstr(e.what(), ==, "on_cdata_block runtime exception");
}
g_assert_true(exceptionThrown);
}
class OnCharactersTestParser : public xmlpp::SaxParser
{
protected:
void on_characters(const Glib::ustring& characters) override
{
g_assert_cmpstr(characters.c_str(), ==, "abc");
throw std::runtime_error("on_characters runtime exception");
}
};
void test_on_characters()
{
OnCharactersTestParser parser;
bool exceptionThrown = false;
try
{
parser.parse_memory("<root>abc</root>");
}
#ifdef LIBXMLXX_HAVE_EXCEPTION_PTR
catch(const std::runtime_error& e)
#else
catch(const xmlpp::exception& e)
#endif
{
exceptionThrown = true;
g_assert_cmpstr(e.what(), ==, "on_characters runtime exception");
}
g_assert_true(exceptionThrown);
}
class OnCommentTestParser : public xmlpp::SaxParser
{
protected:
void on_comment(const Glib::ustring& text) override
{
g_assert_cmpstr(text.c_str(), ==, "a comment");
throw std::runtime_error("on_comment runtime exception");
}
};
void test_on_comment()
{
OnCommentTestParser parser;
bool exceptionThrown = false;
try
{
parser.parse_memory("<root><!--a comment--></root>");
}
#ifdef LIBXMLXX_HAVE_EXCEPTION_PTR
catch(const std::runtime_error& e)
#else
catch(const xmlpp::exception& e)
#endif
{
exceptionThrown = true;
g_assert_cmpstr(e.what(), ==, "on_comment runtime exception");
}
g_assert_true(exceptionThrown);
}
class OnEndDocumentTestParser : public xmlpp::SaxParser
{
protected:
void on_end_document() override
{
throw std::runtime_error("on_end_document runtime exception");
}
};
void test_on_end_document()
{
OnEndDocumentTestParser parser;
bool exceptionThrown = false;
try
{
parser.parse_memory("<root></root>");
}
#ifdef LIBXMLXX_HAVE_EXCEPTION_PTR
catch(const std::runtime_error& e)
#else
catch(const xmlpp::exception& e)
#endif
{
exceptionThrown = true;
g_assert_cmpstr(e.what(), ==, "on_end_document runtime exception");
}
g_assert_true(exceptionThrown);
}
class OnEndElementTestParser : public xmlpp::SaxParser
{
protected:
void on_end_element(const Glib::ustring& name) override
{
g_assert_cmpstr(name.c_str(), ==, "a:root");
throw std::runtime_error("on_end_element runtime exception");
}
};
void test_on_end_element()
{
OnEndElementTestParser parser;
bool exceptionThrown = false;
try
{
parser.parse_memory("<a:root xmlns:a=\"urn:test\"></a:root>");
}
#ifdef LIBXMLXX_HAVE_EXCEPTION_PTR
catch(const std::runtime_error& e)
#else
catch(const xmlpp::exception& e)
#endif
{
exceptionThrown = true;
g_assert_cmpstr(e.what(), ==, "on_end_element runtime exception");
}
g_assert_true(exceptionThrown);
}
class OnEntityDeclarationTestParser : public xmlpp::SaxParser
{
protected:
void on_entity_declaration(const Glib::ustring& name, xmlpp::XmlEntityType /* type */,
const Glib::ustring& /* publicId */, const Glib::ustring& /* systemId */,
const Glib::ustring& content) override
{
g_assert_cmpstr(name.c_str(), ==, "number");
g_assert_cmpstr(content.c_str(), ==, "42");
throw std::runtime_error("on_entity_declaration runtime exception");
}
};
void test_on_entity_declaration()
{
OnEntityDeclarationTestParser parser;
bool exceptionThrown = false;
try
{
parser.parse_memory("<!DOCTYPE MyDocument [<!ENTITY number \"42\">]><root></root>");
}
#ifdef LIBXMLXX_HAVE_EXCEPTION_PTR
catch(const std::runtime_error& e)
#else
catch(const xmlpp::exception& e)
#endif
{
exceptionThrown = true;
g_assert_cmpstr(e.what(), ==, "on_entity_declaration runtime exception");
}
g_assert_true(exceptionThrown);
}
class OnErrorTestParser : public xmlpp::SaxParser
{
protected:
void on_error(const Glib::ustring& /* text */) override
{
throw std::runtime_error("on_error runtime exception");
}
};
void test_on_error()
{
OnErrorTestParser parser;
bool exceptionThrown = false;
try
{
parser.parse_memory("<root>&unknown;</root>");
}
#ifdef LIBXMLXX_HAVE_EXCEPTION_PTR
catch(const std::runtime_error& e)
#else
catch(const xmlpp::exception& e)
#endif
{
exceptionThrown = true;
g_assert_cmpstr(e.what(), ==, "on_error runtime exception");
}
g_assert_true(exceptionThrown);
}
class OnGetEntityTestParser : public xmlpp::SaxParser
{
public:
OnGetEntityTestParser()
: xmlpp::SaxParser(true)
{
}
protected:
_xmlEntity* on_get_entity(const Glib::ustring& name) override
{
g_assert_cmpstr(name.c_str(), ==, "number");
throw std::runtime_error("on_get_entity runtime exception");
}
};
void test_on_get_entity()
{
OnGetEntityTestParser parser;
bool exceptionThrown = false;
try
{
parser.parse_memory("<!DOCTYPE MyDocument [<!ENTITY number \"42\">]><root>&number;</root>");
}
#ifdef LIBXMLXX_HAVE_EXCEPTION_PTR
catch(const std::runtime_error& e)
#else
catch(const xmlpp::exception& e)
#endif
{
exceptionThrown = true;
g_assert_cmpstr(e.what(), ==, "on_get_entity runtime exception");
}
g_assert_true(exceptionThrown);
}
class OnStartDocumentTestParser : public xmlpp::SaxParser
{
protected:
void on_start_document() override
{
throw std::runtime_error("on_start_document runtime exception");
}
};
void test_on_start_document()
{
OnStartDocumentTestParser parser;
bool exceptionThrown = false;
try
{
parser.parse_memory("<root></root>");
}
#ifdef LIBXMLXX_HAVE_EXCEPTION_PTR
catch(const std::runtime_error& e)
#else
catch(const xmlpp::exception& e)
#endif
{
exceptionThrown = true;
g_assert_cmpstr(e.what(), ==, "on_start_document runtime exception");
}
g_assert_true(exceptionThrown);
}
class OnStartElementTestParser : public xmlpp::SaxParser
{
protected:
void on_start_element(const Glib::ustring& name, const xmlpp::SaxParser::AttributeList& attributes) override
{
g_assert_cmpstr(name.c_str(), ==, "b:root");
g_assert_cmpint(attributes.size(), ==, 2);
throw std::runtime_error("on_start_element runtime exception");
}
};
void test_on_start_element()
{
OnStartElementTestParser parser;
bool exceptionThrown = false;
try
{
parser.parse_memory("<b:root xmlns:b=\"urn:test\" someattr=\"test\"></b:root>");
}
#ifdef LIBXMLXX_HAVE_EXCEPTION_PTR
catch(const std::runtime_error& e)
#else
catch(const xmlpp::exception& e)
#endif
{
exceptionThrown = true;
g_assert_cmpstr(e.what(), ==, "on_start_element runtime exception");
}
g_assert_true(exceptionThrown);
}
int main()
{
Glib::init();
test_on_cdata_block();
test_on_characters();
test_on_comment();
test_on_end_document();
test_on_end_element();
test_on_entity_declaration();
test_on_error();
// TODO test on_fatal_error()
// This is not currently possible because the fatalError handler is never called;
// error is called for all errors.
// http://xmlsoft.org/html/libxml-parser.html#fatalErrorSAXFunc
test_on_get_entity();
// TODO test on_internal_subset()
test_on_start_document();
test_on_start_element();
// TODO test on_warning(), on_validity_error(), on_validity_warning()
return EXIT_SUCCESS;
}
|