sl@0
|
1 |
// Copyright (c) 1997-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 resource reader
|
sl@0
|
15 |
// NB, prior to version 050 of BAFL, the resource compiler did not generate
|
sl@0
|
16 |
// unicode text and so this code used to make a special 8/16 bit text
|
sl@0
|
17 |
// comparison where appropriate and the resource binary file could be common
|
sl@0
|
18 |
// between the 8 and 16-bit builds. This is now no-longer the case, which means
|
sl@0
|
19 |
// that the resource binary used for this text MUST be compiled as Unicode
|
sl@0
|
20 |
// text for the unicode build and 8-bit text for the 8-bit build.
|
sl@0
|
21 |
// - PNJ, January 1997.
|
sl@0
|
22 |
//
|
sl@0
|
23 |
//
|
sl@0
|
24 |
|
sl@0
|
25 |
#include <e32std.h>
|
sl@0
|
26 |
#include <e32base.h>
|
sl@0
|
27 |
#include <e32test.h>
|
sl@0
|
28 |
#include <f32file.h>
|
sl@0
|
29 |
#include <barsc.h>
|
sl@0
|
30 |
#include <barsread.h>
|
sl@0
|
31 |
#include <barsread2.h>
|
sl@0
|
32 |
#include <badesca.h>
|
sl@0
|
33 |
#include <trsc.rsg>
|
sl@0
|
34 |
#include "T_RSC.H"
|
sl@0
|
35 |
|
sl@0
|
36 |
RTest test(_L("T_RSREAD"));
|
sl@0
|
37 |
RFs TheFs;
|
sl@0
|
38 |
RResourceFile TheResourceFile;
|
sl@0
|
39 |
|
sl@0
|
40 |
_LIT(KPanicThread1,"panicThread1");
|
sl@0
|
41 |
_LIT(KPanicThread2,"panicThread2");
|
sl@0
|
42 |
_LIT(KPanicThread3,"panicThread3");
|
sl@0
|
43 |
_LIT(KPanicThread4,"panicThread4");
|
sl@0
|
44 |
|
sl@0
|
45 |
class TRsReadTester
|
sl@0
|
46 |
{
|
sl@0
|
47 |
public:
|
sl@0
|
48 |
void TestButtonL();
|
sl@0
|
49 |
void TestArrayL();
|
sl@0
|
50 |
void TestFlPtEdL();
|
sl@0
|
51 |
void TestMenuBarL();
|
sl@0
|
52 |
void TestAlignment1L();
|
sl@0
|
53 |
void TestAlignment2L();
|
sl@0
|
54 |
void TimingTestsL();
|
sl@0
|
55 |
TInt PanicTests();
|
sl@0
|
56 |
private:
|
sl@0
|
57 |
void DumpBytes(const TAny* aPtr,TInt aLen);
|
sl@0
|
58 |
TUint8 DumpByte(TUint aVal);
|
sl@0
|
59 |
void CreateResourceReaderLC(TResourceReader& aReader,TInt aResourceId) const;
|
sl@0
|
60 |
void PanicTResImp1();
|
sl@0
|
61 |
void PanicTResImp2();
|
sl@0
|
62 |
void PanicTResImp3();
|
sl@0
|
63 |
void PanicTResImp4();
|
sl@0
|
64 |
};
|
sl@0
|
65 |
|
sl@0
|
66 |
void TRsReadTester::CreateResourceReaderLC(TResourceReader& aReader,TInt aResourceId) const
|
sl@0
|
67 |
{
|
sl@0
|
68 |
HBufC8* resource=TheResourceFile.AllocReadLC(aResourceId);
|
sl@0
|
69 |
aReader.SetBuffer(resource);
|
sl@0
|
70 |
}
|
sl@0
|
71 |
|
sl@0
|
72 |
/**
|
sl@0
|
73 |
@SYMTestCaseID SYSLIB-BAFL-CT-0433
|
sl@0
|
74 |
@SYMTestCaseDesc Tests for TResourceReader::ReadInt16(),TResourceReader::ReadUint16() functions
|
sl@0
|
75 |
@SYMTestPriority Medium
|
sl@0
|
76 |
@SYMTestActions Attempt to read a BUTTON resource
|
sl@0
|
77 |
@SYMTestExpectedResults Tests must not fail
|
sl@0
|
78 |
@SYMREQ REQ0000
|
sl@0
|
79 |
*/
|
sl@0
|
80 |
void TRsReadTester::TestButtonL()
|
sl@0
|
81 |
{
|
sl@0
|
82 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0433 Test reading BUTTON resource "));
|
sl@0
|
83 |
TResourceReader reader;
|
sl@0
|
84 |
CreateResourceReaderLC(reader,SYS_BUTTON_ONE);
|
sl@0
|
85 |
test(reader.ReadInt16()==3);
|
sl@0
|
86 |
test(reader.ReadUint16()==5);
|
sl@0
|
87 |
TPtrC ptr=reader.ReadTPtrC();
|
sl@0
|
88 |
test(ptr==_L("Text"));
|
sl@0
|
89 |
ptr.Set(reader.ReadTPtrC());
|
sl@0
|
90 |
test(ptr.Length()==0);
|
sl@0
|
91 |
HBufC* hBuf=reader.ReadHBufCL();
|
sl@0
|
92 |
test(*hBuf==_L("Bitmap placeholder"));
|
sl@0
|
93 |
delete(hBuf);
|
sl@0
|
94 |
CleanupStack::PopAndDestroy();
|
sl@0
|
95 |
}
|
sl@0
|
96 |
|
sl@0
|
97 |
/**
|
sl@0
|
98 |
@SYMTestCaseID SYSLIB-BAFL-CT-0434
|
sl@0
|
99 |
@SYMTestCaseDesc Tests for TResourceReader::ReadDesCArrayL() function
|
sl@0
|
100 |
@SYMTestPriority Medium
|
sl@0
|
101 |
@SYMTestActions Attempt to read an array resource
|
sl@0
|
102 |
@SYMTestExpectedResults Tests must not fail
|
sl@0
|
103 |
@SYMREQ REQ0000
|
sl@0
|
104 |
*/
|
sl@0
|
105 |
void TRsReadTester::TestArrayL()
|
sl@0
|
106 |
{
|
sl@0
|
107 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0434 Test reading ARRAY resource "));
|
sl@0
|
108 |
TResourceReader reader;
|
sl@0
|
109 |
CreateResourceReaderLC(reader,SYS_ARRAY_ONE);
|
sl@0
|
110 |
CDesCArray* desArray=reader.ReadDesCArrayL();
|
sl@0
|
111 |
CleanupStack::PopAndDestroy();
|
sl@0
|
112 |
test(desArray->Count()==5);
|
sl@0
|
113 |
|
sl@0
|
114 |
test((*desArray)[0]==_L("Esc"));
|
sl@0
|
115 |
test((*desArray)[1]==_L("Enter"));
|
sl@0
|
116 |
test((*desArray)[2]==_L("Tab"));
|
sl@0
|
117 |
test((*desArray)[3]==_L("Del"));
|
sl@0
|
118 |
test((*desArray)[4]==_L("Space"));
|
sl@0
|
119 |
|
sl@0
|
120 |
delete(desArray);
|
sl@0
|
121 |
}
|
sl@0
|
122 |
|
sl@0
|
123 |
/**
|
sl@0
|
124 |
@SYMTestCaseID SYSLIB-BAFL-CT-0435
|
sl@0
|
125 |
@SYMTestCaseDesc Tests for TResourceReader::ReadInt16(),TResourceReader::ReadInt64() function
|
sl@0
|
126 |
@SYMTestPriority High
|
sl@0
|
127 |
@SYMTestActions Attempt for reading FLPTED resource
|
sl@0
|
128 |
@SYMTestExpectedResults Tests must not fail
|
sl@0
|
129 |
@SYMREQ REQ0000
|
sl@0
|
130 |
*/
|
sl@0
|
131 |
void TRsReadTester::TestFlPtEdL()
|
sl@0
|
132 |
{
|
sl@0
|
133 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0435 Test reading FLPTED resource "));
|
sl@0
|
134 |
TResourceReader reader;
|
sl@0
|
135 |
CreateResourceReaderLC(reader,SYS_FLPTED_ONE);
|
sl@0
|
136 |
test(reader.ReadInt16()==18);
|
sl@0
|
137 |
TReal little=reader.ReadReal64();
|
sl@0
|
138 |
test(little==0.0);
|
sl@0
|
139 |
TReal big=reader.ReadReal64();
|
sl@0
|
140 |
test(big>9.89e99);
|
sl@0
|
141 |
test(big<9.91e99);
|
sl@0
|
142 |
CleanupStack::PopAndDestroy(1);
|
sl@0
|
143 |
}
|
sl@0
|
144 |
|
sl@0
|
145 |
/**
|
sl@0
|
146 |
@SYMTestCaseID SYSLIB-BAFL-CT-0436
|
sl@0
|
147 |
@SYMTestCaseDesc TResourceReader class functionality test
|
sl@0
|
148 |
Test for TResourceReader::ReadInt32 (),TResourceReader::ReadTPtrC() functions
|
sl@0
|
149 |
@SYMTestPriority High
|
sl@0
|
150 |
@SYMTestActions Attempt for reading MENU_BAR resource
|
sl@0
|
151 |
@SYMTestExpectedResults Tests must not fail
|
sl@0
|
152 |
@SYMREQ REQ0000
|
sl@0
|
153 |
*/
|
sl@0
|
154 |
void TRsReadTester::TestMenuBarL()
|
sl@0
|
155 |
{
|
sl@0
|
156 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0436 Test reading MENU_BAR resource "));
|
sl@0
|
157 |
TResourceReader reader;
|
sl@0
|
158 |
CreateResourceReaderLC(reader,SYS_MENUBAR_ONE);
|
sl@0
|
159 |
test(reader.ReadInt16()==8); // how many items following
|
sl@0
|
160 |
TPtrC ref=_L("abcdefgh");
|
sl@0
|
161 |
for (TInt ii=1; ii<=8; ii++)
|
sl@0
|
162 |
{
|
sl@0
|
163 |
test(reader.ReadInt32()==ii);
|
sl@0
|
164 |
test(reader.ReadTPtrC()==ref.Left(ii));
|
sl@0
|
165 |
}
|
sl@0
|
166 |
CleanupStack::PopAndDestroy(1);
|
sl@0
|
167 |
}
|
sl@0
|
168 |
|
sl@0
|
169 |
TInt horrors[] = {
|
sl@0
|
170 |
SYS_ALIGNMENT_HORROR0, SYS_ALIGNMENT_HORROR1,
|
sl@0
|
171 |
SYS_ALIGNMENT_HORROR2, SYS_ALIGNMENT_HORROR3,
|
sl@0
|
172 |
0
|
sl@0
|
173 |
};
|
sl@0
|
174 |
|
sl@0
|
175 |
/**
|
sl@0
|
176 |
@SYMTestCaseID SYSLIB-BAFL-CT-0437
|
sl@0
|
177 |
@SYMTestCaseDesc Reading ALIGNMENT_HORROR resources test
|
sl@0
|
178 |
Test for TResourceReader::ReadTPtrC8(),TResourceReader::ReadTPtrC16() function
|
sl@0
|
179 |
@SYMTestPriority High
|
sl@0
|
180 |
@SYMTestActions Tests for reading descriptors and checks for alignment
|
sl@0
|
181 |
@SYMTestExpectedResults Tests must not fail
|
sl@0
|
182 |
@SYMREQ REQ0000
|
sl@0
|
183 |
*/
|
sl@0
|
184 |
void TRsReadTester::TestAlignment1L()
|
sl@0
|
185 |
{
|
sl@0
|
186 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0437 Test reading ALIGNMENT_HORROR resources "));
|
sl@0
|
187 |
TPtrC8 ref8 =_L8("xyz");
|
sl@0
|
188 |
TPtrC16 ref16=_L16("xyz");
|
sl@0
|
189 |
TResourceReader reader;
|
sl@0
|
190 |
for (TInt rr=0; horrors[rr]!=0; rr++)
|
sl@0
|
191 |
{
|
sl@0
|
192 |
CreateResourceReaderLC(reader,horrors[rr]);
|
sl@0
|
193 |
test(reader.ReadTPtrC8() ==ref8.Left(rr));
|
sl@0
|
194 |
test(reader.ReadTPtrC16()==ref16.Left(rr));
|
sl@0
|
195 |
CleanupStack::PopAndDestroy(1);
|
sl@0
|
196 |
}
|
sl@0
|
197 |
}
|
sl@0
|
198 |
|
sl@0
|
199 |
/**
|
sl@0
|
200 |
@SYMTestCaseID SYSLIB-BAFL-CT-0438
|
sl@0
|
201 |
@SYMTestCaseDesc Reading ALIGNMENT_HORROR_ARRAY resource test
|
sl@0
|
202 |
@SYMTestPriority High
|
sl@0
|
203 |
@SYMTestActions Tests for reading descriptors and checks for alignment
|
sl@0
|
204 |
@SYMTestExpectedResults Tests must not fail
|
sl@0
|
205 |
@SYMREQ REQ0000
|
sl@0
|
206 |
*/
|
sl@0
|
207 |
void TRsReadTester::TestAlignment2L()
|
sl@0
|
208 |
{
|
sl@0
|
209 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0438 Test reading ALIGNMENT_HORROR_ARRAY resource "));
|
sl@0
|
210 |
TResourceReader reader;
|
sl@0
|
211 |
CreateResourceReaderLC(reader,SYS_ALIGNMENT_HORROR_ARRAY);
|
sl@0
|
212 |
test(reader.ReadInt16()==7); // how many items following
|
sl@0
|
213 |
TPtrC8 ref8 =_L8("abcdef");
|
sl@0
|
214 |
TPtrC16 ref16=_L16("abcdef");
|
sl@0
|
215 |
for (TInt ii=0; ii<=6; ii++)
|
sl@0
|
216 |
{
|
sl@0
|
217 |
test(reader.ReadTPtrC8() ==ref8.Left(ii));
|
sl@0
|
218 |
test(reader.ReadTPtrC16()==ref16.Mid(ii));
|
sl@0
|
219 |
}
|
sl@0
|
220 |
CleanupStack::PopAndDestroy(1);
|
sl@0
|
221 |
}
|
sl@0
|
222 |
|
sl@0
|
223 |
/**
|
sl@0
|
224 |
@SYMTestCaseID SYSLIB-BAFL-CT-0439
|
sl@0
|
225 |
@SYMTestCaseDesc Timing Tests
|
sl@0
|
226 |
@SYMTestPriority High
|
sl@0
|
227 |
@SYMTestActions Check for the time loads needed to repeatedly load a resource
|
sl@0
|
228 |
@SYMTestExpectedResults Tests must not fail
|
sl@0
|
229 |
@SYMREQ REQ0000
|
sl@0
|
230 |
*/
|
sl@0
|
231 |
void TRsReadTester::TimingTestsL()
|
sl@0
|
232 |
{
|
sl@0
|
233 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0439 Timing tests "));
|
sl@0
|
234 |
test.Next(_L("BUTTON and FLPTED"));
|
sl@0
|
235 |
TUint time = User::TickCount();
|
sl@0
|
236 |
for (TInt ii=0; ii<100; ii++)
|
sl@0
|
237 |
{
|
sl@0
|
238 |
TResourceReader reader;
|
sl@0
|
239 |
CreateResourceReaderLC(reader,SYS_BUTTON_ONE);
|
sl@0
|
240 |
CleanupStack::PopAndDestroy();
|
sl@0
|
241 |
CreateResourceReaderLC(reader,SYS_FLPTED_ONE);
|
sl@0
|
242 |
CleanupStack::PopAndDestroy();
|
sl@0
|
243 |
}
|
sl@0
|
244 |
time = User::TickCount() - time;
|
sl@0
|
245 |
test.Printf(_L("Time to load 100 times: %d\n"),time);
|
sl@0
|
246 |
|
sl@0
|
247 |
test.Next(_L("BUTTON and ARRAY"));
|
sl@0
|
248 |
time = User::TickCount();
|
sl@0
|
249 |
for (TInt jj=0; jj<100; jj++)
|
sl@0
|
250 |
{
|
sl@0
|
251 |
TResourceReader reader;
|
sl@0
|
252 |
CreateResourceReaderLC(reader,SYS_BUTTON_ONE);
|
sl@0
|
253 |
CleanupStack::PopAndDestroy();
|
sl@0
|
254 |
CreateResourceReaderLC(reader,SYS_ARRAY_ONE);
|
sl@0
|
255 |
CleanupStack::PopAndDestroy();
|
sl@0
|
256 |
}
|
sl@0
|
257 |
time = User::TickCount() - time;
|
sl@0
|
258 |
test.Printf(_L("Time to load 100 times: %d\n"),time);
|
sl@0
|
259 |
}
|
sl@0
|
260 |
|
sl@0
|
261 |
|
sl@0
|
262 |
TUint8 TRsReadTester::DumpByte(TUint aVal)
|
sl@0
|
263 |
{
|
sl@0
|
264 |
return(aVal>9? TUint8(aVal-10+'a'): TUint8(aVal+'0'));
|
sl@0
|
265 |
}
|
sl@0
|
266 |
|
sl@0
|
267 |
void TRsReadTester::DumpBytes(const TAny* aPtr,TInt aLen)
|
sl@0
|
268 |
{
|
sl@0
|
269 |
TUint8* src=(TUint8*)aPtr;
|
sl@0
|
270 |
TBuf<100> whole;
|
sl@0
|
271 |
TUint8* tar=(TUint8*)whole.Ptr();
|
sl@0
|
272 |
TInt len=0;
|
sl@0
|
273 |
while (aLen--)
|
sl@0
|
274 |
{
|
sl@0
|
275 |
TUint val=(*src++);
|
sl@0
|
276 |
TUint top=val/16;
|
sl@0
|
277 |
TUint bottom=val%16;
|
sl@0
|
278 |
*tar++=DumpByte(top);
|
sl@0
|
279 |
*tar++=DumpByte(bottom);
|
sl@0
|
280 |
*tar++=' ';
|
sl@0
|
281 |
len+=3;
|
sl@0
|
282 |
}
|
sl@0
|
283 |
whole.SetLength(len);
|
sl@0
|
284 |
test.Printf(whole);
|
sl@0
|
285 |
test.Printf(_L("\r\n"));
|
sl@0
|
286 |
}
|
sl@0
|
287 |
|
sl@0
|
288 |
TInt ThreadFunc1(TAny*)
|
sl@0
|
289 |
{
|
sl@0
|
290 |
CTrapCleanup* cleanup=CTrapCleanup::New();
|
sl@0
|
291 |
RResourceReader reader;
|
sl@0
|
292 |
reader.Close();// iCurrentPtr=NULL
|
sl@0
|
293 |
TRAPD(err,reader.AdvanceL(0));//calls TResourceReaderImpl::AdvanceL()
|
sl@0
|
294 |
delete cleanup;
|
sl@0
|
295 |
return err;
|
sl@0
|
296 |
}
|
sl@0
|
297 |
|
sl@0
|
298 |
/**
|
sl@0
|
299 |
@SYMTestCaseID SYSLIB-BAFL-UT-1791
|
sl@0
|
300 |
@SYMTestCaseDesc Testing a panic on TResourceReaderImpl class(JustInTimeDebug is disabled)
|
sl@0
|
301 |
@SYMTestPriority Low
|
sl@0
|
302 |
@SYMTestActions Test that panics, when the condition inside __ASSERT is made false, by calling AdvanceL, after iCurrentPtr is made NULL using RResourceReader::close()
|
sl@0
|
303 |
@SYMTestExpectedResults Test must panic
|
sl@0
|
304 |
@SYMREQ REQ0000
|
sl@0
|
305 |
*/
|
sl@0
|
306 |
|
sl@0
|
307 |
void TRsReadTester::PanicTResImp1()
|
sl@0
|
308 |
{
|
sl@0
|
309 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-UT-1791 "));
|
sl@0
|
310 |
TRequestStatus threadStatus;
|
sl@0
|
311 |
RThread thread1;
|
sl@0
|
312 |
TInt rc;
|
sl@0
|
313 |
rc = thread1.Create(KPanicThread1, ThreadFunc1,
|
sl@0
|
314 |
KDefaultStackSize, KMinHeapSize, KMinHeapSize*4,NULL);
|
sl@0
|
315 |
test(KErrNone == rc);
|
sl@0
|
316 |
thread1.Logon(threadStatus);
|
sl@0
|
317 |
thread1.Resume();
|
sl@0
|
318 |
User::WaitForRequest(threadStatus);
|
sl@0
|
319 |
|
sl@0
|
320 |
test(thread1.ExitType() == EExitPanic);
|
sl@0
|
321 |
thread1.Close();
|
sl@0
|
322 |
}
|
sl@0
|
323 |
|
sl@0
|
324 |
TInt ThreadFunc2(TAny*)
|
sl@0
|
325 |
{
|
sl@0
|
326 |
CTrapCleanup* cleanup=CTrapCleanup::New();
|
sl@0
|
327 |
RResourceReader reader;
|
sl@0
|
328 |
reader.Close();// iCurrentPtr=NULL
|
sl@0
|
329 |
TRAPD(err,reader.ReadInt8L());//calls TResourceReaderImpl::ReadInt8L()
|
sl@0
|
330 |
delete cleanup;
|
sl@0
|
331 |
return err;
|
sl@0
|
332 |
}
|
sl@0
|
333 |
|
sl@0
|
334 |
/**
|
sl@0
|
335 |
@SYMTestCaseID SYSLIB-BAFL-UT-1792
|
sl@0
|
336 |
@SYMTestCaseDesc Testing a panic on TResourceReaderImpl class(JustInTimeDebug is disabled)
|
sl@0
|
337 |
@SYMTestPriority Low
|
sl@0
|
338 |
@SYMTestActions Test that panics, when the condition inside __ASSERT is made false, by calling ReadInt8L, after iCurrentPtr is made NULL using RResourceReader::close()
|
sl@0
|
339 |
@SYMTestExpectedResults Test must panic
|
sl@0
|
340 |
@SYMREQ REQ0000
|
sl@0
|
341 |
*/
|
sl@0
|
342 |
void TRsReadTester::PanicTResImp2()
|
sl@0
|
343 |
{
|
sl@0
|
344 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-UT-1792 "));
|
sl@0
|
345 |
TRequestStatus threadStatus;
|
sl@0
|
346 |
RThread thread2;
|
sl@0
|
347 |
TInt rc;
|
sl@0
|
348 |
rc = thread2.Create(KPanicThread2, ThreadFunc2,
|
sl@0
|
349 |
KDefaultStackSize, KMinHeapSize, KMinHeapSize*4,NULL);
|
sl@0
|
350 |
test(KErrNone == rc);
|
sl@0
|
351 |
thread2.Logon(threadStatus);
|
sl@0
|
352 |
thread2.Resume();
|
sl@0
|
353 |
User::WaitForRequest(threadStatus);
|
sl@0
|
354 |
|
sl@0
|
355 |
test(thread2.ExitType() == EExitPanic);
|
sl@0
|
356 |
thread2.Close();
|
sl@0
|
357 |
}
|
sl@0
|
358 |
|
sl@0
|
359 |
TInt ThreadFunc3(TAny*)
|
sl@0
|
360 |
{
|
sl@0
|
361 |
CTrapCleanup* cleanup=CTrapCleanup::New();
|
sl@0
|
362 |
RResourceReader reader;
|
sl@0
|
363 |
reader.Close();
|
sl@0
|
364 |
TRAPD(err,reader.ReadTPtrC8L());//calls TResourceReaderImpl::ReadTPtrC8L()
|
sl@0
|
365 |
delete cleanup;
|
sl@0
|
366 |
return err;
|
sl@0
|
367 |
}
|
sl@0
|
368 |
|
sl@0
|
369 |
/**
|
sl@0
|
370 |
@SYMTestCaseID SYSLIB-BAFL-UT-1793
|
sl@0
|
371 |
@SYMTestCaseDesc Testing a panic on TResourceReaderImpl class(JustInTimeDebug is disabled)
|
sl@0
|
372 |
@SYMTestPriority Low
|
sl@0
|
373 |
@SYMTestActions Test that panics, when the condition inside __ASSERT is made false, by calling ReadTPtrC8L, after iCurrentPtr is made NULL using RResourceReader::close()
|
sl@0
|
374 |
@SYMTestExpectedResults Test must panic
|
sl@0
|
375 |
@SYMREQ REQ0000
|
sl@0
|
376 |
*/
|
sl@0
|
377 |
void TRsReadTester::PanicTResImp3()
|
sl@0
|
378 |
{
|
sl@0
|
379 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-UT-1793 "));
|
sl@0
|
380 |
TRequestStatus threadStatus;
|
sl@0
|
381 |
RThread thread3;
|
sl@0
|
382 |
TInt rc;
|
sl@0
|
383 |
rc = thread3.Create(KPanicThread3, ThreadFunc3,
|
sl@0
|
384 |
KDefaultStackSize, KMinHeapSize, KMinHeapSize*4,NULL);
|
sl@0
|
385 |
test(KErrNone == rc);
|
sl@0
|
386 |
thread3.Logon(threadStatus);
|
sl@0
|
387 |
thread3.Resume();
|
sl@0
|
388 |
User::WaitForRequest(threadStatus);
|
sl@0
|
389 |
|
sl@0
|
390 |
test(thread3.ExitType() == EExitPanic);
|
sl@0
|
391 |
thread3.Close();
|
sl@0
|
392 |
}
|
sl@0
|
393 |
|
sl@0
|
394 |
TInt ThreadFunc4(TAny*)
|
sl@0
|
395 |
{
|
sl@0
|
396 |
CTrapCleanup* cleanup=CTrapCleanup::New();
|
sl@0
|
397 |
RResourceReader reader;
|
sl@0
|
398 |
reader.Close();
|
sl@0
|
399 |
TRAPD(err,reader.ReadUint8L());//calls TResourceReaderImpl::ReadUint8L()
|
sl@0
|
400 |
delete cleanup;
|
sl@0
|
401 |
return err;
|
sl@0
|
402 |
}
|
sl@0
|
403 |
|
sl@0
|
404 |
/**
|
sl@0
|
405 |
@SYMTestCaseID SYSLIB-BAFL-UT-1794
|
sl@0
|
406 |
@SYMTestCaseDesc Testing a panic on TResourceReaderImpl class(JustInTimeDebug is disabled)
|
sl@0
|
407 |
@SYMTestPriority Low
|
sl@0
|
408 |
@SYMTestActions Test that panics, when the condition inside __ASSERT is made false, by calling ReadUint8L, after iCurrentPtr is made NULL using RResourceReader::close()
|
sl@0
|
409 |
@SYMTestExpectedResults Test must panic
|
sl@0
|
410 |
@SYMREQ REQ0000
|
sl@0
|
411 |
*/
|
sl@0
|
412 |
void TRsReadTester::PanicTResImp4()
|
sl@0
|
413 |
{
|
sl@0
|
414 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-UT-1794 "));
|
sl@0
|
415 |
TRequestStatus threadStatus;
|
sl@0
|
416 |
RThread thread4;
|
sl@0
|
417 |
TInt rc;
|
sl@0
|
418 |
rc = thread4.Create(KPanicThread4, ThreadFunc4,
|
sl@0
|
419 |
KDefaultStackSize, KMinHeapSize, KMinHeapSize*4,NULL);
|
sl@0
|
420 |
test(KErrNone == rc);
|
sl@0
|
421 |
thread4.Logon(threadStatus);
|
sl@0
|
422 |
thread4.Resume();
|
sl@0
|
423 |
User::WaitForRequest(threadStatus);
|
sl@0
|
424 |
|
sl@0
|
425 |
test(thread4.ExitType() == EExitPanic);
|
sl@0
|
426 |
thread4.Close();
|
sl@0
|
427 |
}
|
sl@0
|
428 |
|
sl@0
|
429 |
TInt TRsReadTester::PanicTests()
|
sl@0
|
430 |
{
|
sl@0
|
431 |
TBool jit;
|
sl@0
|
432 |
jit = User::JustInTime();
|
sl@0
|
433 |
User::SetJustInTime(EFalse);
|
sl@0
|
434 |
|
sl@0
|
435 |
//Tests for panics in TResourceReaderImpl class, through RResourceReader class
|
sl@0
|
436 |
PanicTResImp1();
|
sl@0
|
437 |
PanicTResImp2();
|
sl@0
|
438 |
PanicTResImp3();
|
sl@0
|
439 |
PanicTResImp4();
|
sl@0
|
440 |
|
sl@0
|
441 |
User::SetJustInTime(jit);
|
sl@0
|
442 |
return KErrNone;
|
sl@0
|
443 |
}
|
sl@0
|
444 |
|
sl@0
|
445 |
/**
|
sl@0
|
446 |
@SYMTestCaseID SYSLIB-BAFL-CT-0440
|
sl@0
|
447 |
@SYMTestCaseDesc Resource reader test
|
sl@0
|
448 |
@SYMTestPriority High
|
sl@0
|
449 |
@SYMTestActions Executes all the tests related to resource read
|
sl@0
|
450 |
@SYMTestExpectedResults Tests must not fail
|
sl@0
|
451 |
@SYMREQ REQ0000
|
sl@0
|
452 |
*/
|
sl@0
|
453 |
void RunTests()
|
sl@0
|
454 |
{
|
sl@0
|
455 |
test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0440 Resource reader "));
|
sl@0
|
456 |
TheFs.Connect();
|
sl@0
|
457 |
TheResourceFile.OpenL(TheFs,KRomResourceFile);
|
sl@0
|
458 |
TRsReadTester lt;
|
sl@0
|
459 |
TRAPD(errCode, lt.TestButtonL());
|
sl@0
|
460 |
test(errCode==KErrNone);
|
sl@0
|
461 |
TRAP(errCode, lt.TestArrayL());
|
sl@0
|
462 |
test(errCode==KErrNone);
|
sl@0
|
463 |
TRAP(errCode, lt.TestFlPtEdL());
|
sl@0
|
464 |
test(errCode==KErrNone);
|
sl@0
|
465 |
TRAP(errCode, lt.TestMenuBarL());
|
sl@0
|
466 |
test(errCode==KErrNone);
|
sl@0
|
467 |
TRAP(errCode, lt.TestAlignment1L());
|
sl@0
|
468 |
test(errCode==KErrNone);
|
sl@0
|
469 |
TRAP(errCode, lt.TestAlignment2L());
|
sl@0
|
470 |
test(errCode==KErrNone);
|
sl@0
|
471 |
TRAP(errCode, lt.TimingTestsL());
|
sl@0
|
472 |
test(errCode==KErrNone);
|
sl@0
|
473 |
TheResourceFile.Close();
|
sl@0
|
474 |
//Test that raises panics
|
sl@0
|
475 |
test(KErrNone==lt.PanicTests());
|
sl@0
|
476 |
|
sl@0
|
477 |
TheFs.Close();
|
sl@0
|
478 |
test.End();
|
sl@0
|
479 |
test.Close();
|
sl@0
|
480 |
}
|
sl@0
|
481 |
|
sl@0
|
482 |
TInt E32Main()
|
sl@0
|
483 |
{
|
sl@0
|
484 |
__UHEAP_MARK;
|
sl@0
|
485 |
CTrapCleanup *cleanup=CTrapCleanup::New();
|
sl@0
|
486 |
test.Title();
|
sl@0
|
487 |
TRAPD(err,RunTests());
|
sl@0
|
488 |
test(!err);
|
sl@0
|
489 |
test.Close();
|
sl@0
|
490 |
delete(cleanup);
|
sl@0
|
491 |
__UHEAP_MARKEND;
|
sl@0
|
492 |
return(0);
|
sl@0
|
493 |
}
|