QML_RUNTIME_TESTING should be disabled by default.
[profile/ivi/qtdeclarative.git] / tests / auto / qml / parserstress / tests / ecma / ExecutionContexts / 10.1.5-3.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 gTestfile = '10.1.5-3.js';
40
41 /**
42    File Name:          10.1.5-3.js
43    ECMA Section:       10.1.5 Global Object
44    Description:
45    There is a unique global object which is created before control enters
46    any execution context. Initially the global object has the following
47    properties:
48
49    Built-in objects such as Math, String, Date, parseInt, etc. These have
50    attributes { DontEnum }.
51
52    Additional host defined properties. This may include a property whose
53    value is the global object itself, for example window in HTML.
54
55    As control enters execution contexts, and as ECMAScript code is executed,
56    additional properties may be added to the global object and the initial
57    properties may be changed.
58
59    Author:             christine@netscape.com
60    Date:               12 november 1997
61 */
62 var SECTION = "10.5.1-3";
63 var VERSION = "ECMA_1";
64 startTest();
65 writeHeaderToLog( SECTION + " Global Object");
66
67 new TestCase( "SECTION", "Function Code check" );
68
69 test();
70
71 function test() {
72   if ( Object == null ) {
73     gTestcases[0].reason += " Object == null" ;
74   }
75   if ( Function == null ) {
76     gTestcases[0].reason += " Function == null";
77   }
78   if ( String == null ) {
79     gTestcases[0].reason += " String == null";
80   }
81   if ( Array == null ) {
82     gTestcases[0].reason += " Array == null";
83   }
84   if ( Number == null ) {
85     gTestcases[0].reason += " Function == null";
86   }
87   if ( Math == null ) {
88     gTestcases[0].reason += " Math == null";
89   }
90   if ( Boolean == null ) {
91     gTestcases[0].reason += " Boolean == null";
92   }
93   if ( Date  == null ) {
94     gTestcases[0].reason += " Date == null";
95   }
96 /*
97   if ( NaN == null ) {
98   gTestcases[0].reason += " NaN == null";
99   }
100   if ( Infinity == null ) {
101   gTestcases[0].reason += " Infinity == null";
102   }
103 */
104   if ( eval == null ) {
105     gTestcases[0].reason += " eval == null";
106   }
107   if ( parseInt == null ) {
108     gTestcases[0].reason += " parseInt == null";
109   }
110
111   if ( gTestcases[0].reason != "" ) {
112     gTestcases[0].actual = "fail";
113   } else {
114     gTestcases[0].actual = "pass";
115   }
116   gTestcases[0].expect = "pass";
117
118   for ( gTc=0; gTc < gTestcases.length; gTc++ ) {
119
120     gTestcases[gTc].passed = writeTestCaseResult(
121       gTestcases[gTc].expect,
122       gTestcases[gTc].actual,
123       gTestcases[gTc].description +" = "+
124       gTestcases[gTc].actual );
125
126     gTestcases[gTc].reason += ( gTestcases[gTc].passed ) ? "" : "wrong value ";
127   }
128   stopTest();
129   return ( gTestcases );
130 }