First public contribution.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Started by DWW, April 1996
15 // Tests descriptor arrays
22 LOCAL_D RTest test(_L("T_DESCA"));
27 void MainTestL(CDesCArray* aDescA);
28 void ComparisonTest(CDesCArray* aDescA1,CDesCArray* aDescA2);
29 void FoldTestL(CDesCArray* aDescA);
31 void DoMixableTest(MDesCArray* aDescA);
32 void InSequenceTestL(CDesCArray* aDescA);
36 @SYMTestCaseID SYSLIB-BAFL-CT-0408
37 @SYMTestCaseDesc Tests for folded and non-folded find
38 @SYMTestPriority Medium
39 @SYMTestActions Tests by appending few descriptors and find the position for the target.
40 @SYMTestExpectedResults Tests must not fail
43 void TestDesca::FoldTestL(CDesCArray* aDescA)
45 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0408 Test folded and non-folded find "));
46 TPtrC target=_L("abcdefg");
47 aDescA->AppendL(target);
48 aDescA->AppendL(_L("aBcDeFg"));
49 aDescA->InsertL(0,_L("ABCDEFG"));
50 test(aDescA->Count()==3);
52 aDescA->Find(target,pos);
54 aDescA->Find(target,pos,ECmpNormal);
56 test.Next(_L("Test reset"));
58 test(!aDescA->Count());
62 @SYMTestCaseID SYSLIB-BAFL-CT-0409
63 @SYMTestCaseDesc CDesCArray class functionality test
64 @SYMTestPriority Medium
65 @SYMTestActions Add month names to the descriptor array and tests with the find.
66 @SYMTestExpectedResults Tests must not fail
69 void TestDesca::MainTestL(CDesCArray* aDescA)
72 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0409 Add 12 month names "));
73 for (TInt ii=0; ii<12; ii++)
76 aDescA->AppendL(name);
78 test.Next(_L("Check 12 names exist"));
79 test(aDescA->Count()==12);
80 test.Next(_L("Print the 12 names"));
81 for (TInt jj=0; jj<12; jj++)
82 test.Printf((*aDescA)[jj]);
83 test.Printf(_L("\r\n"));
84 test.Next(_L("Find"));
85 for (TInt kk=3; kk<12; kk+=3)
89 aDescA->Find(name,pos);
92 test.Next(_L("Delete"));
96 test(aDescA->Count()==9);
97 test((*aDescA)[6]==name);
98 test.Next(_L("Sort"));
100 test(aDescA->Count()==9);
101 for (TInt ll=0; ll<9; ll++)
102 test.Printf((*aDescA)[ll]);
103 test.Printf(_L("\r\n"));
108 @SYMTestCaseID SYSLIB-BAFL-CT-0410
109 @SYMTestCaseDesc Comparision of two CDesCArray objects test
110 @SYMTestPriority Medium
111 @SYMTestActions Check if two descriptor arrays are equal.
112 @SYMTestExpectedResults Tests must not fail
115 void TestDesca::ComparisonTest(CDesCArray* aDescA1,CDesCArray* aDescA2)
117 test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0410 Test comparisons "));
118 TInt count=aDescA1->Count();
119 test(aDescA2->Count()==count);
120 for (TInt ii=0; ii<count; ii++)
121 test((*aDescA1)[ii]==(*aDescA2)[ii]);
126 @SYMTestCaseID SYSLIB-BAFL-CT-0411
127 @SYMTestCaseDesc MDesCArray class functionality test
128 @SYMTestPriority Medium
129 @SYMTestActions Checks for the existence of 12 names
130 @SYMTestExpectedResults Tests must not fail
133 void TestDesca::DoMixableTest(MDesCArray* aDescA)
135 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0411 Check 12 names exist "));
136 test(aDescA->MdcaCount()==12);
137 test.Next(_L("Print the 12 names"));
138 for (TInt jj=0; jj<12; jj++)
139 test.Printf(aDescA->MdcaPoint(jj));
140 test.Printf(_L("\r\n"));
145 @SYMTestCaseID SYSLIB-BAFL-CT-0412
146 @SYMTestCaseDesc Tests for CDesCArray sequences
147 @SYMTestPriority Medium
148 @SYMTestActions Checks for the sequence of the literals.
149 @SYMTestExpectedResults Tests must not fail
152 void TestDesca::InSequenceTestL(CDesCArray* aDescA)
154 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0412 In Sequence Tests "));
156 TPtrC hello(_S("Hello"));
157 TPtrC bye(_S("Bye"));
158 TPtrC world(_S("World"));
159 TPtrC middle(_S("middle"));
160 TPtrC extra(_S("extra"));
163 aDescA->AppendL(hello);
164 aDescA->AppendL(bye);
165 aDescA->AppendL(world);
166 aDescA->AppendL(middle);
167 test(aDescA->MdcaPoint(0)==hello);
168 test(aDescA->MdcaPoint(2)==world);
170 aDescA->Sort(ECmpFolded);
171 buffer=aDescA->MdcaPoint(2);
172 test(buffer==middle);
173 test(aDescA->Find(middle,pos,ECmpFolded)==KErrNone);
175 test(aDescA->FindIsq(middle,pos,ECmpFolded)==KErrNone);
177 test(aDescA->FindIsq(middle,pos,ECmpNormal)==KErrNone); // !! should this fail for non-sorted array??
179 pos=aDescA->InsertIsqL(extra,ECmpFolded);
181 TRAP(pos,aDescA->InsertIsqL(extra,ECmpFolded));
182 test(pos==KErrAlreadyExists);
183 pos=aDescA->InsertIsqAllowDuplicatesL(extra,ECmpFolded);
185 aDescA->Delete(pos--);
187 test(aDescA->MdcaCount()==4);
189 // Different sort order because of case
190 aDescA->Sort(ECmpNormal);
191 buffer=aDescA->MdcaPoint(2);
193 test(aDescA->Find(world,pos,ECmpNormal)==KErrNone);
195 test(aDescA->FindIsq(world,pos,ECmpNormal)==KErrNone);
199 class CMonthNameArray : public CArrayFixFlat<TMonthName>, public MDesCArray
202 CMonthNameArray() :CArrayFixFlat<TMonthName>(4) { }
204 TInt MdcaCount() const { return(Count()); }
205 TPtrC MdcaPoint(TInt aIndex) const { return((*this)[aIndex]); }
209 @SYMTestCaseID SYSLIB-BAFL-CT-0413
210 @SYMTestCaseDesc Tests for mixability
211 @SYMTestPriority Medium
212 @SYMTestActions Tests the mix of setting and appending of month names to the descriptor array
213 @SYMTestExpectedResults Tests must not fail
216 void TestDesca::MixableTestL()
218 test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0413 Test mixability "));
219 CMonthNameArray* array=new(ELeave) CMonthNameArray;
221 test.Next(_L("Add 12 month names"));
222 for (TInt ii=0; ii<12; ii++)
224 name.Set((TMonth)ii);
225 array->AppendL(name);
227 DoMixableTest(array);
232 @SYMTestCaseID SYSLIB-BAFL-CT-0414
233 @SYMTestCaseDesc Descriptor arrays tests
234 @SYMTestPriority Medium
235 @SYMTestActions Executes all the CDesCArray tests
236 @SYMTestExpectedResults Tests must not fail
242 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0414 Test CDesCArrayFlat "));
243 CDesCArrayFlat* descFlatArray=new(ELeave) CDesCArrayFlat(4);
244 TRAPD(errCode, t.FoldTestL(descFlatArray));
245 test(errCode==KErrNone);
246 TRAP(errCode, t.MainTestL(descFlatArray));
247 test(errCode==KErrNone);
248 test.Start(_L("Test CDesCArraySeg"));
249 CDesCArraySeg* descSegArray=new(ELeave) CDesCArraySeg(3);
250 TRAP(errCode, t.FoldTestL(descSegArray));
251 test(errCode==KErrNone);
252 TRAP(errCode, t.MainTestL(descSegArray));
253 test(errCode==KErrNone);
254 t.ComparisonTest(descFlatArray,descSegArray);
255 TRAP(errCode, t.InSequenceTestL(descSegArray));
256 test(errCode==KErrNone);
257 TRAP(errCode, t.InSequenceTestL(descFlatArray));
258 test(errCode==KErrNone);
259 delete(descFlatArray);
260 delete(descSegArray);
264 GLDEF_C TInt E32Main()
267 CTrapCleanup *cleanup=CTrapCleanup::New();
269 test.Start(_L(" Testing descriptor arrays "));
270 TRAPD(err,DoTestsL());