]>
git.saurik.com Git - apple/javascriptcore.git/blob - tests/mozilla/js1_2/regexp/octal.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
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: \# (octal) ';
35 writeHeaderToLog('Executing script: octal.js');
36 writeHeaderToLog( SECTION
+ " "+ TITLE
);
39 var testcases
= new Array();
42 var testPattern
= '\\101\\102\\103\\104\\105\\106\\107\\110\\111\\112\\113\\114\\115\\116\\117\\120\\121\\122\\123\\124\\125\\126\\127\\130\\131\\132';
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
= '\\141\\142\\143\\144\\145\\146\\147\\150\\151\\152\\153\\154\\155\\156\\157\\160\\161\\162\\163\\164\\165\\166\\167\\170\\171\\172';
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
= '\\40\\41\\42\\43\\44\\45\\46\\47\\50\\51\\52\\53\\54\\55\\56\\57\\60\\61\\62\\63';
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
= '\\64\\65\\66\\67\\70\\71\\72\\73\\74\\75\\76\\77\\100';
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
= '\\173\\174\\175\\176';
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-\\132]+'))",
84 String(["FOUND"]), String('canthisbeFOUND'.match(new RegExp('[A-\\132]+'))));
86 testcases
[count
++] = new TestCase ( SECTION
,
87 "'canthisbeFOUND'.match(new RegExp('[\\141-\\172]+'))",
88 String(["canthisbe"]), String('canthisbeFOUND'.match(new RegExp('[\\141-\\172]+'))));
90 testcases
[count
++] = new TestCase ( SECTION
,
91 "'canthisbeFOUND'.match(/[\\141-\\172]+/)",
92 String(["canthisbe"]), String('canthisbeFOUND'.match(/[\141-\172]+/)));
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
);