]>
git.saurik.com Git - apple/javascriptcore.git/blob - tests/mozilla/js1_2/regexp/RegExp_input.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_input.js
24 Description: 'Tests RegExps input property'
30 var SECTION
= 'As described in Netscape doc "Whats new in JavaScript 1.2"';
31 var VERSION
= 'no version';
33 var TITLE
= 'RegExp: input';
35 writeHeaderToLog('Executing script: RegExp_input.js');
36 writeHeaderToLog( SECTION
+ " "+ TITLE
);
39 var testcases
= new Array();
41 RegExp
.input
= "abcd12357efg";
43 // RegExp.input = "abcd12357efg"; RegExp.input
44 RegExp
.input
= "abcd12357efg";
45 testcases
[count
++] = new TestCase ( SECTION
, "RegExp.input = 'abcd12357efg'; RegExp.input",
46 "abcd12357efg", RegExp
.input
);
48 // RegExp.input = "abcd12357efg"; /\d+/.exec('2345')
49 RegExp
.input
= "abcd12357efg";
50 testcases
[count
++] = new TestCase ( SECTION
, "RegExp.input = 'abcd12357efg'; /\\d+/.exec('2345')",
51 String(["2345"]), String(/\d+/.exec('2345')));
53 // RegExp.input = "abcd12357efg"; /\d+/.exec(RegExp.input)
54 RegExp
.input
= "abcd12357efg";
55 testcases
[count
++] = new TestCase ( SECTION
, "RegExp.input = 'abcd12357efg'; /\\d+/.exec(RegExp.input)",
56 String(["12357"]), String(/\d+/.exec(RegExp
.input
)));
58 // RegExp.input = "abcd12357efg"; /[h-z]+/.exec(RegExp.input)
59 RegExp
.input
= "abcd12357efg";
60 testcases
[count
++] = new TestCase ( SECTION
, "RegExp.input = 'abcd12357efg'; /[h-z]+/.exec(RegExp.input)",
61 null, /[h-z]+/.exec(RegExp
.input
));
63 // RegExp.input = "abcd12357efg"; /\d+/.test('2345')
64 RegExp
.input
= "abcd12357efg";
65 testcases
[count
++] = new TestCase ( SECTION
, "RegExp.input = 'abcd12357efg'; /\\d+/.test('2345')",
66 true, /\d+/.test('2345'));
68 // RegExp.input = "abcd12357efg"; /\d+/.test(RegExp.input)
69 RegExp
.input
= "abcd12357efg";
70 testcases
[count
++] = new TestCase ( SECTION
, "RegExp.input = 'abcd12357efg'; /\\d+/.test(RegExp.input)",
71 true, /\d+/.test(RegExp
.input
));
73 // RegExp.input = "abcd12357efg"; (new RegExp('d+')).test(RegExp.input)
74 RegExp
.input
= "abcd12357efg";
75 testcases
[count
++] = new TestCase ( SECTION
, "RegExp.input = 'abcd12357efg'; (new RegExp('d+')).test(RegExp.input)",
76 true, (new RegExp('d+')).test(RegExp
.input
));
78 // RegExp.input = "abcd12357efg"; /[h-z]+/.test(RegExp.input)
79 RegExp
.input
= "abcd12357efg";
80 testcases
[count
++] = new TestCase ( SECTION
, "RegExp.input = 'abcd12357efg'; /[h-z]+/.test(RegExp.input)",
81 false, /[h-z]+/.test(RegExp
.input
));
83 // RegExp.input = "abcd12357efg"; (new RegExp('[h-z]+')).test(RegExp.input)
84 RegExp
.input
= "abcd12357efg";
85 testcases
[count
++] = new TestCase ( SECTION
, "RegExp.input = 'abcd12357efg'; (new RegExp('[h-z]+')).test(RegExp.input)",
86 false, (new RegExp('[h-z]+')).test(RegExp
.input
));
90 for ( tc
=0; tc
< testcases
.length
; tc
++ ) {
91 testcases
[tc
].passed
= writeTestCaseResult(
94 testcases
[tc
].description
+" = "+
95 testcases
[tc
].actual
);
96 testcases
[tc
].reason
+= ( testcases
[tc
].passed
) ? "" : "wrong value ";