mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
==68902== 8 bytes in 1 blocks are definitely lost in loss record 7 of 251 ==68902== at 0x4843828: malloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so) ==68902== by 0x5225948: g_malloc (in /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.7600.1) ==68902== by 0x5240ED2: g_strdup (in /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.7600.1) ==68902== by 0x13135E: g_strdup_inline (gstrfuncs.h:321) ==68902== by 0x13135E: dom_tree_to_text(_xmlNode*) (sixtp-dom-parsers.cpp:500) ==68902== by 0x141758: test_bad_string() (test-string-converters.cpp:70) ==68902== by 0x1417D8: main (test-string-converters.cpp:82) ==68902== ==68902== 93 bytes in 5 blocks are definitely lost in loss record 199 of 251 ==68902== at 0x4843828: malloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so) ==68902== by 0x5225948: g_malloc (in /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.7600.1) ==68902== by 0x5240ED2: g_strdup (in /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.7600.1) ==68902== by 0x13135E: g_strdup_inline (gstrfuncs.h:321) ==68902== by 0x13135E: dom_tree_to_text(_xmlNode*) (sixtp-dom-parsers.cpp:500) ==68902== by 0x14169B: test_string_converters() (test-string-converters.cpp:55) ==68902== by 0x1417D3: main (test-string-converters.cpp:81) ==68902== ==68902== 260 (120 direct, 140 indirect) bytes in 1 blocks are definitely lost in loss record 242 of 251 ==68902== at 0x4843828: malloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so) ==68902== by 0x48D5B84: xmlNewNode (in /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.14) ==68902== by 0x133873: text_to_dom_tree(char const*, char const*) (sixtp-dom-generators.cpp:53) ==68902== by 0x141748: test_bad_string() (test-string-converters.cpp:68) ==68902== by 0x1417D8: main (test-string-converters.cpp:82) ==68902== ==68902== 1,353 (600 direct, 753 indirect) bytes in 5 blocks are definitely lost in loss record 248 of 251 ==68902== at 0x4843828: malloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so) ==68902== by 0x48D5B84: xmlNewNode (in /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.14) ==68902== by 0x133873: text_to_dom_tree(char const*, char const*) (sixtp-dom-generators.cpp:53) ==68902== by 0x14168B: test_string_converters() (test-string-converters.cpp:54) ==68902== by 0x1417D3: main (test-string-converters.cpp:81) ==68902==
93 lines
2.9 KiB
C++
93 lines
2.9 KiB
C++
/********************************************************************\
|
|
* 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 *
|
|
* *
|
|
\********************************************************************/
|
|
#include <config.h>
|
|
|
|
#include <stdlib.h>
|
|
#include "gnc-engine.h"
|
|
|
|
#include "test-engine-stuff.h"
|
|
|
|
#include "test-file-stuff.h"
|
|
#include "sixtp-dom-parsers.h"
|
|
#include "sixtp-dom-generators.h"
|
|
#include "test-stuff.h"
|
|
|
|
|
|
#define GNC_V2_STRING "gnc-v2"
|
|
const gchar* gnc_v2_xml_version_string = GNC_V2_STRING;
|
|
|
|
static const char* test_strings[] =
|
|
{
|
|
"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)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; test_strings[i]; ++i)
|
|
{
|
|
const char* mark = test_strings[i];
|
|
xmlNodePtr test_node = text_to_dom_tree ("test-string", mark);
|
|
char* backout = dom_tree_to_text (test_node);
|
|
|
|
do_test_args (
|
|
g_strcmp0 (backout, mark) == 0,
|
|
"string converting", __FILE__, __LINE__, "with string %s", mark);
|
|
|
|
g_free (backout);
|
|
xmlFreeNode (test_node);
|
|
}
|
|
}
|
|
|
|
static void
|
|
test_bad_string (void)
|
|
{
|
|
const char* badstr = "foo\abar";
|
|
const char* sanitized = "foo?bar";
|
|
xmlNodePtr test_node = text_to_dom_tree ("test-string", badstr);
|
|
|
|
char* backout = dom_tree_to_text (test_node);
|
|
do_test_args (g_strcmp0 (backout, sanitized) == 0,
|
|
"string sanitizing", __FILE__, __LINE__,
|
|
"with string %s", badstr);
|
|
|
|
g_free (backout);
|
|
xmlFreeNode (test_node);
|
|
}
|
|
|
|
int
|
|
main (int argc, char** argv)
|
|
{
|
|
qof_log_init ();
|
|
fflush (stdout);
|
|
test_string_converters ();
|
|
test_bad_string ();
|
|
fflush (stdout);
|
|
print_test_results ();
|
|
exit (get_rv ());
|
|
}
|