2005-08-31 08:47:33 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2005-09-13 22:40:56 +04:00
|
|
|
/* ***** 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/
|
2005-08-31 08:47:33 +04:00
|
|
|
*
|
2005-09-13 22:40:56 +04:00
|
|
|
* 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.
|
2005-08-31 08:47:33 +04:00
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2005-09-13 22:40:56 +04:00
|
|
|
* 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.
|
2005-08-31 08:47:33 +04:00
|
|
|
*
|
2005-09-13 22:40:56 +04:00
|
|
|
* 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 ***** */
|
2005-08-31 08:47:33 +04:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* JavaScript shared functions file for running the tests in either
|
|
|
|
* stand-alone JavaScript engine. To run a test, first load this file,
|
|
|
|
* then load the test script.
|
|
|
|
*/
|
|
|
|
|
1999-05-27 01:48:43 +04:00
|
|
|
var completed = false;
|
2005-08-31 08:47:33 +04:00
|
|
|
var testcases = new Array();
|
|
|
|
var tc = testcases.length;
|
1999-05-27 01:48:43 +04:00
|
|
|
|
2005-08-31 08:47:33 +04:00
|
|
|
var SECTION = "";
|
|
|
|
var VERSION = "";
|
|
|
|
var BUGNUMBER="";
|
1999-05-27 01:48:43 +04:00
|
|
|
|
|
|
|
var TT = "";
|
|
|
|
var TT_ = "";
|
|
|
|
var BR = "";
|
|
|
|
var NBSP = " ";
|
|
|
|
var CR = "\n";
|
|
|
|
var FONT = "";
|
|
|
|
var FONT_ = "";
|
|
|
|
var FONT_RED = "";
|
|
|
|
var FONT_GREEN = "";
|
|
|
|
var B = "";
|
|
|
|
var B_ = ""
|
|
|
|
var H2 = "";
|
|
|
|
var H2_ = "";
|
|
|
|
var HR = "";
|
|
|
|
|
|
|
|
// version("130");
|
|
|
|
|
|
|
|
var PASSED = " PASSED!"
|
|
|
|
var FAILED = " FAILED! expected: ";
|
|
|
|
|
2005-08-31 08:47:33 +04:00
|
|
|
var DEBUG = false;
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* wrapper for test case constructor that doesn't require the SECTION
|
|
|
|
* argument.
|
|
|
|
*/
|
|
|
|
|
|
|
|
function AddTestCase( description, expect, actual ) {
|
|
|
|
new TestCase( SECTION, description, expect, actual );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* TestCase constructor
|
|
|
|
*
|
|
|
|
*/
|
1999-05-27 01:48:43 +04:00
|
|
|
function TestCase( n, d, e, a ) {
|
2005-10-10 03:19:44 +04:00
|
|
|
this.path = (typeof gTestPath == 'undefined') ? '' : gTestPath;
|
2005-08-31 08:47:33 +04:00
|
|
|
this.name = n;
|
|
|
|
this.description = d;
|
|
|
|
this.expect = e;
|
|
|
|
this.actual = a;
|
|
|
|
this.passed = true;
|
|
|
|
this.reason = "";
|
|
|
|
this.bugnumber = BUGNUMBER;
|
|
|
|
|
|
|
|
this.passed = getTestCaseResult( this.expect, this.actual );
|
|
|
|
if ( DEBUG ) {
|
2006-10-30 19:48:38 +03:00
|
|
|
print( "added " + this.description );
|
2005-08-31 08:47:33 +04:00
|
|
|
}
|
|
|
|
/*
|
|
|
|
* testcases are solely maintained in the TestCase
|
|
|
|
* constructor. tc will _always_ point to one past the
|
|
|
|
* last testcase. If an exception occurs during the call
|
|
|
|
* to the constructor, then we are assured that the tc
|
|
|
|
* index has not been incremented.
|
|
|
|
*/
|
|
|
|
|
|
|
|
testcases[tc++] = this;
|
1999-05-27 01:48:43 +04:00
|
|
|
}
|
2005-08-31 08:47:33 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Set up test environment.
|
|
|
|
*
|
|
|
|
*/
|
1999-05-27 01:48:43 +04:00
|
|
|
function startTest() {
|
2005-08-31 08:47:33 +04:00
|
|
|
// JavaScript 1.3 is supposed to be compliant ecma version 1.0
|
|
|
|
if ( VERSION == "ECMA_1" ) {
|
|
|
|
version ( "130" );
|
|
|
|
}
|
|
|
|
if ( VERSION == "JS_1.3" ) {
|
|
|
|
version ( "130" );
|
|
|
|
}
|
|
|
|
if ( VERSION == "JS_1.2" ) {
|
|
|
|
version ( "120" );
|
|
|
|
}
|
|
|
|
if ( VERSION == "JS_1.1" ) {
|
|
|
|
version ( "110" );
|
|
|
|
}
|
|
|
|
// for ecma version 2.0, we will leave the javascript version to
|
|
|
|
// the default ( for now ).
|
|
|
|
|
|
|
|
writeHeaderToLog( SECTION + " "+ TITLE);
|
|
|
|
if ( BUGNUMBER ) {
|
2006-10-30 19:48:38 +03:00
|
|
|
print ("BUGNUMBER: " + BUGNUMBER );
|
2005-08-31 08:47:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function test() {
|
|
|
|
for ( tc=0; tc < testcases.length; tc++ ) {
|
|
|
|
try
|
|
|
|
{
|
|
|
|
testcases[tc].passed = writeTestCaseResult(
|
|
|
|
testcases[tc].expect,
|
|
|
|
testcases[tc].actual,
|
|
|
|
testcases[tc].description +" = "+
|
|
|
|
testcases[tc].actual );
|
|
|
|
|
|
|
|
testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
|
1999-05-27 01:48:43 +04:00
|
|
|
}
|
2005-08-31 08:47:33 +04:00
|
|
|
catch(e)
|
|
|
|
{
|
2006-10-30 19:48:38 +03:00
|
|
|
print('test(): empty testcase for tc = ' + tc + ' ' + e);
|
1999-05-27 01:48:43 +04:00
|
|
|
}
|
2005-08-31 08:47:33 +04:00
|
|
|
}
|
|
|
|
stopTest();
|
|
|
|
return ( testcases );
|
1999-05-27 01:48:43 +04:00
|
|
|
}
|
2005-08-31 08:47:33 +04:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Compare expected result to the actual result and figure out whether
|
|
|
|
* the test case passed.
|
|
|
|
*/
|
1999-05-27 01:48:43 +04:00
|
|
|
function getTestCaseResult( expect, actual ) {
|
2005-08-31 08:47:33 +04:00
|
|
|
// because ( NaN == NaN ) always returns false, need to do
|
|
|
|
// a special compare to see if we got the right result.
|
|
|
|
if ( actual != actual ) {
|
|
|
|
if ( typeof actual == "object" ) {
|
|
|
|
actual = "NaN object";
|
|
|
|
} else {
|
|
|
|
actual = "NaN number";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( expect != expect ) {
|
|
|
|
if ( typeof expect == "object" ) {
|
|
|
|
expect = "NaN object";
|
|
|
|
} else {
|
|
|
|
expect = "NaN number";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var passed = ( expect == actual ) ? true : false;
|
|
|
|
|
|
|
|
// if both objects are numbers
|
|
|
|
// need to replace w/ IEEE standard for rounding
|
|
|
|
if ( !passed
|
|
|
|
&& typeof(actual) == "number"
|
|
|
|
&& typeof(expect) == "number"
|
|
|
|
) {
|
|
|
|
if ( Math.abs(actual-expect) < 0.0000001 ) {
|
|
|
|
passed = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// verify type is the same
|
|
|
|
if ( typeof(expect) != typeof(actual) ) {
|
|
|
|
passed = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return passed;
|
1999-05-27 01:48:43 +04:00
|
|
|
}
|
2005-08-31 08:47:33 +04:00
|
|
|
/*
|
|
|
|
* Begin printing functions. These functions use the shell's
|
|
|
|
* print function. When running tests in the browser, these
|
|
|
|
* functions, override these functions with functions that use
|
|
|
|
* document.write.
|
|
|
|
*/
|
|
|
|
|
1999-05-27 01:48:43 +04:00
|
|
|
function writeTestCaseResult( expect, actual, string ) {
|
2005-08-31 08:47:33 +04:00
|
|
|
var passed = getTestCaseResult( expect, actual );
|
|
|
|
writeFormattedResult( expect, actual, string, passed );
|
|
|
|
return passed;
|
1999-05-27 01:48:43 +04:00
|
|
|
}
|
|
|
|
function writeFormattedResult( expect, actual, string, passed ) {
|
2005-08-31 08:47:33 +04:00
|
|
|
var s = TT + string ;
|
1999-05-27 01:48:43 +04:00
|
|
|
|
2005-08-31 08:47:33 +04:00
|
|
|
for ( k = 0;
|
|
|
|
k < (60 - string.length >= 0 ? 60 - string.length : 5) ;
|
|
|
|
k++ ) {
|
1999-05-27 01:48:43 +04:00
|
|
|
// s += NBSP;
|
2005-08-31 08:47:33 +04:00
|
|
|
}
|
1999-05-27 01:48:43 +04:00
|
|
|
|
2005-08-31 08:47:33 +04:00
|
|
|
s += B ;
|
|
|
|
s += ( passed ) ? FONT_GREEN + NBSP + PASSED : FONT_RED + NBSP + FAILED + expect + TT_ ;
|
1999-05-27 01:48:43 +04:00
|
|
|
|
2006-10-30 19:48:38 +03:00
|
|
|
print( s + FONT_ + B_ + TT_ );
|
1999-05-27 01:48:43 +04:00
|
|
|
|
2005-08-31 08:47:33 +04:00
|
|
|
return passed;
|
1999-05-27 01:48:43 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
function writeHeaderToLog( string ) {
|
2005-08-31 08:47:33 +04:00
|
|
|
print( H2 + string + H2_ );
|
1999-05-27 01:48:43 +04:00
|
|
|
}
|
2005-08-31 08:47:33 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* When running in the shell, run the garbage collector after the
|
|
|
|
* test has completed.
|
|
|
|
*/
|
|
|
|
|
1999-05-27 01:48:43 +04:00
|
|
|
function stopTest() {
|
2006-10-30 19:48:38 +03:00
|
|
|
print( HR );
|
2005-08-31 08:47:33 +04:00
|
|
|
var gc;
|
|
|
|
if ( gc != undefined ) {
|
|
|
|
gc();
|
|
|
|
}
|
|
|
|
completed = true;
|
1999-05-27 01:48:43 +04:00
|
|
|
}
|
2005-08-31 08:47:33 +04:00
|
|
|
/*
|
|
|
|
* Convenience function for displaying failed test cases. Useful
|
|
|
|
* when running tests manually.
|
|
|
|
*
|
|
|
|
*/
|
1999-05-27 01:48:43 +04:00
|
|
|
function getFailedCases() {
|
|
|
|
for ( var i = 0; i < testcases.length; i++ ) {
|
2005-08-31 08:47:33 +04:00
|
|
|
if ( ! testcases[i].passed ) {
|
2006-10-30 19:48:38 +03:00
|
|
|
print ( testcases[i].description +" = " +testcases[i].actual +" expected: "+ testcases[i].expect );
|
2005-08-31 08:47:33 +04:00
|
|
|
}
|
1999-05-27 01:48:43 +04:00
|
|
|
}
|
|
|
|
}
|
2005-10-18 02:33:38 +04:00
|
|
|
|
2007-05-04 22:49:31 +04:00
|
|
|
function optionsInit() {
|
2005-10-18 02:33:38 +04:00
|
|
|
|
2007-05-04 22:49:31 +04:00
|
|
|
// record initial values to support resetting
|
|
|
|
// options to their initial values
|
|
|
|
options.initvalues = {};
|
2005-10-18 02:33:38 +04:00
|
|
|
|
2007-05-04 22:49:31 +04:00
|
|
|
// record values in a stack to support pushing
|
|
|
|
// and popping options
|
|
|
|
options.stackvalues = [];
|
2005-10-18 02:33:38 +04:00
|
|
|
|
2007-05-04 22:49:31 +04:00
|
|
|
var optionNames = options().split(',');
|
2005-10-18 02:33:38 +04:00
|
|
|
|
2007-05-04 22:49:31 +04:00
|
|
|
for (var i = 0; i < optionNames.length; i++)
|
2005-10-18 02:33:38 +04:00
|
|
|
{
|
2007-05-04 22:49:31 +04:00
|
|
|
var optionName = optionNames[i];
|
|
|
|
if (optionName)
|
2005-10-18 02:33:38 +04:00
|
|
|
{
|
2007-05-04 22:49:31 +04:00
|
|
|
options.initvalues[optionName] = '';
|
2005-10-18 02:33:38 +04:00
|
|
|
}
|
|
|
|
}
|
2007-05-04 22:49:31 +04:00
|
|
|
}
|
2005-10-18 02:33:38 +04:00
|
|
|
|
2007-05-04 22:49:31 +04:00
|
|
|
function optionsClear() {
|
|
|
|
|
|
|
|
// turn off current settings
|
|
|
|
var optionNames = options().split(',');
|
|
|
|
for (var i = 0; i < optionNames.length; i++)
|
|
|
|
{
|
|
|
|
var optionName = optionNames[i];
|
|
|
|
if (optionName)
|
2005-10-18 02:33:38 +04:00
|
|
|
{
|
2007-05-04 22:49:31 +04:00
|
|
|
options(optionName);
|
2005-10-18 02:33:38 +04:00
|
|
|
}
|
2007-05-04 22:49:31 +04:00
|
|
|
}
|
|
|
|
}
|
2005-10-18 02:33:38 +04:00
|
|
|
|
2007-05-04 22:49:31 +04:00
|
|
|
function optionsPush()
|
|
|
|
{
|
|
|
|
var optionsframe = {};
|
2005-10-18 02:33:38 +04:00
|
|
|
|
2007-05-04 22:49:31 +04:00
|
|
|
options.stackvalues.push(optionsframe);
|
2005-10-18 02:33:38 +04:00
|
|
|
|
2007-05-04 22:49:31 +04:00
|
|
|
var optionNames = options().split(',');
|
2005-10-28 12:13:36 +04:00
|
|
|
|
2007-05-04 22:49:31 +04:00
|
|
|
for (var i = 0; i < optionNames.length; i++)
|
|
|
|
{
|
|
|
|
var optionName = optionNames[i];
|
|
|
|
if (optionName)
|
2005-10-28 12:13:36 +04:00
|
|
|
{
|
2007-05-04 22:49:31 +04:00
|
|
|
optionsframe[optionName] = '';
|
2005-10-28 12:13:36 +04:00
|
|
|
}
|
2005-10-18 02:33:38 +04:00
|
|
|
}
|
2007-05-04 22:49:31 +04:00
|
|
|
|
|
|
|
optionsClear();
|
2005-10-18 02:33:38 +04:00
|
|
|
}
|
|
|
|
|
2007-05-04 22:49:31 +04:00
|
|
|
function optionsPop()
|
2005-10-18 02:33:38 +04:00
|
|
|
{
|
2007-05-04 22:49:31 +04:00
|
|
|
var optionsframe = options.stackvalues.pop();
|
2005-10-18 02:33:38 +04:00
|
|
|
|
2007-05-04 22:49:31 +04:00
|
|
|
optionsClear();
|
2005-10-18 02:33:38 +04:00
|
|
|
|
2007-05-04 22:49:31 +04:00
|
|
|
for (optionName in optionsframe)
|
|
|
|
{
|
|
|
|
options(optionName);
|
|
|
|
}
|
2005-10-18 02:33:38 +04:00
|
|
|
|
2007-05-04 22:49:31 +04:00
|
|
|
}
|
2005-10-18 02:33:38 +04:00
|
|
|
|
2007-05-04 22:49:31 +04:00
|
|
|
function optionsReset() {
|
2005-10-18 02:33:38 +04:00
|
|
|
|
2007-05-04 22:49:31 +04:00
|
|
|
optionsClear();
|
2005-10-18 02:33:38 +04:00
|
|
|
|
2007-05-04 22:49:31 +04:00
|
|
|
// turn on initial settings
|
|
|
|
for (optionName in options.initvalues)
|
|
|
|
{
|
|
|
|
options(optionName);
|
2005-10-18 02:33:38 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-04 22:49:31 +04:00
|
|
|
if (typeof options == 'function')
|
2005-10-18 02:33:38 +04:00
|
|
|
{
|
2007-05-04 22:49:31 +04:00
|
|
|
optionsInit();
|
|
|
|
optionsClear();
|
2005-10-18 02:33:38 +04:00
|
|
|
}
|
2007-05-04 22:49:31 +04:00
|
|
|
|