summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug593663-regexp.js
blob: 012a7fb4cd7287bf725318c48964139e0e8aa944 (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
/* 
 * Ensure that flat matches with metachars in them don't have their metachars
 * interpreted as special.
 */

function isPatternSyntaxError(pattern) {
    try {
        new RegExp(pattern);
        return false;
    } catch (e) {
        if (!(e instanceof SyntaxError))
            throw e;
        return true;
    }
}

// Bug example.
assertEq("1+2".replace("1+2", "$&+3"), "1+2+3");
assertEq("1112".replace("1+2", ""), "1112");

// ^
assertEq("leading text^my hat".replace("^my hat", ""), "leading text");
assertEq("my hat".replace("^my hat", ""), "my hat");

// $
assertEq("leading text$my money".replace("leading text$", ""), "my money");
assertEq("leading text".replace("leading text$", ""), "leading text");

// \
var BSL = '\\';
assertEq(("dir C:" + BSL + "Windoze").replace("C:" + BSL, ""),
         "dir Windoze");
assertEq(isPatternSyntaxError("C:" + BSL), true);

// .
assertEq("This is a sentence. It has words.".replace(".", "!"),
         "This is a sentence! It has words.");
assertEq("This is an unterminated sentence".replace(".", ""),
         "This is an unterminated sentence");

// *
assertEq("Video killed the radio *".replace(" *", ""), "Video killed the radio");
assertEq("aaa".replace("a*", ""), "aaa");

// +
assertEq("On the + side".replace(" +", ""), "On the side");
assertEq("1111111111111".replace("1+", ""), "1111111111111");

// \+
assertEq(("Inverse cone head: " + BSL + "++/").replace(BSL + "+", ""),
         "Inverse cone head: +/");
assertEq((BSL + BSL + BSL).replace(BSL + "+", ""),
         BSL + BSL + BSL);

// \\+
assertEq((BSL + BSL + "+").replace(BSL + BSL + "+", ""), "");
assertEq((BSL + BSL + BSL).replace(BSL + BSL + "+", ""), (BSL + BSL + BSL));

// \\\
assertEq((BSL + BSL + BSL + BSL).replace(BSL + BSL + BSL, ""), BSL);
assertEq(isPatternSyntaxError(BSL + BSL + BSL), true);

// \\\\
assertEq((BSL + BSL + BSL + BSL).replace(BSL + BSL + BSL + BSL, "", "i"), "");
assertEq((BSL + BSL).replace(BSL + BSL + BSL + BSL, ""), BSL + BSL);


// ?
assertEq("Pressing question?".replace("?", "."), "Pressing question.");
assertEq("a".replace("a?", ""), "a");

// (
assertEq("(a".replace("(", ""), "a");

// )
assertEq("a)".replace(")", ""), "a");

// ( and )
assertEq("(foo)".replace("(foo)", ""), "");
assertEq("a".replace("(a)", ""), "a");

// [
assertEq("[a".replace("[", ""), "a");

// ]
assertEq("a]".replace("]", ""), "a");

// [ and ]
assertEq("a".replace("[a-z]", ""), "a");
assertEq("You would write your regexp as [a-z]".replace("[a-z]", ""),
         "You would write your regexp as ");

// {
assertEq("Numbers may be specified in the interval {1,100}".replace("{1,", ""),
         "Numbers may be specified in the interval 100}");

// }
assertEq("Numbers may be specified in the interval {1,100}".replace(",100}", ""),
         "Numbers may be specified in the interval {1");

// { and }
assertEq("Numbers may be specified in the interval {1,100}".replace(" {1,100}", ""),
         "Numbers may be specified in the interval");
assertEq("aaa".replace("a{1,10}", ""), "aaa");

// |
assertEq("Mr. Gorbachev|Tear down this wall!".replace("|Tear down this wall!", ""),
         "Mr. Gorbachev");
assertEq("foobar".replace("foo|bar", ""), "foobar");

print("PASS");