summaryrefslogtreecommitdiff
path: root/t/re/regexp_unicode_prop.t
blob: 5c5a1d75b78da548e73a4296e68f8245447e11a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
#!./perl
#
# Tests that have to do with checking whether characters have (or not have)
# certain Unicode properties; belong (or not belong) to blocks, scripts, etc.
#

use strict;
use warnings;
use v5.16;
use utf8;

# To verify that messages containing the expansions work on UTF-8
my $utf8_comment;

my @warnings;
local $SIG {__WARN__} = sub {push @warnings, "@_"};

BEGIN {
    chdir 't' if -d 't';
    require './test.pl';
    skip_all_if_miniperl("no dynamic loading on miniperl, no File::Spec (used by charnames)");
}

sub run_tests;

sub get_str_name($) {
    my $char = shift;

    my ($str, $name);

    if ($char =~ /^\\/) {
        $str  = eval qq ["$char"];
        $name =      qq ["$char"];
    }
    elsif ($char =~ /^0x([0-9A-Fa-f]+)$/) {
        $str  =  chr hex $1;
        $name = "chr ($char)";
    }
    else {
        $str  =      $char;
        $name = qq ["$char"];
    }

    return ($str, $name);
}

#
# This is the data to test.
#
# This is a hash; keys are the property to test.
# Values are arrays containing characters to test. The characters can
# have the following formats:
#   '\N{CHARACTER NAME}'  -  Use character with that name
#   '\x{1234}'            -  Use character with that hex escape
#   '0x1234'              -  Use chr() to get that character
#   "a"                   -  Character to use
#
# If a character entry starts with ! the character does not belong to the class
#
# If the class is just single letter, we use both \pL and \p{L}
#

use charnames ':full';

my @CLASSES = (
    L                         => ["a", "A"],
    Ll                        => ["b", "!B"],
    Lu                        => ["!c", "C"],
    IsLl                      => ["d", "!D"],
    IsLu                      => ["!e", "E"],
    LC                        => ["f", "!1"],
   'L&'                       => ["g", "!2"],
   'Lowercase Letter'         => ["h", "!H"],

    Common                    => ["!i", "3"],
    Inherited                 => ["!j", '\x{300}'],

    InBasicLatin              => ['\N{LATIN CAPITAL LETTER A}'],
    InLatin1Supplement        => ['\N{LATIN CAPITAL LETTER A WITH GRAVE}'],
    InLatinExtendedA          => ['\N{LATIN CAPITAL LETTER A WITH MACRON}'],
    InLatinExtendedB          => ['\N{LATIN SMALL LETTER B WITH STROKE}'],
    InKatakana                => ['\N{KATAKANA LETTER SMALL A}'],
    IsLatin                   => ["0x100", "0x212b"],
    IsHebrew                  => ["0x5d0", "0xfb4f"],
    IsGreek                   => ["0x37a", "0x386", "!0x387", "0x388",
                                  "0x38a", "!0x38b", "0x38c"],
    HangulSyllables           => ['\x{AC00}'],
   'Script=Latin'             => ['\x{0100}'],
   'Block=LatinExtendedA'     => ['\x{0100}'],
   'Category=UppercaseLetter' => ['\x{0100}'],

    #
    # It's ok to repeat class names.
    #
    InLatin1Supplement        =>
                            ['!\N{U+7f}',  '\N{U+80}',  '\N{U+ff}', '!\x{100}'],
    InLatinExtendedA          =>
                            ['!\N{U+7f}', '!\N{U+80}', '!\N{U+ff}',  '\x{100}'],

    #
    # Properties are case-insensitive, and may have whitespace,
    # dashes and underscores.
    #
   'in-latin1_SUPPLEMENT'     => ['\N{U+80}',
                                  '\N{LATIN SMALL LETTER Y WITH DIAERESIS}'],
   '  ^  In Latin 1 Supplement  '
                              => ['!\N{U+80}', '\N{COFFIN}'],
   'latin-1   supplement'     => ['\N{U+80}', "0xDF"],

);

