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.
885 lines
24 KiB
JavaScript
885 lines
24 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 = 53030;
|
|
|
|
var sCat = '';
|
|
var regPat = "";
|
|
var objExp = "";
|
|
var regExp = "";
|
|
var strTest = "";
|
|
var m_scen = '';
|
|
|
|
|
|
function verify(sCat1, sExp, sAct)
|
|
{
|
|
//this function makes sure sAct and sExp are equal
|
|
|
|
if (sExp != sAct)
|
|
apLogFailInfo( m_scen+(sCat1.length?"--"+sCat1:"")+" failed", sExp,sAct, "");
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function verifyStringObj(sCat1, sExp, sAct)
|
|
{
|
|
//this function simply calls verify with the values of the string
|
|
verify(sCat1, sExp.valueOf(), sAct.valueOf());
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function ArrayEqual(sCat1, arrayExp, arrayAct)
|
|
{var i;
|
|
//Makes Sure that Arrays are equal
|
|
if (arrayAct == null)
|
|
verify(sCat1 + ' NULL Err', arrayExp, arrayAct);
|
|
else if (arrayExp.length != arrayAct.length)
|
|
verify(sCat1 + ' Array length', arrayExp.length, arrayAct.length);
|
|
else
|
|
{
|
|
for (i in arrayExp)
|
|
verify(sCat1 + ' index '+i, arrayExp[i], arrayAct[i]);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function regVerify(sCat1, arrayReg, arrayAct)
|
|
{
|
|
var i;
|
|
var expArray = new Array('','','','','','','','','');
|
|
|
|
for (i in arrayReg)
|
|
if (i < 10)
|
|
expArray[i] = arrayReg[i];
|
|
else
|
|
break;
|
|
|
|
for(i =0; i<9;i++)
|
|
verify(sCat1 + ' RegExp.$'+ (i+1) +' ', expArray[i], eval('RegExp.$'+(i+1)));
|
|
}
|
|
|
|
|
|
|
|
function mtc_036() {
|
|
|
|
@if(@_fast)
|
|
var i, strTest, regExp;
|
|
@end
|
|
|
|
apInitTest("mtc_036");
|
|
|
|
|
|
m_scen = ('Test 1 Lowercase /^AbC/');
|
|
|
|
apInitScenario(m_scen);
|
|
regPat = /^AbC/;
|
|
objExp = new Array('AbC');
|
|
regExp = new Array();
|
|
|
|
strTest = 'AbC';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
|
|
strTest = 'AbCd';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
|
|
strTest = 'AbCd ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
|
|
strTest = 'AbC ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
|
|
m_scen = ('Test 2 Slightly more complex strings');
|
|
|
|
strTest = 'AbC Ab C AbRACAdAbRA';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
|
|
strTest = 'AbC Ab C AbRACAdAbRA ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
|
|
strTest = 'AbCd Ab C AbRACAdAbRAb C ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
|
|
m_scen = ('Test 3 Lowercase tests w/ multiples');
|
|
|
|
strTest = 'AbC AbC';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'AbC AbC ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'AbCd AbCe ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
m_scen = ('Test 4 Slightly more complex strings w/ multiple finds');
|
|
|
|
strTest = 'AbC AbC AbRACAdAbRA';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'AbC AbC AbRACAdAbRA ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'AbCAbo sienAbCAthedRAl AbRACAdAbRAe ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
|
|
strTest = 'AbCn dAbC AbRACAdAbRA ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'AbC AbC AbCAdAbRA ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'AbCd AAbAbCAb AAAbCAdAbRA';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
|
|
m_scen = ('Test 5 Lowercase /AbC$/');
|
|
|
|
apInitScenario(m_scen);
|
|
regPat = /AbC$/;
|
|
objExp = new Array('AbC');
|
|
regExp = new Array();
|
|
|
|
strTest = 'AbC';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
|
|
strTest = 'dAbC';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' AbC';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'Ab AbC';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'Ab AbC';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
m_scen = ('Test 6 Slightly more complex strings');
|
|
|
|
strTest = 'AnC Ab C AbRACAdAbRAbC';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' AnC Ab C AbRACAdAbRAbC';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
|
|
m_scen = ('Test 7 Lowercase tests w/ multiples');
|
|
|
|
strTest = 'AbC AbC';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' AbC AbC';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' Ab C AbC AbC';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
|
|
m_scen = ('Test 8 Slightly more complex strings w/ multiple finds');
|
|
|
|
strTest = 'Ab AbC Ad Ase hh AbRACAdAbRAbC';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' AbC Ad Ase hh AbRACAdAbRAbC';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' oRAnAbCAbo sienAbCAthedRAl AbRACAdAbRAbC';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' dAbCe fAbCg eAbRACAdAbRAbC';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'AAbCd AAbAbCAb AAAbCAdAbRAAAAAAAAAAAAAAAAAbC';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
|
|
m_scen = ('Test 9 Failure - Lowercase /^AbC /');
|
|
|
|
apInitScenario(m_scen);
|
|
regPat = /^AbC/;
|
|
objExp = null;
|
|
|
|
strTest = ' AbCmnz';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
|
|
strTest = 'dAbCmnz';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
|
|
strTest = 'dAbCemnzd';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' AbCemnzd';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' AbCmnzd';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
|
|
strTest = ' AbC mnzd';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' dAbC mnzd';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'Ab AbCmnzd';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'Ab AbCmnzd';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'AbAbC mnzd ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'Ab AbCe mnzd ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'Ab AbC mnzd ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'Abe dAbCe mnzd ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
m_scen = ('Test 10 Failure - Slightly more complex strings');
|
|
|
|
|
|
strTest = ' AbCmnzd Ab C AbRACAdAbRA';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'Ab C dAbCvmnzd AbRACAdAbRA ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' dAbCmnzd Ab C AbRACAdAbRAb';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'dAbCmnzd Ab C AbRACAdAbRAb C ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' eAbC Ab C AbRACAdAbRA';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'nAbC mnzd Ab C AbRACAdAbRAb d ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
|
|
m_scen = ('Test 11 Failure - Lowercase tests w/ multiples');
|
|
|
|
|
|
strTest = ' AbC mnzd';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
|
|
strTest = 'dAbC mnzd ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' AbC mnzd ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' AbCd emnzd ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
m_scen = ('Test 12 Failure - Slightly more complex strings w/ multiple finds');
|
|
|
|
|
|
strTest = ' AbC mnzd AbRACAdAbRA';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
|
|
strTest = ' oRAnAbCAbo sienmnzdthedRAl AbRACAdAbRAe';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'oRAnAbCAbo sienmnzdthedRAl AbRACAdAbRAe ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' dAbCe fmnzd eAbRACAdAbRAs';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'tAbCn dmnzd AbRACAdAbRA ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' dAbCn smnzd AbRACAdAbRAd ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'sAbC bmnzd RAbCAdAbRA';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' sAbC bmnzd RAbRACAdAbRA';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
|
|
strTest = ' sAbCR bmnzdA AbCAdAbRA';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'RAbC vmnzd AbCAdAbRA ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' AAbCd AAbmnzdAb AAAbCAdAbRA';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'fgAbCdg mAmnzds RzAbCxAAdAbRA ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' mtAbCdg dfmnzd mknoAbCAdAbRAblol ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
m_scen = ('Test 13 Failure - Lowercase /AbC$/');
|
|
|
|
apInitScenario(m_scen);
|
|
regPat = /AbC$/;
|
|
objExp = null;
|
|
|
|
strTest = 'AbCmnz';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
|
|
strTest = 'dAbCmnz';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
|
|
strTest = 'dAbCemnzd';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'AbCemnzd';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' AbCmnzd';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'AbC mnzd';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'dAbC mnzd';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' AbC mnzd';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' dAbC mnzd';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'Ab AbCmnzd';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'Ab AbCmnzd';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'AbAbC mnzd ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'Ab AbCe mnzd ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'Ab AbC mnzd ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'Abe dAbCe mnzd ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
m_scen = ('Test 14 Failure - Slightly more complex strings');
|
|
|
|
strTest = 'AbCmnzd Ab C AbRACAdAbRA';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' AbCmnzd Ab C AbRACAdAbRA';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'Ab C dAbCvmnzd AbRACAdAbRA ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' dAbCmnzd Ab C AbRACAdAbRAb';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'dAbCmnzd Ab C AbRACAdAbRAb C ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' eAbC Ab C AbRACAdAbRA';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'nAbC mnzd Ab C AbRACAdAbRAb d ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
|
|
m_scen = ('Test 15 Failure - Lowercase tests w/ multiples');
|
|
|
|
strTest = 'AbC mnzd';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' AbC mnzd';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'AbC mnzd ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'dAbC mnzd ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' AbC mnzd ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' AbCd emnzd ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
m_scen = ('Test 16 Failure - Slightly more complex strings w/ multiple finds');
|
|
|
|
strTest = 'AbC mnzd AbRACAdAbRA';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' AbC mnzd AbRACAdAbRA';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'AbC mnzd AbRACAdAbRA ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' oRAnAbCAbo sienmnzdthedRAl AbRACAdAbRAe';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'oRAnAbCAbo sienmnzdthedRAl AbRACAdAbRAe ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' dAbCe fmnzd eAbRACAdAbRAs';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'tAbCn dmnzd AbRACAdAbRA ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' dAbCn smnzd AbRACAdAbRAd ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'sAbC bmnzd RAbCAdAbRA';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' sAbC bmnzd RAbRACAdAbRA';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'AbC mnzd AbCAdAbRA ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' sAbCR bmnzdA AbCAdAbRA';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'RAbC vmnzd AbCAdAbRA ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' AAbCd AAbmnzdAb AAAbCAdAbRA';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'fgAbCdg mAmnzds RzAbCxAAdAbRA ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' mtAbCdg dfmnzd mknoAbCAdAbRAblol ';
|
|
verify(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
/*****************************************************************************/
|
|
apEndTest();
|
|
}
|
|
|
|
|
|
mtc_036();
|
|
|
|
|
|
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() {}
|