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 TPtrC 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_PTRCA"));
|
sl@0
|
23 |
|
sl@0
|
24 |
/**
|
sl@0
|
25 |
@SYMTestCaseID SYSLIB-BAFL-CT-0425
|
sl@0
|
26 |
@SYMTestCaseDesc Testing descriptor arrays
|
sl@0
|
27 |
Tests for CPtrCArray::MdcaPoint(),CPtrCArray::MdcaCount() functions
|
sl@0
|
28 |
@SYMTestPriority Medium
|
sl@0
|
29 |
@SYMTestActions Tests by adding descriptors to the arrays and then comparing both CPtrCArray & CDesCArray arrays
|
sl@0
|
30 |
@SYMTestExpectedResults Tests must not fail
|
sl@0
|
31 |
@SYMREQ REQ0000
|
sl@0
|
32 |
*/
|
sl@0
|
33 |
LOCAL_C void testPtrCDesC()
|
sl@0
|
34 |
{
|
sl@0
|
35 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0425 PtrC and DesC "));
|
sl@0
|
36 |
CPtrCArray* ptrA=new(ELeave) CPtrCArray(8);
|
sl@0
|
37 |
CDesCArray* desA=new(ELeave) CDesCArrayFlat(8);
|
sl@0
|
38 |
desA->AppendL(_L("one"));
|
sl@0
|
39 |
ptrA->AppendL(desA->MdcaPoint(0));
|
sl@0
|
40 |
test(ptrA->MdcaPoint(0)==desA->MdcaPoint(0));
|
sl@0
|
41 |
TBuf<32> buffer=_L("two");
|
sl@0
|
42 |
ptrA->InsertL(0,buffer);
|
sl@0
|
43 |
test(ptrA->MdcaPoint(0)!=desA->MdcaPoint(0));
|
sl@0
|
44 |
buffer=_L("onetwothree");
|
sl@0
|
45 |
test(ptrA->MdcaPoint(0)==desA->MdcaPoint(0)); // TPtrC length is unchanged
|
sl@0
|
46 |
//
|
sl@0
|
47 |
desA->AppendL(_L("two"));
|
sl@0
|
48 |
desA->AppendL(_L("three"));
|
sl@0
|
49 |
test(ptrA->MdcaPoint(1)!=desA->MdcaPoint(1));
|
sl@0
|
50 |
*ptrA=*desA;
|
sl@0
|
51 |
test(ptrA->MdcaCount()==desA->MdcaCount());
|
sl@0
|
52 |
test(ptrA->MdcaPoint(1)==desA->MdcaPoint(1));
|
sl@0
|
53 |
buffer=ptrA->MdcaPoint(0);
|
sl@0
|
54 |
test(buffer==_L("one"));
|
sl@0
|
55 |
//
|
sl@0
|
56 |
ptrA->Reset();
|
sl@0
|
57 |
desA->Reset();
|
sl@0
|
58 |
buffer=_L("new test");
|
sl@0
|
59 |
desA->AppendL(buffer);
|
sl@0
|
60 |
ptrA->AppendL(buffer);
|
sl@0
|
61 |
test(ptrA->MdcaPoint(0)==buffer);
|
sl@0
|
62 |
test(desA->MdcaPoint(0)==buffer);
|
sl@0
|
63 |
buffer=_L("hello");
|
sl@0
|
64 |
desA->AppendL(buffer);
|
sl@0
|
65 |
ptrA->AppendL(buffer);
|
sl@0
|
66 |
test(ptrA->MdcaPoint(0)==_L("helloest"));
|
sl@0
|
67 |
test(ptrA->MdcaPoint(1)==buffer);
|
sl@0
|
68 |
test(desA->MdcaPoint(1)==buffer);
|
sl@0
|
69 |
//
|
sl@0
|
70 |
delete(ptrA);
|
sl@0
|
71 |
delete(desA);
|
sl@0
|
72 |
}
|
sl@0
|
73 |
|
sl@0
|
74 |
/**
|
sl@0
|
75 |
@SYMTestCaseID SYSLIB-BAFL-CT-0426
|
sl@0
|
76 |
@SYMTestCaseDesc CPtrCArray class functionality test
|
sl@0
|
77 |
@SYMTestPriority Medium
|
sl@0
|
78 |
@SYMTestActions Tests for CPtrCArray::InsertIsqL(),CPtrCArray::InsertIsqAllowDuplicatesL() functions
|
sl@0
|
79 |
@SYMTestExpectedResults Tests must not fail
|
sl@0
|
80 |
@SYMREQ REQ0000
|
sl@0
|
81 |
*/
|
sl@0
|
82 |
LOCAL_C void testFindIsq()
|
sl@0
|
83 |
{
|
sl@0
|
84 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0426 Findin in sequence "));
|
sl@0
|
85 |
CPtrCArray* ptrA=new(ELeave) CPtrCArray(8);
|
sl@0
|
86 |
//
|
sl@0
|
87 |
TPtrC hello(_S("Hello"));
|
sl@0
|
88 |
TPtrC bye(_S("Bye"));
|
sl@0
|
89 |
TPtrC world(_S("World"));
|
sl@0
|
90 |
TPtrC middle(_S("middle"));
|
sl@0
|
91 |
TPtrC extra(_S("extra"));
|
sl@0
|
92 |
TInt pos;
|
sl@0
|
93 |
ptrA->AppendL(hello);
|
sl@0
|
94 |
ptrA->AppendL(bye);
|
sl@0
|
95 |
ptrA->AppendL(world);
|
sl@0
|
96 |
ptrA->AppendL(middle);
|
sl@0
|
97 |
//
|
sl@0
|
98 |
TKeyArrayFix key(0,ECmpFolded);
|
sl@0
|
99 |
//
|
sl@0
|
100 |
ptrA->Find(world,key,pos);
|
sl@0
|
101 |
test(pos==2);
|
sl@0
|
102 |
ptrA->Sort(key);
|
sl@0
|
103 |
ptrA->Find(world,key,pos);
|
sl@0
|
104 |
test(pos==3);
|
sl@0
|
105 |
//
|
sl@0
|
106 |
pos=ptrA->InsertIsqL(extra,key);
|
sl@0
|
107 |
test(pos==1);
|
sl@0
|
108 |
TRAP(pos,ptrA->InsertIsqL(extra,key));
|
sl@0
|
109 |
test(pos==KErrAlreadyExists);
|
sl@0
|
110 |
pos=ptrA->InsertIsqAllowDuplicatesL(extra,key);
|
sl@0
|
111 |
test(pos==2);
|
sl@0
|
112 |
//
|
sl@0
|
113 |
delete(ptrA);
|
sl@0
|
114 |
}
|
sl@0
|
115 |
|
sl@0
|
116 |
GLDEF_C TInt E32Main()
|
sl@0
|
117 |
{
|
sl@0
|
118 |
CTrapCleanup *cleanup=CTrapCleanup::New();
|
sl@0
|
119 |
test.Title();
|
sl@0
|
120 |
test.Start(_L("Testing descriptor arrays "));
|
sl@0
|
121 |
__UHEAP_MARK;
|
sl@0
|
122 |
TRAPD(err,testPtrCDesC());
|
sl@0
|
123 |
test(err==KErrNone);
|
sl@0
|
124 |
TRAP(err,testFindIsq());
|
sl@0
|
125 |
test(err==KErrNone);
|
sl@0
|
126 |
__UHEAP_MARKEND;
|
sl@0
|
127 |
test.End();
|
sl@0
|
128 |
test.Close();
|
sl@0
|
129 |
delete cleanup;
|
sl@0
|
130 |
return(0);
|
sl@0
|
131 |
}
|