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
22 LOCAL_D RTest test(_L("T_PTRCA"));
25 @SYMTestCaseID SYSLIB-BAFL-CT-0425
26 @SYMTestCaseDesc Testing descriptor arrays
27 Tests for CPtrCArray::MdcaPoint(),CPtrCArray::MdcaCount() functions
28 @SYMTestPriority Medium
29 @SYMTestActions Tests by adding descriptors to the arrays and then comparing both CPtrCArray & CDesCArray arrays
30 @SYMTestExpectedResults Tests must not fail
33 LOCAL_C void testPtrCDesC()
35 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0425 PtrC and DesC "));
36 CPtrCArray* ptrA=new(ELeave) CPtrCArray(8);
37 CDesCArray* desA=new(ELeave) CDesCArrayFlat(8);
38 desA->AppendL(_L("one"));
39 ptrA->AppendL(desA->MdcaPoint(0));
40 test(ptrA->MdcaPoint(0)==desA->MdcaPoint(0));
41 TBuf<32> buffer=_L("two");
42 ptrA->InsertL(0,buffer);
43 test(ptrA->MdcaPoint(0)!=desA->MdcaPoint(0));
44 buffer=_L("onetwothree");
45 test(ptrA->MdcaPoint(0)==desA->MdcaPoint(0)); // TPtrC length is unchanged
47 desA->AppendL(_L("two"));
48 desA->AppendL(_L("three"));
49 test(ptrA->MdcaPoint(1)!=desA->MdcaPoint(1));
51 test(ptrA->MdcaCount()==desA->MdcaCount());
52 test(ptrA->MdcaPoint(1)==desA->MdcaPoint(1));
53 buffer=ptrA->MdcaPoint(0);
54 test(buffer==_L("one"));
58 buffer=_L("new test");
59 desA->AppendL(buffer);
60 ptrA->AppendL(buffer);
61 test(ptrA->MdcaPoint(0)==buffer);
62 test(desA->MdcaPoint(0)==buffer);
64 desA->AppendL(buffer);
65 ptrA->AppendL(buffer);
66 test(ptrA->MdcaPoint(0)==_L("helloest"));
67 test(ptrA->MdcaPoint(1)==buffer);
68 test(desA->MdcaPoint(1)==buffer);
75 @SYMTestCaseID SYSLIB-BAFL-CT-0426
76 @SYMTestCaseDesc CPtrCArray class functionality test
77 @SYMTestPriority Medium
78 @SYMTestActions Tests for CPtrCArray::InsertIsqL(),CPtrCArray::InsertIsqAllowDuplicatesL() functions
79 @SYMTestExpectedResults Tests must not fail
82 LOCAL_C void testFindIsq()
84 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0426 Findin in sequence "));
85 CPtrCArray* ptrA=new(ELeave) CPtrCArray(8);
87 TPtrC hello(_S("Hello"));
89 TPtrC world(_S("World"));
90 TPtrC middle(_S("middle"));
91 TPtrC extra(_S("extra"));
96 ptrA->AppendL(middle);
98 TKeyArrayFix key(0,ECmpFolded);
100 ptrA->Find(world,key,pos);
103 ptrA->Find(world,key,pos);
106 pos=ptrA->InsertIsqL(extra,key);
108 TRAP(pos,ptrA->InsertIsqL(extra,key));
109 test(pos==KErrAlreadyExists);
110 pos=ptrA->InsertIsqAllowDuplicatesL(extra,key);
116 GLDEF_C TInt E32Main()
118 CTrapCleanup *cleanup=CTrapCleanup::New();
120 test.Start(_L("Testing descriptor arrays "));
122 TRAPD(err,testPtrCDesC());
124 TRAP(err,testFindIsq());