os/ossrv/lowlevellibsandfws/apputils/tsrc/t_strings/T_string.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/tsrc/t_strings/T_string.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,110 @@
     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 RString, RstringF, RStringTokenF and RStringToken class
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#include <e32test.h>
    1.22 +#include <e32base.h>
    1.23 +#include <e32svr.h>
    1.24 +#include <stringpool.h>
    1.25 +#include "stringtablef.h"
    1.26 +#include "stringtablec.h"
    1.27 +
    1.28 +RTest test(_L("T_String"));
    1.29 +
    1.30 +/**
    1.31 +@SYMTestCaseID          SYSLIB-BAFL-UT-1708
    1.32 +@SYMTestCaseDesc        Testing the functions of RString, RstringF, RStringTokenF and RStringToken class
    1.33 +						Tests for RString::Copy(), RString::operator RStringToken(), RString::operator!=(), RString::operator==().Tests the same functions of the other classes specified above.
    1.34 +@SYMTestPriority        Medium
    1.35 +@SYMTestActions         Tests by first creating the string table for case-sensitive and case-insensitive strings and then comparing the data in the tables
    1.36 +@SYMTestExpectedResults Tests must not fail
    1.37 +@SYMREQ                 REQ0000
    1.38 +*/
    1.39 +
    1.40 +void DoTestsL()
    1.41 +	{
    1.42 +	RStringPool pool;
    1.43 +	pool.OpenL(StringTableF::Table);
    1.44 +	
    1.45 +	test.Printf(_L("Test for RStringF: case-insensitive strings"));
    1.46 +	
    1.47 +	RStringF objF1 = pool.StringF(StringTableF::EBanana,StringTableF::Table);
    1.48 +	TBuf<100> buf;
    1.49 +	buf.Copy(objF1.DesC());
    1.50 +	test.Printf(buf);
    1.51 +		
    1.52 +	RStringF objF2 = pool.OpenFStringL(_L8("Apple"));
    1.53 +	test(objF1!=objF2);
    1.54 +	test(!(objF1==objF2));
    1.55 +
    1.56 +	objF2 = objF1.Copy();
    1.57 +	test(objF1==objF2);
    1.58 +	test(!(objF1!=objF2));
    1.59 +	
    1.60 +	test.Next(_L("Test for RStringTokenF"));
    1.61 +	
    1.62 +	RStringTokenF objF3 = objF2;
    1.63 +	test(objF3==objF2);
    1.64 +	
    1.65 +	test.Next(_L("Test for RString: case-sensitive strings'"));
    1.66 +	
    1.67 +	pool.OpenL(StringTableC::Table);
    1.68 +	RString objC1 = pool.String(StringTableC::EApple,StringTableC::Table);
    1.69 +	
    1.70 +	RString objC2 = pool.OpenStringL(_L8("BaNana"));
    1.71 +	test(!(objC1==objC2));
    1.72 +	test(objC1!=objC2);
    1.73 +	
    1.74 +	RString objC3 = objC2.Copy();
    1.75 +	test(!(objC3!=objC2));
    1.76 +	test(objC3!=objC1);
    1.77 +	test(objC3==objC2);
    1.78 +	
    1.79 +	test.Printf(_L("Test for RStringToken"));
    1.80 +	
    1.81 +	RStringToken objC4 = objC3;
    1.82 +	test(objC4==objC3);
    1.83 +	test(!(objC4==objC1));
    1.84 +
    1.85 +	objF1.Close();
    1.86 +	objF2.Close();	
    1.87 +	objC1.Close();
    1.88 +	objC2.Close();
    1.89 +	objC3.Close();
    1.90 +	
    1.91 +	pool.Close();
    1.92 +	}
    1.93 +
    1.94 +TInt E32Main()
    1.95 +	{
    1.96 +	__UHEAP_MARK;
    1.97 +	
    1.98 +	CTrapCleanup* cleanup=CTrapCleanup::New(); 
    1.99 +	if(cleanup == NULL)
   1.100 +	{
   1.101 +		return KErrNoMemory;
   1.102 +	}
   1.103 +	test.Title();
   1.104 +	test.Start(_L("String Tests"));
   1.105 +	TRAPD(error,DoTestsL());
   1.106 +	test( error == KErrNone );
   1.107 +	test.End();
   1.108 +	test.Close();
   1.109 +	delete cleanup;
   1.110 +	__UHEAP_MARKEND;
   1.111 +
   1.112 +	return KErrNone; 
   1.113 +	}