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