sl@0: // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // Tests for RString, RstringF, RStringTokenF and RStringToken class sl@0: // sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include "stringtablef.h" sl@0: #include "stringtablec.h" sl@0: sl@0: RTest test(_L("T_String")); sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-UT-1708 sl@0: @SYMTestCaseDesc Testing the functions of RString, RstringF, RStringTokenF and RStringToken class sl@0: Tests for RString::Copy(), RString::operator RStringToken(), RString::operator!=(), RString::operator==().Tests the same functions of the other classes specified above. sl@0: @SYMTestPriority Medium sl@0: @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: @SYMTestExpectedResults Tests must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: sl@0: void DoTestsL() sl@0: { sl@0: RStringPool pool; sl@0: pool.OpenL(StringTableF::Table); sl@0: sl@0: test.Printf(_L("Test for RStringF: case-insensitive strings")); sl@0: sl@0: RStringF objF1 = pool.StringF(StringTableF::EBanana,StringTableF::Table); sl@0: TBuf<100> buf; sl@0: buf.Copy(objF1.DesC()); sl@0: test.Printf(buf); sl@0: sl@0: RStringF objF2 = pool.OpenFStringL(_L8("Apple")); sl@0: test(objF1!=objF2); sl@0: test(!(objF1==objF2)); sl@0: sl@0: objF2 = objF1.Copy(); sl@0: test(objF1==objF2); sl@0: test(!(objF1!=objF2)); sl@0: sl@0: test.Next(_L("Test for RStringTokenF")); sl@0: sl@0: RStringTokenF objF3 = objF2; sl@0: test(objF3==objF2); sl@0: sl@0: test.Next(_L("Test for RString: case-sensitive strings'")); sl@0: sl@0: pool.OpenL(StringTableC::Table); sl@0: RString objC1 = pool.String(StringTableC::EApple,StringTableC::Table); sl@0: sl@0: RString objC2 = pool.OpenStringL(_L8("BaNana")); sl@0: test(!(objC1==objC2)); sl@0: test(objC1!=objC2); sl@0: sl@0: RString objC3 = objC2.Copy(); sl@0: test(!(objC3!=objC2)); sl@0: test(objC3!=objC1); sl@0: test(objC3==objC2); sl@0: sl@0: test.Printf(_L("Test for RStringToken")); sl@0: sl@0: RStringToken objC4 = objC3; sl@0: test(objC4==objC3); sl@0: test(!(objC4==objC1)); sl@0: sl@0: objF1.Close(); sl@0: objF2.Close(); sl@0: objC1.Close(); sl@0: objC2.Close(); sl@0: objC3.Close(); sl@0: sl@0: pool.Close(); sl@0: } sl@0: sl@0: TInt E32Main() sl@0: { sl@0: __UHEAP_MARK; sl@0: sl@0: CTrapCleanup* cleanup=CTrapCleanup::New(); sl@0: if(cleanup == NULL) sl@0: { sl@0: return KErrNoMemory; sl@0: } sl@0: test.Title(); sl@0: test.Start(_L("String Tests")); sl@0: TRAPD(error,DoTestsL()); sl@0: test( error == KErrNone ); sl@0: test.End(); sl@0: test.Close(); sl@0: delete cleanup; sl@0: __UHEAP_MARKEND; sl@0: sl@0: return KErrNone; sl@0: }