chiark / gitweb /
DisOrder 3.0
[disorder] / lib / t-regsub.c
1 /*
2  * This file is part of DisOrder.
3  * Copyright (C) 2005, 2007, 2008 Richard Kettlewell
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18  * USA
19  */
20 #include "test.h"
21
22 void test_regsub(void) {
23   pcre *re;
24   const char *errstr;
25   int erroffset;
26
27   printf("test_regsub\n");
28
29   check_integer(regsub_flags(""), 0);
30   check_integer(regsub_flags("g"), REGSUB_GLOBAL);
31   check_integer(regsub_flags("i"), REGSUB_CASE_INDEPENDENT);
32   check_integer(regsub_flags("gi"), REGSUB_GLOBAL|REGSUB_CASE_INDEPENDENT);
33   check_integer(regsub_flags("iiggxx"), REGSUB_GLOBAL|REGSUB_CASE_INDEPENDENT);
34   check_integer(regsub_compile_options(0), 0);
35   check_integer(regsub_compile_options(REGSUB_CASE_INDEPENDENT), PCRE_CASELESS);
36   check_integer(regsub_compile_options(REGSUB_GLOBAL|REGSUB_CASE_INDEPENDENT), PCRE_CASELESS);
37   check_integer(regsub_compile_options(REGSUB_GLOBAL), 0);
38
39   re = pcre_compile("foo", PCRE_UTF8, &errstr, &erroffset, 0);
40   assert(re != 0);
41   check_string(regsub(re, "wibble-foo-foo-bar", "spong", 0),
42                "wibble-spong-foo-bar");
43   check_string(regsub(re, "wibble-foo-foo-bar", "spong", REGSUB_GLOBAL),
44                "wibble-spong-spong-bar");
45   check_string(regsub(re, "wibble-x-x-bar", "spong", REGSUB_GLOBAL),
46                "wibble-x-x-bar");
47   insist(regsub(re, "wibble-x-x-bar", "spong", REGSUB_MUST_MATCH) == 0);
48
49   re = pcre_compile("a+", PCRE_UTF8, &errstr, &erroffset, 0);
50   assert(re != 0);
51   check_string(regsub(re, "baaaaa", "spong", 0),
52                "bspong");
53   check_string(regsub(re, "baaaaa", "spong", REGSUB_GLOBAL),
54                "bspong");
55   check_string(regsub(re, "baaaaa", "foo-$&-bar", 0),
56                "bfoo-aaaaa-bar");
57
58   re = pcre_compile("(a+)(b+)", PCRE_UTF8|PCRE_CASELESS, &errstr, &erroffset, 0);
59   assert(re != 0);
60   check_string(regsub(re, "foo-aaaabbb-bar", "spong", 0),
61                "foo-spong-bar");
62   check_string(regsub(re, "foo-aaaabbb-bar", "x:$2/$1:y", 0),
63                "foo-x:bbb/aaaa:y-bar");
64   check_string(regsub(re, "foo-aAaAbBb-bar", "x:$2$$$1:y", 0),
65                "foo-x:bBb$aAaA:y-bar");
66 }
67
68 /*
69 Local Variables:
70 c-basic-offset:2
71 comment-column:40
72 fill-column:79
73 indent-tabs-mode:nil
74 End:
75 */