my @USER_DEFINED_PROPERTIES;
my @USER_CASELESS_PROPERTIES;
my @USER_ERROR_PROPERTIES;
my @DEFERRED;
my $overflow;
BEGIN {
    $utf8_comment = "#\N{U+30CD}";

    use Config;
    $overflow = $Config{uvsize} < 8 ? "80000000" : "80000000000000000";

    # We defined these at compile time, so that the subroutines that they
    # refer to aren't known, so that we can test properties not known until
    # runtime

    @USER_DEFINED_PROPERTIES = (
        #
        # User defined properties
        #
        InKana1                   => ['\x{3040}', '!\x{303F}'],
        InKana2                   => ['\x{3040}', '!\x{303F}'],
        InKana3                   => ['\x{3041}', '!\x{3040}'],
        InNotKana                 => ['\x{3040}', '!\x{3041}'],
        InConsonant               => ['d',        '!e'],
        IsSyriac1                 => ['\x{0712}', '!\x{072F}'],
        IsSyriac1KanaMark         => ['\x{309A}', '!\x{3090}'],
        IsSyriac1KanaMark         => ['\x{0730}', '!\x{0712}'],
        '# User-defined character properties may lack \n at the end',
        InGreekSmall              => ['\N{GREEK SMALL LETTER PI}',
                                        '\N{GREEK SMALL LETTER FINAL SIGMA}'],
        InGreekCapital            => ['\N{GREEK CAPITAL LETTER PI}', '!\x{03A2}'],
        Dash                      => ['-'],
        ASCII_Hex_Digit           => ['!-', 'A'],
        IsAsciiHexAndDash         => ['-', 'A'],
        InLatin1                  => ['\x{0100}', '!\x{00FF}'],
    );

    @USER_CASELESS_PROPERTIES = (
        #
        # User defined properties which differ depending on /i.  Second entry
        # is false normally, true under /i
        #
        'IsMyUpper'                => ["M", "!m" ],
        'pkg1::pkg2::IsMyLower'    => ["a", "!A" ],
    );

    @USER_ERROR_PROPERTIES = (
        'IsOverflow'    => qr/Code point too large in (?#
                             )"0\t$overflow$utf8_comment" in expansion of (?#
                             )main::IsOverflow/,
        'InRecursedA'   => qr/Infinite recursion in user-defined property (?#
                             )"main::InRecursedA" in expansion of (?#
                             )main::InRecursedC in expansion of (?#
                             )main::InRecursedB in expansion of (?#
                             )main::InRecursedA/,
        'IsRangeReversed' => qr/Illegal range in "200 100$utf8_comment" in (?#
                               )expansion of main::IsRangeReversed/,
        'IsNonHex'        => qr/Can't find Unicode property definition (?#
                               )"BEEF CAGED" in expansion of main::IsNonHex/,

        # Could have \n, hence /s
        'IsDeath'        => qr/Died.* in expansion of main::IsDeath/s,
    );

    # Now create a list of properties whose definitions won't be known at
    # runtime.  The qr// below thus will have forward references to them, and
    # when matched at runtime will not know what's in the property definition
    my @DEFERRABLE_USER_DEFINED_PROPERTIES;
    push @DEFERRABLE_USER_DEFINED_PROPERTIES, @USER_DEFINED_PROPERTIES;
    push @DEFERRABLE_USER_DEFINED_PROPERTIES, @USER_CASELESS_PROPERTIES;
    unshift @DEFERRABLE_USER_DEFINED_PROPERTIES, @USER_ERROR_PROPERTIES;
    for (my $i = 0; $i < @DEFERRABLE_USER_DEFINED_PROPERTIES; $i+=2) {
        my $property = $DEFERRABLE_USER_DEFINED_PROPERTIES[$i];
        if ($property =~ / ^ \# /x) {
            $i++;
            redo;
        }

        # Only do this for the properties in the list that are user-defined
        next if ($property !~ / ( ^ | :: ) I[ns] /x);

        push @DEFERRED, qr/\p{$property}/,
                        $DEFERRABLE_USER_DEFINED_PROPERTIES[$i+1];
    }
}

