os/ossrv/lowlevellibsandfws/apputils/tsrc/T_DESCA.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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 DWW, April 1996
sl@0
    15
// Tests descriptor arrays
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
#include <e32test.h>
sl@0
    20
#include <badesca.h>
sl@0
    21
sl@0
    22
LOCAL_D RTest test(_L("T_DESCA"));
sl@0
    23
sl@0
    24
class TestDesca
sl@0
    25
	{
sl@0
    26
public:
sl@0
    27
	void MainTestL(CDesCArray* aDescA);
sl@0
    28
	void ComparisonTest(CDesCArray* aDescA1,CDesCArray* aDescA2);
sl@0
    29
	void FoldTestL(CDesCArray* aDescA);
sl@0
    30
	void MixableTestL();
sl@0
    31
	void DoMixableTest(MDesCArray* aDescA);
sl@0
    32
	void InSequenceTestL(CDesCArray* aDescA);
sl@0
    33
    };
sl@0
    34
sl@0
    35
/**
sl@0
    36
@SYMTestCaseID          SYSLIB-BAFL-CT-0408
sl@0
    37
@SYMTestCaseDesc        Tests for folded and non-folded find
sl@0
    38
@SYMTestPriority        Medium
sl@0
    39
@SYMTestActions         Tests by appending few descriptors and find the position for the target.
sl@0
    40
@SYMTestExpectedResults Tests must not fail
sl@0
    41
@SYMREQ                 REQ0000
sl@0
    42
*/
sl@0
    43
void TestDesca::FoldTestL(CDesCArray* aDescA)
sl@0
    44
	{
sl@0
    45
	test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0408 Test folded and non-folded find "));
sl@0
    46
	TPtrC target=_L("abcdefg");
sl@0
    47
	aDescA->AppendL(target);
sl@0
    48
	aDescA->AppendL(_L("aBcDeFg"));
sl@0
    49
	aDescA->InsertL(0,_L("ABCDEFG"));
sl@0
    50
	test(aDescA->Count()==3);
sl@0
    51
	TInt pos=(-1);
sl@0
    52
    aDescA->Find(target,pos);
sl@0
    53
    test(pos==0);
sl@0
    54
    aDescA->Find(target,pos,ECmpNormal);
sl@0
    55
    test(pos==1);
sl@0
    56
	test.Next(_L("Test reset"));
sl@0
    57
	aDescA->Reset();
sl@0
    58
	test(!aDescA->Count());
sl@0
    59
	}
sl@0
    60
sl@0
    61
/**
sl@0
    62
@SYMTestCaseID          SYSLIB-BAFL-CT-0409
sl@0
    63
@SYMTestCaseDesc        CDesCArray class functionality test
sl@0
    64
@SYMTestPriority        Medium
sl@0
    65
@SYMTestActions         Add month names to the descriptor array and tests with the find.
sl@0
    66
@SYMTestExpectedResults Tests must not fail
sl@0
    67
@SYMREQ                 REQ0000
sl@0
    68
*/
sl@0
    69
void TestDesca::MainTestL(CDesCArray* aDescA)
sl@0
    70
	{
sl@0
    71
    TMonthName name;
sl@0
    72
    test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0409 Add 12 month names "));
sl@0
    73
    for (TInt ii=0; ii<12; ii++)
sl@0
    74
        {
sl@0
    75
        name.Set((TMonth)ii);
sl@0
    76
        aDescA->AppendL(name);
sl@0
    77
        }
sl@0
    78
    test.Next(_L("Check 12 names exist"));
sl@0
    79
    test(aDescA->Count()==12);
sl@0
    80
    test.Next(_L("Print the 12 names"));
sl@0
    81
    for (TInt jj=0; jj<12; jj++)
sl@0
    82
        test.Printf((*aDescA)[jj]);
sl@0
    83
    test.Printf(_L("\r\n"));
sl@0
    84
    test.Next(_L("Find"));
sl@0
    85
    for (TInt kk=3; kk<12; kk+=3)
sl@0
    86
        {
sl@0
    87
        name.Set((TMonth)kk);
sl@0
    88
        TInt pos=0;
sl@0
    89
        aDescA->Find(name,pos);
sl@0
    90
        test(pos==kk);
sl@0
    91
        }
sl@0
    92
    test.Next(_L("Delete"));
sl@0
    93
    aDescA->Delete(2);
sl@0
    94
    aDescA->Delete(4);
sl@0
    95
    aDescA->Delete(6);
sl@0
    96
    test(aDescA->Count()==9);
sl@0
    97
    test((*aDescA)[6]==name);
sl@0
    98
    test.Next(_L("Sort"));
sl@0
    99
    aDescA->Sort();
sl@0
   100
    test(aDescA->Count()==9);
sl@0
   101
    for (TInt ll=0; ll<9; ll++)
sl@0
   102
        test.Printf((*aDescA)[ll]);
sl@0
   103
    test.Printf(_L("\r\n"));
sl@0
   104
	test.End();
sl@0
   105
    }
sl@0
   106
sl@0
   107
