First public contribution.
1 // Copyright (c) 2004-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Test code for stringpool defects that have been fixed, to help prevent regression
18 /* this fixes a MSVC link warning */
20 #pragma comment (linker, "/opt:noref")
23 #include <stringpool.h>
27 #include <stringpoolerr.h>
29 #define UNUSED_VAR(a) a = a
31 LOCAL_D CTrapCleanup* TheTrapCleanup=NULL;
33 LOCAL_D CActiveScheduler* TheActiveScheduler=NULL;
35 LOCAL_D RTest test(_L("T_StringpoolDefect"));
37 _LIT8(KDummyString, "Dummy String For Test");
41 class RStringPoolPanicTest
44 RStringPoolPanicTest();
45 ~RStringPoolPanicTest();
50 // Functions to pass Thread creation process that invokes the defect
51 static TInt DEF043985_StringTest_ThreadL(TAny*);
52 static TInt DEF043985_StringFTest_ThreadL(TAny*);
53 static TInt DEF043985_IndexTest_Thread(TAny*);
55 static void DEF043985_IndexTest_SubFunctionL();
58 RStringPoolPanicTest::RStringPoolPanicTest()
63 RStringPoolPanicTest::~RStringPoolPanicTest()
69 @SYMTestCaseID SYSLIB-BAFL-CT-0488
70 @SYMTestCaseDesc Tests for defect number DEF043985
72 @SYMTestActions Tests that the table is invalid when creating an RString
74 @SYMTestExpectedResults Tests must not fail
77 TInt RStringPoolPanicTest::DEF043985_StringTest_ThreadL(TAny*)
81 RStringPool stringPool;
84 // Create a table and make it so it passes some internal tests
85 // for validity as we are testing a particular internal test
86 TStringTable testTable;
87 testTable.iCaseSensitive = ETrue;
91 RString testString = stringPool.String(0, testTable);
93 // Test should never get this far as it Panics
104 @SYMTestCaseID SYSLIB-BAFL-CT-0489
105 @SYMTestCaseDesc Tests for defect number DEF043985
106 @SYMTestPriority High
107 @SYMTestActions Check for Panic
108 @SYMTestExpectedResults Tests must not fail
111 TInt RStringPoolPanicTest::DEF043985_StringFTest_ThreadL(TAny*)
115 RStringPool stringPool;
118 // Create a table and make it so it passes some internal tests
119 // for validity as we are testing a particular internal test
120 TStringTable testTable;
121 testTable.iCaseSensitive = EFalse;
122 testTable.iCount = 1;
125 RStringF testString = stringPool.StringF(0, testTable);
127 // Test should never get this far as it Panics
140 @SYMTestCaseID SYSLIB-BAFL-CT-0490
141 @SYMTestCaseDesc Tests for defect number DEF043985
142 @SYMTestPriority High
143 @SYMTestActions Tests that the table is invalid when creating a folded RString
144 @SYMTestExpectedResults Tests must not fail
147 void RStringPoolPanicTest::DEF043985_IndexTest_SubFunctionL()
151 RStringPool stringPool;
154 // Create a table and make it so it passes some internal tests
155 // for validity as we are testing a particular internal test
156 TStringTable testTable;
157 testTable.iCaseSensitive = ETrue;
158 testTable.iCount = 1;
160 RString testString = stringPool.OpenStringL(KDummyString());
161 CleanupClosePushL(testString);
164 testString.Index(testTable);
166 // Test should never get this far as it Panics
168 CleanupStack::PopAndDestroy(&testString);
174 @SYMTestCaseID SYSLIB-BAFL-CT-0491
175 @SYMTestCaseDesc Tests for the functionality of RStringPool
176 @SYMTestPriority High
177 @SYMTestActions Tests that the table is invalid when accessing an RStrings index
178 @SYMTestExpectedResults Tests must not fail
181 TInt RStringPoolPanicTest::DEF043985_IndexTest_Thread(TAny*)
185 CTrapCleanup* trapCleanup = CTrapCleanup::New();
186 __ASSERT_ALWAYS(trapCleanup!=NULL, User::Invariant());
188 TRAPD(err, DEF043985_IndexTest_SubFunctionL());
199 Unfound TStringTable in Bafl StringPool not treated correctly.
200 Check that the function panics when the specified table is not present.
202 @SYMTestCaseID SYSLIB-BAFL-CT-0492
203 @SYMTestCaseDesc Tests for the functionality of RStringPool
204 @SYMTestPriority High
205 @SYMTestActions Tests for panic when the specified table is not present
206 @SYMTestExpectedResults Tests must not fail
209 void RStringPoolPanicTest::DEF043985L()
211 test.Next(_L("DEF043985L"));
216 TRequestStatus threadStatus;
220 jit = User::JustInTime();
221 User::SetJustInTime(EFalse);
223 // Test the Panics for this defect
226 rc = thread.Create(_L("DEF043985_StringTest_Thread Panic Test"),
227 RStringPoolPanicTest::DEF043985_StringTest_ThreadL,
228 KDefaultStackSize, KMinHeapSize, KMinHeapSize<<2, this);
229 test(KErrNone == rc);
230 thread.Logon(threadStatus);
232 User::WaitForRequest(threadStatus);
233 test (thread.ExitType() == EExitPanic);
234 test (thread.ExitReason() == StringPoolPanic::EStringTableNotFound);
238 rc = thread.Create(_L("DEF043985_StringFTest_Thread Panic Test"),
239 RStringPoolPanicTest::DEF043985_StringFTest_ThreadL,
240 KDefaultStackSize, KMinHeapSize, KMinHeapSize<<2, this);
241 test(KErrNone == rc);
242 thread.Logon(threadStatus);
244 User::WaitForRequest(threadStatus);
245 test (thread.ExitType() == EExitPanic);
246 test (thread.ExitReason() == StringPoolPanic::EStringTableNotFound);
250 rc = thread.Create(_L("DEF043985_IndexTest_Thread Panic Test"),
251 RStringPoolPanicTest::DEF043985_IndexTest_Thread,
252 KDefaultStackSize, KMinHeapSize, KMinHeapSize<<2, this);
253 test(KErrNone == rc);
254 thread.Logon(threadStatus);
256 User::WaitForRequest(threadStatus);
257 test (thread.ExitType() == EExitPanic);
258 test (thread.ExitReason() == StringPoolPanic::EStringTableNotFound);
262 User::SetJustInTime(jit);
267 test.Printf(_L("This test is valid for debug builds only, behaviour for release builds is undefined (DEF050908)\n"));
271 //===============================================================================
274 Initialise the cleanup stack and active scheduler
276 LOCAL_C void SetupL()
278 TheTrapCleanup = CTrapCleanup::New();
279 User::LeaveIfNull(TheTrapCleanup);
281 // Construct and install the active scheduler
282 TheActiveScheduler = new(ELeave)CActiveScheduler;
283 CActiveScheduler::Install(TheActiveScheduler);
289 LOCAL_C void CleanupL()
291 delete TheActiveScheduler;
292 delete TheTrapCleanup;
298 LOCAL_C void DoTestsL()
300 RStringPoolPanicTest mytest;
305 GLDEF_C TInt E32Main()
309 test.Printf(_L("\n"));
311 test.Start(_L("Defect Tests"));
313 TRAPD(err, SetupL());
314 test(err == KErrNone);
316 TRAP(err, DoTestsL());
317 test(err == KErrNone);