1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/tsrc/T_PTRCB.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,86 @@
1.4 +// Copyright (c) 2006-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 +// Tests for CPtrC8Array and TKeyDesC8Array class(Test Improvement activity)
1.18 +//
1.19 +//
1.20 +
1.21 +#include <e32test.h>
1.22 +#include <badesca.h>
1.23 +
1.24 +RTest test(_L("T_PTRCB"));
1.25 +
1.26 +/**
1.27 +@SYMTestCaseID SYSLIB-BAFL-UT-1706
1.28 +@SYMTestCaseDesc Testing 8-bit descriptor arrays
1.29 + Tests for CPtrC8Array::MdcaCount(),CPtrC8Array::CopyL(),CPtrC8Array::operator =() functions
1.30 +@SYMTestPriority Medium
1.31 +@SYMTestActions Tests by adding descriptors to CDesC8Array and then copying to CPtrC8Array
1.32 +@SYMTestExpectedResults Tests must not fail
1.33 +@SYMREQ REQ0000
1.34 +*/
1.35 +
1.36 +void DoTestsL()
1.37 + {
1.38 + test.Next(_L("Test for ptrC8 and desC8 arrays"));
1.39 +
1.40 + CPtrC8Array* ptrB = new(ELeave) CPtrC8Array(8);
1.41 + CDesC8Array* desB = new(ELeave) CDesC8ArrayFlat(8);
1.42 +
1.43 + desB->AppendL(_L8("one"));
1.44 + desB->AppendL(_L8("two"));
1.45 + desB->AppendL(_L8("three"));
1.46 +
1.47 + // calling CPtrC8Array::CopyL() with an overloaded '=' operator
1.48 +
1.49 + *ptrB = *desB;
1.50 +
1.51 + test(ptrB->MdcaCount()==desB->MdcaCount());
1.52 + test(ptrB->MdcaPoint(2)==desB->MdcaPoint(2));
1.53 +
1.54 + test.Next(_L("Test for covering case ECmpCollated8 for TKeyDesC8Array class"));
1.55 +
1.56 + TInt pos = desB->InsertIsqAllowDuplicatesL(_L8("hello"));
1.57 + test(desB->MdcaCount()==4);
1.58 +
1.59 + // Invoking TKeyDesC8Array::Compare(), covers ECmpCollated8 case inside switch statement
1.60 +
1.61 + desB->Sort(ECmpCollated8);
1.62 +
1.63 + delete(ptrB);
1.64 + delete(desB);
1.65 + }
1.66 +
1.67 +
1.68 +TInt E32Main()
1.69 + {
1.70 + __UHEAP_MARK;
1.71 +
1.72 + CTrapCleanup* cleanup=CTrapCleanup::New();
1.73 + if(cleanup == NULL)
1.74 + {
1.75 + return KErrNoMemory;
1.76 + }
1.77 + test.Title();
1.78 + test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-UT-1706 Testing CPtrC8Array and TKeyDesC8Array class "));
1.79 +
1.80 + TRAPD(err,DoTestsL());
1.81 + test(err==KErrNone);
1.82 + test.End();
1.83 + test.Close();
1.84 + delete cleanup;
1.85 +
1.86 + __UHEAP_MARKEND;
1.87 +
1.88 + return(0);
1.89 + }