2015-09-29 14:08:48 -05:00
|
|
|
/********************************************************************\
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License as *
|
|
|
|
* published by the Free Software Foundation; either version 2 of *
|
|
|
|
* the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program 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 General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License*
|
|
|
|
* along with this program; if not, contact: *
|
|
|
|
* *
|
|
|
|
* Free Software Foundation Voice: +1-617-542-5942 *
|
|
|
|
* 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
|
|
|
|
* Boston, MA 02110-1301, USA gnu@gnu.org *
|
|
|
|
* *
|
|
|
|
\********************************************************************/
|
|
|
|
|
2001-08-07 18:29:04 -05:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "sixtp-dom-parsers.h"
|
|
|
|
#include "sixtp-dom-generators.h"
|
|
|
|
|
2005-11-01 21:32:36 -06:00
|
|
|
#include "gnc-engine.h"
|
2001-08-07 18:29:04 -05:00
|
|
|
|
2001-08-18 15:33:51 -05:00
|
|
|
#include "test-stuff.h"
|
|
|
|
#include "test-engine-stuff.h"
|
|
|
|
#include "test-file-stuff.h"
|
2001-08-07 18:29:04 -05:00
|
|
|
|
2012-01-28 19:12:30 -06:00
|
|
|
#define GNC_V2_STRING "gnc-v2"
|
|
|
|
const gchar *gnc_v2_xml_version_string = GNC_V2_STRING;
|
|
|
|
|
2009-12-29 14:12:48 -06:00
|
|
|
static char *test_strings[] =
|
|
|
|
{
|
2001-08-07 18:29:04 -05:00
|
|
|
"FooBar",
|
|
|
|
"<Ugly crap>",
|
|
|
|
"Something with a & in it",
|
|
|
|
"Ugly(*!&@#$NTHOEAUTF\"ntaheu09.h,. \n\t",
|
|
|
|
"\n\t\n\t",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_string_converters(void)
|
|
|
|
{
|
|
|
|
char *mark;
|
|
|
|
int i;
|
2009-12-29 14:12:48 -06:00
|
|
|
|
|
|
|
for (i = 0, mark = test_strings[i]; mark; i++, mark = test_strings[i])
|
2001-08-07 18:29:04 -05:00
|
|
|
{
|
|
|
|
xmlNodePtr test_node;
|
|
|
|
gchar *backout;
|
|
|
|
test_node = text_to_dom_tree("test-string", mark);
|
|
|
|
|
|
|
|
backout = dom_tree_to_text(test_node);
|
|
|
|
|
|
|
|
do_test_args(
|
2012-08-07 12:24:55 -05:00
|
|
|
g_strcmp0(backout, mark) == 0,
|
2001-08-07 18:29:04 -05:00
|
|
|
"string converting", __FILE__, __LINE__, "with string %s", mark);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-22 16:32:04 -06:00
|
|
|
static void
|
|
|
|
test_bad_string (void)
|
|
|
|
{
|
|
|
|
gchar *badstr = "foo\abar";
|
|
|
|
gchar *sanitized = "foo?bar";
|
|
|
|
gchar *backout;
|
|
|
|
xmlNodePtr test_node = text_to_dom_tree ("test-string", badstr);
|
|
|
|
|
|
|
|
backout = dom_tree_to_text (test_node);
|
|
|
|
do_test_args (g_strcmp0 (backout, sanitized) == 0,
|
|
|
|
"string sanitizing", __FILE__, __LINE__,
|
|
|
|
"with string %s", badstr);
|
|
|
|
}
|
|
|
|
|
2001-08-07 18:29:04 -05:00
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
2007-02-09 11:35:00 -06:00
|
|
|
qof_log_init();
|
2001-08-07 18:29:04 -05:00
|
|
|
fflush(stdout);
|
|
|
|
test_string_converters();
|
2013-12-22 16:32:04 -06:00
|
|
|
test_bad_string ();
|
2001-08-07 18:29:04 -05:00
|
|
|
fflush(stdout);
|
|
|
|
print_test_results();
|
|
|
|
exit(get_rv());
|
|
|
|
}
|