2180fc56554c892593504014230a92f99da156fd
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / parserstress / tests / ecma / Expressions / 11.8.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 = '11.8.3.js';
40
41 /**
42    File Name:          11.8.3.js
43    ECMA Section:       11.8.3  The less-than-or-equal operator ( <= )
44    Description:
45
46    Author:             christine@netscape.com
47    Date:               12 november 1997
48 */
49 var SECTION = "11.8.1";
50 var VERSION = "ECMA_1";
51 startTest();
52
53 writeHeaderToLog( SECTION + " The less-than-or-equal operator ( <= )");
54
55 new TestCase( SECTION, "true <= false",              false,      true <= false );
56 new TestCase( SECTION, "false <= true",              true,       false <= true );
57 new TestCase( SECTION, "false <= false",             true,      false <= false );
58 new TestCase( SECTION, "true <= true",               true,      true <= true );
59
60 new TestCase( SECTION, "new Boolean(true) <= new Boolean(true)",     true,  new Boolean(true) <= new Boolean(true) );
61 new TestCase( SECTION, "new Boolean(true) <= new Boolean(false)",    false,  new Boolean(true) <= new Boolean(false) );
62 new TestCase( SECTION, "new Boolean(false) <= new Boolean(true)",    true,   new Boolean(false) <= new Boolean(true) );
63 new TestCase( SECTION, "new Boolean(false) <= new Boolean(false)",   true,  new Boolean(false) <= new Boolean(false) );
64
65 new TestCase( SECTION, "new MyObject(Infinity) <= new MyObject(Infinity)",   true,  new MyObject( Number.POSITIVE_INFINITY ) <= new MyObject( Number.POSITIVE_INFINITY) );
66 new TestCase( SECTION, "new MyObject(-Infinity) <= new MyObject(Infinity)",  true,   new MyObject( Number.NEGATIVE_INFINITY ) <= new MyObject( Number.POSITIVE_INFINITY) );
67 new TestCase( SECTION, "new MyObject(-Infinity) <= new MyObject(-Infinity)", true,  new MyObject( Number.NEGATIVE_INFINITY ) <= new MyObject( Number.NEGATIVE_INFINITY) );
68
69 new TestCase( SECTION, "new MyValueObject(false) <= new MyValueObject(true)",  true,   new MyValueObject(false) <= new MyValueObject(true) );
70 new TestCase( SECTION, "new MyValueObject(true) <= new MyValueObject(true)",   true,  new MyValueObject(true) <= new MyValueObject(true) );
71 new TestCase( SECTION, "new MyValueObject(false) <= new MyValueObject(false)", true,  new MyValueObject(false) <= new MyValueObject(false) );
72
73 new TestCase( SECTION, "new MyStringObject(false) <= new MyStringObject(true)",  true,   new MyStringObject(false) <= new MyStringObject(true) );
74 new TestCase( SECTION, "new MyStringObject(true) <= new MyStringObject(true)",   true,  new MyStringObject(true) <= new MyStringObject(true) );
75 new TestCase( SECTION, "new MyStringObject(false) <= new MyStringObject(false)", true,  new MyStringObject(false) <= new MyStringObject(false) );
76
77 new TestCase( SECTION, "Number.NaN <= Number.NaN",   false,     Number.NaN <= Number.NaN );
78 new TestCase( SECTION, "0 <= Number.NaN",            false,     0 <= Number.NaN );
79 new TestCase( SECTION, "Number.NaN <= 0",            false,     Number.NaN <= 0 );
80
81 new TestCase( SECTION, "0 <= -0",                    true,      0 <= -0 );
82 new TestCase( SECTION, "-0 <= 0",                    true,      -0 <= 0 );
83
84 new TestCase( SECTION, "Infinity <= 0",                  false,      Number.POSITIVE_INFINITY <= 0 );
85 new TestCase( SECTION, "Infinity <= Number.MAX_VALUE",   false,      Number.POSITIVE_INFINITY <= Number.MAX_VALUE );
86 new TestCase( SECTION, "Infinity <= Infinity",           true,       Number.POSITIVE_INFINITY <= Number.POSITIVE_INFINITY );
87
88 new TestCase( SECTION, "0 <= Infinity",                  true,       0 <= Number.POSITIVE_INFINITY );
89 new TestCase( SECTION, "Number.MAX_VALUE <= Infinity",   true,       Number.MAX_VALUE <= Number.POSITIVE_INFINITY );
90
91 new TestCase( SECTION, "0 <= -Infinity",                 false,      0 <= Number.NEGATIVE_INFINITY );
92 new TestCase( SECTION, "Number.MAX_VALUE <= -Infinity",  false,      Number.MAX_VALUE <= Number.NEGATIVE_INFINITY );
93 new TestCase( SECTION, "-Infinity <= -Infinity",         true,       Number.NEGATIVE_INFINITY <= Number.NEGATIVE_INFINITY );
94
95 new TestCase( SECTION, "-Infinity <= 0",                 true,       Number.NEGATIVE_INFINITY <= 0 );
96 new TestCase( SECTION, "-Infinity <= -Number.MAX_VALUE", true,       Number.NEGATIVE_INFINITY <= -Number.MAX_VALUE );
97 new TestCase( SECTION, "-Infinity <= Number.MIN_VALUE",  true,       Number.NEGATIVE_INFINITY <= Number.MIN_VALUE );
98
99 new TestCase( SECTION, "'string' <= 'string'",           true,       'string' <= 'string' );
100 new TestCase( SECTION, "'astring' <= 'string'",          true,       'astring' <= 'string' );
101 new TestCase( SECTION, "'strings' <= 'stringy'",         true,       'strings' <= 'stringy' );
102 new TestCase( SECTION, "'strings' <= 'stringier'",       false,       'strings' <= 'stringier' );
103 new TestCase( SECTION, "'string' <= 'astring'",          false,      'string' <= 'astring' );
104 new TestCase( SECTION, "'string' <= 'strings'",          true,       'string' <= 'strings' );
105
106 test();
107
108 function MyObject(value) {
109   this.value = value;
110   this.valueOf = new Function( "return this.value" );
111   this.toString = new Function( "return this.value +''" );
112 }
113 function MyValueObject(value) {
114   this.value = value;
115   this.valueOf = new Function( "return this.value" );
116 }
117 function MyStringObject(value) {
118   this.value = value;
119   this.toString = new Function( "return this.value +''" );
120 }