mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-02 07:36:17 +01:00
2f4c3d8a6d
Thu Sep 11 20:11:05 2003 Owen Taylor <otaylor@redhat.com> * glib/gmarkup.c: Add g_markup_printf_escaped(), g_markup_vprintf_escaped(). * tests/markup-escape-test.c (main): Test for g_markup_escape_text(), g_markup_printf_escaped().
96 lines
2.1 KiB
C
96 lines
2.1 KiB
C
#undef G_DISABLE_ASSERT
|
|
#undef G_LOG_DOMAIN
|
|
|
|
#include <stdarg.h>
|
|
#include <string.h>
|
|
#include <glib.h>
|
|
|
|
static void test_format (const gchar *format,
|
|
const gchar *expected, ...) G_GNUC_PRINTF (1, 3);
|
|
|
|
static gboolean error = FALSE;
|
|
|
|
static void
|
|
test (const gchar *original,
|
|
const gchar *expected)
|
|
{
|
|
gchar *result = g_markup_escape_text (original, -1);
|
|
|
|
if (strcmp (result, expected) != 0)
|
|
{
|
|
g_printerr ("g_markup_escape_text(): expected '%s', got '%s'\n",
|
|
expected, result);
|
|
error = TRUE;
|
|
}
|
|
|
|
g_free (result);
|
|
}
|
|
|
|
static void
|
|
test_format (const gchar *format,
|
|
const gchar *expected,
|
|
...)
|
|
{
|
|
gchar *result;
|
|
|
|
va_list args;
|
|
|
|
va_start (args, expected);
|
|
result = g_markup_vprintf_escaped (format, args);
|
|
va_end (args);
|
|
|
|
if (strcmp (result, expected) != 0)
|
|
{
|
|
g_printerr ("g_markup_printf_escaped(): expected '%s', got '%s'\n",
|
|
expected, result);
|
|
error = TRUE;
|
|
}
|
|
|
|
g_free (result);
|
|
}
|
|
|
|
int main (int argc, char **argv)
|
|
{
|
|
/* Tests for g_markup_escape_text() */
|
|
test ("&", "&");
|
|
test ("<", "<");
|
|
test (">", ">");
|
|
test ("'", "'");
|
|
test ("\"", """);
|
|
|
|
test ("", "");
|
|
test ("A", "A");
|
|
test ("A&", "A&");
|
|
test ("&A", "&A");
|
|
test ("A&A", "A&A");
|
|
test ("&&A", "&&A");
|
|
test ("A&&", "A&&");
|
|
test ("A&&A", "A&&A");
|
|
test ("A&A&A", "A&A&A");
|
|
|
|
/* Tests for g_markup_printf_escaped() */
|
|
test_format ("A", "A");
|
|
test_format ("A%s", "A&", "&");
|
|
test_format ("%sA", "&A", "&");
|
|
test_format ("A%sA", "A&A", "&");
|
|
test_format ("%s%sA", "&&A", "&", "&");
|
|
test_format ("A%s%s", "A&&", "&", "&");
|
|
test_format ("A%s%sA", "A&&A", "&", "&");
|
|
test_format ("A%sA%sA", "A&A&A", "&", "&");
|
|
|
|
test_format ("%s", "<B>&",
|
|
"<B>&");
|
|
test_format ("%c%c", "<&",
|
|
'<', '&');
|
|
test_format (".%c.%c.", ".<.&.",
|
|
'<', '&');
|
|
test_format ("%s", "",
|
|
"");
|
|
test_format ("%-5s", "A ",
|
|
"A");
|
|
test_format ("%2$s%1$s", "B.A.",
|
|
"A.", "B.");
|
|
|
|
return error ? 1 : 0;
|
|
}
|