initial import
[vuplus_webkit] / Source / JavaScriptCore / tests / mozilla / js1_2 / regexp / RegExp_leftContext_as_array.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_leftContext_as_array.js
24         Description:  'Tests RegExps leftContext property (same tests as RegExp_leftContext.js but using $`)'
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: $`';
34
35         writeHeaderToLog('Executing script: RegExp_leftContext_as_array.js');
36         writeHeaderToLog( SECTION + " "+ TITLE);
37
38         var count = 0;
39         var testcases = new Array();
40
41     // 'abc123xyz'.match(/123/); RegExp['$`']
42     'abc123xyz'.match(/123/);
43         testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/123/); RegExp['$`']",
44                                             'abc', RegExp['$`']);
45
46     // 'abc123xyz'.match(/456/); RegExp['$`']
47     'abc123xyz'.match(/456/);
48         testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/456/); RegExp['$`']",
49                                             'abc', RegExp['$`']);
50
51     // 'abc123xyz'.match(/abc123xyz/); RegExp['$`']
52     'abc123xyz'.match(/abc123xyz/);
53         testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/abc123xyz/); RegExp['$`']",
54                                             '', RegExp['$`']);
55
56     // 'xxxx'.match(/$/); RegExp['$`']
57     'xxxx'.match(/$/);
58         testcases[count++] = new TestCase ( SECTION, "'xxxx'.match(/$/); RegExp['$`']",
59                                             'xxxx', RegExp['$`']);
60
61     // 'test'.match(/^/); RegExp['$`']
62     'test'.match(/^/);
63         testcases[count++] = new TestCase ( SECTION, "'test'.match(/^/); RegExp['$`']",
64                                             '', RegExp['$`']);
65
66     // 'xxxx'.match(new RegExp('$')); RegExp['$`']
67     'xxxx'.match(new RegExp('$'));
68         testcases[count++] = new TestCase ( SECTION, "'xxxx'.match(new RegExp('$')); RegExp['$`']",
69                                             'xxxx', RegExp['$`']);
70
71     // 'test'.match(new RegExp('^')); RegExp['$`']
72     'test'.match(new RegExp('^'));
73         testcases[count++] = new TestCase ( SECTION, "'test'.match(new RegExp('^')); RegExp['$`']",
74                                             '', RegExp['$`']);
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();