#
# From the short properties we populate POSIX-like classes.
#
my %SHORT_PROPERTIES = (
    'Ll'  => ['m', '\N{CYRILLIC SMALL LETTER A}'],
    'Lu'  => ['M', '\N{GREEK CAPITAL LETTER ALPHA}'],
    'Lo'  => ['\N{HIRAGANA LETTER SMALL A}'],
    # is also in other alphabetic
    'Mn'  => ['\N{HEBREW POINT RAFE}'],
    'Nd'  => ["0", '\N{ARABIC-INDIC DIGIT ZERO}'],
    'Pc'  => ["_"],
    'Po'  => ["!"],
    'Zs'  => [" "],
    'Cc'  => ['\x{00}'],
);

#
# Illegal properties
#
my @ILLEGAL_PROPERTIES =
    qw[q qrst f foo isfoo infoo ISfoo INfoo Is::foo In::foo];

my %d;

while (my ($class, $chars) = each %SHORT_PROPERTIES) {
    push @{$d {IsAlpha}} => map {$class =~ /^[LM]/   ? $_ : "!$_"} @$chars;
    push @{$d {IsAlnum}} => map {$class =~ /^[LMN]./ ? $_ : "!$_"} @$chars;
    push @{$d {IsASCII}} => map {length ($_) == 1 || $_ eq '\x{00}'
                                                     ? $_ : "!$_"} @$chars;
    push @{$d {IsCntrl}} => map {$class =~ /^C/      ? $_ : "!$_"} @$chars;
    push @{$d {IsBlank}} => map {$class =~ /^Z[lps]/ ? $_ : "!$_"} @$chars;
    push @{$d {IsDigit}} => map {$class =~ /^Nd$/    ? $_ : "!$_"} @$chars;
    push @{$d {IsGraph}} => map {$class =~ /^([LMNPS]|Co)/
                                                     ? $_ : "!$_"} @$chars;
    push @{$d {IsPrint}} => map {$class =~ /^([LMNPS]|Co|Zs)/
                                                     ? $_ : "!$_"} @$chars;
    push @{$d {IsLower}} => map {$class =~ /^Ll$/    ? $_ : "!$_"} @$chars;
    push @{$d {IsUpper}} => map {$class =~ /^L[ut]/  ? $_ : "!$_"} @$chars;
    push @{$d {IsPunct}} => map {$class =~ /^P/      ? $_ : "!$_"} @$chars;
    push @{$d {IsWord}}  => map {$class =~ /^[LMN]/ || $_ eq "_"
                                                     ? $_ : "!$_"} @$chars;
    push @{$d {IsSpace}} => map {$class =~ /^Z/ ||
                                 length ($_) == 1 && utf8::native_to_unicode(ord ($_)) >= 0x09
                                                  && utf8::native_to_unicode(ord ($_)) <= 0x0D
                                                     ? $_ : "!$_"} @$chars;
}

push @CLASSES => "# Short properties"        => %SHORT_PROPERTIES,
                 "# POSIX like properties"   => %d,
                 "# User defined properties" => @USER_DEFINED_PROPERTIES;


#
# Calculate the number of tests.
#
my $count = 0;
for (my $i = 0; $i < @CLASSES; $i += 2) {
    $i ++, redo if $CLASSES [$i] =~ /^\h*#\h*(.*)/;
    $count += 2 * (length $CLASSES [$i] == 1 ? 4 : 2) * @{$CLASSES [$i + 1]};
}
$count += 4 * @ILLEGAL_PROPERTIES;
$count += 4 * grep {length $_ == 1} @ILLEGAL_PROPERTIES;
$count += 8 * @USER_CASELESS_PROPERTIES;
$count += 1 * (@DEFERRED - @USER_ERROR_PROPERTIES) / 2;
$count += 1 * @USER_ERROR_PROPERTIES;
$count += 1;    # one bad apple
$count += 1;    # No warnings generated

plan(tests => $count);

run_tests unless caller ();

