~loic.molinari/+junk/qtdeclarative-shadereffectsource-changes

« back to all changes in this revision

Viewing changes to tests/auto/qml/parserstress/tests/ecma_3/RegExp/15.10.4.1-3.js

  • Committer: Loïc Molinari
  • Date: 2012-04-21 17:59:51 UTC
  • Revision ID: loic.molinari@canonical.com-20120421175951-bqx68caaf5zrp76l
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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.org code.
 
16
 *
 
17
 * The Initial Developer of the Original Code is
 
18
 * Netscape Communications Corporation.
 
19
 * Portions created by the Initial Developer are Copyright (C) 1998
 
20
 * the Initial Developer. All Rights Reserved.
 
21
 *
 
22
 * Contributor(s):
 
23
 *   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
 * Date: 26 November 2000
 
41
 *
 
42
 *
 
43
 *SUMMARY: Passing a RegExp object to a RegExp() constructor.
 
44
 *This test arose from Bugzilla bug 61266. The ECMA3 section is:      
 
45
 *
 
46
 *  15.10.4.1 new RegExp(pattern, flags)
 
47
 *
 
48
 *  If pattern is an object R whose [[Class]] property is "RegExp" and
 
49
 *  flags is undefined, then let P be the pattern used to construct R
 
50
 *  and let F be the flags used to construct R. If pattern is an object R
 
51
 *  whose [[Class]] property is "RegExp" and flags is not undefined,
 
52
 *  then throw a TypeError exception. Otherwise, let P be the empty string 
 
53
 *  if pattern is undefined and ToString(pattern) otherwise, and let F be
 
54
 *  the empty string if flags is undefined and ToString(flags) otherwise.
 
55
 *
 
56
 *
 
57
 *The current test will check the first scenario outlined above:
 
58
 *
 
59
 *   "pattern" is itself a RegExp object R
 
60
 *   "flags"  is undefined
 
61
 *
 
62
 * We check that a new RegExp object obj2 defined from these parameters
 
63
 * is morally the same as the original RegExp object obj1. Of course, they
 
64
 * can't be equal as objects - so we check their enumerable properties...
 
65
 *
 
66
 * In this test, the initial RegExp obj1 will include a flag. The flags
 
67
 * parameter for obj2  will be undefined in the sense of not being provided.
 
68
 */
 
69
//-----------------------------------------------------------------------------
 
70
var gTestfile = '15.10.4.1-3.js';
 
71
var BUGNUMBER = '61266';
 
72
var summary = 'Passing a RegExp object to a RegExp() constructor';
 
73
var statprefix = 'Applying RegExp() twice to pattern ';
 
74
var statmiddle = ' and flag ';
 
75
var statsuffix =  '; testing property ';
 
76
var singlequote = "'";
 
77
var i = -1; var j = -1; var s = '';
 
78
var obj1 = {}; var obj2 = {};
 
79
var status = ''; var actual = ''; var expect = ''; var msg = '';
 
80
var patterns = new Array(); 
 
81
var flags = new Array(); 
 
82
 
 
83
 
 
84
// various regular expressions to try -
 
85
patterns[0] = '';
 
86
patterns[1] = 'abc';
 
87
patterns[2] = '(.*)(3-1)\s\w';
 
88
patterns[3] = '(.*)(...)\\s\\w';
 
89
patterns[4] = '[^A-Za-z0-9_]';
 
90
patterns[5] = '[^\f\n\r\t\v](123.5)([4 - 8]$)';
 
91
 
 
92
// various flags to try -
 
93
flags[0] = 'i';
 
94
flags[1] = 'g';
 
95
flags[2] = 'm';
 
96
flags[3] = undefined;
 
97
 
 
98
 
 
99
 
 
100
//-------------------------------------------------------------------------------------------------
 
101
test();
 
102
//-------------------------------------------------------------------------------------------------
 
103
 
 
104
 
 
105
function test()
 
106
{
 
107
  enterFunc ('test');
 
108
  printBugNumber(BUGNUMBER);
 
109
  printStatus (summary);
 
110
 
 
111
  for (i in patterns)
 
112
  {
 
113
    s = patterns[i];
 
114
   
 
115
    for (j in flags)
 
116
    {
 
117
      f = flags[j];
 
118
      status = getStatus(s, f); 
 
119
      obj1 = new RegExp(s, f);
 
120
      obj2 = new RegExp(obj1);
 
121
 
 
122
      reportCompare (obj1 + '', obj2 + '', status);
 
123
    }
 
124
  }
 
125
 
 
126
  exitFunc ('test');
 
127
}
 
128
 
 
129
 
 
130
function getStatus(regexp, flag)
 
131
{
 
132
  return (statprefix  +  quote(regexp) +  statmiddle  +  flag  +  statsuffix);
 
133
}
 
134
 
 
135
 
 
136
function quote(text)
 
137
{
 
138
  return (singlequote  +  text  + singlequote);
 
139
}