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.
1828 lines
51 KiB
JavaScript
1828 lines
51 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 = 53034;
|
|
|
|
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_039() {
|
|
|
|
@if(@_fast)
|
|
var i, strTest, regExp;
|
|
@end
|
|
|
|
apInitTest("mtc_039");
|
|
|
|
|
|
m_scen = ('Test 1 Lowercase /[A-Ca-c][A-Ca-c][A-Ca-c]/');
|
|
|
|
apInitScenario(m_scen);
|
|
regPat = /[A-Ca-c][A-Ca-c][A-Ca-c]/;
|
|
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 = 'dAbCe';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'AbCe';
|
|
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 = '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 = ' dAbC ';
|
|
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
|
|
|
|
strTest = 'm nAbC ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'Ab AbCe ';
|
|
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 = 'Abe dAbCe ';
|
|
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 = 'AbC Ab C AbRACAdAbRA ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' dAbC Ab C AbRACAdAbRAb';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'dAbC Ab C AbRACAdAbRAb C ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' eAbC Ab C AbRACAdAbRA';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'nAbC Ab C AbRACAdAbRAb d ';
|
|
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 = 'AbC AbC ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'dAbC AbCe ';
|
|
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 eAbC ';
|
|
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 = 'AbC AbC AbRACAdAbRA ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' oRAnAbCAbo sienAbCAthedRAl AbRACAdAbRAe';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'oRAnAbCAbo sienAbCAthedRAl AbRACAdAbRAe ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' dAbCe fAbCg eAbRACAdAbRAs';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'tAbCn dAbC AbRACAdAbRA ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' dAbCn sAbC AbRACAdAbRAd ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'sAbC bAbC RAbCAdAbRA';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' sAbC bAbC RAbRACAdAbRA';
|
|
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 = ' sAbCR bAbCA AbCAdAbRA';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'RAbC vAbC AbCAdAbRA ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' mAbCd AAbAbCAb AAAbCAdAbRA';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'fgAbCdg mAAbCds RzAbCxAAdAbRA ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' mtAbCdg dfAbCwo mknoAbCAdAbRAblol ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
m_scen = ('Test 5 Lowercase /[A-C][A-z][A-d]/');
|
|
|
|
apInitScenario(m_scen);
|
|
regPat = /[A-C][A-z][A-d]/;
|
|
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 = 'dAbCe';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'AbCe';
|
|
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 = '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 = ' dAbC ';
|
|
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
|
|
|
|
strTest = 'm nAbC ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'Ab AbCe ';
|
|
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 = 'Abe dAbCe ';
|
|
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 = '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 = 'AbC Ab C AbRACAdAbRA ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' dAbC Ab C AbRACAdAbRAb';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'dAbC Ab C AbRACAdAbRAb C ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' eAbC Ab C AbRACAdAbRA';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'nAbC Ab C AbRACAdAbRAb d ';
|
|
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 = 'AbC AbC ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'dAbC AbCe ';
|
|
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 eAbC ';
|
|
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 = '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 = 'AbC AbC AbRACAdAbRA ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' oRfnAbCAbo sienAbCAthedRAl AbRACAdAbRAe';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'oRfnAbCAbo sienAbCAthedRAl AbRACAdAbRAe ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' dAbCe fAbCg eAbRACAdAbRAs';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'tAbCn dAbC AbRACAdAbRA ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' dAbCn sAbC AbRACAdAbRAd ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'sAbC bAbC RAbCAdAbRA';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' sAbC bAbC RAbRACAdAbRA';
|
|
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 = ' sAbCR bAbCA AbCAdAbRA';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'RAbC vAbC AbCAdAbRA ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' fAbCd AAbAbCAb AAAbCAdAbRA';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'fgAbCdg mAAbCds RzAbCxAAdAbRA ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' mtAbCdg dfAbCwo mknoAbCAdAbRAblol ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
|
|
m_scen = ('Test 9 Lowercase /[C]/');
|
|
|
|
apInitScenario(m_scen);
|
|
regPat = /[C]/;
|
|
objExp = new Array('C');
|
|
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 = 'dAbCe';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'AbCe';
|
|
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 = '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 = ' dAbC ';
|
|
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
|
|
|
|
strTest = 'AbAbC ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'Ab AbCe ';
|
|
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 = 'Abe dAbCe ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
m_scen = ('Test 10 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 = 'AbC Ab C AbRACAdAbRA ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' dAbC Ab C AbRACAdAbRAb';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'dAbC Ab C AbRACAdAbRAb C ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' eAbC Ab C AbRACAdAbRA';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'nAbC Ab C AbRACAdAbRAb d ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
|
|
m_scen = ('Test 11 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 = 'AbC AbC ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'dAbC AbCe ';
|
|
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 eAbC ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
m_scen = ('Test 12 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 = 'AbC AbC AbRACAdAbRA ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' oRAnAbCAbo sienAbCAthedRAl AbRACAdAbRAe';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'oRAnAbCAbo sienAbCAthedRAl AbRACAdAbRAe ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' dAbCe fAbCg eAbRACAdAbRAs';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'tAbCn dAbC AbRACAdAbRA ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' dAbCn sAbC AbRACAdAbRAd ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'sAbC bAbC RAbCAdAbRA';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' sAbC bAbC RAbRACAdAbRA';
|
|
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 = ' sAbCR bAbCA AbCAdAbRA';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'RAbC vAbC AbCAdAbRA ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' AAbCd AAbAbCAb AAAbCAdAbRA';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'fgAbCdg mAAbCds RzAbCxAAdAbRA ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' mtAbCdg dfAbCwo mknoAbCAdAbRAblol ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
m_scen = ('Test 13 Lowercase /[A-A]/');
|
|
|
|
apInitScenario(m_scen);
|
|
regPat = /[A-A]/;
|
|
objExp = new Array('A');
|
|
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 = 'dAbCe';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'AbCe';
|
|
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 = '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 = ' dAbC ';
|
|
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
|
|
|
|
strTest = 'AbAbC ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'Ab AbCe ';
|
|
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 = 'Abe dAbCe ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
m_scen = ('Test 14 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 = 'AbC Ab C AbRACAdAbRA ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' dAbC Ab C AbRACAdAbRAb';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'dAbC Ab C AbRACAdAbRAb C ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' eAbC Ab C AbRACAdAbRA';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'nAbC Ab C AbRACAdAbRAb d ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
|
|
m_scen = ('Test 15 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 = 'AbC AbC ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'dAbC AbCe ';
|
|
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 eAbC ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
m_scen = ('Test 16 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 = 'AbC AbC AbRACAdAbRA ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' oRAnAbCAbo sienAbCAthedRAl AbRACAdAbRAe';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'oRAnAbCAbo sienAbCAthedRAl AbRACAdAbRAe ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' dAbCe fAbCg eAbRACAdAbRAs';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'tAbCn dAbC AbRACAdAbRA ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' dAbCn sAbC AbRACAdAbRAd ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'sAbC bAbC RAbCAdAbRA';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' sAbC bAbC RAbRACAdAbRA';
|
|
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 = ' sAbCR bAbCA AbCAdAbRA';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'RAbC vAbC AbCAdAbRA ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' AAbCd AAbAbCAb AAAbCAdAbRA';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = 'fgAbCdg mAAbCds RzAbCxAAdAbRA ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
strTest = ' mtAbCdg dfAbCwo mknoAbCAdAbRAblol ';
|
|
ArrayEqual(sCat+strTest, objExp, strTest.match(regPat));
|
|
@if (!@_fast)
|
|
regVerify(sCat+strTest, regExp, strTest.match(regPat));
|
|
@end
|
|
|
|
|
|
m_scen = ('Test 17 Failure - Lowercase /[q-q]/');
|
|
|
|
apInitScenario(m_scen);
|
|
regPat = /[q-q]/;
|
|
|
|
objExp = null;
|
|
regExp = new Array();
|
|
|
|
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 18 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 19 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 20 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
|
|
|
|
|
|
m_scen = ('Test 21 Failure - Lowercase /[^A-z]/');
|
|
|
|
apInitScenario(m_scen);
|
|
regPat = /[^A-z ]/;
|
|
|
|
objExp = null;
|
|
regExp = new Array();
|
|
|
|
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 22 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 23 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 24 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_039();
|
|
|
|
|
|
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() {}
|