sl@0
|
1 |
// Copyright (c) 2004-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 |
// Test code for stringpool defects that have been fixed, to help prevent regression
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
/* this fixes a MSVC link warning */
|
sl@0
|
19 |
#ifdef __VC32__
|
sl@0
|
20 |
#pragma comment (linker, "/opt:noref")
|
sl@0
|
21 |
#endif
|
sl@0
|
22 |
|
sl@0
|
23 |
#include <stringpool.h>
|
sl@0
|
24 |
#include <f32file.h>
|
sl@0
|
25 |
#include <e32test.h>
|
sl@0
|
26 |
|
sl@0
|
27 |
#include <stringpoolerr.h>
|
sl@0
|
28 |
|
sl@0
|
29 |
#define UNUSED_VAR(a) a = a
|
sl@0
|
30 |
|
sl@0
|
31 |
LOCAL_D CTrapCleanup* TheTrapCleanup=NULL;
|
sl@0
|
32 |
|
sl@0
|
33 |
LOCAL_D CActiveScheduler* TheActiveScheduler=NULL;
|
sl@0
|
34 |
|
sl@0
|
35 |
LOCAL_D RTest test(_L("T_StringpoolDefect"));
|
sl@0
|
36 |
|
sl@0
|
37 |
_LIT8(KDummyString, "Dummy String For Test");
|
sl@0
|
38 |
|
sl@0
|
39 |
//
|
sl@0
|
40 |
|
sl@0
|
41 |
class RStringPoolPanicTest
|
sl@0
|
42 |
{
|
sl@0
|
43 |
public:
|
sl@0
|
44 |
RStringPoolPanicTest();
|
sl@0
|
45 |
~RStringPoolPanicTest();
|
sl@0
|
46 |
|
sl@0
|
47 |
void DEF043985L();
|
sl@0
|
48 |
|
sl@0
|
49 |
private:
|
sl@0
|
50 |
// Functions to pass Thread creation process that invokes the defect
|
sl@0
|
51 |
static TInt DEF043985_StringTest_ThreadL(TAny*);
|
sl@0
|
52 |
static TInt DEF043985_StringFTest_ThreadL(TAny*);
|
sl@0
|
53 |
static TInt DEF043985_IndexTest_Thread(TAny*);
|
sl@0
|
54 |
|
sl@0
|
55 |
static void DEF043985_IndexTest_SubFunctionL();
|
sl@0
|
56 |
};
|
sl@0
|
57 |
|
sl@0
|
58 |
RStringPoolPanicTest::RStringPoolPanicTest()
|
sl@0
|
59 |
{
|
sl@0
|
60 |
// do nothing
|
sl@0
|
61 |
}
|
sl@0
|
62 |
|
sl@0
|
63 |
RStringPoolPanicTest::~RStringPoolPanicTest()
|
sl@0
|
64 |
{
|
sl@0
|
65 |
// do nothing
|
sl@0
|
66 |
}
|
sl@0
|
67 |
|
sl@0
|
68 |
/**
|
sl@0
|
69 |
@SYMTestCaseID SYSLIB-BAFL-CT-0488
|
sl@0
|
70 |
@SYMTestCaseDesc Tests for defect number DEF043985
|
sl@0
|
71 |
@SYMTestPriority High
|
sl@0
|
72 |
@SYMTestActions Tests that the table is invalid when creating an RString
|
sl@0
|
73 |
Check for panic
|
sl@0
|
74 |
@SYMTestExpectedResults Tests must not fail
|
sl@0
|
75 |
@SYMREQ REQ0000
|
sl@0
|
76 |
*/
|
sl@0
|
77 |
TInt RStringPoolPanicTest::DEF043985_StringTest_ThreadL(TAny*)
|
sl@0
|
78 |
{
|
sl@0
|
79 |
__UHEAP_MARK;
|
sl@0
|
80 |
|
sl@0
|
81 |
RStringPool stringPool;
|
sl@0
|
82 |
stringPool.OpenL();
|
sl@0
|
83 |
|
sl@0
|
84 |
// Create a table and make it so it passes some internal tests
|
sl@0
|
85 |
// for validity as we are testing a particular internal test
|
sl@0
|
86 |
TStringTable testTable;
|
sl@0
|
87 |
testTable.iCaseSensitive = ETrue;
|
sl@0
|
88 |
testTable.iCount = 1;
|
sl@0
|
89 |
|
sl@0
|
90 |
// Test for Panic
|
sl@0
|
91 |
RString testString = stringPool.String(0, testTable);
|
sl@0
|
92 |
|
sl@0
|
93 |
// Test should never get this far as it Panics
|
sl@0
|
94 |
|
sl@0
|
95 |
testString.Close();
|
sl@0
|
96 |
stringPool.Close();
|
sl@0
|
97 |
|
sl@0
|
98 |
__UHEAP_MARKEND;
|
sl@0
|
99 |
|
sl@0
|
100 |
return KErrNone;
|
sl@0
|
101 |
}
|
sl@0
|
102 |
|
sl@0
|
103 |
/**
|
sl@0
|
104 |
@SYMTestCaseID SYSLIB-BAFL-CT-0489
|
sl@0
|
105 |
@SYMTestCaseDesc Tests for defect number DEF043985
|
sl@0
|
106 |
@SYMTestPriority High
|
sl@0
|
107 |
@SYMTestActions Check for Panic
|
sl@0
|
108 |
@SYMTestExpectedResults Tests must not fail
|
sl@0
|
109 |
@SYMREQ REQ0000
|
sl@0
|
110 |
*/
|
sl@0
|
111 |
TInt RStringPoolPanicTest::DEF043985_StringFTest_ThreadL(TAny*)
|
sl@0
|
112 |
{
|
sl@0
|
113 |
__UHEAP_MARK;
|
sl@0
|
114 |
|
sl@0
|
115 |
RStringPool stringPool;
|
sl@0
|
116 |
stringPool.OpenL();
|
sl@0
|
117 |
|
sl@0
|
118 |
// Create a table and make it so it passes some internal tests
|
sl@0
|
119 |
// for validity as we are testing a particular internal test
|
sl@0
|
120 |
TStringTable testTable;
|
sl@0
|
121 |
testTable.iCaseSensitive = EFalse;
|
sl@0
|
122 |
testTable.iCount = 1;
|
sl@0
|
123 |
|
sl@0
|
124 |
// Test for Panic
|
sl@0
|
125 |
RStringF testString = stringPool.StringF(0, testTable);
|
sl@0
|
126 |
|
sl@0
|
127 |
// Test should never get this far as it Panics
|
sl@0
|
128 |
|
sl@0
|
129 |
testString.Close();
|
sl@0
|
130 |
stringPool.Close();
|
sl@0
|
131 |
|
sl@0
|
132 |
__UHEAP_MARKEND;
|
sl@0
|
133 |
|
sl@0
|
134 |
return KErrNone;
|
sl@0
|
135 |
}
|
sl@0
|
136 |
|
sl@0
|
137 |
/**
|
sl@0
|
138 |
Subtest function
|
sl@0
|
139 |
|
sl@0
|
140 |
@SYMTestCaseID SYSLIB-BAFL-CT-0490
|
sl@0
|
141 |
@SYMTestCaseDesc Tests for defect number DEF043985
|
sl@0
|
142 |
@SYMTestPriority High
|
sl@0
|
143 |
@SYMTestActions Tests that the table is invalid when creating a folded RString
|
sl@0
|
144 |
@SYMTestExpectedResults Tests must not fail
|
sl@0
|
145 |
@SYMREQ REQ0000
|
sl@0
|
146 |
*/
|
sl@0
|
147 |
void RStringPoolPanicTest::DEF043985_IndexTest_SubFunctionL()
|
sl@0
|
148 |
{
|
sl@0
|
149 |
__UHEAP_MARK;
|
sl@0
|
150 |
|
sl@0
|
151 |
RStringPool stringPool;
|
sl@0
|
152 |
stringPool.OpenL();
|
sl@0
|
153 |
|
sl@0
|
154 |
// Create a table and make it so it passes some internal tests
|
sl@0
|
155 |
// for validity as we are testing a particular internal test
|
sl@0
|
156 |
TStringTable testTable;
|
sl@0
|
157 |
testTable.iCaseSensitive = ETrue;
|
sl@0
|
158 |
testTable.iCount = 1;
|
sl@0
|
159 |
|
sl@0
|
160 |
RString testString = stringPool.OpenStringL(KDummyString());
|
sl@0
|
161 |
CleanupClosePushL(testString);
|
sl@0
|
162 |
|
sl@0
|
163 |
// Test for Panic
|
sl@0
|
164 |
testString.Index(testTable);
|
sl@0
|
165 |
|
sl@0
|
166 |
// Test should never get this far as it Panics
|
sl@0
|
167 |
|
sl@0
|
168 |
CleanupStack::PopAndDestroy(&testString);
|
sl@0
|
169 |
stringPool.Close();
|
sl@0
|
170 |
|
sl@0
|
171 |
__UHEAP_MARKEND;
|
sl@0
|
172 |
}
|
sl@0
|
173 |
/**
|
sl@0
|
174 |
@SYMTestCaseID SYSLIB-BAFL-CT-0491
|
sl@0
|
175 |
@SYMTestCaseDesc Tests for the functionality of RStringPool
|
sl@0
|
176 |
@SYMTestPriority High
|
sl@0
|
177 |
@SYMTestActions Tests that the table is invalid when accessing an RStrings index
|
sl@0
|
178 |
@SYMTestExpectedResults Tests must not fail
|
sl@0
|
179 |
@SYMREQ REQ0000
|
sl@0
|
180 |
*/
|
sl@0
|
181 |
TInt RStringPoolPanicTest::DEF043985_IndexTest_Thread(TAny*)
|
sl@0
|
182 |
{
|
sl@0
|
183 |
__UHEAP_MARK;
|
sl@0
|
184 |
|
sl@0
|
185 |
CTrapCleanup* trapCleanup = CTrapCleanup::New();
|
sl@0
|
186 |
__ASSERT_ALWAYS(trapCleanup!=NULL, User::Invariant());
|
sl@0
|
187 |
|
sl@0
|
188 |
TRAPD(err, DEF043985_IndexTest_SubFunctionL());
|
sl@0
|
189 |
UNUSED_VAR(err);
|
sl@0
|
190 |
|
sl@0
|
191 |
delete trapCleanup;
|
sl@0
|
192 |
|
sl@0
|
193 |
__UHEAP_MARKEND;
|
sl@0
|
194 |
|
sl@0
|
195 |
return KErrNone;
|
sl@0
|
196 |
}
|
sl@0
|
197 |
|
sl@0
|
198 |
/**
|
sl@0
|
199 |
Unfound TStringTable in Bafl StringPool not treated correctly.
|
sl@0
|
200 |
Check that the function panics when the specified table is not present.
|
sl@0
|
201 |
|
sl@0
|
202 |
@SYMTestCaseID SYSLIB-BAFL-CT-0492
|
sl@0
|
203 |
@SYMTestCaseDesc Tests for the functionality of RStringPool
|
sl@0
|
204 |
@SYMTestPriority High
|
sl@0
|
205 |
@SYMTestActions Tests for panic when the specified table is not present
|
sl@0
|
206 |
@SYMTestExpectedResults Tests must not fail
|
sl@0
|
207 |
@SYMREQ REQ0000
|
sl@0
|
208 |
*/
|
sl@0
|
209 |
void RStringPoolPanicTest::DEF043985L()
|
sl@0
|
210 |
{
|
sl@0
|
211 |
test.Next(_L("DEF043985L"));
|
sl@0
|
212 |
|
sl@0
|
213 |
#ifdef _DEBUG
|
sl@0
|
214 |
__UHEAP_MARK;
|
sl@0
|
215 |
|
sl@0
|
216 |
TRequestStatus threadStatus;
|
sl@0
|
217 |
RThread thread;
|
sl@0
|
218 |
TInt rc;
|
sl@0
|
219 |
TBool jit;
|
sl@0
|
220 |
jit = User::JustInTime();
|
sl@0
|
221 |
User::SetJustInTime(EFalse);
|
sl@0
|
222 |
|
sl@0
|
223 |
// Test the Panics for this defect
|
sl@0
|
224 |
|
sl@0
|
225 |
// RString Test
|
sl@0
|
226 |
rc = thread.Create(_L("DEF043985_StringTest_Thread Panic Test"),
|
sl@0
|
227 |
RStringPoolPanicTest::DEF043985_StringTest_ThreadL,
|
sl@0
|
228 |
KDefaultStackSize, KMinHeapSize, KMinHeapSize<<2, this);
|
sl@0
|
229 |
test(KErrNone == rc);
|
sl@0
|
230 |
thread.Logon(threadStatus);
|
sl@0
|
231 |
thread.Resume();
|
sl@0
|
232 |
User::WaitForRequest(threadStatus);
|
sl@0
|
233 |
test (thread.ExitType() == EExitPanic);
|
sl@0
|
234 |
test (thread.ExitReason() == StringPoolPanic::EStringTableNotFound);
|
sl@0
|
235 |
thread.Close();
|
sl@0
|
236 |
|
sl@0
|
237 |
// RStringF Test
|
sl@0
|
238 |
rc = thread.Create(_L("DEF043985_StringFTest_Thread Panic Test"),
|
sl@0
|
239 |
RStringPoolPanicTest::DEF043985_StringFTest_ThreadL,
|
sl@0
|
240 |
KDefaultStackSize, KMinHeapSize, KMinHeapSize<<2, this);
|
sl@0
|
241 |
test(KErrNone == rc);
|
sl@0
|
242 |
thread.Logon(threadStatus);
|
sl@0
|
243 |
thread.Resume();
|
sl@0
|
244 |
User::WaitForRequest(threadStatus);
|
sl@0
|
245 |
test (thread.ExitType() == EExitPanic);
|
sl@0
|
246 |
test (thread.ExitReason() == StringPoolPanic::EStringTableNotFound);
|
sl@0
|
247 |
thread.Close();
|
sl@0
|
248 |
|
sl@0
|
249 |
// Index Test
|
sl@0
|
250 |
rc = thread.Create(_L("DEF043985_IndexTest_Thread Panic Test"),
|
sl@0
|
251 |
RStringPoolPanicTest::DEF043985_IndexTest_Thread,
|
sl@0
|
252 |
KDefaultStackSize, KMinHeapSize, KMinHeapSize<<2, this);
|
sl@0
|
253 |
test(KErrNone == rc);
|
sl@0
|
254 |
thread.Logon(threadStatus);
|
sl@0
|
255 |
thread.Resume();
|
sl@0
|
256 |
User::WaitForRequest(threadStatus);
|
sl@0
|
257 |
test (thread.ExitType() == EExitPanic);
|
sl@0
|
258 |
test (thread.ExitReason() == StringPoolPanic::EStringTableNotFound);
|
sl@0
|
259 |
thread.Close();
|
sl@0
|
260 |
|
sl@0
|
261 |
|
sl@0
|
262 |
User::SetJustInTime(jit);
|
sl@0
|
263 |
|
sl@0
|
264 |
__UHEAP_MARKEND;
|
sl@0
|
265 |
|
sl@0
|
266 |
#else
|
sl@0
|
267 |
test.Printf(_L("This test is valid for debug builds only, behaviour for release builds is undefined (DEF050908)\n"));
|
sl@0
|
268 |
#endif
|
sl@0
|
269 |
}
|
sl@0
|
270 |
|
sl@0
|
271 |
//===============================================================================
|
sl@0
|
272 |
|
sl@0
|
273 |
/**
|
sl@0
|
274 |
Initialise the cleanup stack and active scheduler
|
sl@0
|
275 |
*/
|
sl@0
|
276 |
LOCAL_C void SetupL()
|
sl@0
|
277 |
{
|
sl@0
|
278 |
TheTrapCleanup = CTrapCleanup::New();
|
sl@0
|
279 |
User::LeaveIfNull(TheTrapCleanup);
|
sl@0
|
280 |
|
sl@0
|
281 |
// Construct and install the active scheduler
|
sl@0
|
282 |
TheActiveScheduler = new(ELeave)CActiveScheduler;
|
sl@0
|
283 |
CActiveScheduler::Install(TheActiveScheduler);
|
sl@0
|
284 |
}
|
sl@0
|
285 |
|
sl@0
|
286 |
/**
|
sl@0
|
287 |
Cleanup
|
sl@0
|
288 |
*/
|
sl@0
|
289 |
LOCAL_C void CleanupL()
|
sl@0
|
290 |
{
|
sl@0
|
291 |
delete TheActiveScheduler;
|
sl@0
|
292 |
delete TheTrapCleanup;
|
sl@0
|
293 |
}
|
sl@0
|
294 |
|
sl@0
|
295 |
/**
|
sl@0
|
296 |
Invoke the tests
|
sl@0
|
297 |
*/
|
sl@0
|
298 |
LOCAL_C void DoTestsL()
|
sl@0
|
299 |
{
|
sl@0
|
300 |
RStringPoolPanicTest mytest;
|
sl@0
|
301 |
mytest.DEF043985L();
|
sl@0
|
302 |
}
|
sl@0
|
303 |
|
sl@0
|
304 |
|
sl@0
|
305 |
GLDEF_C TInt E32Main()
|
sl@0
|
306 |
{
|
sl@0
|
307 |
__UHEAP_MARK;
|
sl@0
|
308 |
|
sl@0
|
309 |
test.Printf(_L("\n"));
|
sl@0
|
310 |
test.Title();
|
sl@0
|
311 |
test.Start(_L("Defect Tests"));
|
sl@0
|
312 |
|
sl@0
|
313 |
TRAPD(err, SetupL());
|
sl@0
|
314 |
test(err == KErrNone);
|
sl@0
|
315 |
|
sl@0
|
316 |
TRAP(err, DoTestsL());
|
sl@0
|
317 |
test(err == KErrNone);
|
sl@0
|
318 |
|
sl@0
|
319 |
CleanupL();
|
sl@0
|
320 |
|
sl@0
|
321 |
test.End();
|
sl@0
|
322 |
test.Close();
|
sl@0
|
323 |
|
sl@0
|
324 |
__UHEAP_MARKEND;
|
sl@0
|
325 |
return(KErrNone);
|
sl@0
|
326 |
}
|