]>
git.saurik.com Git - apple/javascriptcore.git/blob - 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/
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: RegExp_rightContext.js
24 Description: 'Tests RegExps rightContext property'
30 var SECTION
= 'As described in Netscape doc "Whats new in JavaScript 1.2"';
31 var VERSION
= 'no version';
33 var TITLE
= 'RegExp: rightContext';
35 writeHeaderToLog('Executing script: RegExp_rightContext.js');
36 writeHeaderToLog( SECTION
+ " "+ TITLE
);
39 var testcases
= new Array();
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
);
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
);
51 // 'abc123xyz'.match(/abc123xyz/); RegExp.rightContext
52 'abc123xyz'.match(/abc123xyz/);
53 testcases
[count
++] = new TestCase ( SECTION
, "'abc123xyz'.match(/abc123xyz/); RegExp.rightContext",
54 '', RegExp
.rightContext
);
56 // 'xxxx'.match(/$/); RegExp.rightContext
58 testcases
[count
++] = new TestCase ( SECTION
, "'xxxx'.match(/$/); RegExp.rightContext",
59 '', RegExp
.rightContext
);
61 // 'test'.match(/^/); RegExp.rightContext
63 testcases
[count
++] = new TestCase ( SECTION
, "'test'.match(/^/); RegExp.rightContext",
64 'test', RegExp
.rightContext
);
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
);
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
);
78 for ( tc
=0; tc
< testcases
.length
; tc
++ ) {
79 testcases
[tc
].passed
= writeTestCaseResult(
82 testcases
[tc
].description
+" = "+
83 testcases
[tc
].actual
);
84 testcases
[tc
].reason
+= ( testcases
[tc
].passed
) ? "" : "wrong value ";