sl@0
|
1 |
// Copyright (c) 2006-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 |
// Tests for CPtrC8Array and TKeyDesC8Array class(Test Improvement activity)
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <e32test.h>
|
sl@0
|
19 |
#include <badesca.h>
|
sl@0
|
20 |
|
sl@0
|
21 |
RTest test(_L("T_PTRCB"));
|
sl@0
|
22 |
|
sl@0
|
23 |
/**
|
sl@0
|
24 |
@SYMTestCaseID SYSLIB-BAFL-UT-1706
|
sl@0
|
25 |
@SYMTestCaseDesc Testing 8-bit descriptor arrays
|
sl@0
|
26 |
Tests for CPtrC8Array::MdcaCount(),CPtrC8Array::CopyL(),CPtrC8Array::operator =() functions
|
sl@0
|
27 |
@SYMTestPriority Medium
|
sl@0
|
28 |
@SYMTestActions Tests by adding descriptors to CDesC8Array and then copying to CPtrC8Array
|
sl@0
|
29 |
@SYMTestExpectedResults Tests must not fail
|
sl@0
|
30 |
@SYMREQ REQ0000
|
sl@0
|
31 |
*/
|
sl@0
|
32 |
|
sl@0
|
33 |
void DoTestsL()
|
sl@0
|
34 |
{
|
sl@0
|
35 |
test.Next(_L("Test for ptrC8 and desC8 arrays"));
|
sl@0
|
36 |
|
sl@0
|
37 |
CPtrC8Array* ptrB = new(ELeave) CPtrC8Array(8);
|
sl@0
|
38 |
CDesC8Array* desB = new(ELeave) CDesC8ArrayFlat(8);
|
sl@0
|
39 |
|
sl@0
|
40 |
desB->AppendL(_L8("one"));
|
sl@0
|
41 |
desB->AppendL(_L8("two"));
|
sl@0
|
42 |
desB->AppendL(_L8("three"));
|
sl@0
|
43 |
|
sl@0
|
44 |
// calling CPtrC8Array::CopyL() with an overloaded '=' operator
|
sl@0
|
45 |
|
sl@0
|
46 |
*ptrB = *desB;
|
sl@0
|
47 |
|
sl@0
|
48 |
test(ptrB->MdcaCount()==desB->MdcaCount());
|
sl@0
|
49 |
test(ptrB->MdcaPoint(2)==desB->MdcaPoint(2));
|
sl@0
|
50 |
|
sl@0
|
51 |
test.Next(_L("Test for covering case ECmpCollated8 for TKeyDesC8Array class"));
|
sl@0
|
52 |
|
sl@0
|
53 |
TInt pos = desB->InsertIsqAllowDuplicatesL(_L8("hello"));
|
sl@0
|
54 |
test(desB->MdcaCount()==4);
|
sl@0
|
55 |
|
sl@0
|
56 |
// Invoking TKeyDesC8Array::Compare(), covers ECmpCollated8 case inside switch statement
|
sl@0
|
57 |
|
sl@0
|
58 |
desB->Sort(ECmpCollated8);
|
sl@0
|
59 |
|
sl@0
|
60 |
delete(ptrB);
|
sl@0
|
61 |
delete(desB);
|
sl@0
|
62 |
}
|
sl@0
|
63 |
|
sl@0
|
64 |
|
sl@0
|
65 |
TInt E32Main()
|
sl@0
|
66 |
{
|
sl@0
|
67 |
__UHEAP_MARK;
|
sl@0
|
68 |
|
sl@0
|
69 |
CTrapCleanup* cleanup=CTrapCleanup::New();
|
sl@0
|
70 |
if(cleanup == NULL)
|
sl@0
|
71 |
{
|
sl@0
|
72 |
return KErrNoMemory;
|
sl@0
|
73 |
}
|
sl@0
|
74 |
test.Title();
|
sl@0
|
75 |
test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-UT-1706 Testing CPtrC8Array and TKeyDesC8Array class "));
|
sl@0
|
76 |
|
sl@0
|
77 |
TRAPD(err,DoTestsL());
|
sl@0
|
78 |
test(err==KErrNone);
|
sl@0
|
79 |
test.End();
|
sl@0
|
80 |
test.Close();
|
sl@0
|
81 |
delete cleanup;
|
sl@0
|
82 |
|
sl@0
|
83 |
__UHEAP_MARKEND;
|
sl@0
|
84 |
|
sl@0
|
85 |
return(0);
|
sl@0
|
86 |
}
|