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.
sl@0
     1
// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// Tests for RString, RstringF, RStringTokenF and RStringToken class
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include <e32test.h>
sl@0
    19
#include <e32base.h>
sl@0
    20
#include <e32svr.h>
sl@0
    21
#include <stringpool.h>
sl@0
    22
#include "stringtablef.h"
sl@0
    23
#include "stringtablec.h"
sl@0
    24
sl@0
    25
RTest test(_L("T_String"));
sl@0
    26
sl@0
    27
/**
sl@0
    28
@SYMTestCaseID          SYSLIB-BAFL-UT-1708
sl@0
    29
@SYMTestCaseDesc        Testing the functions of RString, RstringF, RStringTokenF and RStringToken class
sl@0
    30
						Tests for RString::Copy(), RString::operator RStringToken(), RString::operator!=(), RString::operator==().Tests the same functions of the other classes specified above.
sl@0
    31
@SYMTestPriority        Medium
sl@0
    32
@SYMTestActions         Tests by first creating the string table for case-sensitive and case-insensitive strings and then comparing the data in the tables
sl@0
    33
@SYMTestExpectedResults Tests must not fail
sl@0
    34
@SYMREQ                 REQ0000
sl@0
    35
*/
sl@0
    36
sl@0
    37
void DoTestsL()
sl@0
    38
	{
sl@0
    39
	RStringPool pool;
sl@0
    40
	pool.OpenL(StringTableF::Table);
sl@0
    41
	
sl@0
    42
	test.Printf(_L("Test for RStringF: case-insensitive strings"));
sl@0
    43
	
sl@0
    44
	RStringF objF1 = pool.StringF(StringTableF::EBanana,StringTableF::Table);
sl@0
    45
	TBuf<100> buf;
sl@0
    46
	buf.Copy(objF1.DesC());
sl@0
    47
	test.Printf(buf);
sl@0
    48
		
sl@0
    49
	RStringF objF2 = pool.OpenFStringL(_L8("Apple"));
sl@0
    50
	test(objF1!=objF2);
sl@0
    51
	test(!(objF1==objF2));
sl@0
    52
sl@0
    53
	objF2 = objF1.Copy();
sl@0
    54
	test(objF1==objF2);
sl@0
    55
	test(!(objF1!=objF2));
sl@0
    56
	
sl@0
    57
	test.Next(_L("Test for RStringTokenF"));
sl@0
    58
	
sl@0
    59
	RStringTokenF objF3 = objF2;
sl@0
    60
	test(objF3==objF2);
sl@0
    61
	
sl@0
    62
	test.Next(_L("Test for RString: case-sensitive strings'"));
sl@0
    63
	
sl@0
    64
	pool.OpenL(StringTableC::Table);
sl@0
    65
	RString objC1 = pool.String(StringTableC::EApple,StringTableC::Table);
sl@0
    66
	
sl@0
    67
	RString objC2 = pool.OpenStringL(_L8("BaNana"));
sl@0
    68
	test(!(objC1==objC2));
sl@0
    69
	test(objC1!=objC2);
sl@0
    70
	
sl@0
    71
	RString objC3 = objC2.Copy();
sl@0
    72
	test(!(objC3!=objC2));
sl@0
    73
	test(objC3!=objC1);
sl@0
    74
	test(objC3==objC2);
sl@0
    75
	
sl@0
    76
	test.Printf(_L("Test for RStringToken"));
sl@0
    77
	
sl@0
    78
	RStringToken objC4 = objC3;
sl@0
    79
	test(objC4==objC3);
sl@0
    80
	test(!(objC4==objC1));
sl@0
    81
sl@0
    82
	objF1.Close();
sl@0
    83
	objF2.Close();	
sl@0
    84
	objC1.Close();
sl@0
    85
	objC2.Close();
sl@0
    86
	objC3.Close();
sl@0
    87
	
sl@0
    88
	pool.Close();
sl@0
    89
	}
sl@0
    90
sl@0
    91
TInt E32Main()
sl@0
    92
	{
sl@0
    93
	__UHEAP_MARK;
sl@0
    94
	
sl@0
    95
	CTrapCleanup* cleanup=CTrapCleanup::New(); 
sl@0
    96
	if(cleanup == NULL)
sl@0
    97
	{
sl@0
    98
		return KErrNoMemory;
sl@0
    99
	}
sl@0
   100
	test.Title();
sl@0
   101
	test.Start(_L("String Tests"));
sl@0
   102
	TRAPD(error,DoTestsL());
sl@0
   103
	test( error == KErrNone );
sl@0
   104
	test.End();
sl@0
   105
	test.Close();
sl@0
   106
	delete cleanup;
sl@0
   107
	__UHEAP_MARKEND;
sl@0
   108
sl@0
   109
	return KErrNone; 
sl@0
   110
	}