~saviq/ubuntu/saucy/qtdeclarative-opensource-src/add-qtquick-delegate-range

« back to all changes in this revision

Viewing changes to tests/auto/qml/parserstress/tests/ecma_3/RegExp/15.10.3.1-1.js

  • Committer: Package Import Robot
  • Author(s): Timo Jyrinki
  • Date: 2013-02-05 14:17:19 UTC
  • Revision ID: package-import@ubuntu.com-20130205141719-qqeyml8wslpyez52
Tags: upstream-5.0.1
ImportĀ upstreamĀ versionĀ 5.0.1

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 (RegExp object, flag) to RegExp() function.
 
44
 * This test arose from Bugzilla bug 61266. The ECMA3 section is:      
 
45
 *
 
46
 * 15.10.3 The RegExp Constructor Called as a Function
 
47
 *
 
48
 *   15.10.3.1 RegExp(pattern, flags)
 
49
 *
 
50
 *   If pattern is an object R whose [[Class]] property is "RegExp"
 
51
 *   and flags is undefined, then return R unchanged.  Otherwise 
 
52
 *   call the RegExp constructor (section 15.10.4.1),  passing it the
 
53
 *   pattern and flags arguments and return  the object constructed
 
54
 *   by that constructor.
 
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
 * The flags parameter will be undefined in the sense of not being
 
63
 * provided. We check that RegExp(R) returns R  -
 
64
 */
 
65
//-----------------------------------------------------------------------------
 
66
var gTestfile = '15.10.3.1-1.js';
 
67
var BUGNUMBER = '61266';
 
68
var summary = 'Passing (RegExp object,flag) to RegExp() function';
 
69
var statprefix = 'RegExp(new RegExp(';
 
70
var comma =  ', '; var singlequote = "'"; var closeparens = '))';
 
71
var cnSUCCESS = 'RegExp() returned the supplied RegExp object';
 
72
var cnFAILURE =  'RegExp() did NOT return the supplied RegExp object';
 
73
var i = -1; var j = -1; var s = ''; var f = '';
 
74
var obj = {};
 
75
var status = ''; var actual = ''; var expect = '';
 
76
var patterns = new Array();
 
77
var flags = new Array(); 
 
78
 
 
79
 
 
80
// various regular expressions to try -
 
81
patterns[0] = '';
 
82
patterns[1] = 'abc';
 
83
patterns[2] = '(.*)(3-1)\s\w';
 
84
patterns[3] = '(.*)(...)\\s\\w';
 
85
patterns[4] = '[^A-Za-z0-9_]';
 
86
patterns[5] = '[^\f\n\r\t\v](123.5)([4 - 8]$)';
 
87
 
 
88
// various flags to try -
 
89
flags[0] = 'i';
 
90
flags[1] = 'g';
 
91
flags[2] = 'm';
 
92
flags[3] = undefined;
 
93
 
 
94
 
 
95
 
 
96
//-------------------------------------------------------------------------------------------------
 
97
test();
 
98
//-------------------------------------------------------------------------------------------------
 
99
 
 
100
 
 
101
function test()
 
102
{
 
103
  enterFunc ('test');
 
104
  printBugNumber(BUGNUMBER);
 
105
  printStatus (summary);
 
106
 
 
107
  for (i in patterns)
 
108
  {
 
109
    s = patterns[i];
 
110
 
 
111
    for (j in flags)
 
112
    {
 
113
      f = flags[j];
 
114
      status = getStatus(s, f);
 
115
      obj = new RegExp(s, f);  
 
116
 
 
117
      actual = (obj == RegExp(obj))? cnSUCCESS : cnFAILURE; 
 
118
      expect = cnSUCCESS;
 
119
      reportCompare (expect, actual, status);
 
120
    }
 
121
  }
 
122
 
 
123
  exitFunc ('test');
 
124
}
 
125
 
 
126
 
 
127
function getStatus(regexp, flag)
 
128
{
 
129
  return (statprefix  +  quote(regexp) +  comma  +   flag  +  closeparens);
 
130
}
 
131
 
 
132
 
 
133
function quote(text)
 
134
{
 
135
  return (singlequote  +  text  + singlequote);
 
136
}