Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / js1_2 / regexp / RegExp_dollar_number.js
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4  *
5  * The contents of this file are subject to the Mozilla Public License Version
6  * 1.1 (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  * http://www.mozilla.org/MPL/
9  *
10  * Software distributed under the License is distributed on an "AS IS" basis,
11  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12  * for the specific language governing rights and limitations under the
13  * License.
14  *
15  * The Original Code is Mozilla Communicator client code, released
16  * March 31, 1998.
17  *
18  * The Initial Developer of the Original Code is
19  * Netscape Communications Corporation.
20  * Portions created by the Initial Developer are Copyright (C) 1998
21  * the Initial Developer. All Rights Reserved.
22  *
23  * Contributor(s):
24  *
25  * Alternatively, the contents of this file may be used under the terms of
26  * either the GNU General Public License Version 2 or later (the "GPL"), or
27  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28  * in which case the provisions of the GPL or the LGPL are applicable instead
29  * of those above. If you wish to allow use of your version of this file only
30  * under the terms of either the GPL or the LGPL, and not to allow others to
31  * use your version of this file under the terms of the MPL, indicate your
32  * decision by deleting the provisions above and replace them with the notice
33  * and other provisions required by the GPL or the LGPL. If you do not delete
34  * the provisions above, a recipient may use your version of this file under
35  * the terms of any one of the MPL, the GPL or the LGPL.
36  *
37  * ***** END LICENSE BLOCK ***** */
38
39
40 /**
41    Filename:     RegExp_dollar_number.js
42    Description:  'Tests RegExps $1, ..., $9 properties'
43
44    Author:       Nick Lerissa
45    Date:         March 12, 1998
46 */
47
48 var SECTION = 'As described in Netscape doc "What\'s new in JavaScript 1.2"';
49 var VERSION = 'no version';
50 var TITLE   = 'RegExp: $1, ..., $9';
51 var BUGNUMBER="123802";
52
53 startTest();
54 writeHeaderToLog('Executing script: RegExp_dollar_number.js');
55 writeHeaderToLog( SECTION + " "+ TITLE);
56
57
58 // 'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$1
59 'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/);
60 new TestCase ( SECTION, "'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$1",
61                'abcdefghi', RegExp.$1);
62
63 // 'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$2
64 new TestCase ( SECTION, "'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$2",
65                'bcdefgh', RegExp.$2);
66
67 // 'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$3
68 new TestCase ( SECTION, "'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$3",
69                'cdefg', RegExp.$3);
70
71 // 'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$4
72 new TestCase ( SECTION, "'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$4",
73                'def', RegExp.$4);
74
75 // 'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$5
76 new TestCase ( SECTION, "'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$5",
77                'e', RegExp.$5);
78
79 // 'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$6
80 new TestCase ( SECTION, "'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$6",
81                '', RegExp.$6);
82
83 var a_to_z = 'abcdefghijklmnopqrstuvwxyz';
84 var regexp1 = /(a)b(c)d(e)f(g)h(i)j(k)l(m)n(o)p(q)r(s)t(u)v(w)x(y)z/
85   // 'abcdefghijklmnopqrstuvwxyz'.match(/(a)b(c)d(e)f(g)h(i)j(k)l(m)n(o)p(q)r(s)t(u)v(w)x(y)z/); RegExp.$1
86   a_to_z.match(regexp1);
87
88 new TestCase ( SECTION, "'" + a_to_z + "'.match((a)b(c)....(y)z); RegExp.$1",
89                'a', RegExp.$1);
90 new TestCase ( SECTION, "'" + a_to_z + "'.match((a)b(c)....(y)z); RegExp.$2",
91                'c', RegExp.$2);
92 new TestCase ( SECTION, "'" + a_to_z + "'.match((a)b(c)....(y)z); RegExp.$3",
93                'e', RegExp.$3);
94 new TestCase ( SECTION, "'" + a_to_z + "'.match((a)b(c)....(y)z); RegExp.$4",
95                'g', RegExp.$4);
96 new TestCase ( SECTION, "'" + a_to_z + "'.match((a)b(c)....(y)z); RegExp.$5",
97                'i', RegExp.$5);
98 new TestCase ( SECTION, "'" + a_to_z + "'.match((a)b(c)....(y)z); RegExp.$6",
99                'k', RegExp.$6);
100 new TestCase ( SECTION, "'" + a_to_z + "'.match((a)b(c)....(y)z); RegExp.$7",
101                'm', RegExp.$7);
102 new TestCase ( SECTION, "'" + a_to_z + "'.match((a)b(c)....(y)z); RegExp.$8",
103                'o', RegExp.$8);
104 new TestCase ( SECTION, "'" + a_to_z + "'.match((a)b(c)....(y)z); RegExp.$9",
105                'q', RegExp.$9);
106 /*
107   new TestCase ( SECTION, "'" + a_to_z + "'.match((a)b(c)....(y)z); RegExp.$10",
108   's', RegExp.$10);
109 */
110 test();