os/ossrv/lowlevellibsandfws/apputils/tsrc/T_MATCH.CPP
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// Started by Brendan, January 1996
sl@0
    15
// test code for RIncrMatcher
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
#include <bamatch.h>
sl@0
    20
#include <badesca.h>
sl@0
    21
#include <e32test.h>
sl@0
    22
sl@0
    23
RTest test(_L("Testing RIncrMatcher"));
sl@0
    24
sl@0
    25
/**
sl@0
    26
@SYMTestCaseID          SYSLIB-BAFL-CT-0421
sl@0
    27
@SYMTestCaseDesc        RIncrMatcherBase class test
sl@0
    28
                        Tests for RIncrMatcherBase::MatchText() function
sl@0
    29
@SYMTestPriority        Medium
sl@0
    30
@SYMTestActions         Compare two text buffers
sl@0
    31
@SYMTestExpectedResults Test must not fail
sl@0
    32
@SYMREQ                 REQ0000
sl@0
    33
*/
sl@0
    34
void MatcherManip(RIncrMatcherBase &aMatcher)
sl@0
    35
	{
sl@0
    36
	test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0421 Manipulation "));
sl@0
    37
	aMatcher.SetMatchText(_L("Hello"));
sl@0
    38
	test(aMatcher.MatchText()==_L("Hello"));
sl@0
    39
	test(aMatcher.MatchText()!=_L("Hell"));
sl@0
    40
	aMatcher.AppendChar('w');
sl@0
    41
	test(aMatcher.MatchText()==_L("Hellow"));
sl@0
    42
	aMatcher.DeleteLastChar();
sl@0
    43
	test(aMatcher.MatchText()==_L("Hello"));
sl@0
    44
	aMatcher.DeleteLastChar();
sl@0
    45
	test(aMatcher.MatchText()==_L("Hell"));
sl@0
    46
	aMatcher.Clear();
sl@0
    47
	test(aMatcher.MatchText()==_L(""));
sl@0
    48
	}
sl@0
    49
sl@0
    50
/**
sl@0
    51
@SYMTestCaseID          SYSLIB-BAFL-CT-0422
sl@0
    52
@SYMTestCaseDesc        Tests for RIncrMatcherBase::SetMatchText(),RIncrMatcherBase::SetBestMatch()
sl@0
    53
                        RIncrMatcherBase::SetBestMatchF() functions
sl@0
    54
@SYMTestPriority        Medium
sl@0
    55
@SYMTestActions         Attempt to set the best match
sl@0
    56
@SYMTestExpectedResults Tests must not fail
sl@0
    57
@SYMREQ                 REQ0000
sl@0
    58
*/
sl@0
    59
void MatcherBest(RIncrMatcherBase &aMatcher)
sl@0
    60
	{
sl@0
    61
	test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0422 SetBest "));
sl@0
    62
	aMatcher.SetMatchText(_L("Hello"));
sl@0
    63
	test(aMatcher.MatchText()==_L("Hello"));
sl@0
    64
	aMatcher.SetBestMatch(_L("Hell"));
sl@0
    65
	test(aMatcher.MatchText()==_L("Hell"));
sl@0
    66
	aMatcher.SetBestMatch(_L("HelL"));
sl@0
    67
	test(aMatcher.MatchText()==_L("Hel"));
sl@0
    68
	aMatcher.SetBestMatchF(_L("HEL"));
sl@0
    69
	test(aMatcher.MatchText()==_L("Hel"));
sl@0
    70
	}
sl@0
    71
sl@0
    72
/**
sl@0
    73
@SYMTestCaseID          SYSLIB-BAFL-CT-0423
sl@0
    74
@SYMTestCaseDesc        Tests for RIncrMatcherBase::FirstMatchingIndex()
sl@0
    75
                        RIncrMatcherBase::FirstMatchingIndexF(),RIncrMatcherBase::FirstMatchingIndexC() functions
sl@0
    76
@SYMTestPriority        Medium
sl@0
    77
@SYMTestActions         Attempt to find correct array entry
sl@0
    78
@SYMTestExpectedResults Tests must not fail
sl@0
    79
@SYMREQ                 REQ0000
sl@0
    80
*/
sl@0
    81
