mirror of
https://github.com/SSCLI/sscli_20021101
synced 2026-06-08 12:28:57 +00:00
9fa3874800
Moved the original file to the archive subfolder.
250 lines
11 KiB
JavaScript
250 lines
11 KiB
JavaScript
//# ==++==
|
|
//#
|
|
//#
|
|
//# Copyright (c) 2002 Microsoft Corporation. All rights reserved.
|
|
//#
|
|
//# The use and distribution terms for this software are contained in the file
|
|
//# named license.txt, which can be found in the root of this distribution.
|
|
//# By using this software in any fashion, you are agreeing to be bound by the
|
|
//# terms of this license.
|
|
//#
|
|
//# You must not remove this notice, or any other, from this software.
|
|
//#
|
|
//#
|
|
//# ==--==
|
|
//####################################################################################
|
|
@cc_on
|
|
|
|
|
|
import System;
|
|
|
|
var NULL_DISPATCH = null;
|
|
var apGlobalObj;
|
|
var apPlatform;
|
|
var lFailCount;
|
|
|
|
|
|
var iTestID = 53732;
|
|
|
|
|
|
function verify(sCat, vAct, vExp, bugNum)
|
|
{
|
|
if (null == bugNum) bugNum = "";
|
|
|
|
var nEpsilon = 2.2204460492503131e-016;
|
|
if ( 0==vExp ? Math.abs(vExp-vAct) > nEpsilon : Math.abs(vExp-vAct)/vExp > nEpsilon )
|
|
apLogFailInfo( m_scen+(sCat.length?"--"+sCat:"")+" failed", vExp, vAct,bugNum);
|
|
}
|
|
|
|
var m_scen = "";
|
|
|
|
function atan001()
|
|
{
|
|
|
|
apInitTest("atan001 ");
|
|
|
|
//----------------------------------------------------------------------------
|
|
apInitScenario("1. number, decimal, integer");
|
|
|
|
m_scen = "number, decimal, integer";
|
|
|
|
verify("pos min", Math.atan(1), .7853981633974483, null);
|
|
verify("pos min < n < VT_UI1 pos max", Math.atan(127), 1.562922473770796, null);
|
|
verify("VT_UI1 pos max", Math.atan(255), 1.5668747782701367, null);
|
|
verify("VT_I2 pos excl-min", Math.atan(256), 1.5668900966629296, null);
|
|
verify("VT_I2 pos excl-min < n < VT_I2 pos max", Math.atan(12869), 1.5707186206795818, null);
|
|
verify("VT_I2 pos max", Math.atan(32767), 1.57076580828543, null);
|
|
verify("VT_I4 pos excl-min", Math.atan(32768), 1.570765809216781, null);
|
|
verify("VT_I4 pos excl-min < n < pos max", Math.atan(1143483646), 1.570796325920376, null);
|
|
verify("pos max", Math.atan(2147483647), 1.5707963263292353, null);
|
|
|
|
verify("neg max", Math.atan(-1), -.7853981633974483, null);
|
|
verify("neg max > n > VT_UI1 neg min", Math.atan(-201), -1.5658212434640426, null);
|
|
verify("VT_UI1 neg min", Math.atan(-256), -1.5668900966629296, null);
|
|
verify("VT_I2 neg excl-max", Math.atan(-257), -1.566905295848252, null);
|
|
verify("VT_I2 neg excl-max > n > VT_I2 neg min", Math.atan(-12869), -1.5707186206795818, null);
|
|
verify("VT_I2 neg min", Math.atan(-32768), -1.570765809216781, null);
|
|
verify("VT_I4 neg excl-max", Math.atan(-32769), -1.5707658101480753, null);
|
|
verify("VT_I4 neg excl-max > n > neg min", Math.atan(-1143483646), -1.570796325920376, null);
|
|
verify("neg min", Math.atan(-2147483648), -1.5707963263292353, null);
|
|
|
|
verify("zero", Math.atan(0), 0, null);
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
apInitScenario("2. number, hexidecimal");
|
|
|
|
m_scen = "number, hexidecimal";
|
|
|
|
verify("pos min < n < pos hex excl-min", Math.atan(0xabcdef), 1.5707962379800202, null);
|
|
verify("pos hex excl-min: 0x80000000", Math.atan(0x80000000), 1.5707963263292353, null);
|
|
verify("max pos: 0xffffffff", Math.atan(0xffffffff), 1.570796326562066, null);
|
|
|
|
verify("neg max > n > neg hex excl-max", Math.atan(-0xabcdef), -1.5707962379800202, null);
|
|
verify("pos hex excl-min: -0x80000001", Math.atan(-0x80000001), -1.5707963263292353, null);
|
|
verify("min neg: -0xffffffff", Math.atan(-0xffffffff), -1.570796326562066, null);
|
|
|
|
verify("zero", Math.atan(0x0), 0, null);
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
apInitScenario("3. number, octal");
|
|
|
|
m_scen = "number, octal";
|
|
|
|
verify("pos min < n < pos hex excl-min", Math.atan(01234567), 1.5707934061573798, null);
|
|
verify("pos hex excl-min: 020000000000", Math.atan(020000000000), 1.5707963263292353, null);
|
|
verify("max pos: 037777777777", Math.atan(037777777777), 1.570796326562066, null);
|
|
|
|
verify("neg max > n > neg hex excl-max", Math.atan(-076543210), -1.570796265948489, null);
|
|
verify("pos hex excl-min: -020000000001", Math.atan(-020000000001), -1.5707963263292353, null);
|
|
verify("min neg: -037777777777", Math.atan(-037777777777), -1.570796326562066, null);
|
|
|
|
verify("pos zero", Math.atan(00), 0, null);
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
apInitScenario("4. number, float");
|
|
|
|
m_scen = "number, float";
|
|
|
|
verify("pos min", Math.atan(2.2250738585072014e-308), 2.2250738585072014e-308, null);
|
|
verify("pos min < n < VT_R4 pos max", Math.atan(9876543210000), 1.5707963267947953, null);
|
|
verify("VT_R4 pos max", Math.atan(3.402823466e38), 1.5707963267948966, null);
|
|
verify("VT_R8 pos excl-min", Math.atan(3.402823467e38), 1.5707963267948966, null);
|
|
verify("VT_R8 pos excl-min < n < pos max", Math.atan(4.43269743388067e107), 1.5707963267948966, null);
|
|
verify("pos max", Math.atan(1.7976931348623157e308), 1.5707963267948966, null);
|
|
|
|
verify("neg max", Math.atan(-2.2250738585072012595e-308), 0, null);
|
|
verify("neg max > n > VT_R4 neg min", Math.atan(-66100533593023300000), -1.5707963267948966, null);
|
|
verify("VT_R4 neg min", Math.atan(-3.402823466e38), -1.5707963267948966, null);
|
|
verify("VT_R8 neg excl-max", Math.atan(-3.402823467e38), -1.5707963267948966, null);
|
|
verify("VT_R8 neg excl-max > n > neg min", Math.atan(-7.17170763763262e243), -1.5707963267948966, null);
|
|
verify("neg min", Math.atan(-1.7976931348623157e308), -1.5707963267948966, null);
|
|
|
|
verify("zero", Math.atan(0), 0, null);
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
apInitScenario("5. num string, decimal, integer");
|
|
|
|
m_scen = "number, decimal, integer";
|
|
|
|
verify("pos min", Math.atan("1"), .7853981633974483, null);
|
|
verify("pos min < n < VT_UI1 pos max", Math.atan("127"), 1.562922473770796, null);
|
|
verify("VT_UI1 pos max", Math.atan("255"), 1.5668747782701367, null);
|
|
verify("VT_I2 pos excl-min", Math.atan("256"), 1.5668900966629296, null);
|
|
verify("VT_I2 pos excl-min < n < VT_I2 pos max", Math.atan("12869"), 1.5707186206795818, null);
|
|
verify("VT_I2 pos max", Math.atan("32767"), 1.57076580828543, null);
|
|
verify("VT_I4 pos excl-min", Math.atan("32768"), 1.570765809216781, null);
|
|
verify("VT_I4 pos excl-min < n < pos max", Math.atan("1143483646"), 1.570796325920376, null);
|
|
verify("pos max", Math.atan("2147483647"), 1.5707963263292353, null);
|
|
|
|
verify("neg max", Math.atan("-1"), -.7853981633974483, null);
|
|
verify("neg max > n > VT_UI1 neg min", Math.atan("-201"), -1.5658212434640426, null);
|
|
verify("VT_UI1 neg min", Math.atan("-256"), -1.5668900966629296, null);
|
|
verify("VT_I2 neg excl-max", Math.atan("-257"), -1.566905295848252, null);
|
|
verify("VT_I2 neg excl-max > n > VT_I2 neg min", Math.atan("-12869"), -1.5707186206795818, null);
|
|
verify("VT_I2 neg min", Math.atan("-32768"), -1.570765809216781, null);
|
|
verify("VT_I4 neg excl-max", Math.atan("-32769"), -1.5707658101480753, null);
|
|
verify("VT_I4 neg excl-max > n > neg min", Math.atan("-1143483646"), -1.570796325920376, null);
|
|
verify("neg min", Math.atan("-2147483648"), -1.5707963263292353, null);
|
|
|
|
verify("zero", Math.atan("0"), 0, null);
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
apInitScenario("7. num string, octal");
|
|
|
|
m_scen = "num string, octal";
|
|
|
|
verify("pos min < n < pos hex excl-min", Math.atan("01234567"), 1.5707955167943053, null);
|
|
verify("pos hex excl-min: 020000000000", Math.atan("020000000000"), 1.5707963267448966, null);
|
|
verify("max pos: 037777777777", Math.atan("037777777777"), 1.570796326768426, null);
|
|
|
|
verify("neg max > n > neg hex excl-max", Math.atan("-076543210"), -1.5707963137303804, null);
|
|
verify("pos hex excl-min: -020000000001", Math.atan("-020000000001"), -1.5707963267448966, null);
|
|
verify("min neg: -037777777777", Math.atan("-037777777777"), -1.570796326768426, null);
|
|
|
|
verify("pos zero", Math.atan("00"), 0, null);
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
apInitScenario("8. num string, float");
|
|
|
|
m_scen = "number, float";
|
|
|
|
verify("pos min", Math.atan("2.2250738585072014e-308"), 2.2250738585072014e-308, null);
|
|
verify("pos min < n < VT_R4 pos max", Math.atan("9.87654321e12"), 1.5707963267947953, null);
|
|
verify("VT_R4 pos max", Math.atan("3.402823466e+38"), 1.5707963267948966, null);
|
|
verify("VT_R8 pos excl-min", Math.atan("3.402823467e+38"), 1.5707963267948966, null);
|
|
verify("VT_R8 pos excl-min < n < pos max", Math.atan("4.43269743388067e107"), 1.5707963267948966, null);
|
|
verify("pos max", Math.atan("1.7976931348623158e308"), 1.5707963267948966, null);
|
|
|
|
verify("neg max", Math.atan("-2.2250738585072012595e-308"), -2.225073858507201e-308, null);
|
|
verify("neg max > n > VT_R4 neg min", Math.atan("-6.61005335930233e19"), -1.5707963267948966, null);
|
|
verify("VT_R4 neg min", Math.atan("-3.402823466e+38"), -1.5707963267948966, null);
|
|
verify("VT_R8 neg excl-max", Math.atan("-3.402823467e+38"), -1.5707963267948966, null);
|
|
verify("VT_R8 neg excl-max > n > neg min", Math.atan("-7.17170763763262e243"), -1.5707963267948966, null);
|
|
verify("neg min", Math.atan("-1.797693134862315807e308"), -1.5707963267948966, null);
|
|
|
|
verify("zero", Math.atan("0.0"), 0, null);
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
apInitScenario("13. constants");
|
|
|
|
m_scen = "constants";
|
|
|
|
verify("true",Math.atan(true), .7853981633974483, null);
|
|
verify("false",Math.atan(false), 0, null);
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
apInitScenario("14. null");
|
|
|
|
m_scen = "null";
|
|
|
|
verify("",Math.atan(null), 0, null);
|
|
|
|
|
|
|
|
apEndTest();
|
|
|
|
}
|
|
|
|
|
|
atan001();
|
|
|
|
|
|
if(lFailCount >= 0) System.Environment.ExitCode = lFailCount;
|
|
else System.Environment.ExitCode = 1;
|
|
|
|
function apInitTest(stTestName) {
|
|
lFailCount = 0;
|
|
|
|
apGlobalObj = new Object();
|
|
apGlobalObj.apGetPlatform = function Funca() { return "Rotor" }
|
|
apGlobalObj.LangHost = function Funcb() { return 1033;}
|
|
apGlobalObj.apGetLangExt = function Funcc(num) { return "EN"; }
|
|
|
|
apPlatform = apGlobalObj.apGetPlatform();
|
|
var sVer = "1.0"; //navigator.appVersion.toUpperCase().charAt(navigator.appVersion.toUpperCase().indexOf("MSIE")+5);
|
|
apGlobalObj.apGetHost = function Funcp() { return "Rotor " + sVer; }
|
|
print ("apInitTest: " + stTestName);
|
|
}
|
|
|
|
function apInitScenario(stScenarioName) {print( "\tapInitScenario: " + stScenarioName);}
|
|
|
|
function apLogFailInfo(stMessage, stExpected, stActual, stBugNum) {
|
|
lFailCount = lFailCount + 1;
|
|
print ("***** FAILED:");
|
|
print ("\t\t" + stMessage);
|
|
print ("\t\tExpected: " + stExpected);
|
|
print ("\t\tActual: " + stActual);
|
|
}
|
|
|
|
function apGetLocale(){ return 1033; }
|
|
function apWriteDebug(s) { print("dbg ---> " + s) }
|
|
function apEndTest() {}
|