]>
Commit | Line | Data |
---|---|---|
b37bf2e1 A |
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/ | |
5 | * | |
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. | |
10 | * | |
11 | * The Original Code is Mozilla Communicator client code, released March | |
12 | * 31, 1998. | |
13 | * | |
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 | |
17 | * Rights Reserved. | |
18 | * | |
19 | * Contributor(s): | |
20 | * | |
21 | */ | |
22 | /** | |
23 | Filename: hexadecimal.js | |
24 | Description: 'Tests regular expressions containing \<number> ' | |
25 | ||
26 | Author: Nick Lerissa | |
27 | Date: March 10, 1998 | |
28 | */ | |
29 | ||
30 | var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"'; | |
31 | var VERSION = 'no version'; | |
32 | startTest(); | |
33 | var TITLE = 'RegExp: \x# (hex) '; | |
34 | ||
35 | writeHeaderToLog('Executing script: hexadecimal.js'); | |
36 | writeHeaderToLog( SECTION + " "+ TITLE); | |
37 | ||
38 | var count = 0; | |
39 | var testcases = new Array(); | |
40 | ||
41 | ||
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'; | |
43 | ||
44 | var testString = "12345ABCDEFGHIJKLMNOPQRSTUVWXYZ67890"; | |
45 | ||
46 | testcases[count++] = new TestCase ( SECTION, | |
47 | "'" + testString + "'.match(new RegExp('" + testPattern + "'))", | |
48 | String(["ABCDEFGHIJKLMNOPQRSTUVWXYZ"]), String(testString.match(new RegExp(testPattern)))); | |
49 | ||
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'; | |
51 | ||
52 | testString = "12345AabcdefghijklmnopqrstuvwxyzZ67890"; | |
53 | ||
54 | testcases[count++] = new TestCase ( SECTION, | |
55 | "'" + testString + "'.match(new RegExp('" + testPattern + "'))", | |
56 | String(["abcdefghijklmnopqrstuvwxyz"]), String(testString.match(new RegExp(testPattern)))); | |
57 | ||
58 | testPattern = '\\x20\\x21\\x22\\x23\\x24\\x25\\x26\\x27\\x28\\x29\\x2A\\x2B\\x2C\\x2D\\x2E\\x2F\\x30\\x31\\x32\\x33'; | |
59 | ||
60 | testString = "abc !\"#$%&'()*+,-./0123ZBC"; | |
61 | ||
62 | testcases[count++] = new TestCase ( SECTION, | |
63 | "'" + testString + "'.match(new RegExp('" + testPattern + "'))", | |
64 | String([" !\"#$%&'()*+,-./0123"]), String(testString.match(new RegExp(testPattern)))); | |
65 | ||
66 | testPattern = '\\x34\\x35\\x36\\x37\\x38\\x39\\x3A\\x3B\\x3C\\x3D\\x3E\\x3F\\x40'; | |
67 | ||
68 | testString = "123456789:;<=>?@ABC"; | |
69 | ||
70 | testcases[count++] = new TestCase ( SECTION, | |
71 | "'" + testString + "'.match(new RegExp('" + testPattern + "'))", | |
72 | String(["456789:;<=>?@"]), String(testString.match(new RegExp(testPattern)))); | |
73 | ||
74 | testPattern = '\\x7B\\x7C\\x7D\\x7E'; | |
75 | ||
76 | testString = "1234{|}~ABC"; | |
77 | ||
78 | testcases[count++] = new TestCase ( SECTION, | |
79 | "'" + testString + "'.match(new RegExp('" + testPattern + "'))", | |
80 | String(["{|}~"]), String(testString.match(new RegExp(testPattern)))); | |
81 | ||
82 | testcases[count++] = new TestCase ( SECTION, | |
83 | "'canthisbeFOUND'.match(new RegExp('[A-\\x5A]+'))", | |
84 | String(["FOUND"]), String('canthisbeFOUND'.match(new RegExp('[A-\\x5A]+')))); | |
85 | ||
86 | testcases[count++] = new TestCase ( SECTION, | |
87 | "'canthisbeFOUND'.match(new RegExp('[\\x61-\\x7A]+'))", | |
88 | String(["canthisbe"]), String('canthisbeFOUND'.match(new RegExp('[\\x61-\\x7A]+')))); | |
89 | ||
90 | testcases[count++] = new TestCase ( SECTION, | |
91 | "'canthisbeFOUND'.match(/[\\x61-\\x7A]+/)", | |
92 | String(["canthisbe"]), String('canthisbeFOUND'.match(/[\x61-\x7A]+/))); | |
93 | ||
94 | function test() | |
95 | { | |
96 | for ( tc=0; tc < testcases.length; tc++ ) { | |
97 | testcases[tc].passed = writeTestCaseResult( | |
98 | testcases[tc].expect, | |
99 | testcases[tc].actual, | |
100 | testcases[tc].description +" = "+ | |
101 | testcases[tc].actual ); | |
102 | testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value "; | |
103 | } | |
104 | stopTest(); | |
105 | return ( testcases ); | |
106 | } | |
107 | ||
108 | test(); |