#include "test.h" #if INCLUDE_XML_TEST #include #include #define THIS_FILE "xml_test" static const char *xml_doc[] = { " \n" " \n" "\n" " \n" " \n" " open\n" " assistant\n" " \n" " \n" " true\n" " false\n" " true\n" " \n" " tel:09012345678\n" " \n" "\n" " \n" " \n" " open\n" " \n" " im:pep@example.com\n" " \n" "\n" " \n" " \n" " closed\n" " meeting\n" " \n" " http://example.com/~pep/\n" " http://example.com/~pep/icon.gif\n" " http://example.com/~pep/card.vcd\n" " sip:pep@example.com\n" " \n" "\n" " Full state presence document\n" "\n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" "\n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" "\n" " \n" } ; static int xml_parse_print_test(const char *doc) { pj_str_t msg; pj_pool_t *pool; pj_xml_node *root; char *output; int output_len; pool = pj_pool_create(mem, "xml", 4096, 1024, NULL); pj_strdup2(pool, &msg, doc); root = pj_xml_parse(pool, msg.ptr, msg.slen); if (!root) { PJ_LOG(1, (THIS_FILE, " Error: unable to parse XML")); return -10; } output = (char*)pj_pool_alloc(pool, msg.slen + 512); pj_memset(output, 0, msg.slen+512); output_len = pj_xml_print(root, output, msg.slen+512, PJ_TRUE); if (output_len < 1) { PJ_LOG(1, (THIS_FILE, " Error: buffer too small to print XML file")); return -20; } output[output_len] = '\0'; pj_pool_release(pool); return 0; } int xml_test() { unsigned i; for (i=0; i