--- /dev/null
+/*
+ * Copyright (C) 2005 - 2006, Marco Barisione <marco@barisione.org>
+ * Copyright (C) 2010 Red Hat, Inc.
+ *
+ * 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 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, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#undef G_DISABLE_ASSERT
+#undef G_LOG_DOMAIN
+
+#include "config.h"
+
+#include <string.h>
+#include <locale.h>
+#include "glib.h"
+
+#ifdef ENABLE_REGEX
+
+/* U+20AC EURO SIGN (symbol, currency) */
+#define EURO "\xe2\x82\xac"
+/* U+00E0 LATIN SMALL LETTER A WITH GRAVE (letter, lowercase) */
+#define AGRAVE "\xc3\xa0"
+/* U+00C0 LATIN CAPITAL LETTER A WITH GRAVE (letter, uppercase) */
+#define AGRAVE_UPPER "\xc3\x80"
+/* U+00E8 LATIN SMALL LETTER E WITH GRAVE (letter, lowercase) */
+#define EGRAVE "\xc3\xa8"
+/* U+00F2 LATIN SMALL LETTER O WITH GRAVE (letter, lowercase) */
+#define OGRAVE "\xc3\xb2"
+/* U+014B LATIN SMALL LETTER ENG (letter, lowercase) */
+#define ENG "\xc5\x8b"
+/* U+0127 LATIN SMALL LETTER H WITH STROKE (letter, lowercase) */
+#define HSTROKE "\xc4\xa7"
+/* U+0634 ARABIC LETTER SHEEN (letter, other) */
+#define SHEEN "\xd8\xb4"
+/* U+1374 ETHIOPIC NUMBER THIRTY (number, other) */
+#define ETH30 "\xe1\x8d\xb4"
+
+/* A random value use to mark untouched integer variables. */
+#define UNTOUCHED -559038737
+
+static gint total;
+
+typedef struct {
+ const gchar *pattern;
+ GRegexCompileFlags compile_opts;
+ GRegexMatchFlags match_opts;
+ gint expected_error;
+} TestNewData;
+
+static void
+test_new (gconstpointer d)
+{
+ const TestNewData *data = d;
+ GRegex *regex;
+ GError *error = NULL;
+
+ regex = g_regex_new (data->pattern, data->compile_opts, data->match_opts, &error);
+ g_assert (regex != NULL);
+ g_assert_no_error (error);
+ g_assert_cmpstr (data->pattern, ==, g_regex_get_pattern (regex));
+
+ g_regex_unref (regex);
+}
+
+#define TEST_NEW(_pattern, _compile_opts, _match_opts) { \
+ TestNewData *data; \
+ gchar *path; \
+ data = g_new0 (TestNewData, 1); \
+ data->pattern = _pattern; \
+ data->compile_opts = _compile_opts; \
+ data->match_opts = _match_opts; \
+ data->expected_error = 0; \
+ path = g_strdup_printf ("/regex/new/%d", ++total); \
+ g_test_add_data_func (path, data, test_new); \
+ g_free (path); \
+}
+
+static void
+test_new_fail (gconstpointer d)
+{
+ const TestNewData *data = d;
+ GRegex *regex;
+ GError *error = NULL;
+
+ regex = g_regex_new (data->pattern, data->compile_opts, data->match_opts, &error);
+
+ g_assert (regex == NULL);
+ g_assert_error (error, G_REGEX_ERROR, data->expected_error);
+ g_error_free (error);
+}
+
+#define TEST_NEW_FAIL(_pattern, _compile_opts, _expected_error) { \
+ TestNewData *data; \
+ gchar *path; \
+ data = g_new0 (TestNewData, 1); \
+ data->pattern = _pattern; \
+ data->compile_opts = _compile_opts; \
+ data->match_opts = 0; \
+ data->expected_error = _expected_error; \
+ path = g_strdup_printf ("/regex/new-fail/%d", ++total); \
+ g_test_add_data_func (path, data, test_new_fail); \
+ g_free (path); \
+}
+
+typedef struct {
+ const gchar *pattern;
+ const gchar *string;
+ GRegexCompileFlags compile_opts;
+ GRegexMatchFlags match_opts;
+ gboolean expected;
+ gssize string_len;
+ gint start_position;
+ GRegexMatchFlags match_opts2;
+} TestMatchData;
+
+static void
+test_match_simple (gconstpointer d)
+{
+ const TestMatchData *data = d;
+ gboolean match;
+
+ match = g_regex_match_simple (data->pattern, data->string, data->compile_opts, data->match_opts);
+ g_assert_cmpint (match, ==, data->expected);
+}
+
+#define TEST_MATCH_SIMPLE(_pattern, _string, _compile_opts, _match_opts, _expected) { \
+ TestMatchData *data; \
+ gchar *path; \
+ data = g_new0 (TestMatchData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->compile_opts = _compile_opts; \
+ data->match_opts = _match_opts; \
+ data->expected = _expected; \
+ path = g_strdup_printf ("/regex/match-simple/%d", ++total); \
+ g_test_add_data_func (path, data, test_match_simple); \
+ g_free (path); \
+}
+
+static void
+test_match (gconstpointer d)
+{
+ const TestMatchData *data = d;
+ GRegex *regex;
+ gboolean match;
+ GError *error = NULL;
+
+ regex = g_regex_new (data->pattern, data->compile_opts, data->match_opts, &error);
+ g_assert (regex != NULL);
+ g_assert_no_error (error);
+
+ match = g_regex_match_full (regex, data->string, data->string_len,
+ data->start_position, data->match_opts2, NULL, NULL);
+
+ g_assert_cmpint (match, ==, data->expected);
+
+ if (data->string_len == -1 && data->start_position == 0)
+ {
+ match = g_regex_match (regex, data->string, data->match_opts2, NULL);
+ g_assert_cmpint (match, ==, data->expected);
+ }
+
+ g_regex_unref (regex);
+}
+
+#define TEST_MATCH(_pattern, _compile_opts, _match_opts, _string, \
+ _string_len, _start_position, _match_opts2, _expected) { \
+ TestMatchData *data; \
+ gchar *path; \
+ data = g_new0 (TestMatchData, 1); \
+ data->pattern = _pattern; \
+ data->compile_opts = _compile_opts; \
+ data->match_opts = _match_opts; \
+ data->string = _string; \
+ data->string_len = _string_len; \
+ data->start_position = _start_position; \
+ data->match_opts2 = _match_opts2; \
+ data->expected = _expected; \
+ path = g_strdup_printf ("/regex/match/%d", ++total); \
+ g_test_add_data_func (path, data, test_match); \
+ g_free (path); \
+}
+
+struct _Match
+{
+ gchar *string;
+ gint start, end;
+};
+typedef struct _Match Match;
+
+static void
+free_match (gpointer data, gpointer user_data)
+{
+ Match *match = data;
+ if (match == NULL)
+ return;
+ g_free (match->string);
+ g_free (match);
+}
+
+typedef struct {
+ const gchar *pattern;
+ const gchar *string;
+ gssize string_len;
+ gint start_position;
+ GSList *expected;
+} TestMatchNextData;
+
+static void
+test_match_next (gconstpointer d)
+{
+ const TestMatchNextData *data = d;
+ GRegex *regex;
+ GMatchInfo *match_info;
+ GSList *matches;
+ GSList *l_exp, *l_match;
+
+ regex = g_regex_new (data->pattern, 0, 0, NULL);
+
+ g_assert (regex != NULL);
+
+ g_regex_match_full (regex, data->string, data->string_len,
+ data->start_position, 0, &match_info, NULL);
+ matches = NULL;
+ while (g_match_info_matches (match_info))
+ {
+ Match *match = g_new0 (Match, 1);
+ match->string = g_match_info_fetch (match_info, 0);
+ match->start = UNTOUCHED;
+ match->end = UNTOUCHED;
+ g_match_info_fetch_pos (match_info, 0, &match->start, &match->end);
+ matches = g_slist_prepend (matches, match);
+ g_match_info_next (match_info, NULL);
+ }
+ g_assert (regex == g_match_info_get_regex (match_info));
+ g_assert_cmpstr (data->string, ==, g_match_info_get_string (match_info));
+ g_match_info_free (match_info);
+ matches = g_slist_reverse (matches);
+
+ g_assert_cmpint (g_slist_length (matches), ==, g_slist_length (data->expected));
+
+ l_exp = data->expected;
+ l_match = matches;
+ while (l_exp != NULL)
+ {
+ Match *exp = l_exp->data;
+ Match *match = l_match->data;
+
+ g_assert_cmpstr (exp->string, ==, match->string);
+ g_assert_cmpint (exp->start, ==, match->start);
+ g_assert_cmpint (exp->end, ==, match->end);
+
+ l_exp = g_slist_next (l_exp);
+ l_match = g_slist_next (l_match);
+ }
+
+ g_regex_unref (regex);
+ g_slist_foreach (matches, free_match, NULL);
+ g_slist_free (matches);
+}
+
+#define TEST_MATCH_NEXT0(_pattern, _string, _string_len, _start_position) { \
+ TestMatchNextData *data; \
+ gchar *path; \
+ data = g_new0 (TestMatchNextData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->string_len = _string_len; \
+ data->start_position = _start_position; \
+ data->expected = NULL; \
+ path = g_strdup_printf ("/regex/match/next0/%d", ++total); \
+ g_test_add_data_func (path, data, test_match_next); \
+ g_free (path); \
+}
+
+#define TEST_MATCH_NEXT1(_pattern, _string, _string_len, _start_position, \
+ t1, s1, e1) { \
+ TestMatchNextData *data; \
+ Match *match; \
+ gchar *path; \
+ data = g_new0 (TestMatchNextData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->string_len = _string_len; \
+ data->start_position = _start_position; \
+ match = g_new0 (Match, 1); \
+ match->string = t1; \
+ match->start = s1; \
+ match->end = e1; \
+ data->expected = g_slist_append (NULL, match); \
+ path = g_strdup_printf ("/regex/match/next1/%d", ++total); \
+ g_test_add_data_func (path, data, test_match_next); \
+ g_free (path); \
+}
+
+#define TEST_MATCH_NEXT2(_pattern, _string, _string_len, _start_position, \
+ t1, s1, e1, t2, s2, e2) { \
+ TestMatchNextData *data; \
+ Match *match; \
+ gchar *path; \
+ data = g_new0 (TestMatchNextData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->string_len = _string_len; \
+ data->start_position = _start_position; \
+ match = g_new0 (Match, 1); \
+ match->string = t1; \
+ match->start = s1; \
+ match->end = e1; \
+ data->expected = g_slist_append (NULL, match); \
+ match = g_new0 (Match, 1); \
+ match->string = t2; \
+ match->start = s2; \
+ match->end = e2; \
+ data->expected = g_slist_append (data->expected, match); \
+ path = g_strdup_printf ("/regex/match/next2/%d", ++total); \
+ g_test_add_data_func (path, data, test_match_next); \
+ g_free (path); \
+}
+
+#define TEST_MATCH_NEXT3(_pattern, _string, _string_len, _start_position, \
+ t1, s1, e1, t2, s2, e2, t3, s3, e3) { \
+ TestMatchNextData *data; \
+ Match *match; \
+ gchar *path; \
+ data = g_new0 (TestMatchNextData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->string_len = _string_len; \
+ data->start_position = _start_position; \
+ match = g_new0 (Match, 1); \
+ match->string = t1; \
+ match->start = s1; \
+ match->end = e1; \
+ data->expected = g_slist_append (NULL, match); \
+ match = g_new0 (Match, 1); \
+ match->string = t2; \
+ match->start = s2; \
+ match->end = e2; \
+ data->expected = g_slist_append (data->expected, match); \
+ match = g_new0 (Match, 1); \
+ match->string = t3; \
+ match->start = s3; \
+ match->end = e3; \
+ data->expected = g_slist_append (data->expected, match); \
+ path = g_strdup_printf ("/regex/match/next3/%d", ++total); \
+ g_test_add_data_func (path, data, test_match_next); \
+ g_free (path); \
+}
+
+#define TEST_MATCH_NEXT4(_pattern, _string, _string_len, _start_position, \
+ t1, s1, e1, t2, s2, e2, t3, s3, e3, t4, s4, e4) { \
+ TestMatchNextData *data; \
+ Match *match; \
+ gchar *path; \
+ data = g_new0 (TestMatchNextData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->string_len = _string_len; \
+ data->start_position = _start_position; \
+ match = g_new0 (Match, 1); \
+ match->string = t1; \
+ match->start = s1; \
+ match->end = e1; \
+ data->expected = g_slist_append (NULL, match); \
+ match = g_new0 (Match, 1); \
+ match->string = t2; \
+ match->start = s2; \
+ match->end = e2; \
+ data->expected = g_slist_append (data->expected, match); \
+ match = g_new0 (Match, 1); \
+ match->string = t3; \
+ match->start = s3; \
+ match->end = e3; \
+ data->expected = g_slist_append (data->expected, match); \
+ match = g_new0 (Match, 1); \
+ match->string = t4; \
+ match->start = s4; \
+ match->end = e4; \
+ data->expected = g_slist_append (data->expected, match); \
+ path = g_strdup_printf ("/regex/match/next4/%d", ++total); \
+ g_test_add_data_func (path, data, test_match_next); \
+}
+
+typedef struct {
+ const gchar *pattern;
+ const gchar *string;
+ gint start_position;
+ GRegexMatchFlags match_opts;
+ gint expected_count;
+} TestMatchCountData;
+
+static void
+test_match_count (gconstpointer d)
+{
+ const TestMatchCountData *data = d;
+ GRegex *regex;
+ GMatchInfo *match_info;
+ gint count;
+
+ regex = g_regex_new (data->pattern, 0, 0, NULL);
+
+ g_assert (regex != NULL);
+
+ g_regex_match_full (regex, data->string, -1, data->start_position,
+ data->match_opts, &match_info, NULL);
+ count = g_match_info_get_match_count (match_info);
+
+ g_assert_cmpint (count, ==, data->expected_count);
+
+ g_match_info_free (match_info);
+ g_regex_unref (regex);
+}
+
+#define TEST_MATCH_COUNT(_pattern, _string, _start_position, _match_opts, _expected_count) { \
+ TestMatchCountData *data; \
+ gchar *path; \
+ data = g_new0 (TestMatchCountData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->start_position = _start_position; \
+ data->match_opts = _match_opts; \
+ data->expected_count = _expected_count; \
+ path = g_strdup_printf ("/regex/match/count/%d", ++total); \
+ g_test_add_data_func (path, data, test_match_count); \
+ g_free (path); \
+}
+
+static void
+test_partial (gconstpointer d)
+{
+ const TestMatchData *data = d;
+ GRegex *regex;
+ GMatchInfo *match_info;
+
+ regex = g_regex_new (data->pattern, 0, 0, NULL);
+
+ g_assert (regex != NULL);
+
+ g_regex_match (regex, data->string, G_REGEX_MATCH_PARTIAL, &match_info);
+
+ g_assert_cmpint (data->expected, ==, g_match_info_is_partial_match (match_info));
+
+ if (data->expected)
+ {
+ g_assert (!g_match_info_fetch_pos (match_info, 0, NULL, NULL));
+ g_assert (!g_match_info_fetch_pos (match_info, 1, NULL, NULL));
+ }
+
+ g_match_info_free (match_info);
+ g_regex_unref (regex);
+}
+
+#define TEST_PARTIAL(_pattern, _string, _expected) { \
+ TestMatchData *data; \
+ gchar *path; \
+ data = g_new0 (TestMatchData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->expected = _expected; \
+ path = g_strdup_printf ("/regex/match/partial/%d", ++total); \
+ g_test_add_data_func (path, data, test_partial); \
+ g_free (path); \
+}
+
+typedef struct {
+ const gchar *pattern;
+ const gchar *string;
+ gint start_position;
+ gint sub_n;
+ const gchar *expected_sub;
+ gint expected_start;
+ gint expected_end;
+} TestSubData;
+
+static void
+test_sub_pattern (gconstpointer d)
+{
+ const TestSubData *data = d;
+ GRegex *regex;
+ GMatchInfo *match_info;
+ gchar *sub_expr;
+ gint start = UNTOUCHED, end = UNTOUCHED;
+
+ regex = g_regex_new (data->pattern, 0, 0, NULL);
+
+ g_assert (regex != NULL);
+
+ g_regex_match_full (regex, data->string, -1, data->start_position, 0, &match_info, NULL);
+
+ sub_expr = g_match_info_fetch (match_info, data->sub_n);
+ g_assert_cmpstr (sub_expr, ==, data->expected_sub);
+ g_free (sub_expr);
+
+ g_match_info_fetch_pos (match_info, data->sub_n, &start, &end);
+ g_assert_cmpint (start, ==, data->expected_start);
+ g_assert_cmpint (end, ==, data->expected_end);
+
+ g_match_info_free (match_info);
+ g_regex_unref (regex);
+}
+
+#define TEST_SUB_PATTERN(_pattern, _string, _start_position, _sub_n, _expected_sub, \
+ _expected_start, _expected_end) { \
+ TestSubData *data; \
+ gchar *path; \
+ data = g_new0 (TestSubData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->start_position = _start_position; \
+ data->sub_n = _sub_n; \
+ data->expected_sub = _expected_sub; \
+ data->expected_start = _expected_start; \
+ data->expected_end = _expected_end; \
+ path = g_strdup_printf ("/regex/match/subpattern/%d", ++total); \
+ g_test_add_data_func (path, data, test_sub_pattern); \
+ g_free (path); \
+}
+
+typedef struct {
+ const gchar *pattern;
+ GRegexCompileFlags flags;
+ const gchar *string;
+ gint start_position;
+ const gchar *sub_name;
+ const gchar *expected_sub;
+ gint expected_start;
+ gint expected_end;
+} TestNamedSubData;
+
+static void
+test_named_sub_pattern (gconstpointer d)
+{
+ const TestNamedSubData *data = d;
+ GRegex *regex;
+ GMatchInfo *match_info;
+ gint start = UNTOUCHED, end = UNTOUCHED;
+ gchar *sub_expr;
+
+ regex = g_regex_new (data->pattern, data->flags, 0, NULL);
+
+ g_assert (regex != NULL);
+
+ g_regex_match_full (regex, data->string, -1, data->start_position, 0, &match_info, NULL);
+ sub_expr = g_match_info_fetch_named (match_info, data->sub_name);
+ g_assert_cmpstr (sub_expr, ==, data->expected_sub);
+ g_free (sub_expr);
+
+ g_match_info_fetch_named_pos (match_info, data->sub_name, &start, &end);
+ g_assert_cmpint (start, ==, data->expected_start);
+ g_assert_cmpint (end, ==, data->expected_end);
+
+ g_match_info_free (match_info);
+ g_regex_unref (regex);
+}
+
+#define TEST_NAMED_SUB_PATTERN(_pattern, _string, _start_position, _sub_name, \
+ _expected_sub, _expected_start, _expected_end) { \
+ TestNamedSubData *data; \
+ gchar *path; \
+ data = g_new0 (TestNamedSubData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->flags = 0; \
+ data->start_position = _start_position; \
+ data->sub_name = _sub_name; \
+ data->expected_sub = _expected_sub; \
+ data->expected_start = _expected_start; \
+ data->expected_end = _expected_end; \
+ path = g_strdup_printf ("/regex/match/named/subpattern/%d", ++total); \
+ g_test_add_data_func (path, data, test_named_sub_pattern); \
+ g_free (path); \
+}
+
+#define TEST_NAMED_SUB_PATTERN_DUPNAMES(_pattern, _string, _start_position, _sub_name, \
+ _expected_sub, _expected_start, _expected_end) { \
+ TestNamedSubData *data; \
+ gchar *path; \
+ data = g_new0 (TestNamedSubData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->flags = G_REGEX_DUPNAMES; \
+ data->start_position = _start_position; \
+ data->sub_name = _sub_name; \
+ data->expected_sub = _expected_sub; \
+ data->expected_start = _expected_start; \
+ data->expected_end = _expected_end; \
+ path = g_strdup_printf ("/regex/match/subpattern/named/dupnames/%d", ++total); \
+ g_test_add_data_func (path, data, test_named_sub_pattern); \
+ g_free (path); \
+}
+
+typedef struct {
+ const gchar *pattern;
+ const gchar *string;
+ GSList *expected;
+ gint start_position;
+ gint max_tokens;
+} TestFetchAllData;
+
+static void
+test_fetch_all (gconstpointer d)
+{
+ const TestFetchAllData *data = d;
+ GRegex *regex;
+ GMatchInfo *match_info;
+ GSList *l_exp;
+ gchar **matches;
+ gint match_count;
+ gint i;
+
+ regex = g_regex_new (data->pattern, 0, 0, NULL);
+
+ g_assert (regex != NULL);
+
+ g_regex_match (regex, data->string, 0, &match_info);
+ matches = g_match_info_fetch_all (match_info);
+ if (matches)
+ match_count = g_strv_length (matches);
+ else
+ match_count = 0;
+
+ g_assert_cmpint (match_count, ==, g_slist_length (data->expected));
+
+ l_exp = data->expected;
+ for (i = 0; l_exp != NULL; i++, l_exp = g_slist_next (l_exp))
+ {
+ g_assert_cmpstr (l_exp->data, ==, matches[i]);
+ }
+
+ g_match_info_free (match_info);
+ g_regex_unref (regex);
+ g_strfreev (matches);
+}
+
+#define TEST_FETCH_ALL0(_pattern, _string) { \
+ TestFetchAllData *data; \
+ gchar *path; \
+ data = g_new0 (TestFetchAllData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->expected = NULL; \
+ path = g_strdup_printf ("/regex/fetch-all0/%d", ++total); \
+ g_test_add_data_func (path, data, test_fetch_all); \
+ g_free (path); \
+}
+
+#define TEST_FETCH_ALL1(_pattern, _string, e1) { \
+ TestFetchAllData *data; \
+ gchar *path; \
+ data = g_new0 (TestFetchAllData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->expected = g_slist_append (NULL, e1); \
+ path = g_strdup_printf ("/regex/fetch-all1/%d", ++total); \
+ g_test_add_data_func (path, data, test_fetch_all); \
+ g_free (path); \
+}
+
+#define TEST_FETCH_ALL2(_pattern, _string, e1, e2) { \
+ TestFetchAllData *data; \
+ gchar *path; \
+ data = g_new0 (TestFetchAllData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->expected = g_slist_append (NULL, e1); \
+ data->expected = g_slist_append (data->expected, e2); \
+ path = g_strdup_printf ("/regex/fetch-all2/%d", ++total); \
+ g_test_add_data_func (path, data, test_fetch_all); \
+ g_free (path); \
+}
+
+#define TEST_FETCH_ALL3(_pattern, _string, e1, e2, e3) { \
+ TestFetchAllData *data; \
+ gchar *path; \
+ data = g_new0 (TestFetchAllData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->expected = g_slist_append (NULL, e1); \
+ data->expected = g_slist_append (data->expected, e2); \
+ data->expected = g_slist_append (data->expected, e3); \
+ path = g_strdup_printf ("/regex/fetch-all3/%d", ++total); \
+ g_test_add_data_func (path, data, test_fetch_all); \
+ g_free (path); \
+}
+
+static void
+test_split_simple (gconstpointer d)
+{
+ const TestFetchAllData *data = d;
+ GSList *l_exp;
+ gchar **tokens;
+ gint token_count;
+ gint i;
+
+ tokens = g_regex_split_simple (data->pattern, data->string, 0, 0);
+ if (tokens)
+ token_count = g_strv_length (tokens);
+ else
+ token_count = 0;
+
+ g_assert_cmpint (token_count, ==, g_slist_length (data->expected));
+
+ l_exp = data->expected;
+ for (i = 0; l_exp != NULL; i++, l_exp = g_slist_next (l_exp))
+ {
+ g_assert_cmpstr (l_exp->data, ==, tokens[i]);
+ }
+
+ g_strfreev (tokens);
+}
+
+#define TEST_SPLIT_SIMPLE0(_pattern, _string) { \
+ TestFetchAllData *data; \
+ gchar *path; \
+ data = g_new0 (TestFetchAllData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->expected = NULL; \
+ path = g_strdup_printf ("/regex/split/simple0/%d", ++total); \
+ g_test_add_data_func (path, data, test_split_simple); \
+ g_free (path); \
+}
+
+#define TEST_SPLIT_SIMPLE1(_pattern, _string, e1) { \
+ TestFetchAllData *data; \
+ gchar *path; \
+ data = g_new0 (TestFetchAllData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->expected = g_slist_append (NULL, e1); \
+ path = g_strdup_printf ("/regex/split/simple1/%d", ++total); \
+ g_test_add_data_func (path, data, test_split_simple); \
+ g_free (path); \
+}
+
+#define TEST_SPLIT_SIMPLE2(_pattern, _string, e1, e2) { \
+ TestFetchAllData *data; \
+ gchar *path; \
+ data = g_new0 (TestFetchAllData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->expected = g_slist_append (NULL, e1); \
+ data->expected = g_slist_append (data->expected, e2); \
+ path = g_strdup_printf ("/regex/split/simple2/%d", ++total); \
+ g_test_add_data_func (path, data, test_split_simple); \
+ g_free (path); \
+}
+
+#define TEST_SPLIT_SIMPLE3(_pattern, _string, e1, e2, e3) { \
+ TestFetchAllData *data; \
+ gchar *path; \
+ data = g_new0 (TestFetchAllData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->expected = g_slist_append (NULL, e1); \
+ data->expected = g_slist_append (data->expected, e2); \
+ data->expected = g_slist_append (data->expected, e3); \
+ path = g_strdup_printf ("/regex/split/simple3/%d", ++total); \
+ g_test_add_data_func (path, data, test_split_simple); \
+ g_free (path); \
+}
+
+static void
+test_split_full (gconstpointer d)
+{
+ const TestFetchAllData *data = d;
+ GRegex *regex;
+ GSList *l_exp;
+ gchar **tokens;
+ gint token_count;
+ gint i;
+
+ regex = g_regex_new (data->pattern, 0, 0, NULL);
+
+ g_assert (regex != NULL);
+
+ tokens = g_regex_split_full (regex, data->string, -1, data->start_position,
+ 0, data->max_tokens, NULL);
+ if (tokens)
+ token_count = g_strv_length (tokens);
+ else
+ token_count = 0;
+
+ g_assert_cmpint (token_count, ==, g_slist_length (data->expected));
+
+ l_exp = data->expected;
+ for (i = 0; l_exp != NULL; i++, l_exp = g_slist_next (l_exp))
+ {
+ g_assert_cmpstr (l_exp->data, ==, tokens[i]);
+ }
+
+ g_regex_unref (regex);
+ g_strfreev (tokens);
+}
+
+static void
+test_split (gconstpointer d)
+{
+ const TestFetchAllData *data = d;
+ GRegex *regex;
+ GSList *l_exp;
+ gchar **tokens;
+ gint token_count;
+ gint i;
+
+ regex = g_regex_new (data->pattern, 0, 0, NULL);
+
+ g_assert (regex != NULL);
+
+ tokens = g_regex_split (regex, data->string, 0);
+ if (tokens)
+ token_count = g_strv_length (tokens);
+ else
+ token_count = 0;
+
+ g_assert_cmpint (token_count, ==, g_slist_length (data->expected));
+
+ l_exp = data->expected;
+ for (i = 0; l_exp != NULL; i++, l_exp = g_slist_next (l_exp))
+ {
+ g_assert_cmpstr (l_exp->data, ==, tokens[i]);
+ }
+
+ g_regex_unref (regex);
+ g_strfreev (tokens);
+}
+
+#define TEST_SPLIT0(_pattern, _string, _start_position, _max_tokens) { \
+ TestFetchAllData *data; \
+ gchar *path; \
+ data = g_new0 (TestFetchAllData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->start_position = _start_position; \
+ data->max_tokens = _max_tokens; \
+ data->expected = NULL; \
+ path = g_strdup_printf ("/regex/full-split0/%d", ++total); \
+ g_test_add_data_func (path, data, test_split_full); \
+ g_free (path); \
+ if (_start_position == 0 && _max_tokens <= 0) { \
+ path = g_strdup_printf ("/regex/split0/%d", ++total); \
+ g_test_add_data_func (path, data, test_split); \
+ g_free (path); \
+ } \
+}
+
+#define TEST_SPLIT1(_pattern, _string, _start_position, _max_tokens, e1) { \
+ TestFetchAllData *data; \
+ gchar *path; \
+ data = g_new0 (TestFetchAllData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->start_position = _start_position; \
+ data->max_tokens = _max_tokens; \
+ data->expected = NULL; \
+ data->expected = g_slist_append (data->expected, e1); \
+ path = g_strdup_printf ("/regex/full-split1/%d", ++total); \
+ g_test_add_data_func (path, data, test_split_full); \
+ g_free (path); \
+ if (_start_position == 0 && _max_tokens <= 0) { \
+ path = g_strdup_printf ("/regex/split1/%d", ++total); \
+ g_test_add_data_func (path, data, test_split); \
+ g_free (path); \
+ } \
+}
+
+#define TEST_SPLIT2(_pattern, _string, _start_position, _max_tokens, e1, e2) { \
+ TestFetchAllData *data; \
+ gchar *path; \
+ data = g_new0 (TestFetchAllData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->start_position = _start_position; \
+ data->max_tokens = _max_tokens; \
+ data->expected = NULL; \
+ data->expected = g_slist_append (data->expected, e1); \
+ data->expected = g_slist_append (data->expected, e2); \
+ path = g_strdup_printf ("/regex/full-split2/%d", ++total); \
+ g_test_add_data_func (path, data, test_split_full); \
+ g_free (path); \
+ if (_start_position == 0 && _max_tokens <= 0) { \
+ path = g_strdup_printf ("/regex/split2/%d", ++total); \
+ g_test_add_data_func (path, data, test_split); \
+ g_free (path); \
+ } \
+}
+
+#define TEST_SPLIT3(_pattern, _string, _start_position, _max_tokens, e1, e2, e3) { \
+ TestFetchAllData *data; \
+ gchar *path; \
+ data = g_new0 (TestFetchAllData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->start_position = _start_position; \
+ data->max_tokens = _max_tokens; \
+ data->expected = NULL; \
+ data->expected = g_slist_append (data->expected, e1); \
+ data->expected = g_slist_append (data->expected, e2); \
+ data->expected = g_slist_append (data->expected, e3); \
+ path = g_strdup_printf ("/regex/full-split3/%d", ++total); \
+ g_test_add_data_func (path, data, test_split_full); \
+ g_free (path); \
+ if (_start_position == 0 && _max_tokens <= 0) { \
+ path = g_strdup_printf ("/regex/split3/%d", ++total); \
+ g_test_add_data_func (path, data, test_split); \
+ g_free (path); \
+ } \
+}
+
+typedef struct {
+ const gchar *string_to_expand;
+ gboolean expected;
+ gboolean expected_refs;
+} TestCheckReplacementData;
+
+static void
+test_check_replacement (gconstpointer d)
+{
+ const TestCheckReplacementData *data = d;
+ gboolean has_refs;
+ gboolean result;
+
+ result = g_regex_check_replacement (data->string_to_expand, &has_refs, NULL);
+ g_assert_cmpint (data->expected, ==, result);
+
+ if (data->expected)
+ g_assert_cmpint (data->expected_refs, ==, has_refs);
+}
+
+#define TEST_CHECK_REPLACEMENT(_string_to_expand, _expected, _expected_refs) { \
+ TestCheckReplacementData *data; \
+ gchar *path; \
+ data = g_new0 (TestCheckReplacementData, 1); \
+ data->string_to_expand = _string_to_expand; \
+ data->expected = _expected; \
+ data->expected_refs = _expected_refs; \
+ path = g_strdup_printf ("/regex/check-repacement/%d", ++total); \
+ g_test_add_data_func (path, data, test_check_replacement); \
+ g_free (path); \
+}
+
+typedef struct {
+ const gchar *pattern;
+ const gchar *string;
+ const gchar *string_to_expand;
+ gboolean raw;
+ const gchar *expected;
+} TestExpandData;
+
+static void
+test_expand (gconstpointer d)
+{
+ const TestExpandData *data = d;
+ GRegex *regex = NULL;
+ GMatchInfo *match_info = NULL;
+ gchar *res;
+
+ if (data->pattern)
+ {
+ regex = g_regex_new (data->pattern, data->raw ? G_REGEX_RAW : 0, 0, NULL);
+ g_regex_match (regex, data->string, 0, &match_info);
+ }
+
+ res = g_match_info_expand_references (match_info, data->string_to_expand, NULL);
+ g_assert_cmpstr (res, ==, data->expected);
+ g_free (res);
+ g_match_info_free (match_info);
+ if (regex)
+ g_regex_unref (regex);
+}
+
+#define TEST_EXPAND(_pattern, _string, _string_to_expand, _raw, _expected) { \
+ TestExpandData *data; \
+ gchar *path; \
+ data = g_new0 (TestExpandData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->string_to_expand = _string_to_expand; \
+ data->raw = _raw; \
+ data->expected = _expected; \
+ path = g_strdup_printf ("/regex/expand/%d", ++total); \
+ g_test_add_data_func (path, data, test_expand); \
+ g_free (path); \
+}
+
+typedef struct {
+ const gchar *pattern;
+ const gchar *string;
+ gint start_position;
+ const gchar *replacement;
+ const gchar *expected;
+} TestReplaceData;
+
+static void
+test_replace (gconstpointer d)
+{
+ const TestReplaceData *data = d;
+ GRegex *regex;
+ gchar *res;
+
+ regex = g_regex_new (data->pattern, 0, 0, NULL);
+ res = g_regex_replace (regex, data->string, -1, data->start_position, data->replacement, 0, NULL);
+
+ g_assert_cmpstr (res, ==, data->expected);
+
+ g_free (res);
+ g_regex_unref (regex);
+}
+
+#define TEST_REPLACE(_pattern, _string, _start_position, _replacement, _expected) { \
+ TestReplaceData *data; \
+ gchar *path; \
+ data = g_new0 (TestReplaceData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->start_position = _start_position; \
+ data->replacement = _replacement; \
+ data->expected = _expected; \
+ path = g_strdup_printf ("/regex/replace/%d", ++total); \
+ g_test_add_data_func (path, data, test_replace); \
+ g_free (path); \
+}
+
+static void
+test_replace_lit (gconstpointer d)
+{
+ const TestReplaceData *data = d;
+ GRegex *regex;
+ gchar *res;
+
+ regex = g_regex_new (data->pattern, 0, 0, NULL);
+ res = g_regex_replace_literal (regex, data->string, -1, data->start_position,
+ data->replacement, 0, NULL);
+ g_assert_cmpstr (res, ==, data->expected);
+
+ g_free (res);
+ g_regex_unref (regex);
+}
+
+#define TEST_REPLACE_LIT(_pattern, _string, _start_position, _replacement, _expected) { \
+ TestReplaceData *data; \
+ gchar *path; \
+ data = g_new0 (TestReplaceData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->start_position = _start_position; \
+ data->replacement = _replacement; \
+ data->expected = _expected; \
+ path = g_strdup_printf ("/regex/replace-literally/%d", ++total); \
+ g_test_add_data_func (path, data, test_replace_lit); \
+ g_free (path); \
+}
+
+typedef struct {
+ const gchar *pattern;
+ const gchar *name;
+ gint expected_num;
+} TestStringNumData;
+
+static void
+test_get_string_number (gconstpointer d)
+{
+ const TestStringNumData *data = d;
+ GRegex *regex;
+ gint num;
+
+ regex = g_regex_new (data->pattern, 0, 0, NULL);
+ num = g_regex_get_string_number (regex, data->name);
+
+ g_assert_cmpint (num, ==, data->expected_num);
+ g_regex_unref (regex);
+}
+
+#define TEST_GET_STRING_NUMBER(_pattern, _name, _expected_num) { \
+ TestStringNumData *data; \
+ gchar *path; \
+ data = g_new0 (TestStringNumData, 1); \
+ data->pattern = _pattern; \
+ data->name = _name; \
+ data->expected_num = _expected_num; \
+ path = g_strdup_printf ("/regex/string-number/%d", ++total); \
+ g_test_add_data_func (path, data, test_get_string_number); \
+ g_free (path); \
+}
+
+typedef struct {
+ const gchar *string;
+ gint length;
+ const gchar *expected;
+} TestEscapeData;
+
+static void
+test_escape (gconstpointer d)
+{
+ const TestEscapeData *data = d;
+ gchar *escaped;
+
+ escaped = g_regex_escape_string (data->string, data->length);
+
+ g_assert_cmpstr (escaped, ==, data->expected);
+
+ g_free (escaped);
+}
+
+#define TEST_ESCAPE(_string, _length, _expected) { \
+ TestEscapeData *data; \
+ gchar *path; \
+ data = g_new0 (TestEscapeData, 1); \
+ data->string = _string; \
+ data->length = _length; \
+ data->expected = _expected; \
+ path = g_strdup_printf ("/regex/escape/%d", ++total); \
+ g_test_add_data_func (path, data, test_escape); \
+ g_free (path); \
+}
+
+typedef struct {
+ const gchar *pattern;
+ const gchar *string;
+ gssize string_len;
+ gint start_position;
+ GSList *expected;
+} TestMatchAllData;
+
+static void
+test_match_all_full (gconstpointer d)
+{
+ const TestMatchAllData *data = d;
+ GRegex *regex;
+ GMatchInfo *match_info;
+ GSList *l_exp;
+ gboolean match_ok;
+ gint match_count;
+ gint i;
+
+ regex = g_regex_new (data->pattern, 0, 0, NULL);
+ match_ok = g_regex_match_all_full (regex, data->string, data->string_len, data->start_position,
+ 0, &match_info, NULL);
+
+ if (g_slist_length (data->expected) == 0)
+ g_assert (!match_ok);
+ else
+ g_assert (match_ok);
+
+ match_count = g_match_info_get_match_count (match_info);
+ g_assert_cmpint (match_count, ==, g_slist_length (data->expected));
+
+ l_exp = data->expected;
+ for (i = 0; i < match_count; i++)
+ {
+ gint start, end;
+ gchar *matched_string;
+ Match *exp = l_exp->data;
+
+ matched_string = g_match_info_fetch (match_info, i);
+ g_match_info_fetch_pos (match_info, i, &start, &end);
+
+ g_assert_cmpstr (exp->string, ==, matched_string);
+ g_assert_cmpint (exp->start, ==, start);
+ g_assert_cmpint (exp->end, ==, end);
+
+ g_free (matched_string);
+
+ l_exp = g_slist_next (l_exp);
+ }
+
+ g_match_info_free (match_info);
+ g_regex_unref (regex);
+}
+
+static void
+test_match_all (gconstpointer d)
+{
+ const TestMatchAllData *data = d;
+ GRegex *regex;
+ GMatchInfo *match_info;
+ GSList *l_exp;
+ gboolean match_ok;
+ gint match_count;
+ gint i;
+
+ regex = g_regex_new (data->pattern, 0, 0, NULL);
+ match_ok = g_regex_match_all (regex, data->string, 0, &match_info);
+
+ if (g_slist_length (data->expected) == 0)
+ g_assert (!match_ok);
+ else
+ g_assert (match_ok);
+
+ match_count = g_match_info_get_match_count (match_info);
+ g_assert_cmpint (match_count, ==, g_slist_length (data->expected));
+
+ l_exp = data->expected;
+ for (i = 0; i < match_count; i++)
+ {
+ gint start, end;
+ gchar *matched_string;
+ Match *exp = l_exp->data;
+
+ matched_string = g_match_info_fetch (match_info, i);
+ g_match_info_fetch_pos (match_info, i, &start, &end);
+
+ g_assert_cmpstr (exp->string, ==, matched_string);
+ g_assert_cmpint (exp->start, ==, start);
+ g_assert_cmpint (exp->end, ==, end);
+
+ g_free (matched_string);
+
+ l_exp = g_slist_next (l_exp);
+ }
+
+ g_match_info_free (match_info);
+ g_regex_unref (regex);
+}
+
+#define TEST_MATCH_ALL0(_pattern, _string, _string_len, _start_position) { \
+ TestMatchAllData *data; \
+ gchar *path; \
+ data = g_new0 (TestMatchAllData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->string_len = _string_len; \
+ data->start_position = _start_position; \
+ data->expected = NULL; \
+ path = g_strdup_printf ("/regex/match-all-full0/%d", ++total); \
+ g_test_add_data_func (path, data, test_match_all_full); \
+ g_free (path); \
+ if (_string_len == -1 && _start_position == 0) { \
+ path = g_strdup_printf ("/regex/match-all0/%d", ++total); \
+ g_test_add_data_func (path, data, test_match_all); \
+ g_free (path); \
+ } \
+}
+
+#define TEST_MATCH_ALL1(_pattern, _string, _string_len, _start_position, \
+ t1, s1, e1) { \
+ TestMatchAllData *data; \
+ Match *match; \
+ gchar *path; \
+ data = g_new0 (TestMatchAllData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->string_len = _string_len; \
+ data->start_position = _start_position; \
+ data->expected = NULL; \
+ match = g_new0 (Match, 1); \
+ match->string = t1; \
+ match->start = s1; \
+ match->end = e1; \
+ data->expected = g_slist_append (data->expected, match); \
+ path = g_strdup_printf ("/regex/match-all-full1/%d", ++total); \
+ g_test_add_data_func (path, data, test_match_all_full); \
+ g_free (path); \
+ if (_string_len == -1 && _start_position == 0) { \
+ path = g_strdup_printf ("/regex/match-all1/%d", ++total); \
+ g_test_add_data_func (path, data, test_match_all); \
+ g_free (path); \
+ } \
+}
+
+#define TEST_MATCH_ALL2(_pattern, _string, _string_len, _start_position, \
+ t1, s1, e1, t2, s2, e2) { \
+ TestMatchAllData *data; \
+ Match *match; \
+ gchar *path; \
+ data = g_new0 (TestMatchAllData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->string_len = _string_len; \
+ data->start_position = _start_position; \
+ data->expected = NULL; \
+ match = g_new0 (Match, 1); \
+ match->string = t1; \
+ match->start = s1; \
+ match->end = e1; \
+ data->expected = g_slist_append (data->expected, match); \
+ match = g_new0 (Match, 1); \
+ match->string = t2; \
+ match->start = s2; \
+ match->end = e2; \
+ data->expected = g_slist_append (data->expected, match); \
+ path = g_strdup_printf ("/regex/match-all-full2/%d", ++total); \
+ g_test_add_data_func (path, data, test_match_all_full); \
+ g_free (path); \
+ if (_string_len == -1 && _start_position == 0) { \
+ path = g_strdup_printf ("/regex/match-all2/%d", ++total); \
+ g_test_add_data_func (path, data, test_match_all); \
+ g_free (path); \
+ } \
+}
+
+#define TEST_MATCH_ALL3(_pattern, _string, _string_len, _start_position, \
+ t1, s1, e1, t2, s2, e2, t3, s3, e3) { \
+ TestMatchAllData *data; \
+ Match *match; \
+ gchar *path; \
+ data = g_new0 (TestMatchAllData, 1); \
+ data->pattern = _pattern; \
+ data->string = _string; \
+ data->string_len = _string_len; \
+ data->start_position = _start_position; \
+ data->expected = NULL; \
+ match = g_new0 (Match, 1); \
+ match->string = t1; \
+ match->start = s1; \
+ match->end = e1; \
+ data->expected = g_slist_append (data->expected, match); \
+ match = g_new0 (Match, 1); \
+ match->string = t2; \
+ match->start = s2; \
+ match->end = e2; \
+ data->expected = g_slist_append (data->expected, match); \
+ match = g_new0 (Match, 1); \
+ match->string = t3; \
+ match->start = s3; \
+ match->end = e3; \
+ data->expected = g_slist_append (data->expected, match); \
+ path = g_strdup_printf ("/regex/match-all-full3/%d", ++total); \
+ g_test_add_data_func (path, data, test_match_all_full); \
+ g_free (path); \
+ if (_string_len == -1 && _start_position == 0) { \
+ path = g_strdup_printf ("/regex/match-all3/%d", ++total); \
+ g_test_add_data_func (path, data, test_match_all); \
+ g_free (path); \
+ } \
+}
+
+int
+main (int argc, char *argv[])
+{
+ setlocale (LC_ALL, "");
+
+ g_setenv ("G_DEBUG", "fatal_warnings", TRUE);
+
+ g_test_init (&argc, &argv, NULL);
+
+ /* TEST_NEW(pattern, compile_opts, match_opts) */
+ TEST_NEW("", 0, 0);
+ TEST_NEW(".*", 0, 0);
+ TEST_NEW(".*", G_REGEX_OPTIMIZE, 0);
+ TEST_NEW(".*", G_REGEX_MULTILINE, 0);
+ TEST_NEW(".*", G_REGEX_DOTALL, 0);
+ TEST_NEW(".*", G_REGEX_DOTALL, G_REGEX_MATCH_NOTBOL);
+ TEST_NEW("(123\\d*)[a-zA-Z]+(?P<hello>.*)", 0, 0);
+ TEST_NEW("(123\\d*)[a-zA-Z]+(?P<hello>.*)", G_REGEX_CASELESS, 0);
+ TEST_NEW("(123\\d*)[a-zA-Z]+(?P<hello>.*)", G_REGEX_CASELESS | G_REGEX_OPTIMIZE, 0);
+ TEST_NEW("(?P<A>x)|(?P<A>y)", G_REGEX_DUPNAMES, 0);
+ TEST_NEW("(?P<A>x)|(?P<A>y)", G_REGEX_DUPNAMES | G_REGEX_OPTIMIZE, 0);
+ /* This gives "internal error: code overflow" with pcre 6.0 */
+ TEST_NEW("(?i)(?-i)", 0, 0);
+
+ /* TEST_NEW_FAIL(pattern, compile_opts, expected_error) */
+ TEST_NEW_FAIL("(", 0, G_REGEX_ERROR_UNMATCHED_PARENTHESIS);
+ TEST_NEW_FAIL(")", 0, G_REGEX_ERROR_UNMATCHED_PARENTHESIS);
+ TEST_NEW_FAIL("[", 0, G_REGEX_ERROR_UNTERMINATED_CHARACTER_CLASS);
+ TEST_NEW_FAIL("*", 0, G_REGEX_ERROR_NOTHING_TO_REPEAT);
+ TEST_NEW_FAIL("?", 0, G_REGEX_ERROR_NOTHING_TO_REPEAT);
+ TEST_NEW_FAIL("(?P<A>x)|(?P<A>y)", 0, G_REGEX_ERROR_DUPLICATE_SUBPATTERN_NAME);
+
+ /* TEST_MATCH_SIMPLE(pattern, string, compile_opts, match_opts, expected) */
+ TEST_MATCH_SIMPLE("a", "", 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("a", "a", 0, 0, TRUE);
+ TEST_MATCH_SIMPLE("a", "ba", 0, 0, TRUE);
+ TEST_MATCH_SIMPLE("^a", "ba", 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("a", "ba", G_REGEX_ANCHORED, 0, FALSE);
+ TEST_MATCH_SIMPLE("a", "ba", 0, G_REGEX_MATCH_ANCHORED, FALSE);
+ TEST_MATCH_SIMPLE("a", "ab", G_REGEX_ANCHORED, 0, TRUE);
+ TEST_MATCH_SIMPLE("a", "ab", 0, G_REGEX_MATCH_ANCHORED, TRUE);
+ TEST_MATCH_SIMPLE("a", "a", G_REGEX_CASELESS, 0, TRUE);
+ TEST_MATCH_SIMPLE("a", "A", G_REGEX_CASELESS, 0, TRUE);
+ /* These are needed to test extended properties. */
+ TEST_MATCH_SIMPLE(AGRAVE, AGRAVE, G_REGEX_CASELESS, 0, TRUE);
+ TEST_MATCH_SIMPLE(AGRAVE, AGRAVE_UPPER, G_REGEX_CASELESS, 0, TRUE);
+ TEST_MATCH_SIMPLE("\\p{L}", "a", 0, 0, TRUE);
+ TEST_MATCH_SIMPLE("\\p{L}", "1", 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{L}", AGRAVE, 0, 0, TRUE);
+ TEST_MATCH_SIMPLE("\\p{L}", AGRAVE_UPPER, 0, 0, TRUE);
+ TEST_MATCH_SIMPLE("\\p{L}", SHEEN, 0, 0, TRUE);
+ TEST_MATCH_SIMPLE("\\p{L}", ETH30, 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{Ll}", "a", 0, 0, TRUE);
+ TEST_MATCH_SIMPLE("\\p{Ll}", AGRAVE, 0, 0, TRUE);
+ TEST_MATCH_SIMPLE("\\p{Ll}", AGRAVE_UPPER, 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{Ll}", ETH30, 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{Sc}", AGRAVE, 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{Sc}", EURO, 0, 0, TRUE);
+ TEST_MATCH_SIMPLE("\\p{Sc}", ETH30, 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{N}", "a", 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{N}", "1", 0, 0, TRUE);
+ TEST_MATCH_SIMPLE("\\p{N}", AGRAVE, 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{N}", AGRAVE_UPPER, 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{N}", SHEEN, 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{N}", ETH30, 0, 0, TRUE);
+ TEST_MATCH_SIMPLE("\\p{Nd}", "a", 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{Nd}", "1", 0, 0, TRUE);
+ TEST_MATCH_SIMPLE("\\p{Nd}", AGRAVE, 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{Nd}", AGRAVE_UPPER, 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{Nd}", SHEEN, 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{Nd}", ETH30, 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{Common}", SHEEN, 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{Common}", "a", 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{Common}", AGRAVE, 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{Common}", AGRAVE_UPPER, 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{Common}", ETH30, 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{Common}", "%", 0, 0, TRUE);
+ TEST_MATCH_SIMPLE("\\p{Common}", "1", 0, 0, TRUE);
+ TEST_MATCH_SIMPLE("\\p{Arabic}", SHEEN, 0, 0, TRUE);
+ TEST_MATCH_SIMPLE("\\p{Arabic}", "a", 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{Arabic}", AGRAVE, 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{Arabic}", AGRAVE_UPPER, 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{Arabic}", ETH30, 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{Arabic}", "%", 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{Arabic}", "1", 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{Latin}", SHEEN, 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{Latin}", "a", 0, 0, TRUE);
+ TEST_MATCH_SIMPLE("\\p{Latin}", AGRAVE, 0, 0, TRUE);
+ TEST_MATCH_SIMPLE("\\p{Latin}", AGRAVE_UPPER, 0, 0, TRUE);
+ TEST_MATCH_SIMPLE("\\p{Latin}", ETH30, 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{Latin}", "%", 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{Latin}", "1", 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{Ethiopic}", SHEEN, 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{Ethiopic}", "a", 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{Ethiopic}", AGRAVE, 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{Ethiopic}", AGRAVE_UPPER, 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{Ethiopic}", ETH30, 0, 0, TRUE);
+ TEST_MATCH_SIMPLE("\\p{Ethiopic}", "%", 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{Ethiopic}", "1", 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("\\p{L}(?<=\\p{Arabic})", SHEEN, 0, 0, TRUE);
+ TEST_MATCH_SIMPLE("\\p{L}(?<=\\p{Latin})", SHEEN, 0, 0, FALSE);
+ /* Invalid patterns. */
+ TEST_MATCH_SIMPLE("\\", "a", 0, 0, FALSE);
+ TEST_MATCH_SIMPLE("[", "", 0, 0, FALSE);
+
+ /* TEST_MATCH(pattern, compile_opts, match_opts, string,
+ * string_len, start_position, match_opts2, expected) */
+ TEST_MATCH("a", 0, 0, "a", -1, 0, 0, TRUE);
+ TEST_MATCH("a", 0, 0, "A", -1, 0, 0, FALSE);
+ TEST_MATCH("a", G_REGEX_CASELESS, 0, "A", -1, 0, 0, TRUE);
+ TEST_MATCH("a", 0, 0, "ab", -1, 1, 0, FALSE);
+ TEST_MATCH("a", 0, 0, "ba", 1, 0, 0, FALSE);
+ TEST_MATCH("a", 0, 0, "bab", -1, 0, 0, TRUE);
+ TEST_MATCH("a", 0, 0, "b", -1, 0, 0, FALSE);
+ TEST_MATCH("a", 0, G_REGEX_ANCHORED, "a", -1, 0, 0, TRUE);
+ TEST_MATCH("a", 0, G_REGEX_ANCHORED, "ab", -1, 1, 0, FALSE);
+ TEST_MATCH("a", 0, G_REGEX_ANCHORED, "ba", 1, 0, 0, FALSE);
+ TEST_MATCH("a", 0, G_REGEX_ANCHORED, "bab", -1, 0, 0, FALSE);
+ TEST_MATCH("a", 0, G_REGEX_ANCHORED, "b", -1, 0, 0, FALSE);
+ TEST_MATCH("a", 0, 0, "a", -1, 0, G_REGEX_ANCHORED, TRUE);
+ TEST_MATCH("a", 0, 0, "ab", -1, 1, G_REGEX_ANCHORED, FALSE);
+ TEST_MATCH("a", 0, 0, "ba", 1, 0, G_REGEX_ANCHORED, FALSE);
+ TEST_MATCH("a", 0, 0, "bab", -1, 0, G_REGEX_ANCHORED, FALSE);
+ TEST_MATCH("a", 0, 0, "b", -1, 0, G_REGEX_ANCHORED, FALSE);
+ TEST_MATCH("a|b", 0, 0, "a", -1, 0, 0, TRUE);
+ TEST_MATCH("\\d", 0, 0, EURO, -1, 0, 0, FALSE);
+ TEST_MATCH("^.$", 0, 0, EURO, -1, 0, 0, TRUE);
+ TEST_MATCH("^.{3}$", 0, 0, EURO, -1, 0, 0, FALSE);
+ TEST_MATCH("^.$", G_REGEX_RAW, 0, EURO, -1, 0, 0, FALSE);
+ TEST_MATCH("^.{3}$", G_REGEX_RAW, 0, EURO, -1, 0, 0, TRUE);
+ TEST_MATCH(AGRAVE, G_REGEX_CASELESS, 0, AGRAVE_UPPER, -1, 0, 0, TRUE);
+
+ /* New lines handling. */
+ TEST_MATCH("^a\\Rb$", 0, 0, "a\r\nb", -1, 0, 0, TRUE);
+ TEST_MATCH("^a\\Rb$", 0, 0, "a\nb", -1, 0, 0, TRUE);
+ TEST_MATCH("^a\\Rb$", 0, 0, "a\rb", -1, 0, 0, TRUE);
+ TEST_MATCH("^a\\Rb$", 0, 0, "a\n\rb", -1, 0, 0, FALSE);
+ TEST_MATCH("^a\\R\\Rb$", 0, 0, "a\n\rb", -1, 0, 0, TRUE);
+ TEST_MATCH("^a\\nb$", 0, 0, "a\r\nb", -1, 0, 0, FALSE);
+ TEST_MATCH("^a\\r\\nb$", 0, 0, "a\r\nb", -1, 0, 0, TRUE);
+
+ TEST_MATCH("^b$", 0, 0, "a\nb\nc", -1, 0, 0, FALSE);
+ TEST_MATCH("^b$", G_REGEX_MULTILINE, 0, "a\nb\nc", -1, 0, 0, TRUE);
+ TEST_MATCH("^b$", G_REGEX_MULTILINE, 0, "a\r\nb\r\nc", -1, 0, 0, TRUE);
+ TEST_MATCH("^b$", G_REGEX_MULTILINE, 0, "a\rb\rc", -1, 0, 0, TRUE);
+ TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_CR, 0, "a\nb\nc", -1, 0, 0, FALSE);
+ TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_LF, 0, "a\nb\nc", -1, 0, 0, TRUE);
+ TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_CRLF, 0, "a\nb\nc", -1, 0, 0, FALSE);
+ TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_CR, 0, "a\r\nb\r\nc", -1, 0, 0, FALSE);
+ TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_LF, 0, "a\r\nb\r\nc", -1, 0, 0, FALSE);
+ TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_CRLF, 0, "a\r\nb\r\nc", -1, 0, 0, TRUE);
+ TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_CR, 0, "a\rb\rc", -1, 0, 0, TRUE);
+ TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_LF, 0, "a\rb\rc", -1, 0, 0, FALSE);
+ TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_CRLF, 0, "a\rb\rc", -1, 0, 0, FALSE);
+ TEST_MATCH("^b$", G_REGEX_MULTILINE, G_REGEX_MATCH_NEWLINE_CR, "a\nb\nc", -1, 0, 0, FALSE);
+ TEST_MATCH("^b$", G_REGEX_MULTILINE, G_REGEX_MATCH_NEWLINE_LF, "a\nb\nc", -1, 0, 0, TRUE);
+ TEST_MATCH("^b$", G_REGEX_MULTILINE, G_REGEX_MATCH_NEWLINE_CRLF, "a\nb\nc", -1, 0, 0, FALSE);
+ TEST_MATCH("^b$", G_REGEX_MULTILINE, G_REGEX_MATCH_NEWLINE_CR, "a\r\nb\r\nc", -1, 0, 0, FALSE);
+ TEST_MATCH("^b$", G_REGEX_MULTILINE, G_REGEX_MATCH_NEWLINE_LF, "a\r\nb\r\nc", -1, 0, 0, FALSE);
+ TEST_MATCH("^b$", G_REGEX_MULTILINE, G_REGEX_MATCH_NEWLINE_CRLF, "a\r\nb\r\nc", -1, 0, 0, TRUE);
+ TEST_MATCH("^b$", G_REGEX_MULTILINE, G_REGEX_MATCH_NEWLINE_CR, "a\rb\rc", -1, 0, 0, TRUE);
+ TEST_MATCH("^b$", G_REGEX_MULTILINE, G_REGEX_MATCH_NEWLINE_LF, "a\rb\rc", -1, 0, 0, FALSE);
+ TEST_MATCH("^b$", G_REGEX_MULTILINE, G_REGEX_MATCH_NEWLINE_CRLF, "a\rb\rc", -1, 0, 0, FALSE);
+
+ TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_CR, G_REGEX_MATCH_NEWLINE_ANY, "a\nb\nc", -1, 0, 0, TRUE);
+ TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_CR, G_REGEX_MATCH_NEWLINE_ANY, "a\rb\rc", -1, 0, 0, TRUE);
+ TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_CR, G_REGEX_MATCH_NEWLINE_ANY, "a\r\nb\r\nc", -1, 0, 0, TRUE);
+ TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_CR, G_REGEX_MATCH_NEWLINE_LF, "a\nb\nc", -1, 0, 0, TRUE);
+ TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_CR, G_REGEX_MATCH_NEWLINE_LF, "a\rb\rc", -1, 0, 0, FALSE);
+ TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_CR, G_REGEX_MATCH_NEWLINE_CRLF, "a\r\nb\r\nc", -1, 0, 0, TRUE);
+ TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_CR, G_REGEX_MATCH_NEWLINE_CRLF, "a\rb\rc", -1, 0, 0, FALSE);
+
+ TEST_MATCH("a#\nb", G_REGEX_EXTENDED, 0, "a", -1, 0, 0, FALSE);
+ TEST_MATCH("a#\r\nb", G_REGEX_EXTENDED, 0, "a", -1, 0, 0, FALSE);
+ TEST_MATCH("a#\rb", G_REGEX_EXTENDED, 0, "a", -1, 0, 0, FALSE);
+ TEST_MATCH("a#\nb", G_REGEX_EXTENDED, G_REGEX_MATCH_NEWLINE_CR, "a", -1, 0, 0, FALSE);
+ TEST_MATCH("a#\nb", G_REGEX_EXTENDED | G_REGEX_NEWLINE_CR, 0, "a", -1, 0, 0, TRUE);
+
+ /* TEST_MATCH_NEXT#(pattern, string, string_len, start_position, ...) */
+ TEST_MATCH_NEXT0("a", "x", -1, 0);
+ TEST_MATCH_NEXT0("a", "ax", -1, 1);
+ TEST_MATCH_NEXT0("a", "xa", 1, 0);
+ TEST_MATCH_NEXT0("a", "axa", 1, 2);
+ TEST_MATCH_NEXT1("a", "a", -1, 0, "a", 0, 1);
+ TEST_MATCH_NEXT1("a", "xax", -1, 0, "a", 1, 2);
+ TEST_MATCH_NEXT1(EURO, ENG EURO, -1, 0, EURO, 2, 5);
+ TEST_MATCH_NEXT1("a*", "", -1, 0, "", 0, 0);
+ TEST_MATCH_NEXT2("a*", "aa", -1, 0, "aa", 0, 2, "", 2, 2);
+ TEST_MATCH_NEXT2(EURO "*", EURO EURO, -1, 0, EURO EURO, 0, 6, "", 6, 6);
+ TEST_MATCH_NEXT2("a", "axa", -1, 0, "a", 0, 1, "a", 2, 3);
+ TEST_MATCH_NEXT2("a+", "aaxa", -1, 0, "aa", 0, 2, "a", 3, 4);
+ TEST_MATCH_NEXT2("a", "aa", -1, 0, "a", 0, 1, "a", 1, 2);
+ TEST_MATCH_NEXT2("a", "ababa", -1, 2, "a", 2, 3, "a", 4, 5);
+ TEST_MATCH_NEXT2(EURO "+", EURO "-" EURO, -1, 0, EURO, 0, 3, EURO, 4, 7);
+ TEST_MATCH_NEXT3("", "ab", -1, 0, "", 0, 0, "", 1, 1, "", 2, 2);
+ TEST_MATCH_NEXT3("", AGRAVE "b", -1, 0, "", 0, 0, "", 2, 2, "", 3, 3);
+ TEST_MATCH_NEXT3("a", "aaxa", -1, 0, "a", 0, 1, "a", 1, 2, "a", 3, 4);
+ TEST_MATCH_NEXT3("a", "aa" OGRAVE "a", -1, 0, "a", 0, 1, "a", 1, 2, "a", 4, 5);
+ TEST_MATCH_NEXT3("a*", "aax", -1, 0, "aa", 0, 2, "", 2, 2, "", 3, 3);
+ TEST_MATCH_NEXT3("(?=[A-Z0-9])", "RegExTest", -1, 0, "", 0, 0, "", 3, 3, "", 5, 5);
+ TEST_MATCH_NEXT4("a*", "aaxa", -1, 0, "aa", 0, 2, "", 2, 2, "a", 3, 4, "", 4, 4);
+
+ /* TEST_MATCH_COUNT(pattern, string, start_position, match_opts, expected_count) */
+ TEST_MATCH_COUNT("a", "", 0, 0, 0);
+ TEST_MATCH_COUNT("a", "a", 0, 0, 1);
+ TEST_MATCH_COUNT("a", "a", 1, 0, 0);
+ TEST_MATCH_COUNT("(.)", "a", 0, 0, 2);
+ TEST_MATCH_COUNT("(.)", EURO, 0, 0, 2);
+ TEST_MATCH_COUNT("(?:.)", "a", 0, 0, 1);
+ TEST_MATCH_COUNT("(?P<A>.)", "a", 0, 0, 2);
+ TEST_MATCH_COUNT("a$", "a", 0, G_REGEX_MATCH_NOTEOL, 0);
+ TEST_MATCH_COUNT("(a)?(b)", "b", 0, 0, 3);
+ TEST_MATCH_COUNT("(a)?(b)", "ab", 0, 0, 3);
+
+ /* TEST_PARTIAL(pattern, string, expected) */
+ TEST_PARTIAL("^ab", "a", TRUE);
+ TEST_PARTIAL("^ab", "xa", FALSE);
+ TEST_PARTIAL("ab", "xa", TRUE);
+ TEST_PARTIAL("ab", "ab", FALSE); /* normal match. */
+ TEST_PARTIAL("a+b", "aa", TRUE);
+ TEST_PARTIAL("(a)+b", "aa", TRUE);
+ TEST_PARTIAL("a?b", "a", TRUE);
+
+ /* TEST_SUB_PATTERN(pattern, string, start_position, sub_n, expected_sub,
+ * expected_start, expected_end) */
+ TEST_SUB_PATTERN("a", "a", 0, 0, "a", 0, 1);
+ TEST_SUB_PATTERN("a(.)", "ab", 0, 1, "b", 1, 2);
+ TEST_SUB_PATTERN("a(.)", "a" EURO, 0, 1, EURO, 1, 4);
+ TEST_SUB_PATTERN("(?:.*)(a)(.)", "xxa" ENG, 0, 2, ENG, 3, 5);
+ TEST_SUB_PATTERN("(" HSTROKE ")", "a" HSTROKE ENG, 0, 1, HSTROKE, 1, 3);
+ TEST_SUB_PATTERN("a", "a", 0, 1, NULL, UNTOUCHED, UNTOUCHED);
+ TEST_SUB_PATTERN("a", "a", 0, 1, NULL, UNTOUCHED, UNTOUCHED);
+ TEST_SUB_PATTERN("(a)?(b)", "b", 0, 0, "b", 0, 1);
+ TEST_SUB_PATTERN("(a)?(b)", "b", 0, 1, "", -1, -1);
+ TEST_SUB_PATTERN("(a)?(b)", "b", 0, 2, "b", 0, 1);
+
+ /* TEST_NAMED_SUB_PATTERN(pattern, string, start_position, sub_name,
+ * expected_sub, expected_start, expected_end) */
+ TEST_NAMED_SUB_PATTERN("a(?P<A>.)(?P<B>.)?", "ab", 0, "A", "b", 1, 2);
+ TEST_NAMED_SUB_PATTERN("a(?P<A>.)(?P<B>.)?", "aab", 1, "A", "b", 2, 3);
+ TEST_NAMED_SUB_PATTERN("a(?P<A>.)(?P<B>.)?", EURO "ab", 0, "A", "b", 4, 5);
+ TEST_NAMED_SUB_PATTERN("a(?P<A>.)(?P<B>.)?", EURO "ab", 0, "B", NULL, UNTOUCHED, UNTOUCHED);
+ TEST_NAMED_SUB_PATTERN("a(?P<A>.)(?P<B>.)?", EURO "ab", 0, "C", NULL, UNTOUCHED, UNTOUCHED);
+ TEST_NAMED_SUB_PATTERN("a(?P<A>.)(?P<B>.)?", "a" EGRAVE "x", 0, "A", EGRAVE, 1, 3);
+ TEST_NAMED_SUB_PATTERN("a(?P<A>.)(?P<B>.)?", "a" EGRAVE "x", 0, "B", "x", 3, 4);
+ TEST_NAMED_SUB_PATTERN("(?P<A>a)?(?P<B>b)", "b", 0, "A", "", -1, -1);
+ TEST_NAMED_SUB_PATTERN("(?P<A>a)?(?P<B>b)", "b", 0, "B", "b", 0, 1);
+
+ /* TEST_NAMED_SUB_PATTERN_DUPNAMES(pattern, string, start_position, sub_name,
+ * expected_sub, expected_start, expected_end) */
+ TEST_NAMED_SUB_PATTERN_DUPNAMES("(?P<N>a)|(?P<N>b)", "ab", 0, "N", "a", 0, 1);
+ TEST_NAMED_SUB_PATTERN_DUPNAMES("(?P<N>aa)|(?P<N>a)", "aa", 0, "N", "aa", 0, 2);
+ TEST_NAMED_SUB_PATTERN_DUPNAMES("(?P<N>aa)(?P<N>a)", "aaa", 0, "N", "aa", 0, 2);
+ TEST_NAMED_SUB_PATTERN_DUPNAMES("(?P<N>x)|(?P<N>a)", "a", 0, "N", "a", 0, 1);
+ TEST_NAMED_SUB_PATTERN_DUPNAMES("(?P<N>x)y|(?P<N>a)b", "ab", 0, "N", "a", 0, 1);
+
+ /* DUPNAMES option inside the pattern */
+ TEST_NAMED_SUB_PATTERN("(?J)(?P<N>a)|(?P<N>b)", "ab", 0, "N", "a", 0, 1);
+ TEST_NAMED_SUB_PATTERN("(?J)(?P<N>aa)|(?P<N>a)", "aa", 0, "N", "aa", 0, 2);
+ TEST_NAMED_SUB_PATTERN("(?J)(?P<N>aa)(?P<N>a)", "aaa", 0, "N", "aa", 0, 2);
+ TEST_NAMED_SUB_PATTERN("(?J)(?P<N>x)|(?P<N>a)", "a", 0, "N", "a", 0, 1);
+ TEST_NAMED_SUB_PATTERN("(?J)(?P<N>x)y|(?P<N>a)b", "ab", 0, "N", "a", 0, 1);
+
+ /* TEST_FETCH_ALL#(pattern, string, ...) */
+ TEST_FETCH_ALL0("a", "");
+ TEST_FETCH_ALL0("a", "b");
+ TEST_FETCH_ALL1("a", "a", "a");
+ TEST_FETCH_ALL1("a+", "aa", "aa");
+ TEST_FETCH_ALL1("(?:a)", "a", "a");
+ TEST_FETCH_ALL2("(a)", "a", "a", "a");
+ TEST_FETCH_ALL2("a(.)", "ab", "ab", "b");
+ TEST_FETCH_ALL2("a(.)", "a" HSTROKE, "a" HSTROKE, HSTROKE);
+ TEST_FETCH_ALL3("(?:.*)(a)(.)", "xyazk", "xyaz", "a", "z");
+ TEST_FETCH_ALL3("(?P<A>.)(a)", "xa", "xa", "x", "a");
+ TEST_FETCH_ALL3("(?P<A>.)(a)", ENG "a", ENG "a", ENG, "a");
+ TEST_FETCH_ALL3("(a)?(b)", "b", "b", "", "b");
+ TEST_FETCH_ALL3("(a)?(b)", "ab", "ab", "a", "b");
+
+ /* TEST_SPLIT_SIMPLE#(pattern, string, ...) */
+ TEST_SPLIT_SIMPLE0("", "");
+ TEST_SPLIT_SIMPLE0("a", "");
+ TEST_SPLIT_SIMPLE1(",", "a", "a");
+ TEST_SPLIT_SIMPLE1("(,)\\s*", "a", "a");
+ TEST_SPLIT_SIMPLE2(",", "a,b", "a", "b");
+ TEST_SPLIT_SIMPLE3(",", "a,b,c", "a", "b", "c");
+ TEST_SPLIT_SIMPLE3(",\\s*", "a,b,c", "a", "b", "c");
+ TEST_SPLIT_SIMPLE3(",\\s*", "a, b, c", "a", "b", "c");
+ TEST_SPLIT_SIMPLE3("(,)\\s*", "a,b", "a", ",", "b");
+ TEST_SPLIT_SIMPLE3("(,)\\s*", "a, b", "a", ",", "b");
+ /* Not matched sub-strings. */
+ TEST_SPLIT_SIMPLE2("a|(b)", "xay", "x", "y");
+ TEST_SPLIT_SIMPLE3("a|(b)", "xby", "x", "b", "y");
+ /* Empty matches. */
+ TEST_SPLIT_SIMPLE3("", "abc", "a", "b", "c");
+ TEST_SPLIT_SIMPLE3(" *", "ab c", "a", "b", "c");
+ /* Invalid patterns. */
+ TEST_SPLIT_SIMPLE0("\\", "");
+ TEST_SPLIT_SIMPLE0("[", "");
+
+ /* TEST_SPLIT#(pattern, string, start_position, max_tokens, ...) */
+ TEST_SPLIT0("", "", 0, 0);
+ TEST_SPLIT0("a", "", 0, 0);
+ TEST_SPLIT0("a", "", 0, 1);
+ TEST_SPLIT0("a", "", 0, 2);
+ TEST_SPLIT0("a", "a", 1, 0);
+ TEST_SPLIT1(",", "a", 0, 0, "a");
+ TEST_SPLIT1(",", "a,b", 0, 1, "a,b");
+ TEST_SPLIT1("(,)\\s*", "a", 0, 0, "a");
+ TEST_SPLIT1(",", "a,b", 2, 0, "b");
+ TEST_SPLIT2(",", "a,b", 0, 0, "a", "b");
+ TEST_SPLIT2(",", "a,b,c", 0, 2, "a", "b,c");
+ TEST_SPLIT2(",", "a,b", 1, 0, "", "b");
+ TEST_SPLIT2(",", "a,", 0, 0, "a", "");
+ TEST_SPLIT3(",", "a,b,c", 0, 0, "a", "b", "c");
+ TEST_SPLIT3(",\\s*", "a,b,c", 0, 0, "a", "b", "c");
+ TEST_SPLIT3(",\\s*", "a, b, c", 0, 0, "a", "b", "c");
+ TEST_SPLIT3("(,)\\s*", "a,b", 0, 0, "a", ",", "b");
+ TEST_SPLIT3("(,)\\s*", "a, b", 0, 0, "a", ",", "b");
+ /* Not matched sub-strings. */
+ TEST_SPLIT2("a|(b)", "xay", 0, 0, "x", "y");
+ TEST_SPLIT3("a|(b)", "xby", 0, -1, "x", "b", "y");
+ /* Empty matches. */
+ TEST_SPLIT2(" *", "ab c", 1, 0, "b", "c");
+ TEST_SPLIT3("", "abc", 0, 0, "a", "b", "c");
+ TEST_SPLIT3(" *", "ab c", 0, 0, "a", "b", "c");
+ TEST_SPLIT1(" *", "ab c", 0, 1, "ab c");
+ TEST_SPLIT2(" *", "ab c", 0, 2, "a", "b c");
+ TEST_SPLIT3(" *", "ab c", 0, 3, "a", "b", "c");
+ TEST_SPLIT3(" *", "ab c", 0, 4, "a", "b", "c");
+
+ /* TEST_CHECK_REPLACEMENT(string_to_expand, expected, expected_refs) */
+ TEST_CHECK_REPLACEMENT("", TRUE, FALSE);
+ TEST_CHECK_REPLACEMENT("a", TRUE, FALSE);
+ TEST_CHECK_REPLACEMENT("\\t\\n\\v\\r\\f\\a\\b\\\\\\x{61}", TRUE, FALSE);
+ TEST_CHECK_REPLACEMENT("\\0", TRUE, TRUE);
+ TEST_CHECK_REPLACEMENT("\\n\\2", TRUE, TRUE);
+ TEST_CHECK_REPLACEMENT("\\g<foo>", TRUE, TRUE);
+ /* Invalid strings */
+ TEST_CHECK_REPLACEMENT("\\Q", FALSE, FALSE);
+ TEST_CHECK_REPLACEMENT("x\\Ay", FALSE, FALSE);
+
+ /* TEST_EXPAND(pattern, string, string_to_expand, raw, expected) */
+ TEST_EXPAND("a", "a", "", FALSE, "");
+ TEST_EXPAND("a", "a", "\\0", FALSE, "a");
+ TEST_EXPAND("a", "a", "\\1", FALSE, "");
+ TEST_EXPAND("(a)", "ab", "\\1", FALSE, "a");
+ TEST_EXPAND("(a)", "a", "\\1", FALSE, "a");
+ TEST_EXPAND("(a)", "a", "\\g<1>", FALSE, "a");
+ TEST_EXPAND("a", "a", "\\0130", FALSE, "X");
+ TEST_EXPAND("a", "a", "\\\\\\0", FALSE, "\\a");
+ TEST_EXPAND("a(?P<G>.)c", "xabcy", "X\\g<G>X", FALSE, "XbX");
+ TEST_EXPAND("(.)(?P<1>.)", "ab", "\\1", FALSE, "a");
+ TEST_EXPAND("(.)(?P<1>.)", "ab", "\\g<1>", FALSE, "a");
+ TEST_EXPAND(".", EURO, "\\0", FALSE, EURO);
+ TEST_EXPAND("(.)", EURO, "\\1", FALSE, EURO);
+ TEST_EXPAND("(?P<G>.)", EURO, "\\g<G>", FALSE, EURO);
+ TEST_EXPAND(".", "a", EURO, FALSE, EURO);
+ TEST_EXPAND(".", "a", EURO "\\0", FALSE, EURO "a");
+ TEST_EXPAND(".", "", "\\Lab\\Ec", FALSE, "abc");
+ TEST_EXPAND(".", "", "\\LaB\\EC", FALSE, "abC");
+ TEST_EXPAND(".", "", "\\Uab\\Ec", FALSE, "ABc");
+ TEST_EXPAND(".", "", "a\\ubc", FALSE, "aBc");
+ TEST_EXPAND(".", "", "a\\lbc", FALSE, "abc");
+ TEST_EXPAND(".", "", "A\\uBC", FALSE, "ABC");
+ TEST_EXPAND(".", "", "A\\lBC", FALSE, "AbC");
+ TEST_EXPAND(".", "", "A\\l\\\\BC", FALSE, "A\\BC");
+ TEST_EXPAND(".", "", "\\L" AGRAVE "\\E", FALSE, AGRAVE);
+ TEST_EXPAND(".", "", "\\U" AGRAVE "\\E", FALSE, AGRAVE_UPPER);
+ TEST_EXPAND(".", "", "\\u" AGRAVE "a", FALSE, AGRAVE_UPPER "a");
+ TEST_EXPAND(".", "ab", "x\\U\\0y\\Ez", FALSE, "xAYz");
+ TEST_EXPAND(".(.)", "AB", "x\\L\\1y\\Ez", FALSE, "xbyz");
+ TEST_EXPAND(".", "ab", "x\\u\\0y\\Ez", FALSE, "xAyz");
+ TEST_EXPAND(".(.)", "AB", "x\\l\\1y\\Ez", FALSE, "xbyz");
+ TEST_EXPAND(".(.)", "a" AGRAVE_UPPER, "x\\l\\1y", FALSE, "x" AGRAVE "y");
+ TEST_EXPAND("a", "bab", "\\x{61}", FALSE, "a");
+ TEST_EXPAND("a", "bab", "\\x61", FALSE, "a");
+ TEST_EXPAND("a", "bab", "\\x5a", FALSE, "Z");
+ TEST_EXPAND("a", "bab", "\\0\\x5A", FALSE, "aZ");
+ TEST_EXPAND("a", "bab", "\\1\\x{5A}", FALSE, "Z");
+ TEST_EXPAND("a", "bab", "\\x{00E0}", FALSE, AGRAVE);
+ TEST_EXPAND("", "bab", "\\x{0634}", FALSE, SHEEN);
+ TEST_EXPAND("", "bab", "\\x{634}", FALSE, SHEEN);
+ TEST_EXPAND("", "", "\\t", FALSE, "\t");
+ TEST_EXPAND("", "", "\\v", FALSE, "\v");
+ TEST_EXPAND("", "", "\\r", FALSE, "\r");
+ TEST_EXPAND("", "", "\\n", FALSE, "\n");
+ TEST_EXPAND("", "", "\\f", FALSE, "\f");
+ TEST_EXPAND("", "", "\\a", FALSE, "\a");
+ TEST_EXPAND("", "", "\\b", FALSE, "\b");
+ TEST_EXPAND("a(.)", "abc", "\\0\\b\\1", FALSE, "ab\bb");
+ TEST_EXPAND("a(.)", "abc", "\\0141", FALSE, "a");
+ TEST_EXPAND("a(.)", "abc", "\\078", FALSE, "\a8");
+ TEST_EXPAND("a(.)", "abc", "\\077", FALSE, "?");
+ TEST_EXPAND("a(.)", "abc", "\\0778", FALSE, "?8");
+ TEST_EXPAND("a(.)", "a" AGRAVE "b", "\\1", FALSE, AGRAVE);
+ TEST_EXPAND("a(.)", "a" AGRAVE "b", "\\1", TRUE, "\xc3");
+ TEST_EXPAND("a(.)", "a" AGRAVE "b", "\\0", TRUE, "a\xc3");
+ /* Invalid strings. */
+ TEST_EXPAND("", "", "\\Q", FALSE, NULL);
+ TEST_EXPAND("", "", "x\\Ay", FALSE, NULL);
+ TEST_EXPAND("", "", "\\g<", FALSE, NULL);
+ TEST_EXPAND("", "", "\\g<>", FALSE, NULL);
+ TEST_EXPAND("", "", "\\g<1a>", FALSE, NULL);
+ TEST_EXPAND("", "", "\\g<a$>", FALSE, NULL);
+ TEST_EXPAND("", "", "\\", FALSE, NULL);
+ TEST_EXPAND("a", "a", "\\x{61", FALSE, NULL);
+ TEST_EXPAND("a", "a", "\\x6X", FALSE, NULL);
+ /* Pattern-less. */
+ TEST_EXPAND(NULL, NULL, "", FALSE, "");
+ TEST_EXPAND(NULL, NULL, "\\n", FALSE, "\n");
+ /* Invalid strings */
+ TEST_EXPAND(NULL, NULL, "\\Q", FALSE, NULL);
+ TEST_EXPAND(NULL, NULL, "x\\Ay", FALSE, NULL);
+
+ /* TEST_REPLACE(pattern, string, start_position, replacement, expected) */
+ TEST_REPLACE("a", "ababa", 0, "A", "AbAbA");
+ TEST_REPLACE("a", "ababa", 1, "A", "abAbA");
+ TEST_REPLACE("a", "ababa", 2, "A", "abAbA");
+ TEST_REPLACE("a", "ababa", 3, "A", "ababA");
+ TEST_REPLACE("a", "ababa", 4, "A", "ababA");
+ TEST_REPLACE("a", "ababa", 5, "A", "ababa");
+ TEST_REPLACE("a", "ababa", 6, "A", "ababa");
+ TEST_REPLACE("a", "abababa", 2, "A", "abAbAbA");
+ TEST_REPLACE("a", "abab", 0, "A", "AbAb");
+ TEST_REPLACE("a", "baba", 0, "A", "bAbA");
+ TEST_REPLACE("a", "bab", 0, "A", "bAb");
+ TEST_REPLACE("$^", "abc", 0, "X", "abc");
+ TEST_REPLACE("(.)a", "ciao", 0, "a\\1", "caio");
+ TEST_REPLACE("a.", "abc", 0, "\\0\\0", "ababc");
+ TEST_REPLACE("a", "asd", 0, "\\0101", "Asd");
+ TEST_REPLACE("(a).\\1", "aba cda", 0, "\\1\\n", "a\n cda");
+ TEST_REPLACE("a" AGRAVE "a", "a" AGRAVE "a", 0, "x", "x");
+ TEST_REPLACE("a" AGRAVE "a", "a" AGRAVE "a", 0, OGRAVE, OGRAVE);
+ TEST_REPLACE("[^-]", "-" EURO "-x-" HSTROKE, 0, "a", "-a-a-a");
+ TEST_REPLACE("[^-]", "-" EURO "-" HSTROKE, 0, "a\\g<0>a", "-a" EURO "a-a" HSTROKE "a");
+ TEST_REPLACE("-", "-" EURO "-" HSTROKE, 0, "", EURO HSTROKE);
+ TEST_REPLACE(".*", "hello", 0, "\\U\\0\\E", "HELLO");
+ TEST_REPLACE(".*", "hello", 0, "\\u\\0", "Hello");
+ TEST_REPLACE("\\S+", "hello world", 0, "\\U-\\0-", "-HELLO- -WORLD-");
+ TEST_REPLACE(".", "a", 0, "\\A", NULL);
+ TEST_REPLACE(".", "a", 0, "\\g", NULL);
+
+ /* TEST_REPLACE_LIT(pattern, string, start_position, replacement, expected) */
+ TEST_REPLACE_LIT("a", "ababa", 0, "A", "AbAbA");
+ TEST_REPLACE_LIT("a", "ababa", 1, "A", "abAbA");
+ TEST_REPLACE_LIT("a", "ababa", 2, "A", "abAbA");
+ TEST_REPLACE_LIT("a", "ababa", 3, "A", "ababA");
+ TEST_REPLACE_LIT("a", "ababa", 4, "A", "ababA");
+ TEST_REPLACE_LIT("a", "ababa", 5, "A", "ababa");
+ TEST_REPLACE_LIT("a", "ababa", 6, "A", "ababa");
+ TEST_REPLACE_LIT("a", "abababa", 2, "A", "abAbAbA");
+ TEST_REPLACE_LIT("a", "abcadaa", 0, "A", "AbcAdAA");
+ TEST_REPLACE_LIT("$^", "abc", 0, "X", "abc");
+ TEST_REPLACE_LIT("(.)a", "ciao", 0, "a\\1", "ca\\1o");
+ TEST_REPLACE_LIT("a.", "abc", 0, "\\0\\0\\n", "\\0\\0\\nc");
+ TEST_REPLACE_LIT("a" AGRAVE "a", "a" AGRAVE "a", 0, "x", "x");
+ TEST_REPLACE_LIT("a" AGRAVE "a", "a" AGRAVE "a", 0, OGRAVE, OGRAVE);
+ TEST_REPLACE_LIT(AGRAVE, "-" AGRAVE "-" HSTROKE, 0, "a" ENG "a", "-a" ENG "a-" HSTROKE);
+ TEST_REPLACE_LIT("[^-]", "-" EURO "-" AGRAVE "-" HSTROKE, 0, "a", "-a-a-a");
+ TEST_REPLACE_LIT("[^-]", "-" EURO "-" AGRAVE, 0, "a\\g<0>a", "-a\\g<0>a-a\\g<0>a");
+ TEST_REPLACE_LIT("-", "-" EURO "-" AGRAVE "-" HSTROKE, 0, "", EURO AGRAVE HSTROKE);
+ TEST_REPLACE_LIT("(?=[A-Z0-9])", "RegExTest", 0, "_", "_Reg_Ex_Test");
+ TEST_REPLACE_LIT("(?=[A-Z0-9])", "RegExTest", 1, "_", "Reg_Ex_Test");
+
+ /* TEST_GET_STRING_NUMBER(pattern, name, expected_num) */
+ TEST_GET_STRING_NUMBER("", "A", -1);
+ TEST_GET_STRING_NUMBER("(?P<A>.)", "A", 1);
+ TEST_GET_STRING_NUMBER("(?P<A>.)", "B", -1);
+ TEST_GET_STRING_NUMBER("(?P<A>.)(?P<B>a)", "A", 1);
+ TEST_GET_STRING_NUMBER("(?P<A>.)(?P<B>a)", "B", 2);
+ TEST_GET_STRING_NUMBER("(?P<A>.)(?P<B>a)", "C", -1);
+ TEST_GET_STRING_NUMBER("(?P<A>.)(.)(?P<B>a)", "A", 1);
+ TEST_GET_STRING_NUMBER("(?P<A>.)(.)(?P<B>a)", "B", 3);
+ TEST_GET_STRING_NUMBER("(?P<A>.)(.)(?P<B>a)", "C", -1);
+ TEST_GET_STRING_NUMBER("(?:a)(?P<A>.)", "A", 1);
+ TEST_GET_STRING_NUMBER("(?:a)(?P<A>.)", "B", -1);
+
+ /* TEST_ESCAPE(string, length, expected) */
+ TEST_ESCAPE("hello world", -1, "hello world");
+ TEST_ESCAPE("hello world", 5, "hello");
+ TEST_ESCAPE("hello.world", -1, "hello\\.world");
+ TEST_ESCAPE("a(b\\b.$", -1, "a\\(b\\\\b\\.\\$");
+ TEST_ESCAPE("hello\0world", -1, "hello");
+ TEST_ESCAPE("hello\0world", 11, "hello\\0world");
+ TEST_ESCAPE(EURO "*" ENG, -1, EURO "\\*" ENG);
+ TEST_ESCAPE("a$", -1, "a\\$");
+ TEST_ESCAPE("$a", -1, "\\$a");
+ TEST_ESCAPE("a$a", -1, "a\\$a");
+ TEST_ESCAPE("$a$", -1, "\\$a\\$");
+ TEST_ESCAPE("$a$", 0, "");
+ TEST_ESCAPE("$a$", 1, "\\$");
+ TEST_ESCAPE("$a$", 2, "\\$a");
+ TEST_ESCAPE("$a$", 3, "\\$a\\$");
+ TEST_ESCAPE("$a$", 4, "\\$a\\$\\0");
+ TEST_ESCAPE("|()[]{}^$*+?.", -1, "\\|\\(\\)\\[\\]\\{\\}\\^\\$\\*\\+\\?\\.");
+ TEST_ESCAPE("a|a(a)a[a]a{a}a^a$a*a+a?a.a", -1,
+ "a\\|a\\(a\\)a\\[a\\]a\\{a\\}a\\^a\\$a\\*a\\+a\\?a\\.a");
+
+ /* TEST_MATCH_ALL#(pattern, string, string_len, start_position, ...) */
+ TEST_MATCH_ALL0("<.*>", "", -1, 0);
+ TEST_MATCH_ALL0("a+", "", -1, 0);
+ TEST_MATCH_ALL0("a+", "a", 0, 0);
+ TEST_MATCH_ALL0("a+", "a", -1, 1);
+ TEST_MATCH_ALL1("<.*>", "<a>", -1, 0, "<a>", 0, 3);
+ TEST_MATCH_ALL1("a+", "a", -1, 0, "a", 0, 1);
+ TEST_MATCH_ALL1("a+", "aa", 1, 0, "a", 0, 1);
+ TEST_MATCH_ALL1("a+", "aa", -1, 1, "a", 1, 2);
+ TEST_MATCH_ALL1("a+", "aa", 2, 1, "a", 1, 2);
+ TEST_MATCH_ALL1(".+", ENG, -1, 0, ENG, 0, 2);
+ TEST_MATCH_ALL2("<.*>", "<a><b>", -1, 0, "<a><b>", 0, 6, "<a>", 0, 3);
+ TEST_MATCH_ALL2("a+", "aa", -1, 0, "aa", 0, 2, "a", 0, 1);
+ TEST_MATCH_ALL2(".+", ENG EURO, -1, 0, ENG EURO, 0, 5, ENG, 0, 2);
+ TEST_MATCH_ALL3("<.*>", "<a><b><c>", -1, 0, "<a><b><c>", 0, 9,
+ "<a><b>", 0, 6, "<a>", 0, 3);
+ TEST_MATCH_ALL3("a+", "aaa", -1, 0, "aaa", 0, 3, "aa", 0, 2, "a", 0, 1);
+
+ return g_test_run ();
+}
+
+#else /* ENABLE_REGEX false */
+
+int
+main (int argc, char *argv[])
+{
+ g_print ("GRegex is disabled.\n");
+ return 0;
+}
+
+#endif /* ENABLE_REGEX */
+++ /dev/null
-/*
- * Copyright (C) 2005 - 2006, Marco Barisione <marco@barisione.org>
- *
- * 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 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, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
- */
-
-#undef G_DISABLE_ASSERT
-#undef G_LOG_DOMAIN
-
-#include "config.h"
-
-#include <string.h>
-#include <locale.h>
-#include "glib.h"
-
-#ifdef ENABLE_REGEX
-
-/* U+20AC EURO SIGN (symbol, currency) */
-#define EURO "\xe2\x82\xac"
-/* U+00E0 LATIN SMALL LETTER A WITH GRAVE (letter, lowercase) */
-#define AGRAVE "\xc3\xa0"
-/* U+00C0 LATIN CAPITAL LETTER A WITH GRAVE (letter, uppercase) */
-#define AGRAVE_UPPER "\xc3\x80"
-/* U+00E8 LATIN SMALL LETTER E WITH GRAVE (letter, lowercase) */
-#define EGRAVE "\xc3\xa8"
-/* U+00F2 LATIN SMALL LETTER O WITH GRAVE (letter, lowercase) */
-#define OGRAVE "\xc3\xb2"
-/* U+014B LATIN SMALL LETTER ENG (letter, lowercase) */
-#define ENG "\xc5\x8b"
-/* U+0127 LATIN SMALL LETTER H WITH STROKE (letter, lowercase) */
-#define HSTROKE "\xc4\xa7"
-/* U+0634 ARABIC LETTER SHEEN (letter, other) */
-#define SHEEN "\xd8\xb4"
-/* U+1374 ETHIOPIC NUMBER THIRTY (number, other) */
-#define ETH30 "\xe1\x8d\xb4"
-
-/* A random value use to mark untouched integer variables. */
-#define UNTOUCHED -559038737
-
-static gboolean noisy = FALSE;
-static gboolean abort_on_fail = FALSE;
-
-#define PASS passed++
-#define FAIL \
- G_STMT_START \
- { \
- failed++; \
- if (abort_on_fail) \
- goto end; \
- } \
- G_STMT_END
-
-/* A replacement for strcmp that doesn't crash with null pointers. */
-static gboolean
-streq (const gchar *s1, const gchar *s2)
-{
- if (s1 == NULL && s2 == NULL)
- return TRUE;
- else if (s1 == NULL)
- return FALSE;
- else if (s2 == NULL)
- return FALSE;
- else
- return strcmp (s1, s2) == 0;
-}
-
-static void
-verbose (const gchar *format, ...)
-{
- /* Function copied from glib/tests/patterntest.c by Matthias Clasen. */
- gchar *msg;
- va_list args;
-
- va_start (args, format);
- msg = g_strdup_vprintf (format, args);
- va_end (args);
-
- if (noisy)
- g_print ("%s", msg);
- g_free (msg);
-}
-
-static gboolean
-test_new (const gchar *pattern,
- GRegexCompileFlags compile_opts,
- GRegexMatchFlags match_opts)
-{
- GRegex *regex;
-
- verbose ("compiling \"%s\" \t", pattern);
-
- regex = g_regex_new (pattern, compile_opts, match_opts, NULL);
- if (regex == NULL)
- {
- g_print ("failed \t(pattern: \"%s\", compile: %d, match %d)\n",
- pattern, compile_opts, match_opts);
- return FALSE;
- }
-
- if (!streq (g_regex_get_pattern (regex), pattern))
- {
- g_print ("failed \t(pattern: \"%s\")\n",
- pattern);
- g_regex_unref (regex);
- return FALSE;
- }
-
- g_regex_unref (regex);
-
- verbose ("passed\n");
- return TRUE;
-}
-
-#define TEST_NEW(pattern, compile_opts, match_opts) { \
- total++; \
- if (test_new (pattern, compile_opts, match_opts)) \
- PASS; \
- else \
- FAIL; \
-}
-
-static gboolean
-test_new_fail (const gchar *pattern,
- GRegexCompileFlags compile_opts,
- GRegexError expected_error)
-{
- GRegex *regex;
- GError *error = NULL;
-
- verbose ("compiling \"%s\" (expected a failure) \t", pattern);
-
- regex = g_regex_new (pattern, compile_opts, 0, &error);
-
- if (regex != NULL)
- {
- g_print ("failed \t(pattern: \"%s\", compile: %d)\n",
- pattern, compile_opts);
- g_regex_unref (regex);
- return FALSE;
- }
-
- if (error->code != expected_error)
- {
- g_print ("failed \t(pattern: \"%s\", compile: %d, got error: %d, "
- "expected error: %d)\n",
- pattern, compile_opts, error->code, expected_error);
- g_error_free (error);
- return FALSE;
- }
-
- verbose ("passed\n");
- return TRUE;
-}
-
-#define TEST_NEW_FAIL(pattern, compile_opts, expected_error) { \
- total++; \
- if (test_new_fail (pattern, compile_opts, expected_error)) \
- PASS; \
- else \
- FAIL; \
-}
-
-static gboolean
-test_match_simple (const gchar *pattern,
- const gchar *string,
- GRegexCompileFlags compile_opts,
- GRegexMatchFlags match_opts,
- gboolean expected)
-{
- gboolean match;
-
- verbose ("matching \"%s\" against \"%s\" \t", string, pattern);
-
- match = g_regex_match_simple (pattern, string, compile_opts, match_opts);
- if (match != expected)
- {
- g_print ("failed \t(unexpected %s)\n", match ? "match" : "mismatch");
- return FALSE;
- }
- else
- {
- verbose ("passed (%s)\n", match ? "match" : "nomatch");
- return TRUE;
- }
-}
-
-#define TEST_MATCH_SIMPLE(pattern, string, compile_opts, match_opts, expected) { \
- total++; \
- if (test_match_simple (pattern, string, compile_opts, match_opts, expected)) \
- PASS; \
- else \
- FAIL; \
-}
-
-static gboolean
-test_match (const gchar *pattern,
- GRegexCompileFlags compile_opts,
- GRegexMatchFlags match_opts,
- const gchar *string,
- gssize string_len,
- gint start_position,
- GRegexMatchFlags match_opts2,
- gboolean expected)
-{
- GRegex *regex;
- gboolean match;
-
- verbose ("matching \"%s\" against \"%s\" (start: %d, len: %d) \t",
- string, pattern, start_position, string_len);
-
- regex = g_regex_new (pattern, compile_opts, match_opts, NULL);
- match = g_regex_match_full (regex, string, string_len,
- start_position, match_opts2, NULL, NULL);
- if (match != expected)
- {
- gchar *e1 = g_strescape (pattern, NULL);
- gchar *e2 = g_strescape (string, NULL);
- g_print ("failed \t(unexpected %s) '%s' against '%s'\n", match ? "match" : "mismatch", e1, e2);
- g_free (e1);
- g_free (e2);
- g_regex_unref (regex);
- return FALSE;
- }
-
- if (string_len == -1 && start_position == 0)
- {
- match = g_regex_match (regex, string, match_opts2, NULL);
- if (match != expected)
- {
- g_print ("failed \t(pattern: \"%s\", string: \"%s\")\n",
- pattern, string);
- g_regex_unref (regex);
- return FALSE;
- }
- }
-
- g_regex_unref (regex);
-
- verbose ("passed (%s)\n", match ? "match" : "nomatch");
- return TRUE;
-}
-
-#define TEST_MATCH(pattern, compile_opts, match_opts, string, \
- string_len, start_position, match_opts2, expected) { \
- total++; \
- if (test_match (pattern, compile_opts, match_opts, string, \
- string_len, start_position, match_opts2, expected)) \
- PASS; \
- else \
- FAIL; \
-}
-
-struct _Match
-{
- gchar *string;
- gint start, end;
-};
-typedef struct _Match Match;
-
-static void
-free_match (gpointer data, gpointer user_data)
-{
- Match *match = data;
- if (match == NULL)
- return;
- g_free (match->string);
- g_free (match);
-}
-
-static gboolean
-test_match_next (const gchar *pattern,
- const gchar *string,
- gssize string_len,
- gint start_position,
- ...)
-{
- GRegex *regex;
- GMatchInfo *match_info;
- va_list args;
- GSList *matches = NULL;
- GSList *expected = NULL;
- GSList *l_exp, *l_match;
- gboolean ret = TRUE;
-
- verbose ("matching \"%s\" against \"%s\" (start: %d, len: %d) \t",
- string, pattern, start_position, string_len);
-
- /* The va_list is a NULL-terminated sequence of: extected matched string,
- * expected start and expected end. */
- va_start (args, start_position);
- while (TRUE)
- {
- Match *match;
- const gchar *expected_string = va_arg (args, const gchar *);
- if (expected_string == NULL)
- break;
- match = g_new0 (Match, 1);
- match->string = g_strdup (expected_string);
- match->start = va_arg (args, gint);
- match->end = va_arg (args, gint);
- expected = g_slist_prepend (expected, match);
- }
- expected = g_slist_reverse (expected);
- va_end (args);
-
- regex = g_regex_new (pattern, 0, 0, NULL);
-
- g_regex_match_full (regex, string, string_len,
- start_position, 0, &match_info, NULL);
- while (g_match_info_matches (match_info))
- {
- Match *match = g_new0 (Match, 1);
- match->string = g_match_info_fetch (match_info, 0);
- match->start = UNTOUCHED;
- match->end = UNTOUCHED;
- g_match_info_fetch_pos (match_info, 0, &match->start, &match->end);
- matches = g_slist_prepend (matches, match);
- g_match_info_next (match_info, NULL);
- }
- g_assert (regex == g_match_info_get_regex (match_info));
- g_assert (string == g_match_info_get_string (match_info));
- g_match_info_free (match_info);
- matches = g_slist_reverse (matches);
-
- if (g_slist_length (matches) != g_slist_length (expected))
- {
- gint match_count = g_slist_length (matches);
- g_print ("failed \t(got %d %s, expected %d)\n", match_count,
- match_count == 1 ? "match" : "matches",
- g_slist_length (expected));
- ret = FALSE;
- goto exit;
- }
-
- l_exp = expected;
- l_match = matches;
- while (l_exp != NULL)
- {
- Match *exp = l_exp->data;
- Match *match = l_match->data;
-
- if (!streq(exp->string, match->string))
- {
- g_print ("failed \t(got \"%s\", expected \"%s\")\n",
- match->string, exp->string);
- ret = FALSE;
- goto exit;
- }
-
- if (exp->start != match->start || exp->end != match->end)
- {
- g_print ("failed \t(got [%d, %d], expected [%d, %d])\n",
- match->start, match->end, exp->start, exp->end);
- ret = FALSE;
- goto exit;
- }
-
- l_exp = g_slist_next (l_exp);
- l_match = g_slist_next (l_match);
- }
-
-exit:
- if (ret)
- {
- gint count = g_slist_length (matches);
- verbose ("passed (%d %s)\n", count, count == 1 ? "match" : "matches");
- }
-
- g_regex_unref (regex);
- g_slist_foreach (expected, free_match, NULL);
- g_slist_free (expected);
- g_slist_foreach (matches, free_match, NULL);
- g_slist_free (matches);
-
- return ret;
-}
-
-#define TEST_MATCH_NEXT0(pattern, string, string_len, start_position) { \
- total++; \
- if (test_match_next (pattern, string, string_len, start_position, NULL)) \
- PASS; \
- else \
- FAIL; \
-}
-
-#define TEST_MATCH_NEXT1(pattern, string, string_len, start_position, \
- t1, s1, e1) { \
- total++; \
- if (test_match_next (pattern, string, string_len, start_position, \
- t1, s1, e1, NULL)) \
- PASS; \
- else \
- FAIL; \
-}
-
-#define TEST_MATCH_NEXT2(pattern, string, string_len, start_position, \
- t1, s1, e1, t2, s2, e2) { \
- total++; \
- if (test_match_next (pattern, string, string_len, start_position, \
- t1, s1, e1, t2, s2, e2, NULL)) \
- PASS; \
- else \
- FAIL; \
-}
-
-#define TEST_MATCH_NEXT3(pattern, string, string_len, start_position, \
- t1, s1, e1, t2, s2, e2, t3, s3, e3) { \
- total++; \
- if (test_match_next (pattern, string, string_len, start_position, \
- t1, s1, e1, t2, s2, e2, t3, s3, e3, NULL)) \
- PASS; \
- else \
- FAIL; \
-}
-
-#define TEST_MATCH_NEXT4(pattern, string, string_len, start_position, \
- t1, s1, e1, t2, s2, e2, t3, s3, e3, t4, s4, e4) { \
- total++; \
- if (test_match_next (pattern, string, string_len, start_position, \
- t1, s1, e1, t2, s2, e2, t3, s3, e3, t4, s4, e4, NULL)) \
- PASS; \
- else \
- FAIL; \
-}
-
-static gboolean
-test_match_count (const gchar *pattern,
- const gchar *string,
- gint start_position,
- GRegexMatchFlags match_opts,
- gint expected_count)
-{
- GRegex *regex;
- GMatchInfo *match_info;
- gint count;
-
- verbose ("fetching match count (string: \"%s\", pattern: \"%s\", start: %d) \t",
- string, pattern, start_position);
-
- regex = g_regex_new (pattern, 0, 0, NULL);
-
- g_regex_match_full (regex, string, -1, start_position,
- match_opts, &match_info, NULL);
- count = g_match_info_get_match_count (match_info);
-
- if (count != expected_count)
- {
- g_print ("failed \t(got %d, expected: %d)\n", count, expected_count);
- return FALSE;
- }
-
- g_match_info_free (match_info);
- g_regex_unref (regex);
-
- verbose ("passed\n");
- return TRUE;
-}
-
-#define TEST_MATCH_COUNT(pattern, string, start_position, match_opts, expected_count) { \
- total++; \
- if (test_match_count (pattern, string, start_position, match_opts, expected_count)) \
- PASS; \
- else \
- FAIL; \
-}
-
-static gboolean
-test_partial (const gchar *pattern,
- const gchar *string,
- gboolean expected)
-{
- GRegex *regex;
- GMatchInfo *match_info;
-
- verbose ("partial matching (string: \"%s\", pattern: \"%s\") \t",
- string, pattern);
-
- regex = g_regex_new (pattern, 0, 0, NULL);
-
- g_regex_match (regex, string, G_REGEX_MATCH_PARTIAL, &match_info);
- if (expected != g_match_info_is_partial_match (match_info))
- {
- g_print ("failed \t(got %d, expected: %d)\n", !expected, expected);
- g_regex_unref (regex);
- return FALSE;
- }
-
- if (expected && g_match_info_fetch_pos (match_info, 0, NULL, NULL))
- {
- g_print ("failed \t(got sub-pattern 0)\n");
- g_regex_unref (regex);
- return FALSE;
- }
-
- if (expected && g_match_info_fetch_pos (match_info, 1, NULL, NULL))
- {
- g_print ("failed \t(got sub-pattern 1)\n");
- g_regex_unref (regex);
- return FALSE;
- }
-
- g_match_info_free (match_info);
- g_regex_unref (regex);
-
- verbose ("passed\n");
- return TRUE;
-}
-
-#define TEST_PARTIAL(pattern, string, expected) { \
- total++; \
- if (test_partial (pattern, string, expected)) \
- PASS; \
- else \
- FAIL; \
-}
-
-static gboolean
-test_sub_pattern (const gchar *pattern,
- const gchar *string,
- gint start_position,
- gint sub_n,
- const gchar *expected_sub,
- gint expected_start,
- gint expected_end)
-{
- GRegex *regex;
- GMatchInfo *match_info;
- gchar *sub_expr;
- gint start = UNTOUCHED, end = UNTOUCHED;
-
- verbose ("fetching sub-pattern %d from \"%s\" (pattern: \"%s\") \t",
- sub_n, string, pattern);
-
- regex = g_regex_new (pattern, 0, 0, NULL);
- g_regex_match_full (regex, string, -1, start_position, 0, &match_info, NULL);
-
- sub_expr = g_match_info_fetch (match_info, sub_n);
- if (!streq(sub_expr, expected_sub))
- {
- g_print ("failed \t(got \"%s\", expected \"%s\")\n",
- sub_expr, expected_sub);
- g_free (sub_expr);
- g_regex_unref (regex);
- return FALSE;
- }
- g_free (sub_expr);
-
- g_match_info_fetch_pos (match_info, sub_n, &start, &end);
- if (start != expected_start || end != expected_end)
- {
- g_print ("failed \t(got [%d, %d], expected [%d, %d])\n",
- start, end, expected_start, expected_end);
- g_regex_unref (regex);
- return FALSE;
- }
-
- g_match_info_free (match_info);
- g_regex_unref (regex);
-
- verbose ("passed\n");
- return TRUE;
-}
-
-#define TEST_SUB_PATTERN(pattern, string, start_position, sub_n, expected_sub, \
- expected_start, expected_end) { \
- total++; \
- if (test_sub_pattern (pattern, string, start_position, sub_n, expected_sub, \
- expected_start, expected_end)) \
- PASS; \
- else \
- FAIL; \
-}
-
-static gboolean
-test_named_sub_pattern (const gchar *pattern,
- GRegexCompileFlags flags,
- const gchar *string,
- gint start_position,
- const gchar *sub_name,
- const gchar *expected_sub,
- gint expected_start,
- gint expected_end)
-{
- GRegex *regex;
- GMatchInfo *match_info;
- gint start = UNTOUCHED, end = UNTOUCHED;
- gchar *sub_expr;
-
- verbose ("fetching sub-pattern \"%s\" from \"%s\" (pattern: \"%s\") \t",
- sub_name, string, pattern);
-
- regex = g_regex_new (pattern, flags, 0, NULL);
-
- g_regex_match_full (regex, string, -1, start_position, 0, &match_info, NULL);
- sub_expr = g_match_info_fetch_named (match_info, sub_name);
- if (!streq (sub_expr, expected_sub))
- {
- g_print ("failed \t(got \"%s\", expected \"%s\")\n",
- sub_expr, expected_sub);
- g_free (sub_expr);
- g_regex_unref (regex);
- return FALSE;
- }
- g_free (sub_expr);
-
- g_match_info_fetch_named_pos (match_info, sub_name, &start, &end);
- if (start != expected_start || end != expected_end)
- {
- g_print ("failed \t(got [%d, %d], expected [%d, %d])\n",
- start, end, expected_start, expected_end);
- g_regex_unref (regex);
- return FALSE;
- }
-
- g_match_info_free (match_info);
- g_regex_unref (regex);
-
- verbose ("passed\n");
- return TRUE;
-}
-
-#define TEST_NAMED_SUB_PATTERN(pattern, string, start_position, sub_name, \
- expected_sub, expected_start, expected_end) { \
- total++; \
- if (test_named_sub_pattern (pattern, 0, string, start_position, sub_name, \
- expected_sub, expected_start, expected_end)) \
- PASS; \
- else \
- FAIL; \
-}
-
-#define TEST_NAMED_SUB_PATTERN_DUPNAMES(pattern, string, start_position, sub_name, \
- expected_sub, expected_start, expected_end) { \
- total++; \
- if (test_named_sub_pattern (pattern, G_REGEX_DUPNAMES, string, start_position, \
- sub_name, expected_sub, expected_start, expected_end)) \
- PASS; \
- else \
- FAIL; \
-}
-
-static gboolean
-test_fetch_all (const gchar *pattern,
- const gchar *string,
- ...)
-{
- GRegex *regex;
- GMatchInfo *match_info;
- va_list args;
- GSList *expected = NULL;
- GSList *l_exp;
- gchar **matches;
- gint match_count;
- gboolean ret = TRUE;
- gint i;
-
- verbose ("fetching all sub-patterns from \"%s\" (pattern: \"%s\") \t",
- string, pattern);
-
- /* The va_list is a NULL-terminated sequence of extected strings. */
- va_start (args, string);
- while (TRUE)
- {
- gchar *expected_string = va_arg (args, gchar *);
- if (expected_string == NULL)
- break;
- else
- expected = g_slist_prepend (expected, g_strdup (expected_string));
- }
- expected = g_slist_reverse (expected);
- va_end (args);
-
- regex = g_regex_new (pattern, 0, 0, NULL);
- g_regex_match (regex, string, 0, &match_info);
- matches = g_match_info_fetch_all (match_info);
- if (matches)
- match_count = g_strv_length (matches);
- else
- match_count = 0;
-
- if (match_count != g_slist_length (expected))
- {
- g_print ("failed \t(got %d %s, expected %d)\n", match_count,
- match_count == 1 ? "match" : "matches",
- g_slist_length (expected));
- ret = FALSE;
- goto exit;
- }
-
- l_exp = expected;
- for (i = 0; l_exp != NULL; i++, l_exp = g_slist_next (l_exp))
- {
- if (!streq(l_exp->data, matches [i]))
- {
- g_print ("failed \t(got \"%s\", expected \"%s\")\n",
- matches [i], (gchar *)l_exp->data);
- ret = FALSE;
- goto exit;
- }
- }
-
- verbose ("passed (%d %s)\n", match_count,
- match_count == 1 ? "match" : "matches");
-
-exit:
- g_match_info_free (match_info);
- g_regex_unref (regex);
- g_slist_foreach (expected, (GFunc)g_free, NULL);
- g_slist_free (expected);
- g_strfreev (matches);
-
- return ret;
-}
-
-#define TEST_FETCH_ALL0(pattern, string) { \
- total++; \
- if (test_fetch_all (pattern, string, NULL)) \
- PASS; \
- else \
- FAIL; \
-}
-
-#define TEST_FETCH_ALL1(pattern, string, e1) { \
- total++; \
- if (test_fetch_all (pattern, string, e1, NULL)) \
- PASS; \
- else \
- FAIL; \
-}
-
-#define TEST_FETCH_ALL2(pattern, string, e1, e2) { \
- total++; \
- if (test_fetch_all (pattern, string, e1, e2, NULL)) \
- PASS; \
- else \
- FAIL; \
-}
-
-#define TEST_FETCH_ALL3(pattern, string, e1, e2, e3) { \
- total++; \
- if (test_fetch_all (pattern, string, e1, e2, e3, NULL)) \
- PASS; \
- else \
- FAIL; \
-}
-
-static gboolean
-test_split_simple (const gchar *pattern,
- const gchar *string,
- ...)
-{
- va_list args;
- GSList *expected = NULL;
- GSList *l_exp;
- gchar **tokens;
- gint token_count;
- gboolean ret = TRUE;
- gint i;
-
- verbose ("splitting \"%s\" against \"%s\" \t", string, pattern);
-
- /* The va_list is a NULL-terminated sequence of extected strings. */
- va_start (args, string);
- while (TRUE)
- {
- gchar *expected_string = va_arg (args, gchar *);
- if (expected_string == NULL)
- break;
- else
- expected = g_slist_prepend (expected, g_strdup (expected_string));
- }
- expected = g_slist_reverse (expected);
- va_end (args);
-
- tokens = g_regex_split_simple (pattern, string, 0, 0);
- if (tokens)
- token_count = g_strv_length (tokens);
- else
- token_count = 0;
-
- if (token_count != g_slist_length (expected))
- {
- g_print ("failed \t(got %d %s, expected %d)\n", token_count,
- token_count == 1 ? "match" : "matches",
- g_slist_length (expected));
- ret = FALSE;
- goto exit;
- }
-
- l_exp = expected;
- for (i = 0; l_exp != NULL; i++, l_exp = g_slist_next (l_exp))
- {
- if (!streq(l_exp->data, tokens [i]))
- {
- g_print ("failed \t(got \"%s\", expected \"%s\")\n",
- tokens[i], (gchar *)l_exp->data);
- ret = FALSE;
- goto exit;
- }
- }
-
- verbose ("passed (%d %s)\n", token_count,
- token_count == 1 ? "token" : "tokens");
-
-exit:
- g_slist_foreach (expected, (GFunc)g_free, NULL);
- g_slist_free (expected);
- g_strfreev (tokens);
-
- return ret;
-}
-
-#define TEST_SPLIT_SIMPLE0(pattern, string) { \
- total++; \
- if (test_split_simple (pattern, string, NULL)) \
- PASS; \
- else \
- FAIL; \
-}
-
-#define TEST_SPLIT_SIMPLE1(pattern, string, e1) { \
- total++; \
- if (test_split_simple (pattern, string, e1, NULL)) \
- PASS; \
- else \
- FAIL; \
-}
-
-#define TEST_SPLIT_SIMPLE2(pattern, string, e1, e2) { \
- total++; \
- if (test_split_simple (pattern, string, e1, e2, NULL)) \
- PASS; \
- else \
- FAIL; \
-}
-
-#define TEST_SPLIT_SIMPLE3(pattern, string, e1, e2, e3) { \
- total++; \
- if (test_split_simple (pattern, string, e1, e2, e3, NULL)) \
- PASS; \
- else \
- FAIL; \
-}
-
-static gboolean
-test_split_full (const gchar *pattern,
- const gchar *string,
- gint start_position,
- gint max_tokens,
- ...)
-{
- GRegex *regex;
- va_list args;
- GSList *expected = NULL;
- GSList *l_exp;
- gchar **tokens;
- gint token_count;
- gboolean ret = TRUE;
- gint i;
-
- verbose ("splitting \"%s\" against \"%s\" (start: %d, max: %d) \t",
- string, pattern, start_position, max_tokens);
-
- /* The va_list is a NULL-terminated sequence of extected strings. */
- va_start (args, max_tokens);
- while (TRUE)
- {
- gchar *expected_string = va_arg (args, gchar *);
- if (expected_string == NULL)
- break;
- else
- expected = g_slist_prepend (expected, g_strdup (expected_string));
- }
- expected = g_slist_reverse (expected);
- va_end (args);
-
- regex = g_regex_new (pattern, 0, 0, NULL);
- tokens = g_regex_split_full (regex, string, -1, start_position,
- 0, max_tokens, NULL);
- if (tokens)
- token_count = g_strv_length (tokens);
- else
- token_count = 0;
-
- if (token_count != g_slist_length (expected))
- {
- g_print ("failed \t(got %d %s, expected %d)\n", token_count,
- token_count == 1 ? "match" : "matches",
- g_slist_length (expected));
- ret = FALSE;
- goto exit;
- }
-
- l_exp = expected;
- for (i = 0; l_exp != NULL; i++, l_exp = g_slist_next (l_exp))
- {
- if (!streq(l_exp->data, tokens [i]))
- {
- g_print ("failed \t(got \"%s\", expected \"%s\")\n",
- tokens[i], (gchar *)l_exp->data);
- ret = FALSE;
- goto exit;
- }
- }
-
- verbose ("passed (%d %s)\n", token_count,
- token_count == 1 ? "token" : "tokens");
-
-exit:
- g_regex_unref (regex);
- g_slist_foreach (expected, (GFunc)g_free, NULL);
- g_slist_free (expected);
- g_strfreev (tokens);
-
- return ret;
-}
-
-static gboolean
-test_split (const gchar *pattern,
- const gchar *string,
- ...)
-{
- GRegex *regex;
- va_list args;
- GSList *expected = NULL;
- GSList *l_exp;
- gchar **tokens;
- gint token_count;
- gboolean ret = TRUE;
- gint i;
-
- verbose ("splitting \"%s\" against \"%s\" \t", string, pattern);
-
- /* The va_list is a NULL-terminated sequence of extected strings. */
- va_start (args, string);
- while (TRUE)
- {
- gchar *expected_string = va_arg (args, gchar *);
- if (expected_string == NULL)
- break;
- else
- expected = g_slist_prepend (expected, g_strdup (expected_string));
- }
- expected = g_slist_reverse (expected);
- va_end (args);
-
- regex = g_regex_new (pattern, 0, 0, NULL);
- tokens = g_regex_split (regex, string, 0);
- if (tokens)
- token_count = g_strv_length (tokens);
- else
- token_count = 0;
-
- if (token_count != g_slist_length (expected))
- {
- g_print ("failed \t(got %d %s, expected %d)\n", token_count,
- token_count == 1 ? "match" : "matches",
- g_slist_length (expected));
- ret = FALSE;
- goto exit;
- }
-
- l_exp = expected;
- for (i = 0; l_exp != NULL; i++, l_exp = g_slist_next (l_exp))
- {
- if (!streq(l_exp->data, tokens [i]))
- {
- g_print ("failed \t(got \"%s\", expected \"%s\")\n",
- tokens[i], (gchar *)l_exp->data);
- ret = FALSE;
- goto exit;
- }
- }
-
- verbose ("passed (%d %s)\n", token_count,
- token_count == 1 ? "token" : "tokens");
-
-exit:
- g_regex_unref (regex);
- g_slist_foreach (expected, (GFunc)g_free, NULL);
- g_slist_free (expected);
- g_strfreev (tokens);
-
- return ret;
-}
-
-#define TEST_SPLIT0(pattern, string, start_position, max_tokens) { \
- total++; \
- if (test_split_full (pattern, string, start_position, max_tokens, NULL)) \
- PASS; \
- else \
- FAIL; \
- if (start_position == 0 && max_tokens <= 0) \
- { \
- total++; \
- if (test_split (pattern, string, NULL)) \
- PASS; \
- else \
- FAIL; \
- } \
-}
-
-#define TEST_SPLIT1(pattern, string, start_position, max_tokens, e1) { \
- total++; \
- if (test_split_full (pattern, string, start_position, max_tokens, e1, NULL)) \
- PASS; \
- else \
- FAIL; \
- if (start_position == 0 && max_tokens <= 0) \
- { \
- total++; \
- if (test_split (pattern, string, e1, NULL)) \
- PASS; \
- else \
- FAIL; \
- } \
-}
-
-#define TEST_SPLIT2(pattern, string, start_position, max_tokens, e1, e2) { \
- total++; \
- if (test_split_full (pattern, string, start_position, max_tokens, e1, e2, NULL)) \
- PASS; \
- else \
- FAIL; \
- if (start_position == 0 && max_tokens <= 0) \
- { \
- total++; \
- if (test_split (pattern, string, e1, e2, NULL)) \
- PASS; \
- else \
- FAIL; \
- } \
-}
-
-#define TEST_SPLIT3(pattern, string, start_position, max_tokens, e1, e2, e3) { \
- total++; \
- if (test_split_full (pattern, string, start_position, max_tokens, e1, e2, e3, NULL)) \
- PASS; \
- else \
- FAIL; \
- if (start_position == 0 && max_tokens <= 0) \
- { \
- total++; \
- if (test_split (pattern, string, e1, e2, e3, NULL)) \
- PASS; \
- else \
- FAIL; \
- } \
-}
-
-static gboolean
-test_check_replacement (const gchar *string_to_expand,
- gboolean expected,
- gboolean expected_refs)
-{
- gboolean result;
- gboolean has_refs;
-
- verbose ("checking replacement string \"%s\" \t", string_to_expand);
-
- result = g_regex_check_replacement (string_to_expand, &has_refs, NULL);
- if (expected != result)
- {
- g_print ("failed \t(got \"%s\", expected \"%s\")\n",
- result ? "TRUE" : "FALSE",
- expected ? "TRUE" : "FALSE");
- return FALSE;
- }
-
- if (expected && expected_refs != has_refs)
- {
- g_print ("failed \t(got has_references \"%s\", expected \"%s\")\n",
- has_refs ? "TRUE" : "FALSE",
- expected_refs ? "TRUE" : "FALSE");
- return FALSE;
- }
-
- verbose ("passed\n");
- return TRUE;
-}
-
-#define TEST_CHECK_REPLACEMENT(string_to_expand, expected, expected_refs) { \
- total++; \
- if (test_check_replacement (string_to_expand, expected, expected_refs)) \
- PASS; \
- else \
- FAIL; \
-}
-static gboolean
-test_expand (const gchar *pattern,
- const gchar *string,
- const gchar *string_to_expand,
- gboolean raw,
- const gchar *expected)
-{
- GRegex *regex = NULL;
- GMatchInfo *match_info = NULL;
- gchar *res;
-
- verbose ("expanding the references in \"%s\" (pattern: \"%s\", string: \"%s\") \t",
- string_to_expand,
- pattern ? pattern : "(null)",
- string ? string : "(null)");
-
- if (pattern)
- {
- regex = g_regex_new (pattern, raw ? G_REGEX_RAW : 0, 0, NULL);
- g_regex_match (regex, string, 0, &match_info);
- }
-
- res = g_match_info_expand_references (match_info, string_to_expand, NULL);
- if (!streq (res, expected))
- {
- g_print ("failed \t(got \"%s\", expected \"%s\")\n", res, expected);
- g_free (res);
- g_match_info_free (match_info);
- g_regex_unref (regex);
- return FALSE;
- }
-
- g_free (res);
- g_match_info_free (match_info);
- if (regex)
- g_regex_unref (regex);
-
- verbose ("passed\n");
- return TRUE;
-}
-
-#define TEST_EXPAND(pattern, string, string_to_expand, raw, expected) { \
- total++; \
- if (test_expand (pattern, string, string_to_expand, raw, expected)) \
- PASS; \
- else \
- FAIL; \
-}
-
-static gboolean
-test_replace (const gchar *pattern,
- const gchar *string,
- gint start_position,
- const gchar *replacement,
- const gchar *expected)
-{
- GRegex *regex;
- gchar *res;
-
- verbose ("replacing \"%s\" in \"%s\" (pattern: \"%s\", start: %d) \t",
- replacement, string, pattern, start_position);
-
- regex = g_regex_new (pattern, 0, 0, NULL);
- res = g_regex_replace (regex, string, -1, start_position, replacement, 0, NULL);
- if (!streq (res, expected))
- {
- g_print ("failed \t(got \"%s\", expected \"%s\")\n", res, expected);
- g_free (res);
- g_regex_unref (regex);
- return FALSE;
- }
-
- g_free (res);
- g_regex_unref (regex);
-
- verbose ("passed\n");
- return TRUE;
-}
-
-#define TEST_REPLACE(pattern, string, start_position, replacement, expected) { \
- total++; \
- if (test_replace (pattern, string, start_position, replacement, expected)) \
- PASS; \
- else \
- FAIL; \
-}
-
-static gboolean
-test_replace_lit (const gchar *pattern,
- const gchar *string,
- gint start_position,
- const gchar *replacement,
- const gchar *expected)
-{
- GRegex *regex;
- gchar *res;
-
- verbose ("replacing literally \"%s\" in \"%s\" (pattern: \"%s\", start: %d) \t",
- replacement, string, pattern, start_position);
-
- regex = g_regex_new (pattern, 0, 0, NULL);
- res = g_regex_replace_literal (regex, string, -1, start_position,
- replacement, 0, NULL);
- if (!streq (res, expected))
- {
- g_print ("failed \t(got \"%s\", expected \"%s\")\n", res, expected);
- g_free (res);
- g_regex_unref (regex);
- return FALSE;
- }
-
- g_free (res);
- g_regex_unref (regex);
-
- verbose ("passed\n");
- return TRUE;
-}
-
-#define TEST_REPLACE_LIT(pattern, string, start_position, replacement, expected) { \
- total++; \
- if (test_replace_lit (pattern, string, start_position, replacement, expected)) \
- PASS; \
- else \
- FAIL; \
-}
-
-static gboolean
-test_get_string_number (const gchar *pattern,
- const gchar *name,
- gint expected_num)
-{
- GRegex *regex;
- gint num;
-
- verbose ("getting the number of \"%s\" (pattern: \"%s\") \t",
- name, pattern);
-
- regex = g_regex_new (pattern, 0, 0, NULL);
- num = g_regex_get_string_number (regex, name);
- g_regex_unref (regex);
-
- if (num != expected_num)
- {
- g_print ("failed \t(got %d, expected %d)\n", num, expected_num);
- return FALSE;
- }
- else
- {
- verbose ("passed\n");
- return TRUE;
- }
-}
-
-#define TEST_GET_STRING_NUMBER(pattern, name, expected_num) { \
- total++; \
- if (test_get_string_number (pattern, name, expected_num)) \
- PASS; \
- else \
- FAIL; \
-}
-
-static gboolean
-test_escape (const gchar *string,
- gint length,
- const gchar *expected)
-{
- gchar *escaped;
-
- verbose ("escaping \"%s\" (len: %d) \t", string, length);
-
- escaped = g_regex_escape_string (string, length);
-
- if (!streq (escaped, expected))
- {
- g_print ("failed \t(got \"%s\", expected \"%s\")\n", escaped, expected);
- g_free (escaped);
- return FALSE;
- }
-
- g_free (escaped);
-
- verbose ("passed\n");
- return TRUE;
-}
-
-#define TEST_ESCAPE(string, length, expected) { \
- total++; \
- if (test_escape (string, length, expected)) \
- PASS; \
- else \
- FAIL; \
-}
-
-static gboolean
-test_match_all_full (const gchar *pattern,
- const gchar *string,
- gssize string_len,
- gint start_position,
- ...)
-{
- GRegex *regex;
- GMatchInfo *match_info;
- va_list args;
- GSList *expected = NULL;
- GSList *l_exp;
- gboolean match_ok;
- gboolean ret = TRUE;
- gint match_count;
- gint i;
-
- verbose ("matching all in \"%s\" against \"%s\" (start: %d, len: %d) \t",
- string, pattern, start_position, string_len);
-
- /* The va_list is a NULL-terminated sequence of: extected matched string,
- * expected start and expected end. */
- va_start (args, start_position);
- while (TRUE)
- {
- Match *match;
- const gchar *expected_string = va_arg (args, const gchar *);
- if (expected_string == NULL)
- break;
- match = g_new0 (Match, 1);
- match->string = g_strdup (expected_string);
- match->start = va_arg (args, gint);
- match->end = va_arg (args, gint);
- expected = g_slist_prepend (expected, match);
- }
- expected = g_slist_reverse (expected);
- va_end (args);
-
- regex = g_regex_new (pattern, 0, 0, NULL);
- match_ok = g_regex_match_all_full (regex, string, string_len, start_position,
- 0, &match_info, NULL);
-
- if (match_ok && g_slist_length (expected) == 0)
- {
- g_print ("failed\n");
- ret = FALSE;
- goto exit;
- }
- if (!match_ok && g_slist_length (expected) != 0)
- {
- g_print ("failed\n");
- ret = FALSE;
- goto exit;
- }
-
- match_count = g_match_info_get_match_count (match_info);
- if (match_count != g_slist_length (expected))
- {
- g_print ("failed \t(got %d %s, expected %d)\n", match_count,
- match_count == 1 ? "match" : "matches",
- g_slist_length (expected));
- ret = FALSE;
- goto exit;
- }
-
- l_exp = expected;
- for (i = 0; i < match_count; i++)
- {
- gint start, end;
- gchar *matched_string;
- Match *exp = l_exp->data;
-
- matched_string = g_match_info_fetch (match_info, i);
- g_match_info_fetch_pos (match_info, i, &start, &end);
-
- if (!streq(exp->string, matched_string))
- {
- g_print ("failed \t(got \"%s\", expected \"%s\")\n",
- matched_string, exp->string);
- g_free (matched_string);
- ret = FALSE;
- goto exit;
- }
- g_free (matched_string);
-
- if (exp->start != start || exp->end != end)
- {
- g_print ("failed \t(got [%d, %d], expected [%d, %d])\n",
- start, end, exp->start, exp->end);
- ret = FALSE;
- goto exit;
- }
-
- l_exp = g_slist_next (l_exp);
- }
-
-exit:
- if (ret)
- {
- verbose ("passed (%d %s)\n", match_count, match_count == 1 ? "match" : "matches");
- }
-
- g_match_info_free (match_info);
- g_regex_unref (regex);
- g_slist_foreach (expected, free_match, NULL);
- g_slist_free (expected);
-
- return ret;
-}
-
-static gboolean
-test_match_all (const gchar *pattern,
- const gchar *string,
- ...)
-{
- GRegex *regex;
- GMatchInfo *match_info;
- va_list args;
- GSList *expected = NULL;
- GSList *l_exp;
- gboolean match_ok;
- gboolean ret = TRUE;
- gint match_count;
- gint i;
-
- verbose ("matching all in \"%s\" against \"%s\" \t", string, pattern);
-
- /* The va_list is a NULL-terminated sequence of: extected matched string,
- * expected start and expected end. */
- va_start (args, string);
- while (TRUE)
- {
- Match *match;
- const gchar *expected_string = va_arg (args, const gchar *);
- if (expected_string == NULL)
- break;
- match = g_new0 (Match, 1);
- match->string = g_strdup (expected_string);
- match->start = va_arg (args, gint);
- match->end = va_arg (args, gint);
- expected = g_slist_prepend (expected, match);
- }
- expected = g_slist_reverse (expected);
- va_end (args);
-
- regex = g_regex_new (pattern, 0, 0, NULL);
- match_ok = g_regex_match_all (regex, string, 0, &match_info);
-
- if (match_ok && g_slist_length (expected) == 0)
- {
- g_print ("failed\n");
- ret = FALSE;
- goto exit;
- }
- if (!match_ok && g_slist_length (expected) != 0)
- {
- g_print ("failed\n");
- ret = FALSE;
- goto exit;
- }
-
- match_count = g_match_info_get_match_count (match_info);
- if (match_count != g_slist_length (expected))
- {
- g_print ("failed \t(got %d %s, expected %d)\n", match_count,
- match_count == 1 ? "match" : "matches",
- g_slist_length (expected));
- ret = FALSE;
- goto exit;
- }
-
- l_exp = expected;
- for (i = 0; i < match_count; i++)
- {
- gint start, end;
- gchar *matched_string;
- Match *exp = l_exp->data;
-
- matched_string = g_match_info_fetch (match_info, i);
- g_match_info_fetch_pos (match_info, i, &start, &end);
-
- if (!streq(exp->string, matched_string))
- {
- g_print ("failed \t(got \"%s\", expected \"%s\")\n",
- matched_string, exp->string);
- g_free (matched_string);
- ret = FALSE;
- goto exit;
- }
- g_free (matched_string);
-
- if (exp->start != start || exp->end != end)
- {
- g_print ("failed \t(got [%d, %d], expected [%d, %d])\n",
- start, end, exp->start, exp->end);
- ret = FALSE;
- goto exit;
- }
-
- l_exp = g_slist_next (l_exp);
- }
-
-exit:
- if (ret)
- {
- verbose ("passed (%d %s)\n", match_count, match_count == 1 ? "match" : "matches");
- }
-
- g_match_info_free (match_info);
- g_regex_unref (regex);
- g_slist_foreach (expected, free_match, NULL);
- g_slist_free (expected);
-
- return ret;
-}
-
-#define TEST_MATCH_ALL0(pattern, string, string_len, start_position) { \
- total++; \
- if (test_match_all_full (pattern, string, string_len, start_position, NULL)) \
- PASS; \
- else \
- FAIL; \
- if (string_len == -1 && start_position == 0) \
- { \
- total++; \
- if (test_match_all (pattern, string, NULL)) \
- PASS; \
- else \
- FAIL; \
- } \
-}
-
-#define TEST_MATCH_ALL1(pattern, string, string_len, start_position, \
- t1, s1, e1) { \
- total++; \
- if (test_match_all_full (pattern, string, string_len, start_position, \
- t1, s1, e1, NULL)) \
- PASS; \
- else \
- FAIL; \
- if (string_len == -1 && start_position == 0) \
- { \
- total++; \
- if (test_match_all (pattern, string, t1, s1, e1, NULL)) \
- PASS; \
- else \
- FAIL; \
- } \
-}
-
-#define TEST_MATCH_ALL2(pattern, string, string_len, start_position, \
- t1, s1, e1, t2, s2, e2) { \
- total++; \
- if (test_match_all_full (pattern, string, string_len, start_position, \
- t1, s1, e1, t2, s2, e2, NULL)) \
- PASS; \
- else \
- FAIL; \
- if (string_len == -1 && start_position == 0) \
- { \
- total++; \
- if (test_match_all (pattern, string, t1, s1, e1, t2, s2, e2, NULL)) \
- PASS; \
- else \
- FAIL; \
- } \
-}
-
-#define TEST_MATCH_ALL3(pattern, string, string_len, start_position, \
- t1, s1, e1, t2, s2, e2, t3, s3, e3) { \
- total++; \
- if (test_match_all_full (pattern, string, string_len, start_position, \
- t1, s1, e1, t2, s2, e2, t3, s3, e3, NULL)) \
- PASS; \
- else \
- FAIL; \
- if (string_len == -1 && start_position == 0) \
- { \
- total++; \
- if (test_match_all (pattern, string, t1, s1, e1, t2, s2, e2, t3, s3, e3, NULL)) \
- PASS; \
- else \
- FAIL; \
- } \
-}
-
-int
-main (int argc, char *argv[])
-{
- gint total = 0;
- gint passed = 0;
- gint failed = 0;
- gint i = 0;
-
- setlocale (LC_ALL, "");
-
- for (i = 1; i < argc; i++)
- {
- if (streq ("--noisy", argv[i]))
- noisy = TRUE;
- else if (streq ("--abort", argv[i]))
- abort_on_fail = TRUE;
- }
-
- g_setenv ("G_DEBUG", "fatal_warnings", TRUE);
-
- /* TEST_NEW(pattern, compile_opts, match_opts) */
- TEST_NEW("", 0, 0);
- TEST_NEW(".*", 0, 0);
- TEST_NEW(".*", G_REGEX_OPTIMIZE, 0);
- TEST_NEW(".*", G_REGEX_MULTILINE, 0);
- TEST_NEW(".*", G_REGEX_DOTALL, 0);
- TEST_NEW(".*", G_REGEX_DOTALL, G_REGEX_MATCH_NOTBOL);
- TEST_NEW("(123\\d*)[a-zA-Z]+(?P<hello>.*)", 0, 0);
- TEST_NEW("(123\\d*)[a-zA-Z]+(?P<hello>.*)", G_REGEX_CASELESS, 0);
- TEST_NEW("(123\\d*)[a-zA-Z]+(?P<hello>.*)", G_REGEX_CASELESS | G_REGEX_OPTIMIZE, 0);
- TEST_NEW("(?P<A>x)|(?P<A>y)", G_REGEX_DUPNAMES, 0);
- TEST_NEW("(?P<A>x)|(?P<A>y)", G_REGEX_DUPNAMES | G_REGEX_OPTIMIZE, 0);
- /* This gives "internal error: code overflow" with pcre 6.0 */
- TEST_NEW("(?i)(?-i)", 0, 0);
-
- /* TEST_NEW_FAIL(pattern, compile_opts, expected_error) */
- TEST_NEW_FAIL("(", 0, G_REGEX_ERROR_UNMATCHED_PARENTHESIS);
- TEST_NEW_FAIL(")", 0, G_REGEX_ERROR_UNMATCHED_PARENTHESIS);
- TEST_NEW_FAIL("[", 0, G_REGEX_ERROR_UNTERMINATED_CHARACTER_CLASS);
- TEST_NEW_FAIL("*", 0, G_REGEX_ERROR_NOTHING_TO_REPEAT);
- TEST_NEW_FAIL("?", 0, G_REGEX_ERROR_NOTHING_TO_REPEAT);
- TEST_NEW_FAIL("(?P<A>x)|(?P<A>y)", 0, G_REGEX_ERROR_DUPLICATE_SUBPATTERN_NAME);
-
- /* TEST_MATCH_SIMPLE(pattern, string, compile_opts, match_opts, expected) */
- TEST_MATCH_SIMPLE("a", "", 0, 0, FALSE);
- TEST_MATCH_SIMPLE("a", "a", 0, 0, TRUE);
- TEST_MATCH_SIMPLE("a", "ba", 0, 0, TRUE);
- TEST_MATCH_SIMPLE("^a", "ba", 0, 0, FALSE);
- TEST_MATCH_SIMPLE("a", "ba", G_REGEX_ANCHORED, 0, FALSE);
- TEST_MATCH_SIMPLE("a", "ba", 0, G_REGEX_MATCH_ANCHORED, FALSE);
- TEST_MATCH_SIMPLE("a", "ab", G_REGEX_ANCHORED, 0, TRUE);
- TEST_MATCH_SIMPLE("a", "ab", 0, G_REGEX_MATCH_ANCHORED, TRUE);
- TEST_MATCH_SIMPLE("a", "a", G_REGEX_CASELESS, 0, TRUE);
- TEST_MATCH_SIMPLE("a", "A", G_REGEX_CASELESS, 0, TRUE);
- /* These are needed to test extended properties. */
- TEST_MATCH_SIMPLE(AGRAVE, AGRAVE, G_REGEX_CASELESS, 0, TRUE);
- TEST_MATCH_SIMPLE(AGRAVE, AGRAVE_UPPER, G_REGEX_CASELESS, 0, TRUE);
- TEST_MATCH_SIMPLE("\\p{L}", "a", 0, 0, TRUE);
- TEST_MATCH_SIMPLE("\\p{L}", "1", 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{L}", AGRAVE, 0, 0, TRUE);
- TEST_MATCH_SIMPLE("\\p{L}", AGRAVE_UPPER, 0, 0, TRUE);
- TEST_MATCH_SIMPLE("\\p{L}", SHEEN, 0, 0, TRUE);
- TEST_MATCH_SIMPLE("\\p{L}", ETH30, 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{Ll}", "a", 0, 0, TRUE);
- TEST_MATCH_SIMPLE("\\p{Ll}", AGRAVE, 0, 0, TRUE);
- TEST_MATCH_SIMPLE("\\p{Ll}", AGRAVE_UPPER, 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{Ll}", ETH30, 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{Sc}", AGRAVE, 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{Sc}", EURO, 0, 0, TRUE);
- TEST_MATCH_SIMPLE("\\p{Sc}", ETH30, 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{N}", "a", 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{N}", "1", 0, 0, TRUE);
- TEST_MATCH_SIMPLE("\\p{N}", AGRAVE, 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{N}", AGRAVE_UPPER, 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{N}", SHEEN, 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{N}", ETH30, 0, 0, TRUE);
- TEST_MATCH_SIMPLE("\\p{Nd}", "a", 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{Nd}", "1", 0, 0, TRUE);
- TEST_MATCH_SIMPLE("\\p{Nd}", AGRAVE, 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{Nd}", AGRAVE_UPPER, 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{Nd}", SHEEN, 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{Nd}", ETH30, 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{Common}", SHEEN, 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{Common}", "a", 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{Common}", AGRAVE, 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{Common}", AGRAVE_UPPER, 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{Common}", ETH30, 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{Common}", "%", 0, 0, TRUE);
- TEST_MATCH_SIMPLE("\\p{Common}", "1", 0, 0, TRUE);
- TEST_MATCH_SIMPLE("\\p{Arabic}", SHEEN, 0, 0, TRUE);
- TEST_MATCH_SIMPLE("\\p{Arabic}", "a", 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{Arabic}", AGRAVE, 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{Arabic}", AGRAVE_UPPER, 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{Arabic}", ETH30, 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{Arabic}", "%", 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{Arabic}", "1", 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{Latin}", SHEEN, 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{Latin}", "a", 0, 0, TRUE);
- TEST_MATCH_SIMPLE("\\p{Latin}", AGRAVE, 0, 0, TRUE);
- TEST_MATCH_SIMPLE("\\p{Latin}", AGRAVE_UPPER, 0, 0, TRUE);
- TEST_MATCH_SIMPLE("\\p{Latin}", ETH30, 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{Latin}", "%", 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{Latin}", "1", 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{Ethiopic}", SHEEN, 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{Ethiopic}", "a", 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{Ethiopic}", AGRAVE, 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{Ethiopic}", AGRAVE_UPPER, 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{Ethiopic}", ETH30, 0, 0, TRUE);
- TEST_MATCH_SIMPLE("\\p{Ethiopic}", "%", 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{Ethiopic}", "1", 0, 0, FALSE);
- TEST_MATCH_SIMPLE("\\p{L}(?<=\\p{Arabic})", SHEEN, 0, 0, TRUE);
- TEST_MATCH_SIMPLE("\\p{L}(?<=\\p{Latin})", SHEEN, 0, 0, FALSE);
- /* Invalid patterns. */
- TEST_MATCH_SIMPLE("\\", "a", 0, 0, FALSE);
- TEST_MATCH_SIMPLE("[", "", 0, 0, FALSE);
-
- /* TEST_MATCH(pattern, compile_opts, match_opts, string,
- * string_len, start_position, match_opts2, expected) */
- TEST_MATCH("a", 0, 0, "a", -1, 0, 0, TRUE);
- TEST_MATCH("a", 0, 0, "A", -1, 0, 0, FALSE);
- TEST_MATCH("a", G_REGEX_CASELESS, 0, "A", -1, 0, 0, TRUE);
- TEST_MATCH("a", 0, 0, "ab", -1, 1, 0, FALSE);
- TEST_MATCH("a", 0, 0, "ba", 1, 0, 0, FALSE);
- TEST_MATCH("a", 0, 0, "bab", -1, 0, 0, TRUE);
- TEST_MATCH("a", 0, 0, "b", -1, 0, 0, FALSE);
- TEST_MATCH("a", 0, G_REGEX_ANCHORED, "a", -1, 0, 0, TRUE);
- TEST_MATCH("a", 0, G_REGEX_ANCHORED, "ab", -1, 1, 0, FALSE);
- TEST_MATCH("a", 0, G_REGEX_ANCHORED, "ba", 1, 0, 0, FALSE);
- TEST_MATCH("a", 0, G_REGEX_ANCHORED, "bab", -1, 0, 0, FALSE);
- TEST_MATCH("a", 0, G_REGEX_ANCHORED, "b", -1, 0, 0, FALSE);
- TEST_MATCH("a", 0, 0, "a", -1, 0, G_REGEX_ANCHORED, TRUE);
- TEST_MATCH("a", 0, 0, "ab", -1, 1, G_REGEX_ANCHORED, FALSE);
- TEST_MATCH("a", 0, 0, "ba", 1, 0, G_REGEX_ANCHORED, FALSE);
- TEST_MATCH("a", 0, 0, "bab", -1, 0, G_REGEX_ANCHORED, FALSE);
- TEST_MATCH("a", 0, 0, "b", -1, 0, G_REGEX_ANCHORED, FALSE);
- TEST_MATCH("a|b", 0, 0, "a", -1, 0, 0, TRUE);
- TEST_MATCH("\\d", 0, 0, EURO, -1, 0, 0, FALSE);
- TEST_MATCH("^.$", 0, 0, EURO, -1, 0, 0, TRUE);
- TEST_MATCH("^.{3}$", 0, 0, EURO, -1, 0, 0, FALSE);
- TEST_MATCH("^.$", G_REGEX_RAW, 0, EURO, -1, 0, 0, FALSE);
- TEST_MATCH("^.{3}$", G_REGEX_RAW, 0, EURO, -1, 0, 0, TRUE);
- TEST_MATCH(AGRAVE, G_REGEX_CASELESS, 0, AGRAVE_UPPER, -1, 0, 0, TRUE);
-
- /* New lines handling. */
- TEST_MATCH("^a\\Rb$", 0, 0, "a\r\nb", -1, 0, 0, TRUE);
- TEST_MATCH("^a\\Rb$", 0, 0, "a\nb", -1, 0, 0, TRUE);
- TEST_MATCH("^a\\Rb$", 0, 0, "a\rb", -1, 0, 0, TRUE);
- TEST_MATCH("^a\\Rb$", 0, 0, "a\n\rb", -1, 0, 0, FALSE);
- TEST_MATCH("^a\\R\\Rb$", 0, 0, "a\n\rb", -1, 0, 0, TRUE);
- TEST_MATCH("^a\\nb$", 0, 0, "a\r\nb", -1, 0, 0, FALSE);
- TEST_MATCH("^a\\r\\nb$", 0, 0, "a\r\nb", -1, 0, 0, TRUE);
-
- TEST_MATCH("^b$", 0, 0, "a\nb\nc", -1, 0, 0, FALSE);
- TEST_MATCH("^b$", G_REGEX_MULTILINE, 0, "a\nb\nc", -1, 0, 0, TRUE);
- TEST_MATCH("^b$", G_REGEX_MULTILINE, 0, "a\r\nb\r\nc", -1, 0, 0, TRUE);
- TEST_MATCH("^b$", G_REGEX_MULTILINE, 0, "a\rb\rc", -1, 0, 0, TRUE);
- TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_CR, 0, "a\nb\nc", -1, 0, 0, FALSE);
- TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_LF, 0, "a\nb\nc", -1, 0, 0, TRUE);
- TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_CRLF, 0, "a\nb\nc", -1, 0, 0, FALSE);
- TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_CR, 0, "a\r\nb\r\nc", -1, 0, 0, FALSE);
- TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_LF, 0, "a\r\nb\r\nc", -1, 0, 0, FALSE);
- TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_CRLF, 0, "a\r\nb\r\nc", -1, 0, 0, TRUE);
- TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_CR, 0, "a\rb\rc", -1, 0, 0, TRUE);
- TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_LF, 0, "a\rb\rc", -1, 0, 0, FALSE);
- TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_CRLF, 0, "a\rb\rc", -1, 0, 0, FALSE);
- TEST_MATCH("^b$", G_REGEX_MULTILINE, G_REGEX_MATCH_NEWLINE_CR, "a\nb\nc", -1, 0, 0, FALSE);
- TEST_MATCH("^b$", G_REGEX_MULTILINE, G_REGEX_MATCH_NEWLINE_LF, "a\nb\nc", -1, 0, 0, TRUE);
- TEST_MATCH("^b$", G_REGEX_MULTILINE, G_REGEX_MATCH_NEWLINE_CRLF, "a\nb\nc", -1, 0, 0, FALSE);
- TEST_MATCH("^b$", G_REGEX_MULTILINE, G_REGEX_MATCH_NEWLINE_CR, "a\r\nb\r\nc", -1, 0, 0, FALSE);
- TEST_MATCH("^b$", G_REGEX_MULTILINE, G_REGEX_MATCH_NEWLINE_LF, "a\r\nb\r\nc", -1, 0, 0, FALSE);
- TEST_MATCH("^b$", G_REGEX_MULTILINE, G_REGEX_MATCH_NEWLINE_CRLF, "a\r\nb\r\nc", -1, 0, 0, TRUE);
- TEST_MATCH("^b$", G_REGEX_MULTILINE, G_REGEX_MATCH_NEWLINE_CR, "a\rb\rc", -1, 0, 0, TRUE);
- TEST_MATCH("^b$", G_REGEX_MULTILINE, G_REGEX_MATCH_NEWLINE_LF, "a\rb\rc", -1, 0, 0, FALSE);
- TEST_MATCH("^b$", G_REGEX_MULTILINE, G_REGEX_MATCH_NEWLINE_CRLF, "a\rb\rc", -1, 0, 0, FALSE);
-
- TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_CR, G_REGEX_MATCH_NEWLINE_ANY, "a\nb\nc", -1, 0, 0, TRUE);
- TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_CR, G_REGEX_MATCH_NEWLINE_ANY, "a\rb\rc", -1, 0, 0, TRUE);
- TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_CR, G_REGEX_MATCH_NEWLINE_ANY, "a\r\nb\r\nc", -1, 0, 0, TRUE);
- TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_CR, G_REGEX_MATCH_NEWLINE_LF, "a\nb\nc", -1, 0, 0, TRUE);
- TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_CR, G_REGEX_MATCH_NEWLINE_LF, "a\rb\rc", -1, 0, 0, FALSE);
- TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_CR, G_REGEX_MATCH_NEWLINE_CRLF, "a\r\nb\r\nc", -1, 0, 0, TRUE);
- TEST_MATCH("^b$", G_REGEX_MULTILINE | G_REGEX_NEWLINE_CR, G_REGEX_MATCH_NEWLINE_CRLF, "a\rb\rc", -1, 0, 0, FALSE);
-
- TEST_MATCH("a#\nb", G_REGEX_EXTENDED, 0, "a", -1, 0, 0, FALSE);
- TEST_MATCH("a#\r\nb", G_REGEX_EXTENDED, 0, "a", -1, 0, 0, FALSE);
- TEST_MATCH("a#\rb", G_REGEX_EXTENDED, 0, "a", -1, 0, 0, FALSE);
- TEST_MATCH("a#\nb", G_REGEX_EXTENDED, G_REGEX_MATCH_NEWLINE_CR, "a", -1, 0, 0, FALSE);
- TEST_MATCH("a#\nb", G_REGEX_EXTENDED | G_REGEX_NEWLINE_CR, 0, "a", -1, 0, 0, TRUE);
-
- /* TEST_MATCH_NEXT#(pattern, string, string_len, start_position, ...) */
- TEST_MATCH_NEXT0("a", "x", -1, 0);
- TEST_MATCH_NEXT0("a", "ax", -1, 1);
- TEST_MATCH_NEXT0("a", "xa", 1, 0);
- TEST_MATCH_NEXT0("a", "axa", 1, 2);
- TEST_MATCH_NEXT1("a", "a", -1, 0, "a", 0, 1);
- TEST_MATCH_NEXT1("a", "xax", -1, 0, "a", 1, 2);
- TEST_MATCH_NEXT1(EURO, ENG EURO, -1, 0, EURO, 2, 5);
- TEST_MATCH_NEXT1("a*", "", -1, 0, "", 0, 0);
- TEST_MATCH_NEXT2("a*", "aa", -1, 0, "aa", 0, 2, "", 2, 2);
- TEST_MATCH_NEXT2(EURO "*", EURO EURO, -1, 0, EURO EURO, 0, 6, "", 6, 6);
- TEST_MATCH_NEXT2("a", "axa", -1, 0, "a", 0, 1, "a", 2, 3);
- TEST_MATCH_NEXT2("a+", "aaxa", -1, 0, "aa", 0, 2, "a", 3, 4);
- TEST_MATCH_NEXT2("a", "aa", -1, 0, "a", 0, 1, "a", 1, 2);
- TEST_MATCH_NEXT2("a", "ababa", -1, 2, "a", 2, 3, "a", 4, 5);
- TEST_MATCH_NEXT2(EURO "+", EURO "-" EURO, -1, 0, EURO, 0, 3, EURO, 4, 7);
- TEST_MATCH_NEXT3("", "ab", -1, 0, "", 0, 0, "", 1, 1, "", 2, 2);
- TEST_MATCH_NEXT3("", AGRAVE "b", -1, 0, "", 0, 0, "", 2, 2, "", 3, 3);
- TEST_MATCH_NEXT3("a", "aaxa", -1, 0, "a", 0, 1, "a", 1, 2, "a", 3, 4);
- TEST_MATCH_NEXT3("a", "aa" OGRAVE "a", -1, 0, "a", 0, 1, "a", 1, 2, "a", 4, 5);
- TEST_MATCH_NEXT3("a*", "aax", -1, 0, "aa", 0, 2, "", 2, 2, "", 3, 3);
- TEST_MATCH_NEXT3("(?=[A-Z0-9])", "RegExTest", -1, 0, "", 0, 0, "", 3, 3, "", 5, 5);
- TEST_MATCH_NEXT4("a*", "aaxa", -1, 0, "aa", 0, 2, "", 2, 2, "a", 3, 4, "", 4, 4);
-
- /* TEST_MATCH_COUNT(pattern, string, start_position, match_opts, expected_count) */
- TEST_MATCH_COUNT("a", "", 0, 0, 0);
- TEST_MATCH_COUNT("a", "a", 0, 0, 1);
- TEST_MATCH_COUNT("a", "a", 1, 0, 0);
- TEST_MATCH_COUNT("(.)", "a", 0, 0, 2);
- TEST_MATCH_COUNT("(.)", EURO, 0, 0, 2);
- TEST_MATCH_COUNT("(?:.)", "a", 0, 0, 1);
- TEST_MATCH_COUNT("(?P<A>.)", "a", 0, 0, 2);
- TEST_MATCH_COUNT("a$", "a", 0, G_REGEX_MATCH_NOTEOL, 0);
- TEST_MATCH_COUNT("(a)?(b)", "b", 0, 0, 3);
- TEST_MATCH_COUNT("(a)?(b)", "ab", 0, 0, 3);
-
- /* TEST_PARTIAL(pattern, string, expected) */
- TEST_PARTIAL("^ab", "a", TRUE);
- TEST_PARTIAL("^ab", "xa", FALSE);
- TEST_PARTIAL("ab", "xa", TRUE);
- TEST_PARTIAL("ab", "ab", FALSE); /* normal match. */
- TEST_PARTIAL("a+b", "aa", FALSE); /* PCRE_ERROR_BAD_PARTIAL */
- TEST_PARTIAL("(a)+b", "aa", TRUE);
- TEST_PARTIAL("a?b", "a", TRUE);
-
- /* TEST_SUB_PATTERN(pattern, string, start_position, sub_n, expected_sub,
- * expected_start, expected_end) */
- TEST_SUB_PATTERN("a", "a", 0, 0, "a", 0, 1);
- TEST_SUB_PATTERN("a(.)", "ab", 0, 1, "b", 1, 2);
- TEST_SUB_PATTERN("a(.)", "a" EURO, 0, 1, EURO, 1, 4);
- TEST_SUB_PATTERN("(?:.*)(a)(.)", "xxa" ENG, 0, 2, ENG, 3, 5);
- TEST_SUB_PATTERN("(" HSTROKE ")", "a" HSTROKE ENG, 0, 1, HSTROKE, 1, 3);
- TEST_SUB_PATTERN("a", "a", 0, 1, NULL, UNTOUCHED, UNTOUCHED);
- TEST_SUB_PATTERN("a", "a", 0, 1, NULL, UNTOUCHED, UNTOUCHED);
- TEST_SUB_PATTERN("(a)?(b)", "b", 0, 0, "b", 0, 1);
- TEST_SUB_PATTERN("(a)?(b)", "b", 0, 1, "", -1, -1);
- TEST_SUB_PATTERN("(a)?(b)", "b", 0, 2, "b", 0, 1);
-
- /* TEST_NAMED_SUB_PATTERN(pattern, string, start_position, sub_name,
- * expected_sub, expected_start, expected_end) */
- TEST_NAMED_SUB_PATTERN("a(?P<A>.)(?P<B>.)?", "ab", 0, "A", "b", 1, 2);
- TEST_NAMED_SUB_PATTERN("a(?P<A>.)(?P<B>.)?", "aab", 1, "A", "b", 2, 3);
- TEST_NAMED_SUB_PATTERN("a(?P<A>.)(?P<B>.)?", EURO "ab", 0, "A", "b", 4, 5);
- TEST_NAMED_SUB_PATTERN("a(?P<A>.)(?P<B>.)?", EURO "ab", 0, "B", NULL, UNTOUCHED, UNTOUCHED);
- TEST_NAMED_SUB_PATTERN("a(?P<A>.)(?P<B>.)?", EURO "ab", 0, "C", NULL, UNTOUCHED, UNTOUCHED);
- TEST_NAMED_SUB_PATTERN("a(?P<A>.)(?P<B>.)?", "a" EGRAVE "x", 0, "A", EGRAVE, 1, 3);
- TEST_NAMED_SUB_PATTERN("a(?P<A>.)(?P<B>.)?", "a" EGRAVE "x", 0, "B", "x", 3, 4);
- TEST_NAMED_SUB_PATTERN("(?P<A>a)?(?P<B>b)", "b", 0, "A", "", -1, -1);
- TEST_NAMED_SUB_PATTERN("(?P<A>a)?(?P<B>b)", "b", 0, "B", "b", 0, 1);
-
- /* TEST_NAMED_SUB_PATTERN_DUPNAMES(pattern, string, start_position, sub_name,
- * expected_sub, expected_start, expected_end) */
- TEST_NAMED_SUB_PATTERN_DUPNAMES("(?P<N>a)|(?P<N>b)", "ab", 0, "N", "a", 0, 1);
- TEST_NAMED_SUB_PATTERN_DUPNAMES("(?P<N>aa)|(?P<N>a)", "aa", 0, "N", "aa", 0, 2);
- TEST_NAMED_SUB_PATTERN_DUPNAMES("(?P<N>aa)(?P<N>a)", "aaa", 0, "N", "aa", 0, 2);
- TEST_NAMED_SUB_PATTERN_DUPNAMES("(?P<N>x)|(?P<N>a)", "a", 0, "N", "a", 0, 1);
- TEST_NAMED_SUB_PATTERN_DUPNAMES("(?P<N>x)y|(?P<N>a)b", "ab", 0, "N", "a", 0, 1);
-
- /* DUPNAMES option inside the pattern */
- TEST_NAMED_SUB_PATTERN("(?J)(?P<N>a)|(?P<N>b)", "ab", 0, "N", "a", 0, 1);
- TEST_NAMED_SUB_PATTERN("(?J)(?P<N>aa)|(?P<N>a)", "aa", 0, "N", "aa", 0, 2);
- TEST_NAMED_SUB_PATTERN("(?J)(?P<N>aa)(?P<N>a)", "aaa", 0, "N", "aa", 0, 2);
- TEST_NAMED_SUB_PATTERN("(?J)(?P<N>x)|(?P<N>a)", "a", 0, "N", "a", 0, 1);
- TEST_NAMED_SUB_PATTERN("(?J)(?P<N>x)y|(?P<N>a)b", "ab", 0, "N", "a", 0, 1);
-
- /* TEST_FETCH_ALL#(pattern, string, ...) */
- TEST_FETCH_ALL0("a", "");
- TEST_FETCH_ALL0("a", "b");
- TEST_FETCH_ALL1("a", "a", "a");
- TEST_FETCH_ALL1("a+", "aa", "aa");
- TEST_FETCH_ALL1("(?:a)", "a", "a");
- TEST_FETCH_ALL2("(a)", "a", "a", "a");
- TEST_FETCH_ALL2("a(.)", "ab", "ab", "b");
- TEST_FETCH_ALL2("a(.)", "a" HSTROKE, "a" HSTROKE, HSTROKE);
- TEST_FETCH_ALL3("(?:.*)(a)(.)", "xyazk", "xyaz", "a", "z");
- TEST_FETCH_ALL3("(?P<A>.)(a)", "xa", "xa", "x", "a");
- TEST_FETCH_ALL3("(?P<A>.)(a)", ENG "a", ENG "a", ENG, "a");
- TEST_FETCH_ALL3("(a)?(b)", "b", "b", "", "b");
- TEST_FETCH_ALL3("(a)?(b)", "ab", "ab", "a", "b");
-
- /* TEST_SPLIT_SIMPLE#(pattern, string, ...) */
- TEST_SPLIT_SIMPLE0("", "");
- TEST_SPLIT_SIMPLE0("a", "");
- TEST_SPLIT_SIMPLE1(",", "a", "a");
- TEST_SPLIT_SIMPLE1("(,)\\s*", "a", "a");
- TEST_SPLIT_SIMPLE2(",", "a,b", "a", "b");
- TEST_SPLIT_SIMPLE3(",", "a,b,c", "a", "b", "c");
- TEST_SPLIT_SIMPLE3(",\\s*", "a,b,c", "a", "b", "c");
- TEST_SPLIT_SIMPLE3(",\\s*", "a, b, c", "a", "b", "c");
- TEST_SPLIT_SIMPLE3("(,)\\s*", "a,b", "a", ",", "b");
- TEST_SPLIT_SIMPLE3("(,)\\s*", "a, b", "a", ",", "b");
- /* Not matched sub-strings. */
- TEST_SPLIT_SIMPLE2("a|(b)", "xay", "x", "y");
- TEST_SPLIT_SIMPLE3("a|(b)", "xby", "x", "b", "y");
- /* Empty matches. */
- TEST_SPLIT_SIMPLE3("", "abc", "a", "b", "c");
- TEST_SPLIT_SIMPLE3(" *", "ab c", "a", "b", "c");
- /* Invalid patterns. */
- TEST_SPLIT_SIMPLE0("\\", "");
- TEST_SPLIT_SIMPLE0("[", "");
-
- /* TEST_SPLIT#(pattern, string, start_position, max_tokens, ...) */
- TEST_SPLIT0("", "", 0, 0);
- TEST_SPLIT0("a", "", 0, 0);
- TEST_SPLIT0("a", "", 0, 1);
- TEST_SPLIT0("a", "", 0, 2);
- TEST_SPLIT0("a", "a", 1, 0);
- TEST_SPLIT1(",", "a", 0, 0, "a");
- TEST_SPLIT1(",", "a,b", 0, 1, "a,b");
- TEST_SPLIT1("(,)\\s*", "a", 0, 0, "a");
- TEST_SPLIT1(",", "a,b", 2, 0, "b");
- TEST_SPLIT2(",", "a,b", 0, 0, "a", "b");
- TEST_SPLIT2(",", "a,b,c", 0, 2, "a", "b,c");
- TEST_SPLIT2(",", "a,b", 1, 0, "", "b");
- TEST_SPLIT2(",", "a,", 0, 0, "a", "");
- TEST_SPLIT3(",", "a,b,c", 0, 0, "a", "b", "c");
- TEST_SPLIT3(",\\s*", "a,b,c", 0, 0, "a", "b", "c");
- TEST_SPLIT3(",\\s*", "a, b, c", 0, 0, "a", "b", "c");
- TEST_SPLIT3("(,)\\s*", "a,b", 0, 0, "a", ",", "b");
- TEST_SPLIT3("(,)\\s*", "a, b", 0, 0, "a", ",", "b");
- /* Not matched sub-strings. */
- TEST_SPLIT2("a|(b)", "xay", 0, 0, "x", "y");
- TEST_SPLIT3("a|(b)", "xby", 0, -1, "x", "b", "y");
- /* Empty matches. */
- TEST_SPLIT2(" *", "ab c", 1, 0, "b", "c");
- TEST_SPLIT3("", "abc", 0, 0, "a", "b", "c");
- TEST_SPLIT3(" *", "ab c", 0, 0, "a", "b", "c");
- TEST_SPLIT1(" *", "ab c", 0, 1, "ab c");
- TEST_SPLIT2(" *", "ab c", 0, 2, "a", "b c");
- TEST_SPLIT3(" *", "ab c", 0, 3, "a", "b", "c");
- TEST_SPLIT3(" *", "ab c", 0, 4, "a", "b", "c");
-
- /* TEST_CHECK_REPLACEMENT(string_to_expand, expected, expected_refs) */
- TEST_CHECK_REPLACEMENT("", TRUE, FALSE);
- TEST_CHECK_REPLACEMENT("a", TRUE, FALSE);
- TEST_CHECK_REPLACEMENT("\\t\\n\\v\\r\\f\\a\\b\\\\\\x{61}", TRUE, FALSE);
- TEST_CHECK_REPLACEMENT("\\0", TRUE, TRUE);
- TEST_CHECK_REPLACEMENT("\\n\\2", TRUE, TRUE);
- TEST_CHECK_REPLACEMENT("\\g<foo>", TRUE, TRUE);
- /* Invalid strings */
- TEST_CHECK_REPLACEMENT("\\Q", FALSE, FALSE);
- TEST_CHECK_REPLACEMENT("x\\Ay", FALSE, FALSE);
-
- /* TEST_EXPAND(pattern, string, string_to_expand, raw, expected) */
- TEST_EXPAND("a", "a", "", FALSE, "");
- TEST_EXPAND("a", "a", "\\0", FALSE, "a");
- TEST_EXPAND("a", "a", "\\1", FALSE, "");
- TEST_EXPAND("(a)", "ab", "\\1", FALSE, "a");
- TEST_EXPAND("(a)", "a", "\\1", FALSE, "a");
- TEST_EXPAND("(a)", "a", "\\g<1>", FALSE, "a");
- TEST_EXPAND("a", "a", "\\0130", FALSE, "X");
- TEST_EXPAND("a", "a", "\\\\\\0", FALSE, "\\a");
- TEST_EXPAND("a(?P<G>.)c", "xabcy", "X\\g<G>X", FALSE, "XbX");
- TEST_EXPAND("(.)(?P<1>.)", "ab", "\\1", FALSE, "a");
- TEST_EXPAND("(.)(?P<1>.)", "ab", "\\g<1>", FALSE, "a");
- TEST_EXPAND(".", EURO, "\\0", FALSE, EURO);
- TEST_EXPAND("(.)", EURO, "\\1", FALSE, EURO);
- TEST_EXPAND("(?P<G>.)", EURO, "\\g<G>", FALSE, EURO);
- TEST_EXPAND(".", "a", EURO, FALSE, EURO);
- TEST_EXPAND(".", "a", EURO "\\0", FALSE, EURO "a");
- TEST_EXPAND(".", "", "\\Lab\\Ec", FALSE, "abc");
- TEST_EXPAND(".", "", "\\LaB\\EC", FALSE, "abC");
- TEST_EXPAND(".", "", "\\Uab\\Ec", FALSE, "ABc");
- TEST_EXPAND(".", "", "a\\ubc", FALSE, "aBc");
- TEST_EXPAND(".", "", "a\\lbc", FALSE, "abc");
- TEST_EXPAND(".", "", "A\\uBC", FALSE, "ABC");
- TEST_EXPAND(".", "", "A\\lBC", FALSE, "AbC");
- TEST_EXPAND(".", "", "A\\l\\\\BC", FALSE, "A\\BC");
- TEST_EXPAND(".", "", "\\L" AGRAVE "\\E", FALSE, AGRAVE);
- TEST_EXPAND(".", "", "\\U" AGRAVE "\\E", FALSE, AGRAVE_UPPER);
- TEST_EXPAND(".", "", "\\u" AGRAVE "a", FALSE, AGRAVE_UPPER "a");
- TEST_EXPAND(".", "ab", "x\\U\\0y\\Ez", FALSE, "xAYz");
- TEST_EXPAND(".(.)", "AB", "x\\L\\1y\\Ez", FALSE, "xbyz");
- TEST_EXPAND(".", "ab", "x\\u\\0y\\Ez", FALSE, "xAyz");
- TEST_EXPAND(".(.)", "AB", "x\\l\\1y\\Ez", FALSE, "xbyz");
- TEST_EXPAND(".(.)", "a" AGRAVE_UPPER, "x\\l\\1y", FALSE, "x" AGRAVE "y");
- TEST_EXPAND("a", "bab", "\\x{61}", FALSE, "a");
- TEST_EXPAND("a", "bab", "\\x61", FALSE, "a");
- TEST_EXPAND("a", "bab", "\\x5a", FALSE, "Z");
- TEST_EXPAND("a", "bab", "\\0\\x5A", FALSE, "aZ");
- TEST_EXPAND("a", "bab", "\\1\\x{5A}", FALSE, "Z");
- TEST_EXPAND("a", "bab", "\\x{00E0}", FALSE, AGRAVE);
- TEST_EXPAND("", "bab", "\\x{0634}", FALSE, SHEEN);
- TEST_EXPAND("", "bab", "\\x{634}", FALSE, SHEEN);
- TEST_EXPAND("", "", "\\t", FALSE, "\t");
- TEST_EXPAND("", "", "\\v", FALSE, "\v");
- TEST_EXPAND("", "", "\\r", FALSE, "\r");
- TEST_EXPAND("", "", "\\n", FALSE, "\n");
- TEST_EXPAND("", "", "\\f", FALSE, "\f");
- TEST_EXPAND("", "", "\\a", FALSE, "\a");
- TEST_EXPAND("", "", "\\b", FALSE, "\b");
- TEST_EXPAND("a(.)", "abc", "\\0\\b\\1", FALSE, "ab\bb");
- TEST_EXPAND("a(.)", "abc", "\\0141", FALSE, "a");
- TEST_EXPAND("a(.)", "abc", "\\078", FALSE, "\a8");
- TEST_EXPAND("a(.)", "abc", "\\077", FALSE, "?");
- TEST_EXPAND("a(.)", "abc", "\\0778", FALSE, "?8");
- TEST_EXPAND("a(.)", "a" AGRAVE "b", "\\1", FALSE, AGRAVE);
- TEST_EXPAND("a(.)", "a" AGRAVE "b", "\\1", TRUE, "\xc3");
- TEST_EXPAND("a(.)", "a" AGRAVE "b", "\\0", TRUE, "a\xc3");
- /* Invalid strings. */
- TEST_EXPAND("", "", "\\Q", FALSE, NULL);
- TEST_EXPAND("", "", "x\\Ay", FALSE, NULL);
- TEST_EXPAND("", "", "\\g<", FALSE, NULL);
- TEST_EXPAND("", "", "\\g<>", FALSE, NULL);
- TEST_EXPAND("", "", "\\g<1a>", FALSE, NULL);
- TEST_EXPAND("", "", "\\g<a$>", FALSE, NULL);
- TEST_EXPAND("", "", "\\", FALSE, NULL);
- TEST_EXPAND("a", "a", "\\x{61", FALSE, NULL);
- TEST_EXPAND("a", "a", "\\x6X", FALSE, NULL);
- /* Pattern-less. */
- TEST_EXPAND(NULL, NULL, "", FALSE, "");
- TEST_EXPAND(NULL, NULL, "\\n", FALSE, "\n");
- /* Invalid strings */
- TEST_EXPAND(NULL, NULL, "\\Q", FALSE, NULL);
- TEST_EXPAND(NULL, NULL, "x\\Ay", FALSE, NULL);
-
- /* TEST_REPLACE(pattern, string, start_position, replacement, expected) */
- TEST_REPLACE("a", "ababa", 0, "A", "AbAbA");
- TEST_REPLACE("a", "ababa", 1, "A", "abAbA");
- TEST_REPLACE("a", "ababa", 2, "A", "abAbA");
- TEST_REPLACE("a", "ababa", 3, "A", "ababA");
- TEST_REPLACE("a", "ababa", 4, "A", "ababA");
- TEST_REPLACE("a", "ababa", 5, "A", "ababa");
- TEST_REPLACE("a", "ababa", 6, "A", "ababa");
- TEST_REPLACE("a", "abababa", 2, "A", "abAbAbA");
- TEST_REPLACE("a", "abab", 0, "A", "AbAb");
- TEST_REPLACE("a", "baba", 0, "A", "bAbA");
- TEST_REPLACE("a", "bab", 0, "A", "bAb");
- TEST_REPLACE("$^", "abc", 0, "X", "abc");
- TEST_REPLACE("(.)a", "ciao", 0, "a\\1", "caio");
- TEST_REPLACE("a.", "abc", 0, "\\0\\0", "ababc");
- TEST_REPLACE("a", "asd", 0, "\\0101", "Asd");
- TEST_REPLACE("(a).\\1", "aba cda", 0, "\\1\\n", "a\n cda");
- TEST_REPLACE("a" AGRAVE "a", "a" AGRAVE "a", 0, "x", "x");
- TEST_REPLACE("a" AGRAVE "a", "a" AGRAVE "a", 0, OGRAVE, OGRAVE);
- TEST_REPLACE("[^-]", "-" EURO "-x-" HSTROKE, 0, "a", "-a-a-a");
- TEST_REPLACE("[^-]", "-" EURO "-" HSTROKE, 0, "a\\g<0>a", "-a" EURO "a-a" HSTROKE "a");
- TEST_REPLACE("-", "-" EURO "-" HSTROKE, 0, "", EURO HSTROKE);
- TEST_REPLACE(".*", "hello", 0, "\\U\\0\\E", "HELLO");
- TEST_REPLACE(".*", "hello", 0, "\\u\\0", "Hello");
- TEST_REPLACE("\\S+", "hello world", 0, "\\U-\\0-", "-HELLO- -WORLD-");
- TEST_REPLACE(".", "a", 0, "\\A", NULL);
- TEST_REPLACE(".", "a", 0, "\\g", NULL);
-
- /* TEST_REPLACE_LIT(pattern, string, start_position, replacement, expected) */
- TEST_REPLACE_LIT("a", "ababa", 0, "A", "AbAbA");
- TEST_REPLACE_LIT("a", "ababa", 1, "A", "abAbA");
- TEST_REPLACE_LIT("a", "ababa", 2, "A", "abAbA");
- TEST_REPLACE_LIT("a", "ababa", 3, "A", "ababA");
- TEST_REPLACE_LIT("a", "ababa", 4, "A", "ababA");
- TEST_REPLACE_LIT("a", "ababa", 5, "A", "ababa");
- TEST_REPLACE_LIT("a", "ababa", 6, "A", "ababa");
- TEST_REPLACE_LIT("a", "abababa", 2, "A", "abAbAbA");
- TEST_REPLACE_LIT("a", "abcadaa", 0, "A", "AbcAdAA");
- TEST_REPLACE_LIT("$^", "abc", 0, "X", "abc");
- TEST_REPLACE_LIT("(.)a", "ciao", 0, "a\\1", "ca\\1o");
- TEST_REPLACE_LIT("a.", "abc", 0, "\\0\\0\\n", "\\0\\0\\nc");
- TEST_REPLACE_LIT("a" AGRAVE "a", "a" AGRAVE "a", 0, "x", "x");
- TEST_REPLACE_LIT("a" AGRAVE "a", "a" AGRAVE "a", 0, OGRAVE, OGRAVE);
- TEST_REPLACE_LIT(AGRAVE, "-" AGRAVE "-" HSTROKE, 0, "a" ENG "a", "-a" ENG "a-" HSTROKE);
- TEST_REPLACE_LIT("[^-]", "-" EURO "-" AGRAVE "-" HSTROKE, 0, "a", "-a-a-a");
- TEST_REPLACE_LIT("[^-]", "-" EURO "-" AGRAVE, 0, "a\\g<0>a", "-a\\g<0>a-a\\g<0>a");
- TEST_REPLACE_LIT("-", "-" EURO "-" AGRAVE "-" HSTROKE, 0, "", EURO AGRAVE HSTROKE);
- TEST_REPLACE_LIT("(?=[A-Z0-9])", "RegExTest", 0, "_", "_Reg_Ex_Test");
- TEST_REPLACE_LIT("(?=[A-Z0-9])", "RegExTest", 1, "_", "Reg_Ex_Test");
-
- /* TEST_GET_STRING_NUMBER(pattern, name, expected_num) */
- TEST_GET_STRING_NUMBER("", "A", -1);
- TEST_GET_STRING_NUMBER("(?P<A>.)", "A", 1);
- TEST_GET_STRING_NUMBER("(?P<A>.)", "B", -1);
- TEST_GET_STRING_NUMBER("(?P<A>.)(?P<B>a)", "A", 1);
- TEST_GET_STRING_NUMBER("(?P<A>.)(?P<B>a)", "B", 2);
- TEST_GET_STRING_NUMBER("(?P<A>.)(?P<B>a)", "C", -1);
- TEST_GET_STRING_NUMBER("(?P<A>.)(.)(?P<B>a)", "A", 1);
- TEST_GET_STRING_NUMBER("(?P<A>.)(.)(?P<B>a)", "B", 3);
- TEST_GET_STRING_NUMBER("(?P<A>.)(.)(?P<B>a)", "C", -1);
- TEST_GET_STRING_NUMBER("(?:a)(?P<A>.)", "A", 1);
- TEST_GET_STRING_NUMBER("(?:a)(?P<A>.)", "B", -1);
-
- /* TEST_ESCAPE(string, length, expected) */
- TEST_ESCAPE("hello world", -1, "hello world");
- TEST_ESCAPE("hello world", 5, "hello");
- TEST_ESCAPE("hello.world", -1, "hello\\.world");
- TEST_ESCAPE("a(b\\b.$", -1, "a\\(b\\\\b\\.\\$");
- TEST_ESCAPE("hello\0world", -1, "hello");
- TEST_ESCAPE("hello\0world", 11, "hello\\0world");
- TEST_ESCAPE(EURO "*" ENG, -1, EURO "\\*" ENG);
- TEST_ESCAPE("a$", -1, "a\\$");
- TEST_ESCAPE("$a", -1, "\\$a");
- TEST_ESCAPE("a$a", -1, "a\\$a");
- TEST_ESCAPE("$a$", -1, "\\$a\\$");
- TEST_ESCAPE("$a$", 0, "");
- TEST_ESCAPE("$a$", 1, "\\$");
- TEST_ESCAPE("$a$", 2, "\\$a");
- TEST_ESCAPE("$a$", 3, "\\$a\\$");
- TEST_ESCAPE("$a$", 4, "\\$a\\$\\0");
- TEST_ESCAPE("|()[]{}^$*+?.", -1, "\\|\\(\\)\\[\\]\\{\\}\\^\\$\\*\\+\\?\\.");
- TEST_ESCAPE("a|a(a)a[a]a{a}a^a$a*a+a?a.a", -1,
- "a\\|a\\(a\\)a\\[a\\]a\\{a\\}a\\^a\\$a\\*a\\+a\\?a\\.a");
-
- /* TEST_MATCH_ALL#(pattern, string, string_len, start_position, ...) */
- TEST_MATCH_ALL0("<.*>", "", -1, 0);
- TEST_MATCH_ALL0("a+", "", -1, 0);
- TEST_MATCH_ALL0("a+", "a", 0, 0);
- TEST_MATCH_ALL0("a+", "a", -1, 1);
- TEST_MATCH_ALL1("<.*>", "<a>", -1, 0, "<a>", 0, 3);
- TEST_MATCH_ALL1("a+", "a", -1, 0, "a", 0, 1);
- TEST_MATCH_ALL1("a+", "aa", 1, 0, "a", 0, 1);
- TEST_MATCH_ALL1("a+", "aa", -1, 1, "a", 1, 2);
- TEST_MATCH_ALL1("a+", "aa", 2, 1, "a", 1, 2);
- TEST_MATCH_ALL1(".+", ENG, -1, 0, ENG, 0, 2);
- TEST_MATCH_ALL2("<.*>", "<a><b>", -1, 0, "<a><b>", 0, 6, "<a>", 0, 3);
- TEST_MATCH_ALL2("a+", "aa", -1, 0, "aa", 0, 2, "a", 0, 1);
- TEST_MATCH_ALL2(".+", ENG EURO, -1, 0, ENG EURO, 0, 5, ENG, 0, 2);
- TEST_MATCH_ALL3("<.*>", "<a><b><c>", -1, 0, "<a><b><c>", 0, 9,
- "<a><b>", 0, 6, "<a>", 0, 3);
- TEST_MATCH_ALL3("a+", "aaa", -1, 0, "aaa", 0, 3, "aa", 0, 2, "a", 0, 1);
-
-end: /* if abort_on_fail is TRUE the flow passes to this label. */
- verbose ("\n%u tests passed, %u failed\n", passed, failed);
- return failed;
-}
-
-#else /* ENABLE_REGEX false */
-
-int
-main (int argc, char *argv[])
-{
- g_print ("GRegex is disabled.\n");
- return 0;
-}
-
-#endif /* ENABLE_REGEX */