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.
356 lines
10 KiB
JavaScript
356 lines
10 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 = 53680;
|
|
|
|
function FuncRetVal() { return "655.35"; }
|
|
function FuncRetNulVal() { return ""; }
|
|
function myObject() { this.retVal = myObjVal(); }
|
|
function myObjVal() { return 123321; }
|
|
|
|
function strop02() {
|
|
var tmp,res,expected,emptyVar;
|
|
|
|
var myDate = new Date();
|
|
myDate.setTime(0); // this is Wed Dec 31 16:00:00 PST 1969
|
|
|
|
var numvar = 4321;
|
|
var strvar = "57";
|
|
var strvarnul = "";
|
|
var boolvar = new Boolean(true);
|
|
|
|
var ary = new Array();
|
|
ary[2] = 12.14;
|
|
ary[3] = 13.14;
|
|
ary[4] = 15.14;
|
|
|
|
var myObj = new myObject();
|
|
var myStr = new String("112");
|
|
|
|
apInitTest("strop02");
|
|
|
|
apInitScenario("null string expression += expr");
|
|
res = "" + ""; res += "alpha" + "beta";
|
|
expected = "alphabeta";
|
|
if (res != expected) {
|
|
apLogFailInfo("wrong result",expected,res,"");
|
|
}
|
|
if (typeof(res) != typeof(expected)) {
|
|
apLogFailInfo("wrong result",typeof(expected),typeof(res),"");
|
|
}
|
|
|
|
apInitScenario("null string expression += funcretval");
|
|
res = "" + ""; res += FuncRetVal();
|
|
expected = "655.35";
|
|
if (res != expected) {
|
|
apLogFailInfo("wrong result",expected,res,"");
|
|
}
|
|
if (typeof(res) != typeof(expected)) {
|
|
apLogFailInfo("wrong result",typeof(expected),typeof(res),"");
|
|
}
|
|
|
|
apInitScenario("null string expression += literal");
|
|
res = "" + ""; res += "JavaScript";
|
|
expected = "JavaScript";
|
|
if (res != expected) {
|
|
apLogFailInfo("wrong result",expected,res,"");
|
|
}
|
|
if (typeof(res) != typeof(expected)) {
|
|
apLogFailInfo("wrong result",typeof(expected),typeof(res),"");
|
|
}
|
|
|
|
apInitScenario("null string expression += variable");
|
|
res = "" + ""; res += strvar;
|
|
expected = "57";
|
|
if (res != expected) {
|
|
apLogFailInfo("wrong result",expected,res,"");
|
|
}
|
|
if (typeof(res) != typeof(expected)) {
|
|
apLogFailInfo("wrong result",typeof(expected),typeof(res),"");
|
|
}
|
|
|
|
apInitScenario("null string expression += null expr");
|
|
res = "" + ""; res += "" + "";
|
|
expected = "";
|
|
if (res != expected) {
|
|
apLogFailInfo("wrong result",expected,res,"");
|
|
}
|
|
if (typeof(res) != typeof(expected)) {
|
|
apLogFailInfo("wrong result",typeof(expected),typeof(res),"");
|
|
}
|
|
|
|
apInitScenario("null string expression += null funcretval");
|
|
res = "" + ""; res += FuncRetNulVal();
|
|
expected = "";
|
|
if (res != expected) {
|
|
apLogFailInfo("wrong result",expected,res,"");
|
|
}
|
|
if (typeof(res) != typeof(expected)) {
|
|
apLogFailInfo("wrong result",typeof(expected),typeof(res),"");
|
|
}
|
|
|
|
apInitScenario("null string expression += null literal");
|
|
res = "" + ""; res += "";
|
|
expected = "";
|
|
if (res != expected) {
|
|
apLogFailInfo("wrong result",expected,res,"");
|
|
}
|
|
if (typeof(res) != typeof(expected)) {
|
|
apLogFailInfo("wrong result",typeof(expected),typeof(res),"");
|
|
}
|
|
|
|
apInitScenario("null string expression += null variable");
|
|
res = "" + ""; res += strvarnul;
|
|
expected = "";
|
|
if (res != expected) {
|
|
apLogFailInfo("wrong result",expected,res,"");
|
|
}
|
|
if (typeof(res) != typeof(expected)) {
|
|
apLogFailInfo("wrong result",typeof(expected),typeof(res),"");
|
|
}
|
|
|
|
apInitScenario("null string expression += boolean");
|
|
res = "" + ""; res += boolvar;
|
|
expected = "true";
|
|
if (res != expected) {
|
|
apLogFailInfo("wrong result",expected,res,"");
|
|
}
|
|
if (typeof(res) != typeof(expected)) {
|
|
apLogFailInfo("wrong result",typeof(expected),typeof(res),"");
|
|
}
|
|
|
|
apInitScenario("null string expression += numeric literal");
|
|
res = "" + ""; res += 55.2;
|
|
expected = "55.2";
|
|
if (res != expected) {
|
|
apLogFailInfo("wrong result",expected,res,"");
|
|
}
|
|
if (typeof(res) != typeof(expected)) {
|
|
apLogFailInfo("wrong result",typeof(expected),typeof(res),"");
|
|
}
|
|
|
|
apInitScenario("null string expression += numeric var");
|
|
res = "" + ""; res += numvar;
|
|
expected = "4321";
|
|
if (res != expected) {
|
|
apLogFailInfo("wrong result",expected,res,"");
|
|
}
|
|
if (typeof(res) != typeof(expected)) {
|
|
apLogFailInfo("wrong result",typeof(expected),typeof(res),"");
|
|
}
|
|
|
|
apInitScenario("null string expression += object");
|
|
res = "" + ""; res += myObj;
|
|
expected = "[object Object]";
|
|
if (res != expected) {
|
|
apLogFailInfo("wrong result",expected,res,"");
|
|
}
|
|
if (typeof(res) != typeof(expected)) {
|
|
apLogFailInfo("wrong result",typeof(expected),typeof(res),"");
|
|
}
|
|
|
|
if( new Date("12/25/2002 12:00:00 PST").getTimezoneOffset()/60 == 8) {
|
|
apInitScenario("null string expression += date");
|
|
res = "" + ""; res += myDate;
|
|
expected = "Wed Dec 31 16:00:00 PST 1969";
|
|
if (res != expected) {
|
|
apLogFailInfo("wrong result",expected,res,"");
|
|
}
|
|
if (typeof(res) != typeof(expected)) {
|
|
apLogFailInfo("wrong result",typeof(expected),typeof(res),"");
|
|
}
|
|
}
|
|
|
|
apInitScenario("null string expression + expr");
|
|
res = "" + "" + "alpha" + "beta";
|
|
expected = "alphabeta";
|
|
if (res != expected) {
|
|
apLogFailInfo("wrong result",expected,res,"");
|
|
}
|
|
if (typeof(res) != typeof(expected)) {
|
|
apLogFailInfo("wrong result",typeof(expected),typeof(res),"");
|
|
}
|
|
|
|
apInitScenario("null string expression + funcretval");
|
|
res = "" + "" + FuncRetVal();
|
|
expected = "655.35";
|
|
if (res != expected) {
|
|
apLogFailInfo("wrong result",expected,res,"");
|
|
}
|
|
if (typeof(res) != typeof(expected)) {
|
|
apLogFailInfo("wrong result",typeof(expected),typeof(res),"");
|
|
}
|
|
|
|
apInitScenario("null string expression + literal");
|
|
res = "" + "" + "JavaScript";
|
|
expected = "JavaScript";
|
|
if (res != expected) {
|
|
apLogFailInfo("wrong result",expected,res,"");
|
|
}
|
|
if (typeof(res) != typeof(expected)) {
|
|
apLogFailInfo("wrong result",typeof(expected),typeof(res),"");
|
|
}
|
|
|
|
apInitScenario("null string expression + variable");
|
|
res = "" + "" + strvar;
|
|
expected = "57";
|
|
if (res != expected) {
|
|
apLogFailInfo("wrong result",expected,res,"");
|
|
}
|
|
if (typeof(res) != typeof(expected)) {
|
|
apLogFailInfo("wrong result",typeof(expected),typeof(res),"");
|
|
}
|
|
|
|
apInitScenario("null string expression + null expr");
|
|
res = "" + "" + "" + "";
|
|
expected = "";
|
|
if (res != expected) {
|
|
apLogFailInfo("wrong result",expected,res,"");
|
|
}
|
|
if (typeof(res) != typeof(expected)) {
|
|
apLogFailInfo("wrong result",typeof(expected),typeof(res),"");
|
|
}
|
|
|
|
apInitScenario("null string expression + null funcretval");
|
|
res = "" + "" + FuncRetNulVal();
|
|
expected = "";
|
|
if (res != expected) {
|
|
apLogFailInfo("wrong result",expected,res,"");
|
|
}
|
|
if (typeof(res) != typeof(expected)) {
|
|
apLogFailInfo("wrong result",typeof(expected),typeof(res),"");
|
|
}
|
|
|
|
apInitScenario("null string expression + null literal");
|
|
res = "" + "" + "";
|
|
expected = "";
|
|
if (res != expected) {
|
|
apLogFailInfo("wrong result",expected,res,"");
|
|
}
|
|
if (typeof(res) != typeof(expected)) {
|
|
apLogFailInfo("wrong result",typeof(expected),typeof(res),"");
|
|
}
|
|
|
|
apInitScenario("null string expression + null variable");
|
|
res = "" + "" + strvarnul;
|
|
expected = "";
|
|
if (res != expected) {
|
|
apLogFailInfo("wrong result",expected,res,"");
|
|
}
|
|
if (typeof(res) != typeof(expected)) {
|
|
apLogFailInfo("wrong result",typeof(expected),typeof(res),"");
|
|
}
|
|
|
|
apInitScenario("null string expression + boolean");
|
|
res = "" + "" + boolvar;
|
|
expected = "true";
|
|
if (res != expected) {
|
|
apLogFailInfo("wrong result",expected,res,"");
|
|
}
|
|
if (typeof(res) != typeof(expected)) {
|
|
apLogFailInfo("wrong result",typeof(expected),typeof(res),"");
|
|
}
|
|
|
|
apInitScenario("null string expression + numeric literal");
|
|
res = "" + "" + 55.2;
|
|
expected = "55.2";
|
|
if (res != expected) {
|
|
apLogFailInfo("wrong result",expected,res,"");
|
|
}
|
|
if (typeof(res) != typeof(expected)) {
|
|
apLogFailInfo("wrong result",typeof(expected),typeof(res),"");
|
|
}
|
|
|
|
apInitScenario("null string expression + numeric var");
|
|
res = "" + "" + numvar;
|
|
expected = "4321";
|
|
if (res != expected) {
|
|
apLogFailInfo("wrong result",expected,res,"");
|
|
}
|
|
if (typeof(res) != typeof(expected)) {
|
|
apLogFailInfo("wrong result",typeof(expected),typeof(res),"");
|
|
}
|
|
|
|
apInitScenario("null string expression + object");
|
|
res = "" + "" + myObj;
|
|
expected = "[object Object]";
|
|
if (res != expected) {
|
|
apLogFailInfo("wrong result",expected,res,"");
|
|
}
|
|
if (typeof(res) != typeof(expected)) {
|
|
apLogFailInfo("wrong result",typeof(expected),typeof(res),"");
|
|
}
|
|
|
|
if( new Date("12/25/2002 12:00:00 PST").getTimezoneOffset()/60 == 8) {
|
|
apInitScenario("null string expression + date");
|
|
res = "" + "" + myDate;
|
|
expected = "Wed Dec 31 16:00:00 PST 1969";
|
|
if (res != expected) {
|
|
apLogFailInfo("wrong result",expected,res,"");
|
|
}
|
|
if (typeof(res) != typeof(expected)) {
|
|
apLogFailInfo("wrong result",typeof(expected),typeof(res),"");
|
|
}
|
|
}
|
|
|
|
apEndTest();
|
|
}
|
|
|
|
|
|
strop02();
|
|
|
|
|
|
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() {}
|