os/ossrv/lowlevellibsandfws/apputils/tsrc/T_MATCH.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/tsrc/T_MATCH.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,177 @@
     1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// Started by Brendan, January 1996
    1.18 +// test code for RIncrMatcher
    1.19 +// 
    1.20 +//
    1.21 +
    1.22 +#include <bamatch.h>
    1.23 +#include <badesca.h>
    1.24 +#include <e32test.h>
    1.25 +
    1.26 +RTest test(_L("Testing RIncrMatcher"));
    1.27 +
    1.28 +/**
    1.29 +@SYMTestCaseID          SYSLIB-BAFL-CT-0421
    1.30 +@SYMTestCaseDesc        RIncrMatcherBase class test
    1.31 +                        Tests for RIncrMatcherBase::MatchText() function
    1.32 +@SYMTestPriority        Medium
    1.33 +@SYMTestActions         Compare two text buffers
    1.34 +@SYMTestExpectedResults Test must not fail
    1.35 +@SYMREQ                 REQ0000
    1.36 +*/
    1.37 +void MatcherManip(RIncrMatcherBase &aMatcher)
    1.38 +	{
    1.39 +	test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0421 Manipulation "));
    1.40 +	aMatcher.SetMatchText(_L("Hello"));
    1.41 +	test(aMatcher.MatchText()==_L("Hello"));
    1.42 +	test(aMatcher.MatchText()!=_L("Hell"));
    1.43 +	aMatcher.AppendChar('w');
    1.44 +	test(aMatcher.MatchText()==_L("Hellow"));
    1.45 +	aMatcher.DeleteLastChar();
    1.46 +	test(aMatcher.MatchText()==_L("Hello"));
    1.47 +	aMatcher.DeleteLastChar();
    1.48 +	test(aMatcher.MatchText()==_L("Hell"));
    1.49 +	aMatcher.Clear();
    1.50 +	test(aMatcher.MatchText()==_L(""));
    1.51 +	}
    1.52 +
    1.53 +/**
    1.54 +@SYMTestCaseID          SYSLIB-BAFL-CT-0422
    1.55 +@SYMTestCaseDesc        Tests for RIncrMatcherBase::SetMatchText(),RIncrMatcherBase::SetBestMatch()
    1.56 +                        RIncrMatcherBase::SetBestMatchF() functions
    1.57 +@SYMTestPriority        Medium
    1.58 +@SYMTestActions         Attempt to set the best match
    1.59 +@SYMTestExpectedResults Tests must not fail
    1.60 +@SYMREQ                 REQ0000
    1.61 +*/
    1.62 +void MatcherBest(RIncrMatcherBase &aMatcher)
    1.63 +	{
    1.64 +	test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0422 SetBest "));
    1.65 +	aMatcher.SetMatchText(_L("Hello"));
    1.66 +	test(aMatcher.MatchText()==_L("Hello"));
    1.67 +	aMatcher.SetBestMatch(_L("Hell"));
    1.68 +	test(aMatcher.MatchText()==_L("Hell"));
    1.69 +	aMatcher.SetBestMatch(_L("HelL"));
    1.70 +	test(aMatcher.MatchText()==_L("Hel"));
    1.71 +	aMatcher.SetBestMatchF(_L("HEL"));
    1.72 +	test(aMatcher.MatchText()==_L("Hel"));
    1.73 +	}
    1.74 +
    1.75 +/**
    1.76 +@SYMTestCaseID          SYSLIB-BAFL-CT-0423
    1.77 +@SYMTestCaseDesc        Tests for RIncrMatcherBase::FirstMatchingIndex()
    1.78 +                        RIncrMatcherBase::FirstMatchingIndexF(),RIncrMatcherBase::FirstMatchingIndexC() functions
    1.79 +@SYMTestPriority        Medium
    1.80 +@SYMTestActions         Attempt to find correct array entry
    1.81 +@SYMTestExpectedResults Tests must not fail
    1.82 +@SYMREQ                 REQ0000
    1.83 +*/
    1.84 +void MatcherArray(RIncrMatcherBase &aMatcher)
    1.85 +	{
    1.86 +	test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0423 "));
    1.87 +	TPtrC KArrayZero(_S("Hel"));
    1.88 +	TPtrC KArrayOne(_S("heLLo"));
    1.89 +	TPtrC KArrayTwo(_S("Hello"));
    1.90 +	TPtrC KArrayThree(_S("Bye"));
    1.91 +//
    1.92 +	CDesCArray* array=new CDesCArrayFlat(5);
    1.93 +	array->Reset();
    1.94 +	TRAPD(trapVal,array->AppendL(KArrayZero));
    1.95 +	test(trapVal==KErrNone);
    1.96 +	TRAP(trapVal,array->AppendL(KArrayOne));
    1.97 +	test(trapVal==KErrNone);
    1.98 +	TRAP(trapVal,array->AppendL(KArrayTwo));
    1.99 +	test(trapVal==KErrNone);
   1.100 +	TRAP(trapVal,array->AppendL(KArrayThree));
   1.101 +	test(trapVal==KErrNone);
   1.102 +//
   1.103 +	aMatcher.SetMatchText(_L("Bye"));
   1.104 +	TInt result;
   1.105 +	test(aMatcher.FirstMatchingIndex(result,*array)==KErrNone);
   1.106 +	test(result==3);
   1.107 +//
   1.108 +	aMatcher.SetMatchText(_L("Hello"));
   1.109 +	test(aMatcher.FirstMatchingIndex(result,*array)==KErrNone);
   1.110 +	test(result==2);
   1.111 +	test(aMatcher.FirstMatchingIndexF(result,*array)==KErrNone);
   1.112 +	test(result==1);
   1.113 +//
   1.114 +	aMatcher.SetMatchText(_L("heLL"));
   1.115 +	test(aMatcher.FirstMatchingIndexC(result,*array)==KErrNone);
   1.116 +	test(result==1);
   1.117 +//
   1.118 +	delete(array);
   1.119 +	}
   1.120 +
   1.121 +/**
   1.122 +@SYMTestCaseID          SYSLIB-BAFL-CT-0424
   1.123 +@SYMTestCaseDesc        Tests for RIncrMatcherBase::IsMatchF() function
   1.124 +@SYMTestPriority        Medium
   1.125 +@SYMTestActions         Tests for maximum length match
   1.126 +@SYMTestExpectedResults Tests must not fail
   1.127 +@SYMREQ                 REQ0000
   1.128 +*/
   1.129 +void MatcherMax(RIncrMatcherBase& aMatcher,TInt aMax)
   1.130 +	{
   1.131 +	test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0424 Max length "));
   1.132 +	HBufC* buf=HBufC::NewL(aMax);
   1.133 +	buf->Des().SetLength(aMax);
   1.134 +	buf->Des().Fill('a');
   1.135 +	aMatcher.SetMatchText(buf->Left(aMax-1));
   1.136 +	test(aMatcher.IsMatchF(*buf));
   1.137 +	aMatcher.AppendChar('a');
   1.138 +	test(aMatcher.IsMatchF(*buf));
   1.139 +	aMatcher.DeleteLastChar();
   1.140 +	test(aMatcher.IsMatchF(*buf));
   1.141 +	aMatcher.AppendChar('w');
   1.142 +	test(!aMatcher.IsMatchF(*buf));
   1.143 +	aMatcher.DeleteLastChar();
   1.144 +	test(aMatcher.IsMatchF(*buf));
   1.145 +	delete(buf);
   1.146 +	}
   1.147 +
   1.148 +TInt E32Main()
   1.149 +    {
   1.150 +	test.Title();
   1.151 +	test.Start(_L("Incremental Matcher "));
   1.152 +//
   1.153 +	const TInt KMaxMatchLength=10;
   1.154 +	RIncrMatcherBuf<KMaxMatchLength> matcherBuf;
   1.155 +	TBuf<KMaxMatchLength> buf;
   1.156 +	RIncrMatcherPtr matcherPtr;
   1.157 +	matcherPtr.SetMatcherPtr(buf);
   1.158 +	RIncrMatcherTextBuf matcherText;
   1.159 +	matcherText.SetMatcherLengthL(KMaxMatchLength);
   1.160 +	CTrapCleanup *trapCleanup=CTrapCleanup::New();
   1.161 +//
   1.162 +	__UHEAP_MARK;
   1.163 +	MatcherManip(matcherBuf);
   1.164 +	MatcherManip(matcherPtr);
   1.165 +	MatcherManip(matcherText);
   1.166 +	MatcherBest(matcherBuf);
   1.167 +	MatcherBest(matcherPtr);
   1.168 +	MatcherBest(matcherText);
   1.169 +	MatcherArray(matcherBuf);
   1.170 +	MatcherArray(matcherPtr);
   1.171 +	MatcherArray(matcherText);
   1.172 +	MatcherMax(matcherBuf,KMaxMatchLength);
   1.173 +	MatcherMax(matcherPtr,KMaxMatchLength);
   1.174 +	MatcherMax(matcherText,KMaxMatchLength);
   1.175 +	__UHEAP_MARKEND;
   1.176 +//
   1.177 +	delete(trapCleanup);
   1.178 +	test.End();
   1.179 +    return(KErrNone);
   1.180 +    }