void MatcherArray(RIncrMatcherBase &aMatcher)
sl@0
    82
	{
sl@0
    83
	test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0423 "));
sl@0
    84
	TPtrC KArrayZero(_S("Hel"));
sl@0
    85
	TPtrC KArrayOne(_S("heLLo"));
sl@0
    86
	TPtrC KArrayTwo(_S("Hello"));
sl@0
    87
	TPtrC KArrayThree(_S("Bye"));
sl@0
    88
//
sl@0
    89
	CDesCArray* array=new CDesCArrayFlat(5);
sl@0
    90
	array->Reset();
sl@0
    91
	TRAPD(trapVal,array->AppendL(KArrayZero));
sl@0
    92
	test(trapVal==KErrNone);
sl@0
    93
	TRAP(trapVal,array->AppendL(KArrayOne));
sl@0
    94
	test(trapVal==KErrNone);
sl@0
    95
	TRAP(trapVal,array->AppendL(KArrayTwo));
sl@0
    96
	test(trapVal==KErrNone);
sl@0
    97
	TRAP(trapVal,array->AppendL(KArrayThree));
sl@0
    98
	test(trapVal==KErrNone);
sl@0
    99
//
sl@0
   100
	aMatcher.SetMatchText(_L("Bye"));
sl@0
   101
	TInt result;
sl@0
   102
	test(aMatcher.FirstMatchingIndex(result,*array)==KErrNone);
sl@0
   103
	test(result==3);
sl@0
   104
//
sl@0
   105
	aMatcher.SetMatchText(_L("Hello"));
sl@0
   106
	test(aMatcher.FirstMatchingIndex(result,*array)==KErrNone);
sl@0
   107
	test(result==2);
sl@0
   108
	test(aMatcher.FirstMatchingIndexF(result,*array)==KErrNone);
sl@0
   109
	test(result==1);
sl@0
   110
//
sl@0
   111
	aMatcher.SetMatchText(_L("heLL"));
sl@0
   112
	test(aMatcher.FirstMatchingIndexC(result,*array)==KErrNone);
sl@0
   113
	test(result==1);
sl@0
   114
//
sl@0
   115
	delete(array);
sl@0
   116
	}
sl@0
   117
sl@0
   118
/**
sl@0
   119
@SYMTestCaseID          SYSLIB-BAFL-CT-0424
sl@0
   120
@SYMTestCaseDesc        Tests for RIncrMatcherBase::IsMatchF() function
sl@0
   121
@SYMTestPriority        Medium
sl@0
   122
@SYMTestActions         Tests for maximum length match
sl@0
   123
@SYMTestExpectedResults Tests must not fail
sl@0
   124
@SYMREQ                 REQ0000
sl@0
   125
*/
sl@0
   126
void MatcherMax(RIncrMatcherBase& aMatcher,TInt aMax)
sl@0
   127
	{
sl@0
   128
	test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0424 Max length "));
sl@0
   129
	HBufC* buf=HBufC::NewL(aMax);
sl@0
   130
	buf->Des().SetLength(aMax);
sl@0
   131
	buf->Des().Fill('a');
sl@0
   132
	aMatcher.SetMatchText(buf->Left(aMax-1));
sl@0
   133
	test(aMatcher.IsMatchF(*buf));
sl@0
   134
	aMatcher.AppendChar('a');
sl@0
   135
	test(aMatcher.IsMatchF(*buf));
sl@0
   136
	aMatcher.DeleteLastChar();
sl@0
   137
	test(aMatcher.IsMatchF(*buf));
sl@0
   138
	aMatcher.AppendChar('w');
sl@0
   139
	test(!aMatcher.IsMatchF(*buf));
sl@0
   140
	aMatcher.DeleteLastChar();
sl@0
   141
	test(aMatcher.IsMatchF(*buf));
sl@0
   142
	delete(buf);
sl@0
   143
	}
sl@0
   144
sl@0
   145
TInt E32Main()
sl@0
   146
    {
sl@0
   147
	test.Title();
sl@0
   148
	test.Start(_L("Incremental Matcher "));
sl@0
   149
//
sl@0
   150
	const TInt KMaxMatchLength=10;
sl@0
   151
	RIncrMatcherBuf<KMaxMatchLength> matcherBuf;
sl@0
   152
	TBuf<KMaxMatchLength> buf;
sl@0
   153
	RIncrMatcherPtr matcherPtr;
sl@0
   154
	matcherPtr.SetMatcherPtr(buf);
sl@0
   155
	RIncrMatcherTextBuf matcherText;
sl@0
   156
	matcherText.SetMatcherLengthL(KMaxMatchLength);
sl@0
   157
	CTrapCleanup *trapCleanup=CTrapCleanup::New();
sl@0
   158
//
sl@0
   159
	__UHEAP_MARK;
sl@0
   160
	MatcherManip(matcherBuf);
sl@0
   161
	MatcherManip(matcherPtr);
sl@0
   162
	MatcherManip(matcherText);
sl@0
   163
	MatcherBest(matcherBuf);
sl@0
   164
	MatcherBest(matcherPtr);
sl@0
   165
	MatcherBest(matcherText);
sl@0
   166
	MatcherArray(matcherBuf);
sl@0
   167
	MatcherArray(matcherPtr);
sl@0
   168
	MatcherArray(matcherText);
sl@0
   169
	MatcherMax(matcherBuf,KMaxMatchLength);
sl@0
   170
	MatcherMax(matcherPtr,KMaxMatchLength);
sl@0
   171
	MatcherMax(matcherText,KMaxMatchLength);
sl@0
   172
	__UHEAP_MARKEND;
sl@0
   173
//
sl@0
   174
	delete(trapCleanup);
sl@0
   175
	test.End();
sl@0
   176
    return(KErrNone);
sl@0
   177
    }