mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 03:08:42 +00:00
143 lines
4.8 KiB
JavaScript
143 lines
4.8 KiB
JavaScript
/*
|
|
* Copyright 2008 Jacek Caban for CodeWeavers
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
var tmp;
|
|
|
|
ok(true, "true is not true?");
|
|
ok(!false, "!false is not true");
|
|
ok(!undefined, "!undefined is not true");
|
|
ok(!null, "!null is not true");
|
|
ok(!0, "!0 is not true");
|
|
ok(!0.0, "!0.0 is not true");
|
|
|
|
ok(1 === 1, "1 === 1 is false");
|
|
ok(!(1 === 2), "!(1 === 2) is false");
|
|
ok(1.0 === 1, "1.0 === 1 is false");
|
|
ok("abc" === "abc", "\"abc\" === \"abc\" is false");
|
|
ok(true === true, "true === true is false");
|
|
ok(null === null, "null === null is false");
|
|
ok(undefined === undefined, "undefined === undefined is false");
|
|
ok(!(undefined === null), "!(undefined === null) is false");
|
|
|
|
ok(1 !== 2, "1 !== 2 is false");
|
|
ok(null !== undefined, "null !== undefined is false");
|
|
|
|
var trueVar = true;
|
|
ok(trueVar, "trueVar is not true");
|
|
|
|
ok(ScriptEngine.length === 0, "ScriptEngine.length is not 0");
|
|
|
|
function testFunc1(x, y) {
|
|
ok(this !== undefined, "this is undefined");
|
|
ok(x === true, "x is not 1");
|
|
ok(y === "test", "y is not \"test\"");
|
|
ok(arguments.length === 2, "arguments.length is not 2");
|
|
ok(arguments["0"] === true, "arguments[0] is not true");
|
|
ok(arguments["1"] === "test", "arguments[1] is not \"test\"");
|
|
|
|
return true;
|
|
}
|
|
|
|
ok(testFunc1.length === 2, "testFunc1.length is not 2");
|
|
|
|
ok(Object.prototype !== undefined, "Object.prototype is undefined");
|
|
ok(Object.prototype.prototype === undefined, "Object.prototype is not undefined");
|
|
ok(String.prototype !== undefined, "String.prototype is undefined");
|
|
ok(Array.prototype !== undefined, "Array.prototype is undefined");
|
|
ok(Boolean.prototype !== undefined, "Boolean.prototype is undefined");
|
|
ok(Number.prototype !== undefined, "Number.prototype is undefined");
|
|
ok(RegExp.prototype !== undefined, "RegExp.prototype is undefined");
|
|
ok(Math !== undefined, "Math is undefined");
|
|
ok(Math.prototype === undefined, "Math.prototype is not undefined");
|
|
|
|
ok(typeof(0) === "number", "typeof(0) is not number");
|
|
ok(typeof(1.5) === "number", "typeof(1.5) is not number");
|
|
ok(typeof("abc") === "string", "typeof(\"abc\") is not string");
|
|
ok(typeof("") === "string", "typeof(\"\") is not string");
|
|
ok(typeof(true) === "boolean", "typeof(true) is not boolean");
|
|
ok(typeof(null) === "object", "typeof(null) is not object");
|
|
ok(typeof(undefined) === "undefined", "typeof(undefined) is not undefined");
|
|
ok(typeof(Math) === "object", "typeof(Math) is not object");
|
|
ok(typeof(String.prototype) === "object", "typeof(String.prototype) is not object");
|
|
ok(typeof(testFunc1) === "function", "typeof(testFunc1) is not function");
|
|
ok(typeof(String) === "function", "typeof(String) is not function");
|
|
ok(typeof(ScriptEngine) === "function", "typeof(ScriptEngine) is not function");
|
|
ok(typeof(this) === "object", "typeof(this) is not object");
|
|
|
|
ok(testFunc1(true, "test") === true, "testFunc1 not returned true");
|
|
|
|
var obj1 = new Object();
|
|
ok(typeof(obj1) === "object", "typeof(obj1) is not object");
|
|
obj1.test = true;
|
|
obj1.func = function () {
|
|
ok(this === obj1, "this is not obj1");
|
|
ok(this.test === true, "this.test is not true");
|
|
ok(arguments.length === 1, "arguments.length is not 1");
|
|
ok(arguments["0"] === true, "arguments[0] is not true");
|
|
|
|
return "test";
|
|
};
|
|
|
|
ok(obj1.func(true) === "test", "obj1.func(true) is not \"test\"");
|
|
|
|
function testConstr1() {
|
|
this.var1 = 1;
|
|
|
|
ok(this !== undefined, "this is undefined");
|
|
ok(arguments.length === 1, "arguments.length is not 1");
|
|
ok(arguments["0"] === true, "arguments[0] is not 1");
|
|
|
|
return false;
|
|
}
|
|
|
|
testConstr1.prototype.pvar = 1;
|
|
|
|
var obj2 = new testConstr1(true);
|
|
ok(typeof(obj2) === "object", "typeof(obj2) is not object");
|
|
ok(obj2.pvar === 1, "obj2.pvar is not 1");
|
|
|
|
testConstr1.prototype.pvar = 2;
|
|
ok(obj2.pvar === 2, "obj2.pvar is not 2");
|
|
|
|
obj2.pvar = 3;
|
|
testConstr1.prototype.pvar = 1;
|
|
ok(obj2.pvar === 3, "obj2.pvar is not 3");
|
|
|
|
tmp = 0;
|
|
if(true)
|
|
tmp = 1;
|
|
else
|
|
ok(false, "else evaluated");
|
|
ok(tmp === 1, "tmp !== 1, if not evaluated?");
|
|
|
|
tmp = 0;
|
|
if(1 === 0)
|
|
ok(false, "if evaluated");
|
|
else
|
|
tmp = 1;
|
|
ok(tmp === 1, "tmp !== 1, if not evaluated?");
|
|
|
|
if(false)
|
|
ok(false, "if(false) evaluated");
|
|
|
|
tmp = 0;
|
|
if(true)
|
|
tmp = 1;
|
|
ok(tmp === 1, "tmp !== 1, if(true) not evaluated?");
|
|
|
|
reportSuccess();
|