]> git.saurik.com Git - apple/javascriptcore.git/blob - tests/mozilla/js1_2/regexp/RegExp_rightContext.js
JavaScriptCore-7601.1.46.3.tar.gz
[apple/javascriptcore.git] / tests / mozilla / js1_2 / regexp / RegExp_rightContext.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/
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_rightContext.js
24 Description: 'Tests RegExps rightContext 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: rightContext';
34
35 writeHeaderToLog('Executing script: RegExp_rightContext.js');
36 writeHeaderToLog( SECTION + " "+ TITLE);
37
38 var count = 0;
39 var testcases = new Array();
40
41 // 'abc123xyz'.match(/123/); RegExp.rightContext
42 'abc123xyz'.match(/123/);
43 testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/123/); RegExp.rightContext",
44 'xyz', RegExp.rightContext);
45
46 // 'abc123xyz'.match(/456/); RegExp.rightContext
47 'abc123xyz'.match(/456/);
48 testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/456/); RegExp.rightContext",
49 'xyz', RegExp.rightContext);
50
51 // 'abc123xyz'.match(/abc123xyz/); RegExp.rightContext
52 'abc123xyz'.match(/abc123xyz/);
53 testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/abc123xyz/); RegExp.rightContext",
54 '', RegExp.rightContext);
55
56 // 'xxxx'.match(/$/); RegExp.rightContext
57 'xxxx'.match(/$/);
58 testcases[count++] = new TestCase ( SECTION, "'xxxx'.match(/$/); RegExp.rightContext",
59 '', RegExp.rightContext);
60
61 // 'test'.match(/^/); RegExp.rightContext
62 'test'.match(/^/);
63 testcases[count++] = new TestCase ( SECTION, "'test'.match(/^/); RegExp.rightContext",
64 'test', RegExp.rightContext);
65
66 // 'xxxx'.match(new RegExp('$')); RegExp.rightContext
67 'xxxx'.match(new RegExp('$'));
68 testcases[count++] = new TestCase ( SECTION, "'xxxx'.match(new RegExp('$')); RegExp.rightContext",
69 '', RegExp.rightContext);
70
71 // 'test'.match(new RegExp('^')); RegExp.rightContext
72 'test'.match(new RegExp('^'));
73 testcases[count++] = new TestCase ( SECTION, "'test'.match(new RegExp('^')); RegExp.rightContext",
74 'test', RegExp.rightContext);
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();