On x86 compilers without fastcall, simulate it when invoking traces and un-simulate...
[wine-gecko.git] / js / tests / js1_2 / regexp / alphanumeric.js
blobcfb1609057c1c6beb3cb002b24aeff662aa34105
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
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/
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.
15 * The Original Code is Mozilla Communicator client code, released
16 * March 31, 1998.
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.
23 * Contributor(s):
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.
37 * ***** END LICENSE BLOCK ***** */
39 gTestfile = 'alphanumeric.js';
41 /**
42 Filename: alphanumeric.js
43 Description: 'Tests regular expressions with \w and \W special characters'
45 Author: Nick Lerissa
46 Date: March 10, 1998
49 var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"';
50 var VERSION = 'no version';
51 startTest();
52 var TITLE = 'RegExp: \\w and \\W';
54 writeHeaderToLog('Executing script: alphanumeric.js');
55 writeHeaderToLog( SECTION + " " + TITLE);
57 var non_alphanumeric = "~`!@#$%^&*()-+={[}]|\\:;'<,>./?\f\n\r\t\v " + '"';
58 var alphanumeric = "_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
60 // be sure all alphanumerics are matched by \w
61 new TestCase ( SECTION,
62 "'" + alphanumeric + "'.match(new RegExp('\\w+'))",
63 String([alphanumeric]), String(alphanumeric.match(new RegExp('\\w+'))));
65 // be sure all non-alphanumerics are matched by \W
66 new TestCase ( SECTION,
67 "'" + non_alphanumeric + "'.match(new RegExp('\\W+'))",
68 String([non_alphanumeric]), String(non_alphanumeric.match(new RegExp('\\W+'))));
70 // be sure all non-alphanumerics are not matched by \w
71 new TestCase ( SECTION,
72 "'" + non_alphanumeric + "'.match(new RegExp('\\w'))",
73 null, non_alphanumeric.match(new RegExp('\\w')));
75 // be sure all alphanumerics are not matched by \W
76 new TestCase ( SECTION,
77 "'" + alphanumeric + "'.match(new RegExp('\\W'))",
78 null, alphanumeric.match(new RegExp('\\W')));
80 var s = non_alphanumeric + alphanumeric;
82 // be sure all alphanumerics are matched by \w
83 new TestCase ( SECTION,
84 "'" + s + "'.match(new RegExp('\\w+'))",
85 String([alphanumeric]), String(s.match(new RegExp('\\w+'))));
87 s = alphanumeric + non_alphanumeric;
89 // be sure all non-alphanumerics are matched by \W
90 new TestCase ( SECTION,
91 "'" + s + "'.match(new RegExp('\\W+'))",
92 String([non_alphanumeric]), String(s.match(new RegExp('\\W+'))));
94 // be sure all alphanumerics are matched by \w (using literals)
95 new TestCase ( SECTION,
96 "'" + s + "'.match(/\w+/)",
97 String([alphanumeric]), String(s.match(/\w+/)));
99 s = alphanumeric + non_alphanumeric;
101 // be sure all non-alphanumerics are matched by \W (using literals)
102 new TestCase ( SECTION,
103 "'" + s + "'.match(/\W+/)",
104 String([non_alphanumeric]), String(s.match(/\W+/)));
106 s = 'abcd*&^%$$';
107 // be sure the following test behaves consistently
108 new TestCase ( SECTION,
109 "'" + s + "'.match(/(\w+)...(\W+)/)",
110 String([s , 'abcd' , '%$$']), String(s.match(/(\w+)...(\W+)/)));
112 var i;
114 // be sure all alphanumeric characters match individually
115 for (i = 0; i < alphanumeric.length; ++i)
117 s = '#$' + alphanumeric[i] + '%^';
118 new TestCase ( SECTION,
119 "'" + s + "'.match(new RegExp('\\w'))",
120 String([alphanumeric[i]]), String(s.match(new RegExp('\\w'))));
122 // be sure all non_alphanumeric characters match individually
123 for (i = 0; i < non_alphanumeric.length; ++i)
125 s = 'sd' + non_alphanumeric[i] + String((i+10) * (i+10) - 2 * (i+10));
126 new TestCase ( SECTION,
127 "'" + s + "'.match(new RegExp('\\W'))",
128 String([non_alphanumeric[i]]), String(s.match(new RegExp('\\W'))));
131 test();