mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-29 08:56:15 +01:00
11f31d8220
While we already tested this for matching we did not when copying, so adding an expclit test for the utf8 case.
272 lines
7.6 KiB
C
272 lines
7.6 KiB
C
/* GLIB - Library of useful routines for C programming
|
|
* Copyright (C) 2001 Matthias Clasen <matthiasc@poet.de>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#undef G_DISABLE_ASSERT
|
|
#undef G_LOG_DOMAIN
|
|
|
|
#include <string.h>
|
|
#include <glib.h>
|
|
|
|
/* keep enum and structure of gpattern.c and patterntest.c in sync */
|
|
typedef enum
|
|
{
|
|
G_MATCH_ALL, /* "*A?A*" */
|
|
G_MATCH_ALL_TAIL, /* "*A?AA" */
|
|
G_MATCH_HEAD, /* "AAAA*" */
|
|
G_MATCH_TAIL, /* "*AAAA" */
|
|
G_MATCH_EXACT, /* "AAAAA" */
|
|
G_MATCH_LAST
|
|
} GMatchType;
|
|
|
|
struct _GPatternSpec
|
|
{
|
|
GMatchType match_type;
|
|
guint pattern_length;
|
|
guint min_length;
|
|
guint max_length;
|
|
gchar *pattern;
|
|
};
|
|
|
|
typedef struct _CompileTest CompileTest;
|
|
|
|
struct _CompileTest
|
|
{
|
|
const gchar *src;
|
|
GMatchType match_type;
|
|
gchar *pattern;
|
|
guint min;
|
|
};
|
|
|
|
static CompileTest compile_tests[] = {
|
|
{ "*A?B*", G_MATCH_ALL, "*A?B*", 3 },
|
|
{ "ABC*DEFGH", G_MATCH_ALL_TAIL, "HGFED*CBA", 8 },
|
|
{ "ABCDEF*GH", G_MATCH_ALL, "ABCDEF*GH", 8 },
|
|
{ "ABC**?***??**DEF*GH", G_MATCH_ALL, "ABC*???DEF*GH", 11 },
|
|
{ "**ABC***?🤌DEF**", G_MATCH_ALL, "*ABC*?🤌DEF*", 11 },
|
|
{ "*A?AA", G_MATCH_ALL_TAIL, "AA?A*", 4 },
|
|
{ "ABCD*", G_MATCH_HEAD, "ABCD", 4 },
|
|
{ "*ABCD", G_MATCH_TAIL, "ABCD", 4 },
|
|
{ "ABCDE", G_MATCH_EXACT, "ABCDE", 5 },
|
|
{ "A?C?E", G_MATCH_ALL, "A?C?E", 5 },
|
|
{ "*?x", G_MATCH_ALL_TAIL, "x?*", 2 },
|
|
{ "?*x", G_MATCH_ALL_TAIL, "x?*", 2 },
|
|
{ "*?*x", G_MATCH_ALL_TAIL, "x?*", 2 },
|
|
{ "x*??", G_MATCH_ALL_TAIL, "??*x", 3 }
|
|
};
|
|
|
|
static void
|
|
test_compilation (gconstpointer d)
|
|
{
|
|
const CompileTest *test = d;
|
|
GPatternSpec *spec;
|
|
|
|
spec = g_pattern_spec_new (test->src);
|
|
|
|
g_assert_cmpint (spec->match_type, ==, test->match_type);
|
|
g_assert_cmpstr (spec->pattern, ==, test->pattern);
|
|
g_assert_cmpint (spec->pattern_length, ==, strlen (spec->pattern));
|
|
g_assert_cmpint (spec->min_length, ==, test->min);
|
|
|
|
g_pattern_spec_free (spec);
|
|
}
|
|
|
|
static void
|
|
test_copy (gconstpointer d)
|
|
{
|
|
const CompileTest *test = d;
|
|
GPatternSpec *p1, *p2;
|
|
|
|
p1 = g_pattern_spec_new (test->src);
|
|
p2 = g_pattern_spec_copy (p1);
|
|
|
|
g_assert_cmpint (p2->match_type, ==, test->match_type);
|
|
g_assert_cmpstr (p2->pattern, ==, test->pattern);
|
|
g_assert_cmpint (p2->pattern_length, ==, strlen (p1->pattern));
|
|
g_assert_cmpint (p2->min_length, ==, test->min);
|
|
|
|
g_pattern_spec_free (p1);
|
|
g_pattern_spec_free (p2);
|
|
}
|
|
|
|
typedef struct _MatchTest MatchTest;
|
|
|
|
struct _MatchTest
|
|
{
|
|
const gchar *pattern;
|
|
const gchar *string;
|
|
gboolean match;
|
|
};
|
|
|
|
static MatchTest match_tests[] =
|
|
{
|
|
{ "*x", "x", TRUE },
|
|
{ "*x", "xx", TRUE },
|
|
{ "*x", "yyyx", TRUE },
|
|
{ "*x", "yyxy", FALSE },
|
|
{ "?x", "x", FALSE },
|
|
{ "?x", "xx", TRUE },
|
|
{ "?x", "yyyx", FALSE },
|
|
{ "?x", "yyxy", FALSE },
|
|
{ "*?x", "xx", TRUE },
|
|
{ "?*x", "xx", TRUE },
|
|
{ "*?x", "x", FALSE },
|
|
{ "?*x", "x", FALSE },
|
|
{ "*?*x", "yx", TRUE },
|
|
{ "*?*x", "xxxx", TRUE },
|
|
{ "x*??", "xyzw", TRUE },
|
|
{ "*x", "\xc3\x84x", TRUE },
|
|
{ "?x", "\xc3\x84x", TRUE },
|
|
{ "??x", "\xc3\x84x", FALSE },
|
|
{ "ab\xc3\xa4\xc3\xb6", "ab\xc3\xa4\xc3\xb6", TRUE },
|
|
{ "ab\xc3\xa4\xc3\xb6", "abao", FALSE },
|
|
{ "ab?\xc3\xb6", "ab\xc3\xa4\xc3\xb6", TRUE },
|
|
{ "ab?\xc3\xb6", "abao", FALSE },
|
|
{ "ab\xc3\xa4?", "ab\xc3\xa4\xc3\xb6", TRUE },
|
|
{ "ab\xc3\xa4?", "abao", FALSE },
|
|
{ "ab??", "ab\xc3\xa4\xc3\xb6", TRUE },
|
|
{ "ab*", "ab\xc3\xa4\xc3\xb6", TRUE },
|
|
{ "ab*\xc3\xb6", "ab\xc3\xa4\xc3\xb6", TRUE },
|
|
{ "ab*\xc3\xb6", "aba\xc3\xb6x\xc3\xb6", TRUE },
|
|
{ "", "abc", FALSE },
|
|
{ "", "", TRUE },
|
|
{ "abc", "abc", TRUE },
|
|
{ "*fo1*bar", "yyyfoxfo1bar", TRUE },
|
|
{ "12*fo1g*bar", "12yyyfoxfo1gbar", TRUE },
|
|
{ "__________:*fo1g*bar", "__________:yyyfoxfo1gbar", TRUE },
|
|
{ "*abc*cde", "abcde", FALSE },
|
|
{ "*abc*cde", "abccde", TRUE },
|
|
{ "*abc*cde", "abcxcde", TRUE },
|
|
{ "*abc*?cde", "abccde", FALSE },
|
|
{ "*abc*?cde", "abcxcde", TRUE },
|
|
{ "*abc*def", "abababcdededef", TRUE },
|
|
{ "*abc*def", "abcbcbcdededef", TRUE },
|
|
{ "*acbc*def", "acbcbcbcdededef", TRUE },
|
|
{ "*a?bc*def", "acbcbcbcdededef", TRUE },
|
|
{ "*abc*def", "bcbcbcdefdef", FALSE },
|
|
{ "*abc*def*ghi", "abcbcbcbcbcbcdefefdefdefghi", TRUE },
|
|
{ "*abc*def*ghi", "bcbcbcbcbcbcdefdefdefdefghi", FALSE },
|
|
{ "_1_2_3_4_5_6_7_8_9_0_1_2_3_4_5_*abc*def*ghi", "_1_2_3_4_5_6_7_8_9_0_1_2_3_4_5_abcbcbcbcbcbcdefefdefdefghi", TRUE },
|
|
{ "fooooooo*a*bc", "fooooooo_a_bd_a_bc", TRUE },
|
|
{ "x*?", "x", FALSE },
|
|
{ "abc*", "abc", TRUE },
|
|
{ "*", "abc", TRUE }
|
|
};
|
|
|
|
static void
|
|
test_match (gconstpointer d)
|
|
{
|
|
const MatchTest *test = d;
|
|
GPatternSpec *p;
|
|
gchar *r;
|
|
|
|
g_assert_cmpint (g_pattern_match_simple (test->pattern, test->string), ==, test->match);
|
|
|
|
p = g_pattern_spec_new (test->pattern);
|
|
g_assert_cmpint (g_pattern_spec_match_string (p, test->string), ==, test->match);
|
|
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
|
g_assert_cmpint (g_pattern_match_string (p, test->string), ==, test->match);
|
|
G_GNUC_END_IGNORE_DEPRECATIONS
|
|
|
|
r = g_utf8_strreverse (test->string, -1);
|
|
g_assert_cmpint (g_pattern_spec_match (p, strlen (test->string), test->string, r), ==, test->match);
|
|
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
|
g_assert_cmpint (g_pattern_match (p, strlen (test->string), test->string, r), ==, test->match);
|
|
G_GNUC_END_IGNORE_DEPRECATIONS
|
|
g_free (r);
|
|
|
|
g_pattern_spec_free (p);
|
|
}
|
|
|
|
typedef struct _EqualTest EqualTest;
|
|
|
|
struct _EqualTest
|
|
{
|
|
const gchar *pattern1;
|
|
const gchar *pattern2;
|
|
gboolean expected;
|
|
};
|
|
|
|
static EqualTest equal_tests[] =
|
|
{
|
|
{ "*A?B*", "*A?B*", TRUE },
|
|
{ "A*BCD", "A*BCD", TRUE },
|
|
{ "ABCD*", "ABCD****", TRUE },
|
|
{ "A1*", "A1*", TRUE },
|
|
{ "*YZ", "*YZ", TRUE },
|
|
{ "A1x", "A1x", TRUE },
|
|
{ "AB*CD", "AB**CD", TRUE },
|
|
{ "AB*?*CD", "AB*?CD", TRUE },
|
|
{ "AB*?CD", "AB?*CD", TRUE },
|
|
{ "AB*CD", "AB*?*CD", FALSE },
|
|
{ "ABC*", "ABC?", FALSE },
|
|
};
|
|
|
|
static void
|
|
test_equal (gconstpointer d)
|
|
{
|
|
const EqualTest *test = d;
|
|
GPatternSpec *p1, *p2;
|
|
|
|
p1 = g_pattern_spec_new (test->pattern1);
|
|
p2 = g_pattern_spec_new (test->pattern2);
|
|
|
|
g_assert_cmpint (g_pattern_spec_equal (p1, p2), ==, test->expected);
|
|
|
|
g_pattern_spec_free (p1);
|
|
g_pattern_spec_free (p2);
|
|
}
|
|
|
|
|
|
int
|
|
main (int argc, char** argv)
|
|
{
|
|
gsize i;
|
|
gchar *path;
|
|
|
|
g_test_init (&argc, &argv, NULL);
|
|
|
|
for (i = 0; i < G_N_ELEMENTS (compile_tests); i++)
|
|
{
|
|
path = g_strdup_printf ("/pattern/compile/%" G_GSIZE_FORMAT, i);
|
|
g_test_add_data_func (path, &compile_tests[i], test_compilation);
|
|
g_free (path);
|
|
}
|
|
|
|
for (i = 0; i < G_N_ELEMENTS (compile_tests); i++)
|
|
{
|
|
path = g_strdup_printf ("/pattern/copy/%" G_GSIZE_FORMAT, i);
|
|
g_test_add_data_func (path, &compile_tests[i], test_copy);
|
|
g_free (path);
|
|
}
|
|
|
|
for (i = 0; i < G_N_ELEMENTS (match_tests); i++)
|
|
{
|
|
path = g_strdup_printf ("/pattern/match/%" G_GSIZE_FORMAT, i);
|
|
g_test_add_data_func (path, &match_tests[i], test_match);
|
|
g_free (path);
|
|
}
|
|
|
|
for (i = 0; i < G_N_ELEMENTS (equal_tests); i++)
|
|
{
|
|
path = g_strdup_printf ("/pattern/equal/%" G_GSIZE_FORMAT, i);
|
|
g_test_add_data_func (path, &equal_tests[i], test_equal);
|
|
g_free (path);
|
|
}
|
|
|
|
return g_test_run ();
|
|
}
|