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 *
|
|
|
|
* *
|
|
|
|
\********************************************************************/
|
2015-11-29 19:11:29 -06:00
|
|
|
extern "C"
|
|
|
|
{
|
2017-10-26 04:14:21 -05:00
|
|
|
#include <config.h>
|
2001-08-07 18:29:04 -05:00
|
|
|
|
|
|
|
#include <stdlib.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"
|
2015-11-29 19:11:29 -06:00
|
|
|
}
|
|
|
|
|
2016-11-28 12:27:09 -06:00
|
|
|
#include "test-file-stuff.h"
|
2015-11-29 19:11:29 -06:00
|
|
|
#include "sixtp-dom-parsers.h"
|
|
|
|
#include "sixtp-dom-generators.h"
|
|
|
|
|
2001-08-07 18:29:04 -05:00
|
|
|
|
2012-01-28 19:12:30 -06:00
|
|
|
#define GNC_V2_STRING "gnc-v2"
|
2016-03-12 16:04:40 -06:00
|
|
|
const gchar* gnc_v2_xml_version_string = GNC_V2_STRING;
|
2012-01-28 19:12:30 -06:00
|
|
|
|
2016-03-12 16:04:40 -06:00
|
|
|
static const char* test_strings[] =
|
2009-12-29 14:12:48 -06:00
|
|
|
{
|
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
|
2016-03-12 16:04:40 -06:00
|
|
|
test_string_converters (void)
|
2001-08-07 18:29:04 -05:00
|
|
|
{
|
|
|
|
int i;
|
2009-12-29 14:12:48 -06:00
|
|
|
|
2015-11-29 19:11:29 -06:00
|
|
|
for (i = 0; test_strings[i]; ++i)
|
2001-08-07 18:29:04 -05:00
|
|
|
{
|
2016-03-12 16:04:40 -06:00
|
|
|
const char* mark = test_strings[i];
|
|
|
|
xmlNodePtr test_node = text_to_dom_tree ("test-string", mark);
|
|
|
|
char* backout = dom_tree_to_text (test_node);
|
2001-08-07 18:29:04 -05:00
|
|
|
|
2016-03-12 16:04:40 -06:00
|
|
|
do_test_args (
|
|
|
|
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)
|
|
|
|
{
|
2016-03-12 16:04:40 -06:00
|
|
|
const char* badstr = "foo\abar";
|
|
|
|
const char* sanitized = "foo?bar";
|
2013-12-22 16:32:04 -06:00
|
|
|
xmlNodePtr test_node = text_to_dom_tree ("test-string", badstr);
|
|
|
|
|
2016-03-12 16:04:40 -06:00
|
|
|
char* backout = dom_tree_to_text (test_node);
|
2013-12-22 16:32:04 -06:00
|
|
|
do_test_args (g_strcmp0 (backout, sanitized) == 0,
|
2016-03-12 16:04:40 -06:00
|
|
|
"string sanitizing", __FILE__, __LINE__,
|
|
|
|
"with string %s", badstr);
|
2013-12-22 16:32:04 -06:00
|
|
|
}
|
|
|
|
|
2001-08-07 18:29:04 -05:00
|
|
|
int
|
2016-03-12 16:04:40 -06:00
|
|
|
main (int argc, char** argv)
|
2001-08-07 18:29:04 -05:00
|
|
|
{
|
2016-03-12 16:04:40 -06:00
|
|
|
qof_log_init ();
|
|
|
|
fflush (stdout);
|
|
|
|
test_string_converters ();
|
2013-12-22 16:32:04 -06:00
|
|
|
test_bad_string ();
|
2016-03-12 16:04:40 -06:00
|
|
|
fflush (stdout);
|
|
|
|
print_test_results ();
|
|
|
|
exit (get_rv ());
|
2001-08-07 18:29:04 -05:00
|
|
|
}
|