mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
187 lines
5.4 KiB
JavaScript
187 lines
5.4 KiB
JavaScript
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
*
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
* http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
* for the specific language governing rights and limitations under the
|
|
* License.
|
|
*
|
|
* The Original Code is Mozilla Communicator client code, released
|
|
* March 31, 1998.
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* Netscape Communications Corporation.
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
* the provisions above, a recipient may use your version of this file under
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
*
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
/**
|
|
File Name: tostring-1.js
|
|
Section: Function.toString
|
|
Description:
|
|
|
|
Since the behavior of Function.toString() is implementation-dependent,
|
|
toString tests for function are not in the ECMA suite.
|
|
|
|
Currently, an attempt to parse the toString output for some functions
|
|
and verify that the result is something reasonable.
|
|
|
|
This verifies
|
|
http://scopus.mcom.com/bugsplat/show_bug.cgi?id=99212
|
|
|
|
Author: christine@netscape.com
|
|
Date: 12 november 1997
|
|
*/
|
|
|
|
var SECTION = "tostring-2";
|
|
var VERSION = "JS1_2";
|
|
var TITLE = "Function.toString()";
|
|
var BUGNUMBER="123444";
|
|
startTest();
|
|
|
|
writeHeaderToLog( SECTION + " "+ TITLE);
|
|
|
|
var tab = " ";
|
|
|
|
|
|
var equals = new TestFunction( "Equals", "a, b", tab+ "return a == b;" );
|
|
function Equals (a, b) {
|
|
return a == b;
|
|
}
|
|
|
|
var reallyequals = new TestFunction( "ReallyEquals", "a, b",
|
|
( version() <= 120 ) ? tab +"return a == b;" : tab +"return a === b;" );
|
|
function ReallyEquals( a, b ) {
|
|
return a === b;
|
|
}
|
|
|
|
var doesntequal = new TestFunction( "DoesntEqual", "a, b", tab + "return a != b;" );
|
|
function DoesntEqual( a, b ) {
|
|
return a != b;
|
|
}
|
|
|
|
var reallydoesntequal = new TestFunction( "ReallyDoesntEqual", "a, b",
|
|
( version() <= 120 ) ? tab +"return a != b;" : tab +"return a !== b;" );
|
|
function ReallyDoesntEqual( a, b ) {
|
|
return a !== b;
|
|
}
|
|
|
|
var testor = new TestFunction( "TestOr", "a", tab+"if (a == null || a == void 0) {\n"+
|
|
tab +tab+"return 0;\n"+tab+"} else {\n"+tab+tab+"return a;\n"+tab+"}" );
|
|
function TestOr( a ) {
|
|
if ( a == null || a == void 0 )
|
|
return 0;
|
|
else
|
|
return a;
|
|
}
|
|
|
|
var testand = new TestFunction( "TestAnd", "a", tab+"if (a != null && a != void 0) {\n"+
|
|
tab+tab+"return a;\n" + tab+ "} else {\n"+tab+tab+"return 0;\n"+tab+"}" );
|
|
function TestAnd( a ) {
|
|
if ( a != null && a != void 0 )
|
|
return a;
|
|
else
|
|
return 0;
|
|
}
|
|
|
|
var or = new TestFunction( "Or", "a, b", tab + "return a | b;" );
|
|
function Or( a, b ) {
|
|
return a | b;
|
|
}
|
|
|
|
var and = new TestFunction( "And", "a, b", tab + "return a & b;" );
|
|
function And( a, b ) {
|
|
return a & b;
|
|
}
|
|
|
|
var xor = new TestFunction( "XOr", "a, b", tab + "return a ^ b;" );
|
|
function XOr( a, b ) {
|
|
return a ^ b;
|
|
}
|
|
|
|
new TestCase( SECTION,
|
|
"Equals.toString()",
|
|
equals.valueOf(),
|
|
Equals.toString() );
|
|
|
|
new TestCase( SECTION,
|
|
"ReallyEquals.toString()",
|
|
reallyequals.valueOf(),
|
|
ReallyEquals.toString() );
|
|
|
|
new TestCase( SECTION,
|
|
"DoesntEqual.toString()",
|
|
doesntequal.valueOf(),
|
|
DoesntEqual.toString() );
|
|
|
|
new TestCase( SECTION,
|
|
"ReallyDoesntEqual.toString()",
|
|
reallydoesntequal.valueOf(),
|
|
ReallyDoesntEqual.toString() );
|
|
|
|
new TestCase( SECTION,
|
|
"TestOr.toString()",
|
|
testor.valueOf(),
|
|
TestOr.toString() );
|
|
|
|
new TestCase( SECTION,
|
|
"TestAnd.toString()",
|
|
testand.valueOf(),
|
|
TestAnd.toString() );
|
|
|
|
new TestCase( SECTION,
|
|
"Or.toString()",
|
|
or.valueOf(),
|
|
Or.toString() );
|
|
|
|
new TestCase( SECTION,
|
|
"And.toString()",
|
|
and.valueOf(),
|
|
And.toString() );
|
|
|
|
new TestCase( SECTION,
|
|
"XOr.toString()",
|
|
xor.valueOf(),
|
|
XOr.toString() );
|
|
|
|
test();
|
|
|
|
function TestFunction( name, args, body ) {
|
|
this.name = name;
|
|
this.arguments = args.toString();
|
|
this.body = body;
|
|
|
|
/* the format of Function.toString() in JavaScript 1.2 is:
|
|
function name ( arguments ) {
|
|
body
|
|
}
|
|
*/
|
|
this.value = "function " + (name ? name : "anonymous" )+
|
|
"("+args+") {\n"+ (( body ) ? body +"\n" : "") + "}";
|
|
|
|
this.toString = new Function( "return this.value" );
|
|
this.valueOf = new Function( "return this.value" );
|
|
return this;
|
|
}
|