os/ossrv/lowlevellibsandfws/apputils/tsrc/t_strings/T_string.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) 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 RString, RstringF, RStringTokenF and RStringToken class
    15 // 
    16 //
    17 
    18 #include <e32test.h>
    19 #include <e32base.h>
    20 #include <e32svr.h>
    21 #include <stringpool.h>
    22 #include "stringtablef.h"
    23 #include "stringtablec.h"
    24 
    25 RTest test(_L("T_String"));
    26 
    27 /**
    28 @SYMTestCaseID          SYSLIB-BAFL-UT-1708
    29 @SYMTestCaseDesc        Testing the functions of RString, RstringF, RStringTokenF and RStringToken class
    30 						Tests for RString::Copy(), RString::operator RStringToken(), RString::operator!=(), RString::operator==().Tests the same functions of the other classes specified above.
    31 @SYMTestPriority        Medium
    32 @SYMTestActions         Tests by first creating the string table for case-sensitive and case-insensitive strings and then comparing the data in the tables
    33 @SYMTestExpectedResults Tests must not fail
    34 @SYMREQ                 REQ0000
    35 */
    36 
    37 void DoTestsL()
    38 	{
    39 	RStringPool pool;
    40 	pool.OpenL(StringTableF::Table);
    41 	
    42 	test.Printf(_L("Test for RStringF: case-insensitive strings"));
    43 	
    44 	RStringF objF1 = pool.StringF(StringTableF::EBanana,StringTableF::Table);
    45 	TBuf<100> buf;
    46 	buf.Copy(objF1.DesC());
    47 	test.Printf(buf);
    48 		
    49 	RStringF objF2 = pool.OpenFStringL(_L8("Apple"));
    50 	test(objF1!=objF2);
    51 	test(!(objF1==objF2));
    52 
    53 	objF2 = objF1.Copy();
    54 	test(objF1==objF2);
    55 	test(!(objF1!=objF2));
    56 	
    57 	test.Next(_L("Test for RStringTokenF"));
    58 	
    59 	RStringTokenF objF3 = objF2;
    60 	test(objF3==objF2);
    61 	
    62 	test.Next(_L("Test for RString: case-sensitive strings'"));
    63 	
    64 	pool.OpenL(StringTableC::Table);
    65 	RString objC1 = pool.String(StringTableC::EApple,StringTableC::Table);
    66 	
    67 	RString objC2 = pool.OpenStringL(_L8("BaNana"));
    68 	test(!(objC1==objC2));
    69 	test(objC1!=objC2);
    70 	
    71 	RString objC3 = objC2.Copy();
    72 	test(!(objC3!=objC2));
    73 	test(objC3!=objC1);
    74 	test(objC3==objC2);
    75 	
    76 	test.Printf(_L("Test for RStringToken"));
    77 	
    78 	RStringToken objC4 = objC3;
    79 	test(objC4==objC3);
    80 	test(!(objC4==objC1));
    81 
    82 	objF1.Close();
    83 	objF2.Close();	
    84 	objC1.Close();
    85 	objC2.Close();
    86 	objC3.Close();
    87 	
    88 	pool.Close();
    89 	}
    90 
    91 TInt E32Main()
    92 	{
    93 	__UHEAP_MARK;
    94 	
    95 	CTrapCleanup* cleanup=CTrapCleanup::New(); 
    96 	if(cleanup == NULL)
    97 	{
    98 		return KErrNoMemory;
    99 	}
   100 	test.Title();
   101 	test.Start(_L("String Tests"));
   102 	TRAPD(error,DoTestsL());
   103 	test( error == KErrNone );
   104 	test.End();
   105 	test.Close();
   106 	delete cleanup;
   107 	__UHEAP_MARKEND;
   108 
   109 	return KErrNone; 
   110 	}