|
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
|
2 /* This Source Code Form is subject to the terms of the Mozilla Public |
|
3 * License, v. 2.0. If a copy of the MPL was not distributed with this |
|
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
|
5 |
|
6 |
|
7 /** |
|
8 Filename: compile.js |
|
9 Description: 'Tests regular expressions method compile' |
|
10 |
|
11 Author: Nick Lerissa |
|
12 Date: March 10, 1998 |
|
13 */ |
|
14 |
|
15 var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"'; |
|
16 var VERSION = 'no version'; |
|
17 startTest(); |
|
18 var TITLE = 'RegExp: compile'; |
|
19 |
|
20 writeHeaderToLog('Executing script: compile.js'); |
|
21 writeHeaderToLog( SECTION + " "+ TITLE); |
|
22 |
|
23 var regularExpression = new RegExp(); |
|
24 |
|
25 regularExpression.compile("[0-9]{3}x[0-9]{4}","i"); |
|
26 |
|
27 new TestCase ( SECTION, |
|
28 "(compile '[0-9]{3}x[0-9]{4}','i')", |
|
29 String(["456X7890"]), String('234X456X7890'.match(regularExpression))); |
|
30 |
|
31 new TestCase ( SECTION, |
|
32 "source of (compile '[0-9]{3}x[0-9]{4}','i')", |
|
33 "[0-9]{3}x[0-9]{4}", regularExpression.source); |
|
34 |
|
35 new TestCase ( SECTION, |
|
36 "global of (compile '[0-9]{3}x[0-9]{4}','i')", |
|
37 false, regularExpression.global); |
|
38 |
|
39 new TestCase ( SECTION, |
|
40 "ignoreCase of (compile '[0-9]{3}x[0-9]{4}','i')", |
|
41 true, regularExpression.ignoreCase); |
|
42 |
|
43 regularExpression.compile("[0-9]{3}X[0-9]{3}","g"); |
|
44 |
|
45 new TestCase ( SECTION, |
|
46 "(compile '[0-9]{3}X[0-9]{3}','g')", |
|
47 String(["234X456"]), String('234X456X7890'.match(regularExpression))); |
|
48 |
|
49 new TestCase ( SECTION, |
|
50 "source of (compile '[0-9]{3}X[0-9]{3}','g')", |
|
51 "[0-9]{3}X[0-9]{3}", regularExpression.source); |
|
52 |
|
53 new TestCase ( SECTION, |
|
54 "global of (compile '[0-9]{3}X[0-9]{3}','g')", |
|
55 true, regularExpression.global); |
|
56 |
|
57 new TestCase ( SECTION, |
|
58 "ignoreCase of (compile '[0-9]{3}X[0-9]{3}','g')", |
|
59 false, regularExpression.ignoreCase); |
|
60 |
|
61 |
|
62 test(); |