sl@0: // Copyright (c) 2004-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: // Test code for stringpool defects that have been fixed, to help prevent regression sl@0: // sl@0: // sl@0: sl@0: /* this fixes a MSVC link warning */ sl@0: #ifdef __VC32__ sl@0: #pragma comment (linker, "/opt:noref") sl@0: #endif sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: #include sl@0: sl@0: #define UNUSED_VAR(a) a = a sl@0: sl@0: LOCAL_D CTrapCleanup* TheTrapCleanup=NULL; sl@0: sl@0: LOCAL_D CActiveScheduler* TheActiveScheduler=NULL; sl@0: sl@0: LOCAL_D RTest test(_L("T_StringpoolDefect")); sl@0: sl@0: _LIT8(KDummyString, "Dummy String For Test"); sl@0: sl@0: // sl@0: sl@0: class RStringPoolPanicTest sl@0: { sl@0: public: sl@0: RStringPoolPanicTest(); sl@0: ~RStringPoolPanicTest(); sl@0: sl@0: void DEF043985L(); sl@0: sl@0: private: sl@0: // Functions to pass Thread creation process that invokes the defect sl@0: static TInt DEF043985_StringTest_ThreadL(TAny*); sl@0: static TInt DEF043985_StringFTest_ThreadL(TAny*); sl@0: static TInt DEF043985_IndexTest_Thread(TAny*); sl@0: sl@0: static void DEF043985_IndexTest_SubFunctionL(); sl@0: }; sl@0: sl@0: RStringPoolPanicTest::RStringPoolPanicTest() sl@0: { sl@0: // do nothing sl@0: } sl@0: sl@0: RStringPoolPanicTest::~RStringPoolPanicTest() sl@0: { sl@0: // do nothing sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-0488 sl@0: @SYMTestCaseDesc Tests for defect number DEF043985 sl@0: @SYMTestPriority High sl@0: @SYMTestActions Tests that the table is invalid when creating an RString sl@0: Check for panic sl@0: @SYMTestExpectedResults Tests must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: TInt RStringPoolPanicTest::DEF043985_StringTest_ThreadL(TAny*) sl@0: { sl@0: __UHEAP_MARK; sl@0: sl@0: RStringPool stringPool; sl@0: stringPool.OpenL(); sl@0: sl@0: // Create a table and make it so it passes some internal tests sl@0: // for validity as we are testing a particular internal test sl@0: TStringTable testTable; sl@0: testTable.iCaseSensitive = ETrue; sl@0: testTable.iCount = 1; sl@0: sl@0: // Test for Panic sl@0: RString testString = stringPool.String(0, testTable); sl@0: sl@0: // Test should never get this far as it Panics sl@0: sl@0: testString.Close(); sl@0: stringPool.Close(); sl@0: sl@0: __UHEAP_MARKEND; sl@0: sl@0: return KErrNone; sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-0489 sl@0: @SYMTestCaseDesc Tests for defect number DEF043985 sl@0: @SYMTestPriority High sl@0: @SYMTestActions Check for Panic sl@0: @SYMTestExpectedResults Tests must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: TInt RStringPoolPanicTest::DEF043985_StringFTest_ThreadL(TAny*) sl@0: { sl@0: __UHEAP_MARK; sl@0: sl@0: RStringPool stringPool; sl@0: stringPool.OpenL(); sl@0: sl@0: // Create a table and make it so it passes some internal tests sl@0: // for validity as we are testing a particular internal test sl@0: TStringTable testTable; sl@0: testTable.iCaseSensitive = EFalse; sl@0: testTable.iCount = 1; sl@0: sl@0: // Test for Panic sl@0: RStringF testString = stringPool.StringF(0, testTable); sl@0: sl@0: // Test should never get this far as it Panics sl@0: sl@0: testString.Close(); sl@0: stringPool.Close(); sl@0: sl@0: __UHEAP_MARKEND; sl@0: sl@0: return KErrNone; sl@0: } sl@0: sl@0: /** sl@0: Subtest function sl@0: sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-0490 sl@0: @SYMTestCaseDesc Tests for defect number DEF043985 sl@0: @SYMTestPriority High sl@0: @SYMTestActions Tests that the table is invalid when creating a folded RString sl@0: @SYMTestExpectedResults Tests must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: void RStringPoolPanicTest::DEF043985_IndexTest_SubFunctionL() sl@0: { sl@0: __UHEAP_MARK; sl@0: sl@0: RStringPool stringPool; sl@0: stringPool.OpenL(); sl@0: sl@0: // Create a table and make it so it passes some internal tests sl@0: // for validity as we are testing a particular internal test sl@0: TStringTable testTable; sl@0: testTable.iCaseSensitive = ETrue; sl@0: testTable.iCount = 1; sl@0: sl@0: RString testString = stringPool.OpenStringL(KDummyString()); sl@0: CleanupClosePushL(testString); sl@0: sl@0: // Test for Panic sl@0: testString.Index(testTable); sl@0: sl@0: // Test should never get this far as it Panics sl@0: sl@0: CleanupStack::PopAndDestroy(&testString); sl@0: stringPool.Close(); sl@0: sl@0: __UHEAP_MARKEND; sl@0: } sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-0491 sl@0: @SYMTestCaseDesc Tests for the functionality of RStringPool sl@0: @SYMTestPriority High sl@0: @SYMTestActions Tests that the table is invalid when accessing an RStrings index sl@0: @SYMTestExpectedResults Tests must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: TInt RStringPoolPanicTest::DEF043985_IndexTest_Thread(TAny*) sl@0: { sl@0: __UHEAP_MARK; sl@0: sl@0: CTrapCleanup* trapCleanup = CTrapCleanup::New(); sl@0: __ASSERT_ALWAYS(trapCleanup!=NULL, User::Invariant()); sl@0: sl@0: TRAPD(err, DEF043985_IndexTest_SubFunctionL()); sl@0: UNUSED_VAR(err); sl@0: sl@0: delete trapCleanup; sl@0: sl@0: __UHEAP_MARKEND; sl@0: sl@0: return KErrNone; sl@0: } sl@0: sl@0: /** sl@0: Unfound TStringTable in Bafl StringPool not treated correctly. sl@0: Check that the function panics when the specified table is not present. sl@0: sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-0492 sl@0: @SYMTestCaseDesc Tests for the functionality of RStringPool sl@0: @SYMTestPriority High sl@0: @SYMTestActions Tests for panic when the specified table is not present sl@0: @SYMTestExpectedResults Tests must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: void RStringPoolPanicTest::DEF043985L() sl@0: { sl@0: test.Next(_L("DEF043985L")); sl@0: sl@0: #ifdef _DEBUG sl@0: __UHEAP_MARK; sl@0: sl@0: TRequestStatus threadStatus; sl@0: RThread thread; sl@0: TInt rc; sl@0: TBool jit; sl@0: jit = User::JustInTime(); sl@0: User::SetJustInTime(EFalse); sl@0: sl@0: // Test the Panics for this defect sl@0: sl@0: // RString Test sl@0: rc = thread.Create(_L("DEF043985_StringTest_Thread Panic Test"), sl@0: RStringPoolPanicTest::DEF043985_StringTest_ThreadL, sl@0: KDefaultStackSize, KMinHeapSize, KMinHeapSize<<2, this); sl@0: test(KErrNone == rc); sl@0: thread.Logon(threadStatus); sl@0: thread.Resume(); sl@0: User::WaitForRequest(threadStatus); sl@0: test (thread.ExitType() == EExitPanic); sl@0: test (thread.ExitReason() == StringPoolPanic::EStringTableNotFound); sl@0: thread.Close(); sl@0: sl@0: // RStringF Test sl@0: rc = thread.Create(_L("DEF043985_StringFTest_Thread Panic Test"), sl@0: RStringPoolPanicTest::DEF043985_StringFTest_ThreadL, sl@0: KDefaultStackSize, KMinHeapSize, KMinHeapSize<<2, this); sl@0: test(KErrNone == rc); sl@0: thread.Logon(threadStatus); sl@0: thread.Resume(); sl@0: User::WaitForRequest(threadStatus); sl@0: test (thread.ExitType() == EExitPanic); sl@0: test (thread.ExitReason() == StringPoolPanic::EStringTableNotFound); sl@0: thread.Close(); sl@0: sl@0: // Index Test sl@0: rc = thread.Create(_L("DEF043985_IndexTest_Thread Panic Test"), sl@0: RStringPoolPanicTest::DEF043985_IndexTest_Thread, sl@0: KDefaultStackSize, KMinHeapSize, KMinHeapSize<<2, this); sl@0: test(KErrNone == rc); sl@0: thread.Logon(threadStatus); sl@0: thread.Resume(); sl@0: User::WaitForRequest(threadStatus); sl@0: test (thread.ExitType() == EExitPanic); sl@0: test (thread.ExitReason() == StringPoolPanic::EStringTableNotFound); sl@0: thread.Close(); sl@0: sl@0: sl@0: User::SetJustInTime(jit); sl@0: sl@0: __UHEAP_MARKEND; sl@0: sl@0: #else sl@0: test.Printf(_L("This test is valid for debug builds only, behaviour for release builds is undefined (DEF050908)\n")); sl@0: #endif sl@0: } sl@0: sl@0: //=============================================================================== sl@0: sl@0: /** sl@0: Initialise the cleanup stack and active scheduler sl@0: */ sl@0: LOCAL_C void SetupL() sl@0: { sl@0: TheTrapCleanup = CTrapCleanup::New(); sl@0: User::LeaveIfNull(TheTrapCleanup); sl@0: sl@0: // Construct and install the active scheduler sl@0: TheActiveScheduler = new(ELeave)CActiveScheduler; sl@0: CActiveScheduler::Install(TheActiveScheduler); sl@0: } sl@0: sl@0: /** sl@0: Cleanup sl@0: */ sl@0: LOCAL_C void CleanupL() sl@0: { sl@0: delete TheActiveScheduler; sl@0: delete TheTrapCleanup; sl@0: } sl@0: sl@0: /** sl@0: Invoke the tests sl@0: */ sl@0: LOCAL_C void DoTestsL() sl@0: { sl@0: RStringPoolPanicTest mytest; sl@0: mytest.DEF043985L(); sl@0: } sl@0: sl@0: sl@0: GLDEF_C TInt E32Main() sl@0: { sl@0: __UHEAP_MARK; sl@0: sl@0: test.Printf(_L("\n")); sl@0: test.Title(); sl@0: test.Start(_L("Defect Tests")); sl@0: sl@0: TRAPD(err, SetupL()); sl@0: test(err == KErrNone); sl@0: sl@0: TRAP(err, DoTestsL()); sl@0: test(err == KErrNone); sl@0: sl@0: CleanupL(); sl@0: sl@0: test.End(); sl@0: test.Close(); sl@0: sl@0: __UHEAP_MARKEND; sl@0: return(KErrNone); sl@0: }