os/ossrv/lowlevellibsandfws/apputils/tsrc/T_PTRCA.CPP
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // Started by DWW, April 1996
    15 // Tests TPtrC arrays
    16 // 
    17 //
    18 
    19 #include <e32test.h>
    20 #include <badesca.h>
    21 
    22 LOCAL_D RTest test(_L("T_PTRCA"));
    23 
    24 /**
    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
    31 @SYMREQ                 REQ0000
    32 */
    33 LOCAL_C void testPtrCDesC()
    34 	{
    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
    46 	//
    47 	desA->AppendL(_L("two"));
    48 	desA->AppendL(_L("three"));
    49 	test(ptrA->MdcaPoint(1)!=desA->MdcaPoint(1));
    50 	*ptrA=*desA;
    51 	test(ptrA->MdcaCount()==desA->MdcaCount());
    52 	test(ptrA->MdcaPoint(1)==desA->MdcaPoint(1));
    53 	buffer=ptrA->MdcaPoint(0);
    54 	test(buffer==_L("one"));
    55 	//
    56 	ptrA->Reset();
    57 	desA->Reset();
    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);
    63 	buffer=_L("hello");
    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);
    69 	//
    70 	delete(ptrA);
    71 	delete(desA);
    72 	}
    73 
    74 /**
    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
    80 @SYMREQ                 REQ0000
    81 */
    82 LOCAL_C void testFindIsq()
    83 	{
    84 	test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0426 Findin in sequence "));
    85 	CPtrCArray* ptrA=new(ELeave) CPtrCArray(8);
    86 	//
    87 	TPtrC hello(_S("Hello"));
    88 	TPtrC bye(_S("Bye"));
    89 	TPtrC world(_S("World"));
    90 	TPtrC middle(_S("middle"));
    91 	TPtrC extra(_S("extra"));
    92 	TInt pos;
    93 	ptrA->AppendL(hello);
    94 	ptrA->AppendL(bye);
    95 	ptrA->AppendL(world);
    96 	ptrA->AppendL(middle);
    97 	//
    98 	TKeyArrayFix key(0,ECmpFolded);
    99 	//
   100 	ptrA->Find(world,key,pos);
   101 	test(pos==2);
   102 	ptrA->Sort(key);
   103 	ptrA->Find(world,key,pos);
   104 	test(pos==3);
   105 	//
   106 	pos=ptrA->InsertIsqL(extra,key);
   107 	test(pos==1);
   108 	TRAP(pos,ptrA->InsertIsqL(extra,key));
   109 	test(pos==KErrAlreadyExists);
   110 	pos=ptrA->InsertIsqAllowDuplicatesL(extra,key);
   111 	test(pos==2);
   112 	//
   113 	delete(ptrA);
   114 	}
   115 
   116 GLDEF_C TInt E32Main()
   117 	{
   118     CTrapCleanup *cleanup=CTrapCleanup::New();
   119 	test.Title();
   120 	test.Start(_L("Testing descriptor arrays "));
   121     __UHEAP_MARK;
   122     TRAPD(err,testPtrCDesC());
   123     test(err==KErrNone);
   124     TRAP(err,testFindIsq());
   125     test(err==KErrNone);
   126     __UHEAP_MARKEND;
   127 	test.End();
   128     test.Close();
   129     delete cleanup;
   130 	return(0);
   131     }