]>
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: RegExp_leftContext.js | |
24 | Description: 'Tests RegExps leftContext property' | |
25 | ||
26 | Author: Nick Lerissa | |
27 | Date: March 12, 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: leftContext'; | |
34 | ||
35 | writeHeaderToLog('Executing script: RegExp_leftContext.js'); | |
36 | writeHeaderToLog( SECTION + " "+ TITLE); | |
37 | ||
38 | var count = 0; | |
39 | var testcases = new Array(); | |
40 | ||
41 | // 'abc123xyz'.match(/123/); RegExp.leftContext | |
42 | 'abc123xyz'.match(/123/); | |
43 | testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/123/); RegExp.leftContext", | |
44 | 'abc', RegExp.leftContext); | |
45 | ||
46 | // 'abc123xyz'.match(/456/); RegExp.leftContext | |
47 | 'abc123xyz'.match(/456/); | |
48 | testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/456/); RegExp.leftContext", | |
49 | 'abc', RegExp.leftContext); | |
50 | ||
51 | // 'abc123xyz'.match(/abc123xyz/); RegExp.leftContext | |
52 | 'abc123xyz'.match(/abc123xyz/); | |
53 | testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/abc123xyz/); RegExp.leftContext", | |
54 | '', RegExp.leftContext); | |
55 | ||
56 | // 'xxxx'.match(/$/); RegExp.leftContext | |
57 | 'xxxx'.match(/$/); | |
58 | testcases[count++] = new TestCase ( SECTION, "'xxxx'.match(/$/); RegExp.leftContext", | |
59 | 'xxxx', RegExp.leftContext); | |
60 | ||
61 | // 'test'.match(/^/); RegExp.leftContext | |
62 | 'test'.match(/^/); | |
63 | testcases[count++] = new TestCase ( SECTION, "'test'.match(/^/); RegExp.leftContext", | |
64 | '', RegExp.leftContext); | |
65 | ||
66 | // 'xxxx'.match(new RegExp('$')); RegExp.leftContext | |
67 | 'xxxx'.match(new RegExp('$')); | |
68 | testcases[count++] = new TestCase ( SECTION, "'xxxx'.match(new RegExp('$')); RegExp.leftContext", | |
69 | 'xxxx', RegExp.leftContext); | |
70 | ||
71 | // 'test'.match(new RegExp('^')); RegExp.leftContext | |
72 | 'test'.match(new RegExp('^')); | |
73 | testcases[count++] = new TestCase ( SECTION, "'test'.match(new RegExp('^')); RegExp.leftContext", | |
74 | '', RegExp.leftContext); | |
75 | ||
76 | function test() | |
77 | { | |
78 | for ( tc=0; tc < testcases.length; tc++ ) { | |
79 | testcases[tc].passed = writeTestCaseResult( | |
80 | testcases[tc].expect, | |
81 | testcases[tc].actual, | |
82 | testcases[tc].description +" = "+ | |
83 | testcases[tc].actual ); | |
84 | testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value "; | |
85 | } | |
86 | stopTest(); | |
87 | return ( testcases ); | |
88 | } | |
89 | ||
90 | test(); |