| 1 | /* |
|---|
| 2 | * |
|---|
| 3 | * Copyright (c) 2004 |
|---|
| 4 | * John Maddock |
|---|
| 5 | * |
|---|
| 6 | * Use, modification and distribution are subject to the |
|---|
| 7 | * Boost Software License, Version 1.0. (See accompanying file |
|---|
| 8 | * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
|---|
| 9 | * |
|---|
| 10 | */ |
|---|
| 11 | |
|---|
| 12 | #include "test.hpp" |
|---|
| 13 | |
|---|
| 14 | #ifdef BOOST_MSVC |
|---|
| 15 | #pragma warning(disable:4127) |
|---|
| 16 | #endif |
|---|
| 17 | |
|---|
| 18 | void test_sets() |
|---|
| 19 | { |
|---|
| 20 | using namespace boost::regex_constants; |
|---|
| 21 | // now test the set operator [] |
|---|
| 22 | TEST_REGEX_SEARCH("[abc]", extended, "a", match_default, make_array(0, 1, -2, -2)); |
|---|
| 23 | TEST_REGEX_SEARCH("[abc]", extended, "b", match_default, make_array(0, 1, -2, -2)); |
|---|
| 24 | TEST_REGEX_SEARCH("[abc]", extended, "c", match_default, make_array(0, 1, -2, -2)); |
|---|
| 25 | TEST_REGEX_SEARCH("[abc]", extended, "d", match_default, make_array(-2, -2)); |
|---|
| 26 | TEST_REGEX_SEARCH("[^bcd]", extended, "a", match_default, make_array(0, 1, -2, -2)); |
|---|
| 27 | TEST_REGEX_SEARCH("[^bcd]", extended, "b", match_default, make_array(-2, -2)); |
|---|
| 28 | TEST_REGEX_SEARCH("[^bcd]", extended, "d", match_default, make_array(-2, -2)); |
|---|
| 29 | TEST_REGEX_SEARCH("[^bcd]", extended, "e", match_default, make_array(0, 1, -2, -2)); |
|---|
| 30 | TEST_REGEX_SEARCH("a[b]c", extended, "abc", match_default, make_array(0, 3, -2, -2)); |
|---|
| 31 | TEST_REGEX_SEARCH("a[ab]c", extended, "abc", match_default, make_array(0, 3, -2, -2)); |
|---|
| 32 | TEST_REGEX_SEARCH("a[a^b]*c", extended, "aba^c", match_default, make_array(0, 5, -2, -2)); |
|---|
| 33 | TEST_REGEX_SEARCH("a[^ab]c", extended, "adc", match_default, make_array(0, 3, -2, -2)); |
|---|
| 34 | TEST_REGEX_SEARCH("a[]b]c", extended, "a]c", match_default, make_array(0, 3, -2, -2)); |
|---|
| 35 | TEST_REGEX_SEARCH("a[[b]c", extended, "a[c", match_default, make_array(0, 3, -2, -2)); |
|---|
| 36 | TEST_REGEX_SEARCH("a[-b]c", extended, "a-c", match_default, make_array(0, 3, -2, -2)); |
|---|
| 37 | TEST_REGEX_SEARCH("a[^]b]c", extended, "adc", match_default, make_array(0, 3, -2, -2)); |
|---|
| 38 | TEST_REGEX_SEARCH("a[^-b]c", extended, "adc", match_default, make_array(0, 3, -2, -2)); |
|---|
| 39 | TEST_REGEX_SEARCH("a[b-]c", extended, "a-c", match_default, make_array(0, 3, -2, -2)); |
|---|
| 40 | TEST_REGEX_SEARCH("a[a-z-]c", extended, "a-c", match_default, make_array(0, 3, -2, -2)); |
|---|
| 41 | TEST_REGEX_SEARCH("a[a-z-]+c", extended, "aaz-c", match_default, make_array(0, 5, -2, -2)); |
|---|
| 42 | TEST_INVALID_REGEX("a[b", extended); |
|---|
| 43 | TEST_INVALID_REGEX("a[", extended); |
|---|
| 44 | TEST_INVALID_REGEX("a[]", extended); |
|---|
| 45 | |
|---|
| 46 | // now some ranges: |
|---|
| 47 | TEST_REGEX_SEARCH("[b-e]", extended, "a", match_default, make_array(-2, -2)); |
|---|
| 48 | TEST_REGEX_SEARCH("[b-e]", extended, "b", match_default, make_array(0, 1, -2, -2)); |
|---|
| 49 | TEST_REGEX_SEARCH("[b-e]", extended, "e", match_default, make_array(0, 1, -2, -2)); |
|---|
| 50 | TEST_REGEX_SEARCH("[b-e]", extended, "f", match_default, make_array(-2, -2)); |
|---|
| 51 | TEST_REGEX_SEARCH("[^b-e]", extended, "a", match_default, make_array(0, 1, -2, -2)); |
|---|
| 52 | TEST_REGEX_SEARCH("[^b-e]", extended, "b", match_default, make_array(-2, -2)); |
|---|
| 53 | TEST_REGEX_SEARCH("[^b-e]", extended, "e", match_default, make_array(-2, -2)); |
|---|
| 54 | TEST_REGEX_SEARCH("[^b-e]", extended, "f", match_default, make_array(0, 1, -2, -2)); |
|---|
| 55 | TEST_REGEX_SEARCH("a[1-3]c", extended, "a2c", match_default, make_array(0, 3, -2, -2)); |
|---|
| 56 | TEST_REGEX_SEARCH("a[-3]c", extended, "a-c", match_default, make_array(0, 3, -2, -2)); |
|---|
| 57 | TEST_REGEX_SEARCH("a[-3]c", extended, "a3c", match_default, make_array(0, 3, -2, -2)); |
|---|
| 58 | TEST_REGEX_SEARCH("a[^-3]c", extended, "a-c", match_default, make_array(-2, -2)); |
|---|
| 59 | TEST_REGEX_SEARCH("a[^-3]c", extended, "a3c", match_default, make_array(-2, -2)); |
|---|
| 60 | TEST_REGEX_SEARCH("a[^-3]c", extended, "axc", match_default, make_array(0, 3, -2, -2)); |
|---|
| 61 | TEST_INVALID_REGEX("a[3-1]c", extended & ~::boost::regex_constants::collate); |
|---|
| 62 | TEST_INVALID_REGEX("a[1-3-5]c", extended); |
|---|
| 63 | TEST_INVALID_REGEX("a[1-", extended); |
|---|
| 64 | TEST_INVALID_REGEX("a[\\9]", perl); |
|---|
| 65 | |
|---|
| 66 | // and some classes |
|---|
| 67 | TEST_REGEX_SEARCH("a[[:alpha:]]c", extended, "abc", match_default, make_array(0, 3, -2, -2)); |
|---|
| 68 | TEST_INVALID_REGEX("a[[:unknown:]]c", extended); |
|---|
| 69 | TEST_INVALID_REGEX("a[[", extended); |
|---|
| 70 | TEST_INVALID_REGEX("a[[:", extended); |
|---|
| 71 | TEST_INVALID_REGEX("a[[:a", extended); |
|---|
| 72 | TEST_INVALID_REGEX("a[[:alpha", extended); |
|---|
| 73 | TEST_INVALID_REGEX("a[[:alpha:", extended); |
|---|
| 74 | TEST_INVALID_REGEX("a[[:alpha:]", extended); |
|---|
| 75 | TEST_INVALID_REGEX("a[[:alpha:!", extended); |
|---|
| 76 | TEST_INVALID_REGEX("a[[:alpha,:]", extended); |
|---|
| 77 | TEST_INVALID_REGEX("a[[:]:]]b", extended); |
|---|
| 78 | TEST_INVALID_REGEX("a[[:-:]]b", extended); |
|---|
| 79 | TEST_INVALID_REGEX("a[[:alph:]]", extended); |
|---|
| 80 | TEST_INVALID_REGEX("a[[:alphabet:]]", extended); |
|---|
| 81 | TEST_REGEX_SEARCH("[[:alnum:]]+", extended, "-%@a0X_-", match_default, make_array(3, 6, -2, -2)); |
|---|
| 82 | TEST_REGEX_SEARCH("[[:alpha:]]+", extended, " -%@aX_0-", match_default, make_array(4, 6, -2, -2)); |
|---|
| 83 | TEST_REGEX_SEARCH("[[:blank:]]+", extended, "a \tb", match_default, make_array(1, 4, -2, -2)); |
|---|
| 84 | TEST_REGEX_SEARCH("[[:cntrl:]]+", extended, " a\n\tb", match_default, make_array(2, 4, -2, -2)); |
|---|
| 85 | TEST_REGEX_SEARCH("[[:digit:]]+", extended, "a019b", match_default, make_array(1, 4, -2, -2)); |
|---|
| 86 | TEST_REGEX_SEARCH("[[:graph:]]+", extended, " a%b ", match_default, make_array(1, 4, -2, -2)); |
|---|
| 87 | TEST_REGEX_SEARCH("[[:lower:]]+", extended, "AabC", match_default, make_array(1, 3, -2, -2)); |
|---|
| 88 | TEST_REGEX_SEARCH("[[:print:]]+", extended, "AabC", match_default, make_array(0, 4, -2, -2)); |
|---|
| 89 | TEST_REGEX_SEARCH("[[:punct:]]+", extended, " %-&\t", match_default, make_array(1, 4, -2, -2)); |
|---|
| 90 | TEST_REGEX_SEARCH("[[:space:]]+", extended, "a \n\t\rb", match_default, make_array(1, 5, -2, -2)); |
|---|
| 91 | TEST_REGEX_SEARCH("[[:upper:]]+", extended, "aBCd", match_default, make_array(1, 3, -2, -2)); |
|---|
| 92 | TEST_REGEX_SEARCH("[[:xdigit:]]+", extended, "p0f3Cx", match_default, make_array(1, 5, -2, -2)); |
|---|
| 93 | TEST_REGEX_SEARCH("[\\d]+", perl, "a019b", match_default, make_array(1, 4, -2, -2)); |
|---|
| 94 | |
|---|
| 95 | // |
|---|
| 96 | // escapes are supported in character classes if we have either |
|---|
| 97 | // perl or awk regular expressions: |
|---|
| 98 | // |
|---|
| 99 | TEST_REGEX_SEARCH("[\\n]", perl, "\n", match_default, make_array(0, 1, -2, -2)); |
|---|
| 100 | TEST_REGEX_SEARCH("[\\b]", perl, "\b", match_default, make_array(0, 1, -2, -2)); |
|---|
| 101 | TEST_REGEX_SEARCH("[\\n]", basic, "\n", match_default, make_array(-2, -2)); |
|---|
| 102 | TEST_REGEX_SEARCH("[\\n]", basic, "\\", match_default, make_array(0, 1, -2, -2)); |
|---|
| 103 | TEST_REGEX_SEARCH("[[:class:]", basic|no_char_classes, ":", match_default, make_array(0, 1, -2, -2)); |
|---|
| 104 | TEST_REGEX_SEARCH("[[:class:]", basic|no_char_classes, "[", match_default, make_array(0, 1, -2, -2)); |
|---|
| 105 | TEST_REGEX_SEARCH("[[:class:]", basic|no_char_classes, "c", match_default, make_array(0, 1, -2, -2)); |
|---|
| 106 | // |
|---|
| 107 | // test single character escapes: |
|---|
| 108 | // |
|---|
| 109 | TEST_REGEX_SEARCH("\\w", perl, "A", match_default, make_array(0, 1, -2, -2)); |
|---|
| 110 | TEST_REGEX_SEARCH("\\w", perl, "Z", match_default, make_array(0, 1, -2, -2)); |
|---|
| 111 | TEST_REGEX_SEARCH("\\w", perl, "a", match_default, make_array(0, 1, -2, -2)); |
|---|
| 112 | TEST_REGEX_SEARCH("\\w", perl, "z", match_default, make_array(0, 1, -2, -2)); |
|---|
| 113 | TEST_REGEX_SEARCH("\\w", perl, "_", match_default, make_array(0, 1, -2, -2)); |
|---|
| 114 | TEST_REGEX_SEARCH("\\w", perl, "}", match_default, make_array(-2, -2)); |
|---|
| 115 | TEST_REGEX_SEARCH("\\w", perl, "`", match_default, make_array(-2, -2)); |
|---|
| 116 | TEST_REGEX_SEARCH("\\w", perl, "[", match_default, make_array(-2, -2)); |
|---|
| 117 | TEST_REGEX_SEARCH("\\w", perl, "@", match_default, make_array(-2, -2)); |
|---|
| 118 | TEST_REGEX_SEARCH("\\W", perl, "a", match_default, make_array(-2, -2)); |
|---|
| 119 | TEST_REGEX_SEARCH("\\W", perl, "z", match_default, make_array(-2, -2)); |
|---|
| 120 | TEST_REGEX_SEARCH("\\W", perl, "A", match_default, make_array(-2, -2)); |
|---|
| 121 | TEST_REGEX_SEARCH("\\W", perl, "Z", match_default, make_array(-2, -2)); |
|---|
| 122 | TEST_REGEX_SEARCH("\\W", perl, "_", match_default, make_array(-2, -2)); |
|---|
| 123 | TEST_REGEX_SEARCH("\\W", perl, "}", match_default, make_array(0, 1, -2, -2)); |
|---|
| 124 | TEST_REGEX_SEARCH("\\W", perl, "`", match_default, make_array(0, 1, -2, -2)); |
|---|
| 125 | TEST_REGEX_SEARCH("\\W", perl, "[", match_default, make_array(0, 1, -2, -2)); |
|---|
| 126 | TEST_REGEX_SEARCH("\\W", perl, "@", match_default, make_array(0, 1, -2, -2)); |
|---|
| 127 | |
|---|
| 128 | TEST_REGEX_SEARCH("[[:lower:]]", perl|icase, "A", match_default, make_array(0, 1, -2, -2)); |
|---|
| 129 | TEST_REGEX_SEARCH("[[:upper:]]", perl|icase, "A", match_default, make_array(0, 1, -2, -2)); |
|---|
| 130 | TEST_REGEX_SEARCH("[[:alpha:]]", perl|icase, "A", match_default, make_array(0, 1, -2, -2)); |
|---|
| 131 | TEST_REGEX_SEARCH("[[:alnum:]]", perl|icase, "A", match_default, make_array(0, 1, -2, -2)); |
|---|
| 132 | TEST_REGEX_SEARCH("[[:lower:]]", perl|icase, "a", match_default, make_array(0, 1, -2, -2)); |
|---|
| 133 | TEST_REGEX_SEARCH("[[:upper:]]", perl|icase, "a", match_default, make_array(0, 1, -2, -2)); |
|---|
| 134 | TEST_REGEX_SEARCH("[[:alpha:]]", perl|icase, "a", match_default, make_array(0, 1, -2, -2)); |
|---|
| 135 | TEST_REGEX_SEARCH("[[:alnum:]]", perl|icase, "a", match_default, make_array(0, 1, -2, -2)); |
|---|
| 136 | TEST_REGEX_SEARCH("[[:lower:][:upper:]]", perl, "A", match_default, make_array(0, 1, -2, -2)); |
|---|
| 137 | TEST_REGEX_SEARCH("[[:lower:][:upper:]]", perl, "a", match_default, make_array(0, 1, -2, -2)); |
|---|
| 138 | TEST_REGEX_SEARCH("[[:lower:][:alpha:]]", perl, "A", match_default, make_array(0, 1, -2, -2)); |
|---|
| 139 | TEST_REGEX_SEARCH("[[:lower:][:alpha:]]", perl, "a", match_default, make_array(0, 1, -2, -2)); |
|---|
| 140 | } |
|---|
| 141 | |
|---|
| 142 | void test_sets2b(); |
|---|
| 143 | void test_sets2c(); |
|---|
| 144 | |
|---|
| 145 | void test_sets2() |
|---|
| 146 | { |
|---|
| 147 | using namespace boost::regex_constants; |
|---|
| 148 | // collating elements |
|---|
| 149 | TEST_REGEX_SEARCH("[[.zero.]]", perl, "0", match_default, make_array(0, 1, -2, -2)); |
|---|
| 150 | TEST_REGEX_SEARCH("[[.one.]]", perl, "1", match_default, make_array(0, 1, -2, -2)); |
|---|
| 151 | TEST_REGEX_SEARCH("[[.two.]]", perl, "2", match_default, make_array(0, 1, -2, -2)); |
|---|
| 152 | TEST_REGEX_SEARCH("[[.three.]]", perl, "3", match_default, make_array(0, 1, -2, -2)); |
|---|
| 153 | TEST_REGEX_SEARCH("[[.a.]]", perl, "bac", match_default, make_array(1, 2, -2, -2)); |
|---|
| 154 | TEST_REGEX_SEARCH("[[.\xf0.]]", perl, "b\xf0x", match_default, make_array(1, 2, -2, -2)); |
|---|
| 155 | TEST_REGEX_SEARCH("[[.right-curly-bracket.]]", perl, "}", match_default, make_array(0, 1, -2, -2)); |
|---|
| 156 | TEST_REGEX_SEARCH("[[.NUL.]]", perl, "\0", match_default, make_array(0, 1, -2, -2)); |
|---|
| 157 | TEST_REGEX_SEARCH("[[.NUL.][.ae.]]", perl, "\0", match_default, make_array(0, 1, -2, -2)); |
|---|
| 158 | TEST_REGEX_SEARCH("[[.NUL.]-a]", extended, "\0", match_default, make_array(0, 1, -2, -2)); |
|---|
| 159 | TEST_REGEX_SEARCH("[[.NUL.]-a]", perl, "\0", match_default, make_array(0, 1, -2, -2)); |
|---|
| 160 | TEST_REGEX_SEARCH("[[.NUL.]-a]", extended, "a", match_default, make_array(0, 1, -2, -2)); |
|---|
| 161 | TEST_REGEX_SEARCH("[[.NUL.]-a]", perl, "a", match_default, make_array(0, 1, -2, -2)); |
|---|
| 162 | TEST_REGEX_SEARCH("[[.NUL.]-[.NUL.]a]", extended, "a", match_default, make_array(0, 1, -2, -2)); |
|---|
| 163 | TEST_REGEX_SEARCH("[[.NUL.]-[.NUL.]a]", perl, "a", match_default, make_array(0, 1, -2, -2)); |
|---|
| 164 | TEST_INVALID_REGEX("[[..]]", perl); |
|---|
| 165 | TEST_INVALID_REGEX("[[.not-a-collating-element.]]", perl); |
|---|
| 166 | TEST_INVALID_REGEX("[[.", perl); |
|---|
| 167 | TEST_INVALID_REGEX("[[.N", perl); |
|---|
| 168 | TEST_INVALID_REGEX("[[.NUL", perl); |
|---|
| 169 | TEST_INVALID_REGEX("[[.NUL.", perl); |
|---|
| 170 | TEST_INVALID_REGEX("[[.NUL.]", perl); |
|---|
| 171 | TEST_INVALID_REGEX("[[:<:]z]", perl); |
|---|
| 172 | TEST_INVALID_REGEX("[a[:>:]]", perl); |
|---|
| 173 | TEST_REGEX_SEARCH("[[.A.]]", extended|icase, "A", match_default, make_array(0, 1, -2, -2)); |
|---|
| 174 | TEST_REGEX_SEARCH("[[.A.]]", extended|icase, "a", match_default, make_array(0, 1, -2, -2)); |
|---|
| 175 | TEST_REGEX_SEARCH("[[.A.]-b]+", extended|icase, "AaBb", match_default, make_array(0, 4, -2, -2)); |
|---|
| 176 | TEST_REGEX_SEARCH("[A-[.b.]]+", extended|icase, "AaBb", match_default, make_array(0, 4, -2, -2)); |
|---|
| 177 | TEST_REGEX_SEARCH("[[.a.]-B]+", extended|icase, "AaBb", match_default, make_array(0, 4, -2, -2)); |
|---|
| 178 | TEST_REGEX_SEARCH("[a-[.B.]]+", extended|icase, "AaBb", match_default, make_array(0, 4, -2, -2)); |
|---|
| 179 | TEST_REGEX_SEARCH("[\x61]", extended, "a", match_default, make_array(0, 1, -2, -2)); |
|---|
| 180 | TEST_REGEX_SEARCH("[\x61-c]+", extended, "abcd", match_default, make_array(0, 3, -2, -2)); |
|---|
| 181 | TEST_REGEX_SEARCH("[a-\x63]+", extended, "abcd", match_default, make_array(0, 3, -2, -2)); |
|---|
| 182 | TEST_REGEX_SEARCH("[[.a.]-c]+", extended, "abcd", match_default, make_array(0, 3, -2, -2)); |
|---|
| 183 | TEST_REGEX_SEARCH("[a-[.c.]]+", extended, "abcd", match_default, make_array(0, 3, -2, -2)); |
|---|
| 184 | TEST_INVALID_REGEX("[[:alpha:]-a]", extended); |
|---|
| 185 | TEST_INVALID_REGEX("[a-[:alpha:]]", extended); |
|---|
| 186 | TEST_REGEX_SEARCH("[[.ae.]]", basic, "ae", match_default, make_array(0, 2, -2, -2)); |
|---|
| 187 | TEST_REGEX_SEARCH("[[.ae.]]", basic, "aE", match_default, make_array(-2, -2)); |
|---|
| 188 | TEST_REGEX_SEARCH("[[.AE.]]", basic, "AE", match_default, make_array(0, 2, -2, -2)); |
|---|
| 189 | TEST_REGEX_SEARCH("[[.Ae.]]", basic, "Ae", match_default, make_array(0, 2, -2, -2)); |
|---|
| 190 | TEST_REGEX_SEARCH("[[.ae.]-b]", basic, "a", match_default, make_array(-2, -2)); |
|---|
| 191 | TEST_REGEX_SEARCH("[[.ae.]-b]", basic, "b", match_default, make_array(0, 1, -2, -2)); |
|---|
| 192 | TEST_REGEX_SEARCH("[[.ae.]-b]", basic, "ae", match_default, make_array(0, 2, -2, -2)); |
|---|
| 193 | TEST_REGEX_SEARCH("[a-[.ae.]]", basic, "a", match_default, make_array(0, 1, -2, -2)); |
|---|
| 194 | TEST_REGEX_SEARCH("[a-[.ae.]]", basic, "b", match_default, make_array(-2, -2)); |
|---|
| 195 | TEST_REGEX_SEARCH("[a-[.ae.]]", basic, "ae", match_default, make_array(0, 2, -2, -2)); |
|---|
| 196 | TEST_REGEX_SEARCH("[[.ae.]]", basic|icase, "AE", match_default, make_array(0, 2, -2, -2)); |
|---|
| 197 | TEST_REGEX_SEARCH("[[.ae.]]", basic|icase, "Ae", match_default, make_array(0, 2, -2, -2)); |
|---|
| 198 | TEST_REGEX_SEARCH("[[.AE.]]", basic|icase, "Ae", match_default, make_array(0, 2, -2, -2)); |
|---|
| 199 | TEST_REGEX_SEARCH("[[.Ae.]]", basic|icase, "aE", match_default, make_array(0, 2, -2, -2)); |
|---|
| 200 | TEST_REGEX_SEARCH("[[.AE.]-B]", basic|icase, "a", match_default, make_array(-2, -2)); |
|---|
| 201 | TEST_REGEX_SEARCH("[[.Ae.]-b]", basic|icase, "b", match_default, make_array(0, 1, -2, -2)); |
|---|
| 202 | TEST_REGEX_SEARCH("[[.Ae.]-b]", basic|icase, "B", match_default, make_array(0, 1, -2, -2)); |
|---|
| 203 | TEST_REGEX_SEARCH("[[.ae.]-b]", basic|icase, "AE", match_default, make_array(0, 2, -2, -2)); |
|---|
| 204 | TEST_REGEX_SEARCH("[[.ae.]]", perl, "ae", match_default, make_array(0, 2, -2, -2)); |
|---|
| 205 | TEST_REGEX_SEARCH("[[.ae.]]", perl, "aE", match_default, make_array(-2, -2)); |
|---|
| 206 | TEST_REGEX_SEARCH("[[.AE.]]", perl, "AE", match_default, make_array(0, 2, -2, -2)); |
|---|
| 207 | TEST_REGEX_SEARCH("[[.Ae.]]", perl, "Ae", match_default, make_array(0, 2, -2, -2)); |
|---|
| 208 | TEST_REGEX_SEARCH("[[.ae.]-b]", perl, "a", match_default, make_array(-2, -2)); |
|---|
| 209 | TEST_REGEX_SEARCH("[[.ae.]-b]", perl, "b", match_default, make_array(0, 1, -2, -2)); |
|---|
| 210 | TEST_REGEX_SEARCH("[[.ae.]-b]", perl, "ae", match_default, make_array(0, 2, -2, -2)); |
|---|
| 211 | TEST_REGEX_SEARCH("[a-[.ae.]]", perl, "a", match_default, make_array(0, 1, -2, -2)); |
|---|
| 212 | TEST_REGEX_SEARCH("[a-[.ae.]]", perl, "b", match_default, make_array(-2, -2)); |
|---|
| 213 | TEST_REGEX_SEARCH("[a-[.ae.]]", perl, "ae", match_default, make_array(0, 2, -2, -2)); |
|---|
| 214 | TEST_REGEX_SEARCH("[[.ae.]]", perl|icase, "AE", match_default, make_array(0, 2, -2, -2)); |
|---|
| 215 | TEST_REGEX_SEARCH("[[.ae.]]", perl|icase, "Ae", match_default, make_array(0, 2, -2, -2)); |
|---|
| 216 | TEST_REGEX_SEARCH("[[.AE.]]", perl|icase, "Ae", match_default, make_array(0, 2, -2, -2)); |
|---|
| 217 | TEST_REGEX_SEARCH("[[.Ae.]]", perl|icase, "aE", match_default, make_array(0, 2, -2, -2)); |
|---|
| 218 | TEST_REGEX_SEARCH("[[.AE.]-B]", perl|icase, "a", match_default, make_array(-2, -2)); |
|---|
| 219 | TEST_REGEX_SEARCH("[[.Ae.]-b]", perl|icase, "b", match_default, make_array(0, 1, -2, -2)); |
|---|
| 220 | TEST_REGEX_SEARCH("[[.Ae.]-b]", perl|icase, "B", match_default, make_array(0, 1, -2, -2)); |
|---|
| 221 | TEST_REGEX_SEARCH("[[.ae.]-b]", perl|icase, "AE", match_default, make_array(0, 2, -2, -2)); |
|---|
| 222 | TEST_REGEX_SEARCH("[[.ae.][:lower:]]", perl|icase, "AE", match_default, make_array(0, 2, -2, -2)); |
|---|
| 223 | TEST_REGEX_SEARCH("[[.ae.][:lower:]]", perl|icase, "A", match_default, make_array(0, 1, -2, -2)); |
|---|
| 224 | TEST_REGEX_SEARCH("[[.ae.][=a=]]+", perl, "zzaA", match_default, make_array(2, 4, -2, -2)); |
|---|
| 225 | TEST_INVALID_REGEX("[d-[.ae.]]", perl); |
|---|
| 226 | // |
|---|
| 227 | // try some equivalence classes: |
|---|
| 228 | // |
|---|
| 229 | TEST_REGEX_SEARCH("[[=a=]]", basic, "a", match_default, make_array(0, 1, -2, -2)); |
|---|
| 230 | TEST_REGEX_SEARCH("[[=a=]]", basic, "A", match_default, make_array(0, 1, -2, -2)); |
|---|
| 231 | TEST_REGEX_SEARCH("[[=ae=]]", basic, "ae", match_default, make_array(0, 2, -2, -2)); |
|---|
| 232 | TEST_REGEX_SEARCH("[[=right-curly-bracket=]]", basic, "}", match_default, make_array(0, 1, -2, -2)); |
|---|
| 233 | TEST_REGEX_SEARCH("[[=NUL=]]", basic, "\x0", match_default, make_array(0, 1, -2, -2)); |
|---|
| 234 | TEST_REGEX_SEARCH("[[=NUL=]]", perl, "\x0", match_default, make_array(0, 1, -2, -2)); |
|---|
| 235 | TEST_INVALID_REGEX("[[=", perl); |
|---|
| 236 | TEST_INVALID_REGEX("[[=a", perl); |
|---|
| 237 | TEST_INVALID_REGEX("[[=ae", perl); |
|---|
| 238 | TEST_INVALID_REGEX("[[=ae=", perl); |
|---|
| 239 | TEST_INVALID_REGEX("[[=ae=]", perl); |
|---|
| 240 | // |
|---|
| 241 | // now some perl style single character classes: |
|---|
| 242 | // |
|---|
| 243 | TEST_REGEX_SEARCH("\\l+", perl, "ABabcAB", match_default, make_array(2, 5, -2, -2)); |
|---|
| 244 | TEST_REGEX_SEARCH("[\\l]+", perl, "ABabcAB", match_default, make_array(2, 5, -2, -2)); |
|---|
| 245 | TEST_INVALID_REGEX("[\\l-a]", perl); |
|---|
| 246 | TEST_REGEX_SEARCH("[\\L]+", perl, "abABCab", match_default, make_array(2, 5, -2, -2)); |
|---|
| 247 | TEST_REGEX_SEARCH("[[:^lower:]]+", perl, "abABCab", match_default, make_array(2, 5, -2, -2)); |
|---|
| 248 | TEST_REGEX_SEARCH("\\L+", perl, "abABCab", match_default, make_array(2, 5, -2, -2)); |
|---|
| 249 | TEST_REGEX_SEARCH("\\u+", perl, "abABCab", match_default, make_array(2, 5, -2, -2)); |
|---|
| 250 | TEST_REGEX_SEARCH("[\\u]+", perl, "abABCab", match_default, make_array(2, 5, -2, -2)); |
|---|
| 251 | TEST_REGEX_SEARCH("[\\U]+", perl, "ABabcAB", match_default, make_array(2, 5, -2, -2)); |
|---|
| 252 | TEST_REGEX_SEARCH("[[:^upper:]]+", perl, "ABabcAB", match_default, make_array(2, 5, -2, -2)); |
|---|
| 253 | TEST_REGEX_SEARCH("\\U+", perl, "ABabcAB", match_default, make_array(2, 5, -2, -2)); |
|---|
| 254 | TEST_REGEX_SEARCH("\\d+", perl, "AB012AB", match_default, make_array(2, 5, -2, -2)); |
|---|
| 255 | TEST_REGEX_SEARCH("[\\d]+", perl, "AB012AB", match_default, make_array(2, 5, -2, -2)); |
|---|
| 256 | TEST_REGEX_SEARCH("[\\D]+", perl, "01abc01", match_default, make_array(2, 5, -2, -2)); |
|---|
| 257 | TEST_REGEX_SEARCH("[[:^digit:]]+", perl, "01abc01", match_default, make_array(2, 5, -2, -2)); |
|---|
| 258 | TEST_REGEX_SEARCH("\\D+", perl, "01abc01", match_default, make_array(2, 5, -2, -2)); |
|---|
| 259 | TEST_REGEX_SEARCH("\\s+", perl, "AB AB", match_default, make_array(2, 5, -2, -2)); |
|---|
| 260 | TEST_REGEX_SEARCH("[\\s]+", perl, "AB AB", match_default, make_array(2, 5, -2, -2)); |
|---|
| 261 | TEST_REGEX_SEARCH("[\\S]+", perl, " abc ", match_default, make_array(2, 5, -2, -2)); |
|---|
| 262 | TEST_REGEX_SEARCH("[[:^space:]]+", perl, " abc ", match_default, make_array(2, 5, -2, -2)); |
|---|
| 263 | TEST_REGEX_SEARCH("\\S+", perl, " abc ", match_default, make_array(2, 5, -2, -2)); |
|---|
| 264 | TEST_REGEX_SEARCH("\\s+", perl, "AB AB", match_default, make_array(2, 5, -2, -2)); |
|---|
| 265 | TEST_REGEX_SEARCH("[\\w]+", perl, "AB_ AB", match_default, make_array(0, 3, -2, 6, 8, -2, -2)); |
|---|
| 266 | TEST_REGEX_SEARCH("[\\W]+", perl, "AB_ AB", match_default, make_array(3, 6, -2, -2)); |
|---|
| 267 | TEST_REGEX_SEARCH("[[:^word:]]+", perl, "AB_ AB", match_default, make_array(3, 6, -2, -2)); |
|---|
| 268 | TEST_REGEX_SEARCH("\\W+", perl, "AB_ AB", match_default, make_array(3, 6, -2, -2)); |
|---|
| 269 | test_sets2c(); |
|---|
| 270 | } |
|---|
| 271 | |
|---|
| 272 | void test_sets2c() |
|---|
| 273 | { |
|---|
| 274 | using namespace boost::regex_constants; |
|---|
| 275 | // and some Perl style properties: |
|---|
| 276 | TEST_REGEX_SEARCH("\\pl+", perl, "ABabcAB", match_default, make_array(2, 5, -2, -2)); |
|---|
| 277 | TEST_REGEX_SEARCH("\\Pl+", perl, "abABCab", match_default, make_array(2, 5, -2, -2)); |
|---|
| 278 | TEST_REGEX_SEARCH("\\pu+", perl, "abABCab", match_default, make_array(2, 5, -2, -2)); |
|---|
| 279 | TEST_REGEX_SEARCH("\\Pu+", perl, "ABabcAB", match_default, make_array(2, 5, -2, -2)); |
|---|
| 280 | TEST_REGEX_SEARCH("\\pd+", perl, "AB012AB", match_default, make_array(2, 5, -2, -2)); |
|---|
| 281 | TEST_REGEX_SEARCH("\\PD+", perl, "01abc01", match_default, make_array(2, 5, -2, -2)); |
|---|
| 282 | TEST_REGEX_SEARCH("\\ps+", perl, "AB AB", match_default, make_array(2, 5, -2, -2)); |
|---|
| 283 | TEST_REGEX_SEARCH("\\PS+", perl, " abc ", match_default, make_array(2, 5, -2, -2)); |
|---|
| 284 | |
|---|
| 285 | TEST_REGEX_SEARCH("\\p{alnum}+", perl, "-%@a0X_-", match_default, make_array(3, 6, -2, -2)); |
|---|
| 286 | TEST_REGEX_SEARCH("\\p{alpha}+", perl, " -%@aX_0-", match_default, make_array(4, 6, -2, -2)); |
|---|
| 287 | TEST_REGEX_SEARCH("\\p{blank}+", perl, "a \tb", match_default, make_array(1, 4, -2, -2)); |
|---|
| 288 | TEST_REGEX_SEARCH("\\p{cntrl}+", perl, " a\n\tb", match_default, make_array(2, 4, -2, -2)); |
|---|
| 289 | TEST_REGEX_SEARCH("\\p{digit}+", perl, "a019b", match_default, make_array(1, 4, -2, -2)); |
|---|
| 290 | TEST_REGEX_SEARCH("\\p{graph}+", perl, " a%b ", match_default, make_array(1, 4, -2, -2)); |
|---|
| 291 | TEST_REGEX_SEARCH("\\p{lower}+", perl, "AabC", match_default, make_array(1, 3, -2, -2)); |
|---|
| 292 | TEST_REGEX_SEARCH("\\p{print}+", perl, "AabC", match_default, make_array(0, 4, -2, -2)); |
|---|
| 293 | TEST_REGEX_SEARCH("\\p{punct}+", perl, " %-&\t", match_default, make_array(1, 4, -2, -2)); |
|---|
| 294 | TEST_REGEX_SEARCH("\\p{space}+", perl, "a \n\t\rb", match_default, make_array(1, 5, -2, -2)); |
|---|
| 295 | TEST_REGEX_SEARCH("\\p{upper}+", perl, "aBCd", match_default, make_array(1, 3, -2, -2)); |
|---|
| 296 | TEST_REGEX_SEARCH("\\p{xdigit}+", perl, "p0f3Cx", match_default, make_array(1, 5, -2, -2)); |
|---|
| 297 | TEST_REGEX_SEARCH("\\P{alnum}+", perl, "-%@a", match_default, make_array(0, 3, -2, -2)); |
|---|
| 298 | TEST_REGEX_SEARCH("\\P{alpha}+", perl, " -%@a", match_default, make_array(0, 4, -2, -2)); |
|---|
| 299 | TEST_REGEX_SEARCH("\\P{blank}+", perl, "a ", match_default, make_array(0, 1, -2, -2)); |
|---|
| 300 | TEST_REGEX_SEARCH("\\P{cntrl}+", perl, " a\n", match_default, make_array(0, 2, -2, -2)); |
|---|
| 301 | TEST_REGEX_SEARCH("\\P{digit}+", perl, "a0", match_default, make_array(0, 1, -2, -2)); |
|---|
| 302 | TEST_REGEX_SEARCH("\\P{graph}+", perl, " a", match_default, make_array(0, 1, -2, -2)); |
|---|
| 303 | TEST_REGEX_SEARCH("\\P{lower}+", perl, "Aa", match_default, make_array(0, 1, -2, -2)); |
|---|
| 304 | TEST_REGEX_SEARCH("\\P{print}+", perl, "Absc", match_default, make_array(-2, -2)); |
|---|
| 305 | TEST_REGEX_SEARCH("\\P{punct}+", perl, " %", match_default, make_array(0, 1, -2, -2)); |
|---|
| 306 | TEST_REGEX_SEARCH("\\P{space}+", perl, "a ", match_default, make_array(0, 1, -2, -2)); |
|---|
| 307 | TEST_REGEX_SEARCH("\\P{upper}+", perl, "aB", match_default, make_array(0, 1, -2, -2)); |
|---|
| 308 | TEST_REGEX_SEARCH("\\P{xdigit}+", perl, "pf", match_default, make_array(0, 1, -2, -2)); |
|---|
| 309 | |
|---|
| 310 | TEST_INVALID_REGEX("\\p{invalid class}", perl); |
|---|
| 311 | TEST_INVALID_REGEX("\\p{upper", perl); |
|---|
| 312 | TEST_INVALID_REGEX("\\p{", perl); |
|---|
| 313 | TEST_INVALID_REGEX("\\p", perl); |
|---|
| 314 | TEST_INVALID_REGEX("\\P{invalid class}", perl); |
|---|
| 315 | TEST_INVALID_REGEX("\\P{upper", perl); |
|---|
| 316 | TEST_INVALID_REGEX("\\P{", perl); |
|---|
| 317 | TEST_INVALID_REGEX("\\P", perl); |
|---|
| 318 | |
|---|
| 319 | // try named characters: |
|---|
| 320 | TEST_REGEX_SEARCH("\\N{zero}", perl, "0", match_default, make_array(0, 1, -2, -2)); |
|---|
| 321 | TEST_REGEX_SEARCH("\\N{one}", perl, "1", match_default, make_array(0, 1, -2, -2)); |
|---|
| 322 | TEST_REGEX_SEARCH("\\N{two}", perl, "2", match_default, make_array(0, 1, -2, -2)); |
|---|
| 323 | TEST_REGEX_SEARCH("\\N{three}", perl, "3", match_default, make_array(0, 1, -2, -2)); |
|---|
| 324 | TEST_REGEX_SEARCH("\\N{a}", perl, "bac", match_default, make_array(1, 2, -2, -2)); |
|---|
| 325 | TEST_REGEX_SEARCH("\\N{\xf0}", perl, "b\xf0x", match_default, make_array(1, 2, -2, -2)); |
|---|
| 326 | TEST_REGEX_SEARCH("\\N{right-curly-bracket}", perl, "}", match_default, make_array(0, 1, -2, -2)); |
|---|
| 327 | TEST_REGEX_SEARCH("\\N{NUL}", perl, "\0", match_default, make_array(0, 1, -2, -2)); |
|---|
| 328 | TEST_REGEX_SEARCH("[\\N{zero}-\\N{nine}]+", perl, " 0123456789 ", match_default, make_array(1, 11, -2, -2)); |
|---|
| 329 | |
|---|
| 330 | TEST_INVALID_REGEX("\\N", perl); |
|---|
| 331 | TEST_INVALID_REGEX("\\N{", perl); |
|---|
| 332 | TEST_INVALID_REGEX("\\N{}", perl); |
|---|
| 333 | TEST_INVALID_REGEX("\\N{invalid-name}", perl); |
|---|
| 334 | TEST_INVALID_REGEX("\\N{zero", perl); |
|---|
| 335 | test_sets2b(); |
|---|
| 336 | } |
|---|
| 337 | |
|---|
| 338 | void test_sets2b() |
|---|
| 339 | { |
|---|
| 340 | using namespace boost::regex_constants; |
|---|
| 341 | |
|---|
| 342 | // and repeat with POSIX-extended syntax: |
|---|
| 343 | TEST_REGEX_SEARCH("\\pl+", extended, "ABabcAB", match_default, make_array(2, 5, -2, -2)); |
|---|
| 344 | TEST_REGEX_SEARCH("\\Pl+", extended, "abABCab", match_default, make_array(2, 5, -2, -2)); |
|---|
| 345 | TEST_REGEX_SEARCH("\\pu+", extended, "abABCab", match_default, make_array(2, 5, -2, -2)); |
|---|
| 346 | TEST_REGEX_SEARCH("\\Pu+", extended, "ABabcAB", match_default, make_array(2, 5, -2, -2)); |
|---|
| 347 | TEST_REGEX_SEARCH("\\pd+", extended, "AB012AB", match_default, make_array(2, 5, -2, -2)); |
|---|
| 348 | TEST_REGEX_SEARCH("\\PD+", extended, "01abc01", match_default, make_array(2, 5, -2, -2)); |
|---|
| 349 | TEST_REGEX_SEARCH("\\ps+", extended, "AB AB", match_default, make_array(2, 5, -2, -2)); |
|---|
| 350 | TEST_REGEX_SEARCH("\\PS+", extended, " abc ", match_default, make_array(2, 5, -2, -2)); |
|---|
| 351 | |
|---|
| 352 | TEST_REGEX_SEARCH("\\p{alnum}+", extended, "-%@a0X_-", match_default, make_array(3, 6, -2, -2)); |
|---|
| 353 | TEST_REGEX_SEARCH("\\p{alpha}+", extended, " -%@aX_0-", match_default, make_array(4, 6, -2, -2)); |
|---|
| 354 | TEST_REGEX_SEARCH("\\p{blank}+", extended, "a \tb", match_default, make_array(1, 4, -2, -2)); |
|---|
| 355 | TEST_REGEX_SEARCH("\\p{cntrl}+", extended, " a\n\tb", match_default, make_array(2, 4, -2, -2)); |
|---|
| 356 | TEST_REGEX_SEARCH("\\p{digit}+", extended, "a019b", match_default, make_array(1, 4, -2, -2)); |
|---|
| 357 | TEST_REGEX_SEARCH("\\p{graph}+", extended, " a%b ", match_default, make_array(1, 4, -2, -2)); |
|---|
| 358 | TEST_REGEX_SEARCH("\\p{lower}+", extended, "AabC", match_default, make_array(1, 3, -2, -2)); |
|---|
| 359 | TEST_REGEX_SEARCH("\\p{print}+", extended, "AabC", match_default, make_array(0, 4, -2, -2)); |
|---|
| 360 | TEST_REGEX_SEARCH("\\p{punct}+", extended, " %-&\t", match_default, make_array(1, 4, -2, -2)); |
|---|
| 361 | TEST_REGEX_SEARCH("\\p{space}+", extended, "a \n\t\rb", match_default, make_array(1, 5, -2, -2)); |
|---|
| 362 | TEST_REGEX_SEARCH("\\p{upper}+", extended, "aBCd", match_default, make_array(1, 3, -2, -2)); |
|---|
| 363 | TEST_REGEX_SEARCH("\\p{xdigit}+", extended, "p0f3Cx", match_default, make_array(1, 5, -2, -2)); |
|---|
| 364 | TEST_REGEX_SEARCH("\\P{alnum}+", extended, "-%@a", match_default, make_array(0, 3, -2, -2)); |
|---|
| 365 | TEST_REGEX_SEARCH("\\P{alpha}+", extended, " -%@a", match_default, make_array(0, 4, -2, -2)); |
|---|
| 366 | TEST_REGEX_SEARCH("\\P{blank}+", extended, "a ", match_default, make_array(0, 1, -2, -2)); |
|---|
| 367 | TEST_REGEX_SEARCH("\\P{cntrl}+", extended, " a\n", match_default, make_array(0, 2, -2, -2)); |
|---|
| 368 | TEST_REGEX_SEARCH("\\P{digit}+", extended, "a0", match_default, make_array(0, 1, -2, -2)); |
|---|
| 369 | TEST_REGEX_SEARCH("\\P{graph}+", extended, " a", match_default, make_array(0, 1, -2, -2)); |
|---|
| 370 | TEST_REGEX_SEARCH("\\P{lower}+", extended, "Aa", match_default, make_array(0, 1, -2, -2)); |
|---|
| 371 | TEST_REGEX_SEARCH("\\P{print}+", extended, "Absc", match_default, make_array(-2, -2)); |
|---|
| 372 | TEST_REGEX_SEARCH("\\P{punct}+", extended, " %", match_default, make_array(0, 1, -2, -2)); |
|---|
| 373 | TEST_REGEX_SEARCH("\\P{space}+", extended, "a ", match_default, make_array(0, 1, -2, -2)); |
|---|
| 374 | TEST_REGEX_SEARCH("\\P{upper}+", extended, "aB", match_default, make_array(0, 1, -2, -2)); |
|---|
| 375 | TEST_REGEX_SEARCH("\\P{xdigit}+", extended, "pf", match_default, make_array(0, 1, -2, -2)); |
|---|
| 376 | |
|---|
| 377 | TEST_INVALID_REGEX("\\p{invalid class}", extended); |
|---|
| 378 | TEST_INVALID_REGEX("\\p{upper", extended); |
|---|
| 379 | TEST_INVALID_REGEX("\\p{", extended); |
|---|
| 380 | TEST_INVALID_REGEX("\\p", extended); |
|---|
| 381 | TEST_INVALID_REGEX("\\P{invalid class}", extended); |
|---|
| 382 | TEST_INVALID_REGEX("\\P{upper", extended); |
|---|
| 383 | TEST_INVALID_REGEX("\\P{", extended); |
|---|
| 384 | TEST_INVALID_REGEX("\\P", extended); |
|---|
| 385 | |
|---|
| 386 | // try named characters: |
|---|
| 387 | TEST_REGEX_SEARCH("\\N{zero}", extended, "0", match_default, make_array(0, 1, -2, -2)); |
|---|
| 388 | TEST_REGEX_SEARCH("\\N{one}", extended, "1", match_default, make_array(0, 1, -2, -2)); |
|---|
| 389 | TEST_REGEX_SEARCH("\\N{two}", extended, "2", match_default, make_array(0, 1, -2, -2)); |
|---|
| 390 | TEST_REGEX_SEARCH("\\N{three}", extended, "3", match_default, make_array(0, 1, -2, -2)); |
|---|
| 391 | TEST_REGEX_SEARCH("\\N{a}", extended, "bac", match_default, make_array(1, 2, -2, -2)); |
|---|
| 392 | TEST_REGEX_SEARCH("\\N{\xf0}", extended, "b\xf0x", match_default, make_array(1, 2, -2, -2)); |
|---|
| 393 | TEST_REGEX_SEARCH("\\N{right-curly-bracket}", extended, "}", match_default, make_array(0, 1, -2, -2)); |
|---|
| 394 | TEST_REGEX_SEARCH("\\N{NUL}", extended, "\0", match_default, make_array(0, 1, -2, -2)); |
|---|
| 395 | |
|---|
| 396 | TEST_INVALID_REGEX("\\N", extended); |
|---|
| 397 | TEST_INVALID_REGEX("\\N{", extended); |
|---|
| 398 | TEST_INVALID_REGEX("\\N{}", extended); |
|---|
| 399 | TEST_INVALID_REGEX("\\N{invalid-name}", extended); |
|---|
| 400 | TEST_INVALID_REGEX("\\N{zero", extended); |
|---|
| 401 | } |
|---|
| 402 | |
|---|