/**
sl@0
   108
@SYMTestCaseID          SYSLIB-BAFL-CT-0410
sl@0
   109
@SYMTestCaseDesc        Comparision of two CDesCArray objects test
sl@0
   110
@SYMTestPriority        Medium
sl@0
   111
@SYMTestActions         Check if two descriptor arrays are equal.
sl@0
   112
@SYMTestExpectedResults Tests must not fail
sl@0
   113
@SYMREQ                 REQ0000
sl@0
   114
*/
sl@0
   115
void TestDesca::ComparisonTest(CDesCArray* aDescA1,CDesCArray* aDescA2)
sl@0
   116
	{
sl@0
   117
	test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0410 Test comparisons "));
sl@0
   118
    TInt count=aDescA1->Count();
sl@0
   119
    test(aDescA2->Count()==count);
sl@0
   120
    for (TInt ii=0; ii<count; ii++)
sl@0
   121
        test((*aDescA1)[ii]==(*aDescA2)[ii]);
sl@0
   122
    test.End();
sl@0
   123
    }
sl@0
   124
sl@0
   125
/**
sl@0
   126
@SYMTestCaseID          SYSLIB-BAFL-CT-0411
sl@0
   127
@SYMTestCaseDesc        MDesCArray class functionality test
sl@0
   128
@SYMTestPriority        Medium
sl@0
   129
@SYMTestActions         Checks for the existence of 12 names
sl@0
   130
@SYMTestExpectedResults Tests must not fail
sl@0
   131
@SYMREQ                 REQ0000
sl@0
   132
*/
sl@0
   133
void TestDesca::DoMixableTest(MDesCArray* aDescA)
sl@0
   134
	{
sl@0
   135
    test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0411 Check 12 names exist "));
sl@0
   136
    test(aDescA->MdcaCount()==12);
sl@0
   137
    test.Next(_L("Print the 12 names"));
sl@0
   138
    for (TInt jj=0; jj<12; jj++)
sl@0
   139
        test.Printf(aDescA->MdcaPoint(jj));
sl@0
   140
    test.Printf(_L("\r\n"));
sl@0
   141
	delete(aDescA);
sl@0
   142
    }
sl@0
   143
sl@0
   144
/**
sl@0
   145
@SYMTestCaseID          SYSLIB-BAFL-CT-0412
sl@0
   146
@SYMTestCaseDesc        Tests for CDesCArray sequences
sl@0
   147
@SYMTestPriority        Medium
sl@0
   148
@SYMTestActions         Checks for the sequence of the literals.
sl@0
   149
@SYMTestExpectedResults Tests must not fail
sl@0
   150
@SYMREQ                 REQ0000
sl@0
   151
*/
sl@0
   152
void TestDesca::InSequenceTestL(CDesCArray* aDescA)
sl@0
   153
	{
sl@0
   154
    test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0412 In Sequence Tests "));
sl@0
   155
	aDescA->Reset();
sl@0
   156
	TPtrC hello(_S("Hello"));
sl@0
   157
	TPtrC bye(_S("Bye"));
sl@0
   158
	TPtrC world(_S("World"));
sl@0
   159
	TPtrC middle(_S("middle"));
sl@0
   160
	TPtrC extra(_S("extra"));
sl@0
   161
	TBuf<32> buffer;
sl@0
   162
	TInt pos;
sl@0
   163
	aDescA->AppendL(hello);
sl@0
   164
	aDescA->AppendL(bye);
sl@0
   165
	aDescA->AppendL(world);
sl@0
   166
	aDescA->AppendL(middle);
sl@0
   167
    test(aDescA->MdcaPoint(0)==hello);
sl@0
   168
    test(aDescA->MdcaPoint(2)==world);
sl@0
   169
	//
sl@0
   170
	aDescA->Sort(ECmpFolded);
sl@0
   171
	buffer=aDescA->MdcaPoint(2);
sl@0
   172
    test(buffer==middle);
sl@0
   173
	test(aDescA->Find(middle,pos,ECmpFolded)==KErrNone);
sl@0
   174
	test(pos==2);
sl@0
   175
	test(aDescA->FindIsq(middle,pos,ECmpFolded)==KErrNone);
sl@0
   176
	test(pos==2);
sl@0
   177
	test(aDescA->FindIsq(middle,pos,ECmpNormal)==KErrNone); // !! should this fail for non-sorted array??
sl@0
   178
//	test(pos==??);
sl@0
   179
	pos=aDescA->InsertIsqL(extra,ECmpFolded);
sl@0
   180
	test(pos==1);
sl@0
   181
	TRAP(pos,aDescA->InsertIsqL(extra,ECmpFolded));
sl@0
   182
	test(pos==KErrAlreadyExists);
sl@0
   183
	pos=aDescA->InsertIsqAllowDuplicatesL(extra,ECmpFolded);
sl@0
   184
	test(pos==2);
sl@0
   185
	aDescA->Delete(pos--);
sl@0
   186
	aDescA->Delete(pos);
sl@0
   187
	test(aDescA->MdcaCount()==4);
sl@0
   188
	//
sl@0
   189
	//	Different sort order because of case
sl@0
   190
	aDescA->Sort(ECmpNormal);
sl@0
   191
	buffer=aDescA->MdcaPoint(2);
sl@0
   192
    test(buffer==world);
sl@0
   193
	test(aDescA->Find(world,pos,ECmpNormal)==KErrNone);
sl@0
   194
	test(pos==2);
sl@0
   195
	test(aDescA->FindIsq(world,pos,ECmpNormal)==KErrNone);
sl@0
   196
	test(pos==2);
sl@0
   197
    }
