Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / js1_2 / regexp / alphanumeric.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:     alphanumeric.js
42    Description:  'Tests regular expressions with \w and \W special characters'
43
44    Author:       Nick Lerissa
45    Date:         March 10, 1998
46 */
47
48 var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"';
49 var VERSION = 'no version';
50 startTest();
51 var TITLE   = 'RegExp: \\w and \\W';
52
53 writeHeaderToLog('Executing script: alphanumeric.js');
54 writeHeaderToLog( SECTION + " " + TITLE);
55
56 var non_alphanumeric = "~`!@#$%^&*()-+={[}]|\\:;'<,>./?\f\n\r\t\v " + '"';
57 var alphanumeric     = "_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
58
59 // be sure all alphanumerics are matched by \w
60 new TestCase ( SECTION,
61                "'" + alphanumeric + "'.match(new RegExp('\\w+'))",
62                String([alphanumeric]), String(alphanumeric.match(new RegExp('\\w+'))));
63
64 // be sure all non-alphanumerics are matched by \W
65 new TestCase ( SECTION,
66                "'" + non_alphanumeric + "'.match(new RegExp('\\W+'))",
67                String([non_alphanumeric]), String(non_alphanumeric.match(new RegExp('\\W+'))));
68
69 // be sure all non-alphanumerics are not matched by \w
70 new TestCase ( SECTION,
71                "'" + non_alphanumeric + "'.match(new RegExp('\\w'))",
72                null, non_alphanumeric.match(new RegExp('\\w')));
73
74 // be sure all alphanumerics are not matched by \W
75 new TestCase ( SECTION,
76                "'" + alphanumeric + "'.match(new RegExp('\\W'))",
77                null, alphanumeric.match(new RegExp('\\W')));
78
79 var s = non_alphanumeric + alphanumeric;
80
81 // be sure all alphanumerics are matched by \w
82 new TestCase ( SECTION,
83                "'" + s + "'.match(new RegExp('\\w+'))",
84                String([alphanumeric]), String(s.match(new RegExp('\\w+'))));
85
86 s = alphanumeric + non_alphanumeric;
87
88 // be sure all non-alphanumerics are matched by \W
89 new TestCase ( SECTION,
90                "'" + s + "'.match(new RegExp('\\W+'))",
91                String([non_alphanumeric]), String(s.match(new RegExp('\\W+'))));
92
93 // be sure all alphanumerics are matched by \w (using literals)
94 new TestCase ( SECTION,
95                "'" + s + "'.match(/\w+/)",
96                String([alphanumeric]), String(s.match(/\w+/)));
97
98 s = alphanumeric + non_alphanumeric;
99
100 // be sure all non-alphanumerics are matched by \W (using literals)
101 new TestCase ( SECTION,
102                "'" + s + "'.match(/\W+/)",
103                String([non_alphanumeric]), String(s.match(/\W+/)));
104
105 s = 'abcd*&^%$$';
106 // be sure the following test behaves consistently
107 new TestCase ( SECTION,
108                "'" + s + "'.match(/(\w+)...(\W+)/)",
109                String([s , 'abcd' , '%$$']), String(s.match(/(\w+)...(\W+)/)));
110
111 var i;
112
113 // be sure all alphanumeric characters match individually
114 for (i = 0; i < alphanumeric.length; ++i)
115 {
116   s = '#$' + alphanumeric[i] + '%^';
117   new TestCase ( SECTION,
118                  "'" + s + "'.match(new RegExp('\\w'))",
119                  String([alphanumeric[i]]), String(s.match(new RegExp('\\w'))));
120 }
121 // be sure all non_alphanumeric characters match individually
122 for (i = 0; i < non_alphanumeric.length; ++i)
123 {
124   s = 'sd' + non_alphanumeric[i] + String((i+10) * (i+10) - 2 * (i+10));
125   new TestCase ( SECTION,
126                  "'" + s + "'.match(new RegExp('\\W'))",
127                  String([non_alphanumeric[i]]), String(s.match(new RegExp('\\W'))));
128 }
129
130 test();