sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // Started by Brendan, January 1996 sl@0: // test code for RIncrMatcher sl@0: // sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: RTest test(_L("Testing RIncrMatcher")); sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-0421 sl@0: @SYMTestCaseDesc RIncrMatcherBase class test sl@0: Tests for RIncrMatcherBase::MatchText() function sl@0: @SYMTestPriority Medium sl@0: @SYMTestActions Compare two text buffers sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: void MatcherManip(RIncrMatcherBase &aMatcher) sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0421 Manipulation ")); sl@0: aMatcher.SetMatchText(_L("Hello")); sl@0: test(aMatcher.MatchText()==_L("Hello")); sl@0: test(aMatcher.MatchText()!=_L("Hell")); sl@0: aMatcher.AppendChar('w'); sl@0: test(aMatcher.MatchText()==_L("Hellow")); sl@0: aMatcher.DeleteLastChar(); sl@0: test(aMatcher.MatchText()==_L("Hello")); sl@0: aMatcher.DeleteLastChar(); sl@0: test(aMatcher.MatchText()==_L("Hell")); sl@0: aMatcher.Clear(); sl@0: test(aMatcher.MatchText()==_L("")); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-0422 sl@0: @SYMTestCaseDesc Tests for RIncrMatcherBase::SetMatchText(),RIncrMatcherBase::SetBestMatch() sl@0: RIncrMatcherBase::SetBestMatchF() functions sl@0: @SYMTestPriority Medium sl@0: @SYMTestActions Attempt to set the best match sl@0: @SYMTestExpectedResults Tests must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: void MatcherBest(RIncrMatcherBase &aMatcher) sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0422 SetBest ")); sl@0: aMatcher.SetMatchText(_L("Hello")); sl@0: test(aMatcher.MatchText()==_L("Hello")); sl@0: aMatcher.SetBestMatch(_L("Hell")); sl@0: test(aMatcher.MatchText()==_L("Hell")); sl@0: aMatcher.SetBestMatch(_L("HelL")); sl@0: test(aMatcher.MatchText()==_L("Hel")); sl@0: aMatcher.SetBestMatchF(_L("HEL")); sl@0: test(aMatcher.MatchText()==_L("Hel")); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-0423 sl@0: @SYMTestCaseDesc Tests for RIncrMatcherBase::FirstMatchingIndex() sl@0: RIncrMatcherBase::FirstMatchingIndexF(),RIncrMatcherBase::FirstMatchingIndexC() functions sl@0: @SYMTestPriority Medium sl@0: @SYMTestActions Attempt to find correct array entry sl@0: @SYMTestExpectedResults Tests must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: void MatcherArray(RIncrMatcherBase &aMatcher) sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0423 ")); sl@0: TPtrC KArrayZero(_S("Hel")); sl@0: TPtrC KArrayOne(_S("heLLo")); sl@0: TPtrC KArrayTwo(_S("Hello")); sl@0: TPtrC KArrayThree(_S("Bye")); sl@0: // sl@0: CDesCArray* array=new CDesCArrayFlat(5); sl@0: array->Reset(); sl@0: TRAPD(trapVal,array->AppendL(KArrayZero)); sl@0: test(trapVal==KErrNone); sl@0: TRAP(trapVal,array->AppendL(KArrayOne)); sl@0: test(trapVal==KErrNone); sl@0: TRAP(trapVal,array->AppendL(KArrayTwo)); sl@0: test(trapVal==KErrNone); sl@0: TRAP(trapVal,array->AppendL(KArrayThree)); sl@0: test(trapVal==KErrNone); sl@0: // sl@0: aMatcher.SetMatchText(_L("Bye")); sl@0: TInt result; sl@0: test(aMatcher.FirstMatchingIndex(result,*array)==KErrNone); sl@0: test(result==3); sl@0: // sl@0: aMatcher.SetMatchText(_L("Hello")); sl@0: test(aMatcher.FirstMatchingIndex(result,*array)==KErrNone); sl@0: test(result==2); sl@0: test(aMatcher.FirstMatchingIndexF(result,*array)==KErrNone); sl@0: test(result==1); sl@0: // sl@0: aMatcher.SetMatchText(_L("heLL")); sl@0: test(aMatcher.FirstMatchingIndexC(result,*array)==KErrNone); sl@0: test(result==1); sl@0: // sl@0: delete(array); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-0424 sl@0: @SYMTestCaseDesc Tests for RIncrMatcherBase::IsMatchF() function sl@0: @SYMTestPriority Medium sl@0: @SYMTestActions Tests for maximum length match sl@0: @SYMTestExpectedResults Tests must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: void MatcherMax(RIncrMatcherBase& aMatcher,TInt aMax) sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0424 Max length ")); sl@0: HBufC* buf=HBufC::NewL(aMax); sl@0: buf->Des().SetLength(aMax); sl@0: buf->Des().Fill('a'); sl@0: aMatcher.SetMatchText(buf->Left(aMax-1)); sl@0: test(aMatcher.IsMatchF(*buf)); sl@0: aMatcher.AppendChar('a'); sl@0: test(aMatcher.IsMatchF(*buf)); sl@0: aMatcher.DeleteLastChar(); sl@0: test(aMatcher.IsMatchF(*buf)); sl@0: aMatcher.AppendChar('w'); sl@0: test(!aMatcher.IsMatchF(*buf)); sl@0: aMatcher.DeleteLastChar(); sl@0: test(aMatcher.IsMatchF(*buf)); sl@0: delete(buf); sl@0: } sl@0: sl@0: TInt E32Main() sl@0: { sl@0: test.Title(); sl@0: test.Start(_L("Incremental Matcher ")); sl@0: // sl@0: const TInt KMaxMatchLength=10; sl@0: RIncrMatcherBuf matcherBuf; sl@0: TBuf buf; sl@0: RIncrMatcherPtr matcherPtr; sl@0: matcherPtr.SetMatcherPtr(buf); sl@0: RIncrMatcherTextBuf matcherText; sl@0: matcherText.SetMatcherLengthL(KMaxMatchLength); sl@0: CTrapCleanup *trapCleanup=CTrapCleanup::New(); sl@0: // sl@0: __UHEAP_MARK; sl@0: MatcherManip(matcherBuf); sl@0: MatcherManip(matcherPtr); sl@0: MatcherManip(matcherText); sl@0: MatcherBest(matcherBuf); sl@0: MatcherBest(matcherPtr); sl@0: MatcherBest(matcherText); sl@0: MatcherArray(matcherBuf); sl@0: MatcherArray(matcherPtr); sl@0: MatcherArray(matcherText); sl@0: MatcherMax(matcherBuf,KMaxMatchLength); sl@0: MatcherMax(matcherPtr,KMaxMatchLength); sl@0: MatcherMax(matcherText,KMaxMatchLength); sl@0: __UHEAP_MARKEND; sl@0: // sl@0: delete(trapCleanup); sl@0: test.End(); sl@0: return(KErrNone); sl@0: }