1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/tsrc/T_DESCA.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,277 @@
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 DWW, April 1996
1.18 +// Tests descriptor arrays
1.19 +//
1.20 +//
1.21 +
1.22 +#include <e32test.h>
1.23 +#include <badesca.h>
1.24 +
1.25 +LOCAL_D RTest test(_L("T_DESCA"));
1.26 +
1.27 +class TestDesca
1.28 + {
1.29 +public:
1.30 + void MainTestL(CDesCArray* aDescA);
1.31 + void ComparisonTest(CDesCArray* aDescA1,CDesCArray* aDescA2);
1.32 + void FoldTestL(CDesCArray* aDescA);
1.33 + void MixableTestL();
1.34 + void DoMixableTest(MDesCArray* aDescA);
1.35 + void InSequenceTestL(CDesCArray* aDescA);
1.36 + };
1.37 +
1.38 +/**
1.39 +@SYMTestCaseID SYSLIB-BAFL-CT-0408
1.40 +@SYMTestCaseDesc Tests for folded and non-folded find
1.41 +@SYMTestPriority Medium
1.42 +@SYMTestActions Tests by appending few descriptors and find the position for the target.
1.43 +@SYMTestExpectedResults Tests must not fail
1.44 +@SYMREQ REQ0000
1.45 +*/
1.46 +void TestDesca::FoldTestL(CDesCArray* aDescA)
1.47 + {
1.48 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0408 Test folded and non-folded find "));
1.49 + TPtrC target=_L("abcdefg");
1.50 + aDescA->AppendL(target);
1.51 + aDescA->AppendL(_L("aBcDeFg"));
1.52 + aDescA->InsertL(0,_L("ABCDEFG"));
1.53 + test(aDescA->Count()==3);
1.54 + TInt pos=(-1);
1.55 + aDescA->Find(target,pos);
1.56 + test(pos==0);
1.57 + aDescA->Find(target,pos,ECmpNormal);
1.58 + test(pos==1);
1.59 + test.Next(_L("Test reset"));
1.60 + aDescA->Reset();
1.61 + test(!aDescA->Count());
1.62 + }
1.63 +
1.64 +/**
1.65 +@SYMTestCaseID SYSLIB-BAFL-CT-0409
1.66 +@SYMTestCaseDesc CDesCArray class functionality test
1.67 +@SYMTestPriority Medium
1.68 +@SYMTestActions Add month names to the descriptor array and tests with the find.
1.69 +@SYMTestExpectedResults Tests must not fail
1.70 +@SYMREQ REQ0000
1.71 +*/
1.72 +void TestDesca::MainTestL(CDesCArray* aDescA)
1.73 + {
1.74 + TMonthName name;
1.75 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0409 Add 12 month names "));
1.76 + for (TInt ii=0; ii<12; ii++)
1.77 + {
1.78 + name.Set((TMonth)ii);
1.79 + aDescA->AppendL(name);
1.80 + }
1.81 + test.Next(_L("Check 12 names exist"));
1.82 + test(aDescA->Count()==12);
1.83 + test.Next(_L("Print the 12 names"));
1.84 + for (TInt jj=0; jj<12; jj++)
1.85 + test.Printf((*aDescA)[jj]);
1.86 + test.Printf(_L("\r\n"));
1.87 + test.Next(_L("Find"));
1.88 + for (TInt kk=3; kk<12; kk+=3)
1.89 + {
1.90 + name.Set((TMonth)kk);
1.91 + TInt pos=0;
1.92 + aDescA->Find(name,pos);
1.93 + test(pos==kk);
1.94 + }
1.95 + test.Next(_L("Delete"));
1.96 + aDescA->Delete(2);
1.97 + aDescA->Delete(4);
1.98 + aDescA->Delete(6);
1.99 + test(aDescA->Count()==9);
1.100 + test((*aDescA)[6]==name);
1.101 + test.Next(_L("Sort"));
1.102 + aDescA->Sort();
1.103 + test(aDescA->Count()==9);
1.104 + for (TInt ll=0; ll<9; ll++)
1.105 + test.Printf((*aDescA)[ll]);
1.106 + test.Printf(_L("\r\n"));
1.107 + test.End();
1.108 + }
1.109 +
1.110 +/**
1.111 +@SYMTestCaseID SYSLIB-BAFL-CT-0410
1.112 +@SYMTestCaseDesc Comparision of two CDesCArray objects test
1.113 +@SYMTestPriority Medium
1.114 +@SYMTestActions Check if two descriptor arrays are equal.
1.115 +@SYMTestExpectedResults Tests must not fail
1.116 +@SYMREQ REQ0000
1.117 +*/
1.118 +void TestDesca::ComparisonTest(CDesCArray* aDescA1,CDesCArray* aDescA2)
1.119 + {
1.120 + test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0410 Test comparisons "));
1.121 + TInt count=aDescA1->Count();
1.122 + test(aDescA2->Count()==count);
1.123 + for (TInt ii=0; ii<count; ii++)
1.124 + test((*aDescA1)[ii]==(*aDescA2)[ii]);
1.125 + test.End();
1.126 + }
1.127 +
1.128 +/**
1.129 +@SYMTestCaseID SYSLIB-BAFL-CT-0411
1.130 +@SYMTestCaseDesc MDesCArray class functionality test
1.131 +@SYMTestPriority Medium
1.132 +@SYMTestActions Checks for the existence of 12 names
1.133 +@SYMTestExpectedResults Tests must not fail
1.134 +@SYMREQ REQ0000
1.135 +*/
1.136 +void TestDesca::DoMixableTest(MDesCArray* aDescA)
1.137 + {
1.138 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0411 Check 12 names exist "));
1.139 + test(aDescA->MdcaCount()==12);
1.140 + test.Next(_L("Print the 12 names"));
1.141 + for (TInt jj=0; jj<12; jj++)
1.142 + test.Printf(aDescA->MdcaPoint(jj));
1.143 + test.Printf(_L("\r\n"));
1.144 + delete(aDescA);
1.145 + }
1.146 +
1.147 +/**
1.148 +@SYMTestCaseID SYSLIB-BAFL-CT-0412
1.149 +@SYMTestCaseDesc Tests for CDesCArray sequences
1.150 +@SYMTestPriority Medium
1.151 +@SYMTestActions Checks for the sequence of the literals.
1.152 +@SYMTestExpectedResults Tests must not fail
1.153 +@SYMREQ REQ0000
1.154 +*/
1.155 +void TestDesca::InSequenceTestL(CDesCArray* aDescA)
1.156 + {
1.157 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0412 In Sequence Tests "));
1.158 + aDescA->Reset();
1.159 + TPtrC hello(_S("Hello"));
1.160 + TPtrC bye(_S("Bye"));
1.161 + TPtrC world(_S("World"));
1.162 + TPtrC middle(_S("middle"));
1.163 + TPtrC extra(_S("extra"));
1.164 + TBuf<32> buffer;
1.165 + TInt pos;
1.166 + aDescA->AppendL(hello);
1.167 + aDescA->AppendL(bye);
1.168 + aDescA->AppendL(world);
1.169 + aDescA->AppendL(middle);
1.170 + test(aDescA->MdcaPoint(0)==hello);
1.171 + test(aDescA->MdcaPoint(2)==world);
1.172 + //
1.173 + aDescA->Sort(ECmpFolded);
1.174 + buffer=aDescA->MdcaPoint(2);
1.175 + test(buffer==middle);
1.176 + test(aDescA->Find(middle,pos,ECmpFolded)==KErrNone);
1.177 + test(pos==2);
1.178 + test(aDescA->FindIsq(middle,pos,ECmpFolded)==KErrNone);
1.179 + test(pos==2);
1.180 + test(aDescA->FindIsq(middle,pos,ECmpNormal)==KErrNone); // !! should this fail for non-sorted array??
1.181 +// test(pos==??);
1.182 + pos=aDescA->InsertIsqL(extra,ECmpFolded);
1.183 + test(pos==1);
1.184 + TRAP(pos,aDescA->InsertIsqL(extra,ECmpFolded));
1.185 + test(pos==KErrAlreadyExists);
1.186 + pos=aDescA->InsertIsqAllowDuplicatesL(extra,ECmpFolded);
1.187 + test(pos==2);
1.188 + aDescA->Delete(pos--);
1.189 + aDescA->Delete(pos);
1.190 + test(aDescA->MdcaCount()==4);
1.191 + //
1.192 + // Different sort order because of case
1.193 + aDescA->Sort(ECmpNormal);
1.194 + buffer=aDescA->MdcaPoint(2);
1.195 + test(buffer==world);
1.196 + test(aDescA->Find(world,pos,ECmpNormal)==KErrNone);
1.197 + test(pos==2);
1.198 + test(aDescA->FindIsq(world,pos,ECmpNormal)==KErrNone);
1.199 + test(pos==2);
1.200 + }
1.201 +
1.202 +class CMonthNameArray : public CArrayFixFlat<TMonthName>, public MDesCArray
1.203 + {
1.204 +public:
1.205 + CMonthNameArray() :CArrayFixFlat<TMonthName>(4) { }
1.206 +private:
1.207 + TInt MdcaCount() const { return(Count()); }
1.208 + TPtrC MdcaPoint(TInt aIndex) const { return((*this)[aIndex]); }
1.209 + };
1.210 +
1.211 +/**
1.212 +@SYMTestCaseID SYSLIB-BAFL-CT-0413
1.213 +@SYMTestCaseDesc Tests for mixability
1.214 +@SYMTestPriority Medium
1.215 +@SYMTestActions Tests the mix of setting and appending of month names to the descriptor array
1.216 +@SYMTestExpectedResults Tests must not fail
1.217 +@SYMREQ REQ0000
1.218 +*/
1.219 +void TestDesca::MixableTestL()
1.220 + {
1.221 + test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0413 Test mixability "));
1.222 + CMonthNameArray* array=new(ELeave) CMonthNameArray;
1.223 + TMonthName name;
1.224 + test.Next(_L("Add 12 month names"));
1.225 + for (TInt ii=0; ii<12; ii++)
1.226 + {
1.227 + name.Set((TMonth)ii);
1.228 + array->AppendL(name);
1.229 + }
1.230 + DoMixableTest(array);
1.231 + test.End();
1.232 + }
1.233 +
1.234 +/**
1.235 +@SYMTestCaseID SYSLIB-BAFL-CT-0414
1.236 +@SYMTestCaseDesc Descriptor arrays tests
1.237 +@SYMTestPriority Medium
1.238 +@SYMTestActions Executes all the CDesCArray tests
1.239 +@SYMTestExpectedResults Tests must not fail
1.240 +@SYMREQ REQ0000
1.241 +*/
1.242 +void DoTestsL()
1.243 + {
1.244 + TestDesca t;
1.245 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0414 Test CDesCArrayFlat "));
1.246 + CDesCArrayFlat* descFlatArray=new(ELeave) CDesCArrayFlat(4);
1.247 + TRAPD(errCode, t.FoldTestL(descFlatArray));
1.248 + test(errCode==KErrNone);
1.249 + TRAP(errCode, t.MainTestL(descFlatArray));
1.250 + test(errCode==KErrNone);
1.251 + test.Start(_L("Test CDesCArraySeg"));
1.252 + CDesCArraySeg* descSegArray=new(ELeave) CDesCArraySeg(3);
1.253 + TRAP(errCode, t.FoldTestL(descSegArray));
1.254 + test(errCode==KErrNone);
1.255 + TRAP(errCode, t.MainTestL(descSegArray));
1.256 + test(errCode==KErrNone);
1.257 + t.ComparisonTest(descFlatArray,descSegArray);
1.258 + TRAP(errCode, t.InSequenceTestL(descSegArray));
1.259 + test(errCode==KErrNone);
1.260 + TRAP(errCode, t.InSequenceTestL(descFlatArray));
1.261 + test(errCode==KErrNone);
1.262 + delete(descFlatArray);
1.263 + delete(descSegArray);
1.264 + t.MixableTestL();
1.265 + }
1.266 +
1.267 +GLDEF_C TInt E32Main()
1.268 + {
1.269 + __UHEAP_MARK;
1.270 + CTrapCleanup *cleanup=CTrapCleanup::New();
1.271 + test.Title();
1.272 + test.Start(_L(" Testing descriptor arrays "));
1.273 + TRAPD(err,DoTestsL());
1.274 + test(err==KErrNone);
1.275 + test.End();
1.276 + test.Close();
1.277 + delete cleanup;
1.278 + __UHEAP_MARKEND;
1.279 + return(0);
1.280 + }