sub match {
    my ($char, $match, $nomatch, $caseless) = @_;
    $caseless = "" unless defined $caseless;
    $caseless = 'i' if $caseless;

    my ($str, $name) = get_str_name($char);

    undef $@;
    my $pat = "qr/$match/$caseless";
    my $match_pat = eval $pat;
    if (is($@, '', "$pat compiled correctly to a regexp: $@")) {
        like($str, $match_pat, "$name correctly matched");
    }

    undef $@;
    $pat = "qr/$nomatch/$caseless";
    my $nomatch_pat = eval $pat;
    if (is($@, '', "$pat compiled correctly to a regexp: $@")) {
        unlike($str, $nomatch_pat, "$name correctly did not match");
    }
}

sub run_tests {

    for (my $i = 0; $i < @DEFERRED; $i+=2) {
        if (ref $DEFERRED[$i+1] eq 'ARRAY') {
            my ($str, $name) = get_str_name($DEFERRED[$i+1][0]);
            like($str, $DEFERRED[$i],
                "$name correctly matched $DEFERRED[$i] (defn. not known until runtime)");
        }
        else {  # Single entry rhs indicates a property that is an error
            undef $@;

            # Using block eval causes the pattern to not be recompiled, so it
            # retains its deferred status until this is executed.
            eval { 'A' =~ $DEFERRED[$i] };
            like($@, $DEFERRED[$i+1],
                                "$DEFERRED[$i] gave correct failure message (defn. not known until runtime)");
        }
    }

    while (@CLASSES) {
        my $class = shift @CLASSES;
        if ($class =~ /^\h*#\h*(.*)/) {
            print "# $1\n";
            next;
        }
        last unless @CLASSES;
        my $chars   = shift @CLASSES;
        my @in      =                       grep {!/^!./} @$chars;
        my @out     = map {s/^!(?=.)//; $_} grep { /^!./} @$chars;
        my $in_pat  = eval qq ['\\p{$class}'];
        my $out_pat = eval qq ['\\P{$class}'];

        match $_, $in_pat,  $out_pat for @in;
        match $_, $out_pat, $in_pat  for @out;

        if (1 == length $class) {   # Repeat without braces if name length 1
            my $in_pat  = eval qq ['\\p$class'];
            my $out_pat = eval qq ['\\P$class'];

            match $_, $in_pat,  $out_pat for @in;
            match $_, $out_pat, $in_pat  for @out;
        }
    }


    print "# Illegal properties\n";
    foreach my $p (@ILLEGAL_PROPERTIES) {
        my $pat;
        if ($p =~ /::/) {
            $pat = qr /^Illegal user-defined property name/;
        }
        else {
            $pat = qr /^Can't find Unicode property definition/;
        }

        undef $@;
        my $r = eval "'a' =~ /\\p{$p}/; 1";
        is($r, undef, "Unknown Unicode property \\p{$p}");
        like($@, $pat, "Unknown Unicode property \\p{$p}");
        undef $@;
        my $s = eval "'a' =~ /\\P{$p}/; 1";
        is($s, undef, "Unknown Unicode property \\p{$p}");
        like($@, $pat, "Unknown Unicode property \\p{$p}");
        if (length $p == 1) {
            undef $@;
            my $r = eval "'a' =~ /\\p$p/; 1";
            is($r, undef, "Unknown Unicode property \\p$p");
            like($@, $pat, "Unknown Unicode property \\p$p");
            undef $@;
            my $s = eval "'a' =~ /\\P$p/; 1";
            is($r, undef, "Unknown Unicode property \\P$p");
            like($@, $pat, "Unknown Unicode property \\P$p");
        }
    }

    print "# User-defined properties with /i differences\n";
    while (my $class = shift @USER_CASELESS_PROPERTIES) {
        my $chars_ref = shift @USER_CASELESS_PROPERTIES;
        my @in      =                       grep {!/^!./} @$chars_ref;
        my @out     = map {s/^!(?=.)//; $_} grep { /^!./} @$chars_ref;
        my $in_pat  = eval qq ['\\p{$class}'];
        my $out_pat = eval qq ['\\P{$class}'];

        # Verify that adding /i does change the out set to match.
        match $_, $in_pat,  $out_pat, 'i' for @out;

        # Verify that adding /i doesn't change the in set.
        match $_, $in_pat,  $out_pat, 'i' for @in;

        # Verify works as regularly for not /i
        match $_, $in_pat,  $out_pat for @in;
        match $_, $out_pat, $in_pat  for @out;
    }

    print "# User-defined properties with errors in their definition\n";
    while (my $error_property = shift @USER_ERROR_PROPERTIES) {
        my $error_re = shift @USER_ERROR_PROPERTIES;

        undef $@;
        eval { 'A' =~ /\p{$error_property}/; };
        like($@, $error_re, "$error_property gave correct failure message");
    }
}


#
# User defined properties
#

sub InKana1 {<<'--'}
3040    309F            # A comment; next line has trailing spaces
30A0    30FF    
--

sub InKana2 {<<'--'}
+utf8::InHiragana
+utf8::InKatakana
--

sub InKana3 {<<'--'}
# First line comment
+utf8::InHiragana
# Full line comment
+utf8::InKatakana
-utf8::IsCn
--

sub InNotKana {<<'--'}
!utf8::InHiragana       # A comment; next line has trailing spaces
-utf8::InKatakana   
+utf8::IsCn
# Final line comment
--

sub InConsonant {

    my $return = "+utf8::Lowercase\n&utf8::ASCII\n";
    $return .= sprintf("-%X\n", ord "a");
    $return .= sprintf("-%X\n", ord "e");
    $return .= sprintf("-%X\n", ord "i");
    $return .= sprintf("-%X\n", ord "o");
    $return .= sprintf("-%X\n", ord "u");
    return $return;
}

sub IsSyriac1 {<<'--'}
0712    072C
0730    074A
--

sub InRecursedA {
    return "+main::InRecursedB\n";
}

sub InRecursedB {
    return "+main::InRecursedC\n";
}

sub InRecursedC {
    return "+main::InRecursedA\n";
}

sub InGreekSmall   {return "03B1\t03C9"}
sub InGreekCapital {return "0391\t03A9\n-03A2"}

sub IsAsciiHexAndDash {<<'--'}
+utf8::ASCII_Hex_Digit
+utf8::Dash
--

sub InLatin1 {
    return "0100\t10FFFF";
}

sub IsMyUpper {
    use feature 'state';

    state $cased_count = 0;
    state $caseless_count = 0;
    my $ret= "+utf8::";

    my $caseless = shift;
    if($caseless) {
        die "Called twice" if $caseless_count;
        $caseless_count++;
        $ret .= 'Alphabetic'
    }
    else {
        die "Called twice" if $cased_count;
        $cased_count++;
        $ret .= 'Uppercase';
    }

    return $ret . "\n&utf8::ASCII";
}

sub pkg1::pkg2::IsMyLower {
    my $caseless = shift;
    return "+utf8::"
        . (($caseless)
            ? 'Alphabetic'
            : 'Lowercase')
        . "\n&utf8::ASCII";
}

sub IsRangeReversed {
    return "200 100$utf8_comment";
}

sub IsNonHex {
    return "BEEF CAGED$utf8_comment";
}

sub IsDeath {
    die;
}

# Verify that can use user-defined properties inside another one
sub IsSyriac1KanaMark {<<'--'}
+main::IsSyriac1
+main::InKana3
&utf8::IsMark
--

# fake user-defined properties; these subs shouldn't be called, because
# their names don't start with In or Is

sub f       { die }
sub foo     { die }
sub isfoo   { die }
sub infoo   { die }
sub ISfoo   { die }
sub INfoo   { die }
sub Is::foo { die }
sub In::foo { die }

sub IsOverflow {
    return "0\t$overflow$utf8_comment";
}

fresh_perl_like(<<'EOP', qr/Can't find Unicode property definition "F000\\tF010" in expansion of InOneBadApple/, {}, "Just one component bad");
# Extra backslash converts tab to backslash-t
sub InOneBadApple { return "0100\t0110\n10000\t10010\nF000\\tF010\n0400\t0410" }
qr/\p{InOneBadApple}/;
EOP

if (! is(@warnings, 0, "No warnings were generated")) {
    diag join "\n", @warnings, "\n";
}

1;
__END__