sl@0
   198
sl@0
   199
class CMonthNameArray : public CArrayFixFlat<TMonthName>, public MDesCArray
sl@0
   200
	{
sl@0
   201
public:
sl@0
   202
	CMonthNameArray() :CArrayFixFlat<TMonthName>(4) { }
sl@0
   203
private:
sl@0
   204
	TInt MdcaCount() const { return(Count()); }
sl@0
   205
	TPtrC MdcaPoint(TInt aIndex) const { return((*this)[aIndex]); }
sl@0
   206
	};
sl@0
   207
sl@0
   208
/**
sl@0
   209
@SYMTestCaseID          SYSLIB-BAFL-CT-0413
sl@0
   210
@SYMTestCaseDesc        Tests for mixability
sl@0
   211
@SYMTestPriority        Medium
sl@0
   212
@SYMTestActions         Tests the mix of setting and appending of month names to the descriptor array
sl@0
   213
@SYMTestExpectedResults Tests must not fail
sl@0
   214
@SYMREQ                 REQ0000
sl@0
   215
*/
sl@0
   216
void TestDesca::MixableTestL()
sl@0
   217
	{
sl@0
   218
	test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0413 Test mixability "));
sl@0
   219
	CMonthNameArray* array=new(ELeave) CMonthNameArray;
sl@0
   220
    TMonthName name;
sl@0
   221
    test.Next(_L("Add 12 month names"));
sl@0
   222
    for (TInt ii=0; ii<12; ii++)
sl@0
   223
        {
sl@0
   224
        name.Set((TMonth)ii);
sl@0
   225
        array->AppendL(name);
sl@0
   226
        }
sl@0
   227
	DoMixableTest(array);
sl@0
   228
	test.End();
sl@0
   229
	}
sl@0
   230
sl@0
   231
/**
sl@0
   232
@SYMTestCaseID          SYSLIB-BAFL-CT-0414
sl@0
   233
@SYMTestCaseDesc        Descriptor arrays tests
sl@0
   234
@SYMTestPriority        Medium
sl@0
   235
@SYMTestActions         Executes all the CDesCArray tests
sl@0
   236
@SYMTestExpectedResults Tests must not fail
sl@0
   237
@SYMREQ                 REQ0000
sl@0
   238
*/
sl@0
   239
void DoTestsL()
sl@0
   240
    {
sl@0
   241
	TestDesca t;
sl@0
   242
	test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0414 Test CDesCArrayFlat "));
sl@0
   243
    CDesCArrayFlat* descFlatArray=new(ELeave) CDesCArrayFlat(4);
sl@0
   244
	TRAPD(errCode, t.FoldTestL(descFlatArray));
sl@0
   245
	test(errCode==KErrNone);
sl@0
   246
	TRAP(errCode, t.MainTestL(descFlatArray));
sl@0
   247
	test(errCode==KErrNone);
sl@0
   248
	test.Start(_L("Test CDesCArraySeg"));
sl@0
   249
    CDesCArraySeg* descSegArray=new(ELeave) CDesCArraySeg(3);
sl@0
   250
	TRAP(errCode, t.FoldTestL(descSegArray));
sl@0
   251
	test(errCode==KErrNone);
sl@0
   252
	TRAP(errCode, t.MainTestL(descSegArray));
sl@0
   253
	test(errCode==KErrNone);
sl@0
   254
    t.ComparisonTest(descFlatArray,descSegArray);
sl@0
   255
	TRAP(errCode, t.InSequenceTestL(descSegArray));
sl@0
   256
	test(errCode==KErrNone);
sl@0
   257
	TRAP(errCode, t.InSequenceTestL(descFlatArray));
sl@0
   258
	test(errCode==KErrNone);
sl@0
   259
    delete(descFlatArray);
sl@0
   260
    delete(descSegArray);
sl@0
   261
	t.MixableTestL();
sl@0
   262
    }
sl@0
   263
sl@0
   264
GLDEF_C TInt E32Main()
sl@0
   265
	{
sl@0
   266
    __UHEAP_MARK;
sl@0
   267
    CTrapCleanup *cleanup=CTrapCleanup::New();
sl@0
   268
	test.Title();
sl@0
   269
	test.Start(_L(" Testing descriptor arrays "));
sl@0
   270
    TRAPD(err,DoTestsL());
sl@0
   271
    test(err==KErrNone);
sl@0
   272
	test.End();
sl@0
   273
    test.Close();
sl@0
   274
    delete cleanup;
sl@0
   275
    __UHEAP_MARKEND;
sl@0
   276
	return(0);
sl@0
   277
    }