Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / ecma_3 / RegExp / regress-187133.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 JavaScript Engine testing utilities.
16  *
17  * The Initial Developer of the Original Code is
18  * Netscape Communications Corp.
19  * Portions created by the Initial Developer are Copyright (C) 2003
20  * the Initial Developer. All Rights Reserved.
21  *
22  * Contributor(s):
23  *   ji_bo@yahoo.com, pschwartau@netscape.com
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  * Date:    06 January 2003
42  * SUMMARY: RegExp conformance test
43  * See http://bugzilla.mozilla.org/show_bug.cgi?id=187133
44  *
45  * The tests here employ the regular expression construct:
46  *
47  *                   (?!pattern)
48  *
49  * This is a "zero-width lookahead negative assertion".
50  * From the Perl documentation:
51  *
52  *   For example, /foo(?!bar)/ matches any occurrence
53  *   of 'foo' that isn't followed by 'bar'.
54  *
55  * It is "zero-width" means that it does not consume any characters and that
56  * the parens are non-capturing. A non-null match array in the example above
57  * will have only have length 1, not 2.
58  *
59  */
60 //-----------------------------------------------------------------------------
61 var i = 0;
62 var BUGNUMBER = 187133;
63 var summary = 'RegExp conformance test';
64 var status = '';
65 var statusmessages = new Array();
66 var pattern = '';
67 var patterns = new Array();
68 var string = '';
69 var strings = new Array();
70 var actualmatch = '';
71 var actualmatches = new Array();
72 var expectedmatch = '';
73 var expectedmatches = new Array();
74
75
76 pattern = /(\.(?!com|org)|\/)/;
77 status = inSection(1);
78 string = 'ah.info';
79 actualmatch = string.match(pattern);
80 expectedmatch = ['.', '.'];
81 addThis();
82
83 status = inSection(2);
84 string = 'ah/info';
85 actualmatch = string.match(pattern);
86 expectedmatch = ['/', '/'];
87 addThis();
88
89 status = inSection(3);
90 string = 'ah.com';
91 actualmatch = string.match(pattern);
92 expectedmatch = null;
93 addThis();
94
95
96 pattern = /(?!a|b)|c/;
97 status = inSection(4);
98 string = '';
99 actualmatch = string.match(pattern);
100 expectedmatch = [''];
101 addThis();
102
103 status = inSection(5);
104 string = 'bc';
105 actualmatch = string.match(pattern);
106 expectedmatch = [''];
107 addThis();
108
109 status = inSection(6);
110 string = 'd';
111 actualmatch = string.match(pattern);
112 expectedmatch = [''];
113 addThis();
114
115
116
117
118 //-------------------------------------------------------------------------------------------------
119 test();
120 //-------------------------------------------------------------------------------------------------
121
122
123 function addThis()
124 {
125   statusmessages[i] = status;
126   patterns[i] = pattern;
127   strings[i] = string;
128   actualmatches[i] = actualmatch;
129   expectedmatches[i] = expectedmatch;
130   i++;
131 }
132
133
134 function test()
135 {
136   enterFunc ('test');
137   printBugNumber(BUGNUMBER);
138   printStatus (summary);
139   testRegExp(statusmessages, patterns, strings, actualmatches, expectedmatches);
140   exitFunc ('test');
141 }