]>
git.saurik.com Git - apple/javascriptcore.git/blob - tests/mozilla/js1_2/regexp/hexadecimal.js
1 /* The contents of this file are subject to the Netscape Public
2 * License Version 1.1 (the "License"); you may not use this file
3 * except in compliance with the License. You may obtain a copy of
4 * the License at http://www.mozilla.org/NPL/
6 * Software distributed under the License is distributed on an "AS
7 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
8 * implied. See the License for the specific language governing
9 * rights and limitations under the License.
11 * The Original Code is Mozilla Communicator client code, released March
14 * The Initial Developer of the Original Code is Netscape Communications
15 * Corporation. Portions created by Netscape are
16 * Copyright (C) 1998 Netscape Communications Corporation. All
23 Filename: hexadecimal.js
24 Description: 'Tests regular expressions containing \<number> '
30 var SECTION
= 'As described in Netscape doc "Whats new in JavaScript 1.2"';
31 var VERSION
= 'no version';
33 var TITLE
= 'RegExp: \\x# (hex) ';
35 writeHeaderToLog('Executing script: hexadecimal.js');
36 writeHeaderToLog( SECTION
+ " "+ TITLE
);
39 var testcases
= new Array();
42 var testPattern
= '\\x41\\x42\\x43\\x44\\x45\\x46\\x47\\x48\\x49\\x4A\\x4B\\x4C\\x4D\\x4E\\x4F\\x50\\x51\\x52\\x53\\x54\\x55\\x56\\x57\\x58\\x59\\x5A';
44 var testString
= "12345ABCDEFGHIJKLMNOPQRSTUVWXYZ67890";
46 testcases
[count
++] = new TestCase ( SECTION
,
47 "'" + testString
+ "'.match(new RegExp('" + testPattern
+ "'))",
48 String(["ABCDEFGHIJKLMNOPQRSTUVWXYZ"]), String(testString
.match(new RegExp(testPattern
))));
50 testPattern
= '\\x61\\x62\\x63\\x64\\x65\\x66\\x67\\x68\\x69\\x6A\\x6B\\x6C\\x6D\\x6E\\x6F\\x70\\x71\\x72\\x73\\x74\\x75\\x76\\x77\\x78\\x79\\x7A';
52 testString
= "12345AabcdefghijklmnopqrstuvwxyzZ67890";
54 testcases
[count
++] = new TestCase ( SECTION
,
55 "'" + testString
+ "'.match(new RegExp('" + testPattern
+ "'))",
56 String(["abcdefghijklmnopqrstuvwxyz"]), String(testString
.match(new RegExp(testPattern
))));
58 testPattern
= '\\x20\\x21\\x22\\x23\\x24\\x25\\x26\\x27\\x28\\x29\\x2A\\x2B\\x2C\\x2D\\x2E\\x2F\\x30\\x31\\x32\\x33';
60 testString
= "abc !\"#$%&'()*+,-./0123ZBC";
62 testcases
[count
++] = new TestCase ( SECTION
,
63 "'" + testString
+ "'.match(new RegExp('" + testPattern
+ "'))",
64 String([" !\"#$%&'()*+,-./0123"]), String(testString
.match(new RegExp(testPattern
))));
66 testPattern
= '\\x34\\x35\\x36\\x37\\x38\\x39\\x3A\\x3B\\x3C\\x3D\\x3E\\x3F\\x40';
68 testString
= "123456789:;<=>?@ABC";
70 testcases
[count
++] = new TestCase ( SECTION
,
71 "'" + testString
+ "'.match(new RegExp('" + testPattern
+ "'))",
72 String(["456789:;<=>?@"]), String(testString
.match(new RegExp(testPattern
))));
74 testPattern
= '\\x7B\\x7C\\x7D\\x7E';
76 testString
= "1234{|}~ABC";
78 testcases
[count
++] = new TestCase ( SECTION
,
79 "'" + testString
+ "'.match(new RegExp('" + testPattern
+ "'))",
80 String(["{|}~"]), String(testString
.match(new RegExp(testPattern
))));
82 testcases
[count
++] = new TestCase ( SECTION
,
83 "'canthisbeFOUND'.match(new RegExp('[A-\\x5A]+'))",
84 String(["FOUND"]), String('canthisbeFOUND'.match(new RegExp('[A-\\x5A]+'))));
86 testcases
[count
++] = new TestCase ( SECTION
,
87 "'canthisbeFOUND'.match(new RegExp('[\\x61-\\x7A]+'))",
88 String(["canthisbe"]), String('canthisbeFOUND'.match(new RegExp('[\\x61-\\x7A]+'))));
90 testcases
[count
++] = new TestCase ( SECTION
,
91 "'canthisbeFOUND'.match(/[\\x61-\\x7A]+/)",
92 String(["canthisbe"]), String('canthisbeFOUND'.match(/[\x61-\x7A]+/)));
96 for ( tc
=0; tc
< testcases
.length
; tc
++ ) {
97 testcases
[tc
].passed
= writeTestCaseResult(
100 testcases
[tc
].description
+" = "+
101 testcases
[tc
].actual
);
102 testcases
[tc
].reason
+= ( testcases
[tc
].passed
) ? "" : "wrong value ";
105 return ( testcases
);