1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/tsrc/T_RSREAD.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,493 @@
1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Tests resource reader
1.18 +// NB, prior to version 050 of BAFL, the resource compiler did not generate
1.19 +// unicode text and so this code used to make a special 8/16 bit text
1.20 +// comparison where appropriate and the resource binary file could be common
1.21 +// between the 8 and 16-bit builds. This is now no-longer the case, which means
1.22 +// that the resource binary used for this text MUST be compiled as Unicode
1.23 +// text for the unicode build and 8-bit text for the 8-bit build.
1.24 +// - PNJ, January 1997.
1.25 +//
1.26 +//
1.27 +
1.28 +#include <e32std.h>
1.29 +#include <e32base.h>
1.30 +#include <e32test.h>
1.31 +#include <f32file.h>
1.32 +#include <barsc.h>
1.33 +#include <barsread.h>
1.34 +#include <barsread2.h>
1.35 +#include <badesca.h>
1.36 +#include <trsc.rsg>
1.37 +#include "T_RSC.H"
1.38 +
1.39 +RTest test(_L("T_RSREAD"));
1.40 +RFs TheFs;
1.41 +RResourceFile TheResourceFile;
1.42 +
1.43 +_LIT(KPanicThread1,"panicThread1");
1.44 +_LIT(KPanicThread2,"panicThread2");
1.45 +_LIT(KPanicThread3,"panicThread3");
1.46 +_LIT(KPanicThread4,"panicThread4");
1.47 +
1.48 +class TRsReadTester
1.49 + {
1.50 +public:
1.51 + void TestButtonL();
1.52 + void TestArrayL();
1.53 + void TestFlPtEdL();
1.54 + void TestMenuBarL();
1.55 + void TestAlignment1L();
1.56 + void TestAlignment2L();
1.57 + void TimingTestsL();
1.58 + TInt PanicTests();
1.59 +private:
1.60 + void DumpBytes(const TAny* aPtr,TInt aLen);
1.61 + TUint8 DumpByte(TUint aVal);
1.62 + void CreateResourceReaderLC(TResourceReader& aReader,TInt aResourceId) const;
1.63 + void PanicTResImp1();
1.64 + void PanicTResImp2();
1.65 + void PanicTResImp3();
1.66 + void PanicTResImp4();
1.67 + };
1.68 +
1.69 +void TRsReadTester::CreateResourceReaderLC(TResourceReader& aReader,TInt aResourceId) const
1.70 + {
1.71 + HBufC8* resource=TheResourceFile.AllocReadLC(aResourceId);
1.72 + aReader.SetBuffer(resource);
1.73 + }
1.74 +
1.75 +/**
1.76 +@SYMTestCaseID SYSLIB-BAFL-CT-0433
1.77 +@SYMTestCaseDesc Tests for TResourceReader::ReadInt16(),TResourceReader::ReadUint16() functions
1.78 +@SYMTestPriority Medium
1.79 +@SYMTestActions Attempt to read a BUTTON resource
1.80 +@SYMTestExpectedResults Tests must not fail
1.81 +@SYMREQ REQ0000
1.82 +*/
1.83 +void TRsReadTester::TestButtonL()
1.84 + {
1.85 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0433 Test reading BUTTON resource "));
1.86 + TResourceReader reader;
1.87 + CreateResourceReaderLC(reader,SYS_BUTTON_ONE);
1.88 + test(reader.ReadInt16()==3);
1.89 + test(reader.ReadUint16()==5);
1.90 + TPtrC ptr=reader.ReadTPtrC();
1.91 + test(ptr==_L("Text"));
1.92 + ptr.Set(reader.ReadTPtrC());
1.93 + test(ptr.Length()==0);
1.94 + HBufC* hBuf=reader.ReadHBufCL();
1.95 + test(*hBuf==_L("Bitmap placeholder"));
1.96 + delete(hBuf);
1.97 + CleanupStack::PopAndDestroy();
1.98 + }
1.99 +
1.100 +/**
1.101 +@SYMTestCaseID SYSLIB-BAFL-CT-0434
1.102 +@SYMTestCaseDesc Tests for TResourceReader::ReadDesCArrayL() function
1.103 +@SYMTestPriority Medium
1.104 +@SYMTestActions Attempt to read an array resource
1.105 +@SYMTestExpectedResults Tests must not fail
1.106 +@SYMREQ REQ0000
1.107 +*/
1.108 +void TRsReadTester::TestArrayL()
1.109 + {
1.110 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0434 Test reading ARRAY resource "));
1.111 + TResourceReader reader;
1.112 + CreateResourceReaderLC(reader,SYS_ARRAY_ONE);
1.113 + CDesCArray* desArray=reader.ReadDesCArrayL();
1.114 + CleanupStack::PopAndDestroy();
1.115 + test(desArray->Count()==5);
1.116 +
1.117 + test((*desArray)[0]==_L("Esc"));
1.118 + test((*desArray)[1]==_L("Enter"));
1.119 + test((*desArray)[2]==_L("Tab"));
1.120 + test((*desArray)[3]==_L("Del"));
1.121 + test((*desArray)[4]==_L("Space"));
1.122 +
1.123 + delete(desArray);
1.124 + }
1.125 +
1.126 +/**
1.127 +@SYMTestCaseID SYSLIB-BAFL-CT-0435
1.128 +@SYMTestCaseDesc Tests for TResourceReader::ReadInt16(),TResourceReader::ReadInt64() function
1.129 +@SYMTestPriority High
1.130 +@SYMTestActions Attempt for reading FLPTED resource
1.131 +@SYMTestExpectedResults Tests must not fail
1.132 +@SYMREQ REQ0000
1.133 +*/
1.134 +void TRsReadTester::TestFlPtEdL()
1.135 + {
1.136 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0435 Test reading FLPTED resource "));
1.137 + TResourceReader reader;
1.138 + CreateResourceReaderLC(reader,SYS_FLPTED_ONE);
1.139 + test(reader.ReadInt16()==18);
1.140 + TReal little=reader.ReadReal64();
1.141 + test(little==0.0);
1.142 + TReal big=reader.ReadReal64();
1.143 + test(big>9.89e99);
1.144 + test(big<9.91e99);
1.145 + CleanupStack::PopAndDestroy(1);
1.146 + }
1.147 +
1.148 +/**
1.149 +@SYMTestCaseID SYSLIB-BAFL-CT-0436
1.150 +@SYMTestCaseDesc TResourceReader class functionality test
1.151 + Test for TResourceReader::ReadInt32 (),TResourceReader::ReadTPtrC() functions
1.152 +@SYMTestPriority High
1.153 +@SYMTestActions Attempt for reading MENU_BAR resource
1.154 +@SYMTestExpectedResults Tests must not fail
1.155 +@SYMREQ REQ0000
1.156 +*/
1.157 +void TRsReadTester::TestMenuBarL()
1.158 + {
1.159 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0436 Test reading MENU_BAR resource "));
1.160 + TResourceReader reader;
1.161 + CreateResourceReaderLC(reader,SYS_MENUBAR_ONE);
1.162 + test(reader.ReadInt16()==8); // how many items following
1.163 + TPtrC ref=_L("abcdefgh");
1.164 + for (TInt ii=1; ii<=8; ii++)
1.165 + {
1.166 + test(reader.ReadInt32()==ii);
1.167 + test(reader.ReadTPtrC()==ref.Left(ii));
1.168 + }
1.169 + CleanupStack::PopAndDestroy(1);
1.170 + }
1.171 +
1.172 +TInt horrors[] = {
1.173 + SYS_ALIGNMENT_HORROR0, SYS_ALIGNMENT_HORROR1,
1.174 + SYS_ALIGNMENT_HORROR2, SYS_ALIGNMENT_HORROR3,
1.175 + 0
1.176 + };
1.177 +
1.178 +/**
1.179 +@SYMTestCaseID SYSLIB-BAFL-CT-0437
1.180 +@SYMTestCaseDesc Reading ALIGNMENT_HORROR resources test
1.181 + Test for TResourceReader::ReadTPtrC8(),TResourceReader::ReadTPtrC16() function
1.182 +@SYMTestPriority High
1.183 +@SYMTestActions Tests for reading descriptors and checks for alignment
1.184 +@SYMTestExpectedResults Tests must not fail
1.185 +@SYMREQ REQ0000
1.186 +*/
1.187 +void TRsReadTester::TestAlignment1L()
1.188 + {
1.189 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0437 Test reading ALIGNMENT_HORROR resources "));
1.190 + TPtrC8 ref8 =_L8("xyz");
1.191 + TPtrC16 ref16=_L16("xyz");
1.192 + TResourceReader reader;
1.193 + for (TInt rr=0; horrors[rr]!=0; rr++)
1.194 + {
1.195 + CreateResourceReaderLC(reader,horrors[rr]);
1.196 + test(reader.ReadTPtrC8() ==ref8.Left(rr));
1.197 + test(reader.ReadTPtrC16()==ref16.Left(rr));
1.198 + CleanupStack::PopAndDestroy(1);
1.199 + }
1.200 + }
1.201 +
1.202 +/**
1.203 +@SYMTestCaseID SYSLIB-BAFL-CT-0438
1.204 +@SYMTestCaseDesc Reading ALIGNMENT_HORROR_ARRAY resource test
1.205 +@SYMTestPriority High
1.206 +@SYMTestActions Tests for reading descriptors and checks for alignment
1.207 +@SYMTestExpectedResults Tests must not fail
1.208 +@SYMREQ REQ0000
1.209 +*/
1.210 +void TRsReadTester::TestAlignment2L()
1.211 + {
1.212 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0438 Test reading ALIGNMENT_HORROR_ARRAY resource "));
1.213 + TResourceReader reader;
1.214 + CreateResourceReaderLC(reader,SYS_ALIGNMENT_HORROR_ARRAY);
1.215 + test(reader.ReadInt16()==7); // how many items following
1.216 + TPtrC8 ref8 =_L8("abcdef");
1.217 + TPtrC16 ref16=_L16("abcdef");
1.218 + for (TInt ii=0; ii<=6; ii++)
1.219 + {
1.220 + test(reader.ReadTPtrC8() ==ref8.Left(ii));
1.221 + test(reader.ReadTPtrC16()==ref16.Mid(ii));
1.222 + }
1.223 + CleanupStack::PopAndDestroy(1);
1.224 + }
1.225 +
1.226 +/**
1.227 +@SYMTestCaseID SYSLIB-BAFL-CT-0439
1.228 +@SYMTestCaseDesc Timing Tests
1.229 +@SYMTestPriority High
1.230 +@SYMTestActions Check for the time loads needed to repeatedly load a resource
1.231 +@SYMTestExpectedResults Tests must not fail
1.232 +@SYMREQ REQ0000
1.233 +*/
1.234 +void TRsReadTester::TimingTestsL()
1.235 + {
1.236 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0439 Timing tests "));
1.237 + test.Next(_L("BUTTON and FLPTED"));
1.238 + TUint time = User::TickCount();
1.239 + for (TInt ii=0; ii<100; ii++)
1.240 + {
1.241 + TResourceReader reader;
1.242 + CreateResourceReaderLC(reader,SYS_BUTTON_ONE);
1.243 + CleanupStack::PopAndDestroy();
1.244 + CreateResourceReaderLC(reader,SYS_FLPTED_ONE);
1.245 + CleanupStack::PopAndDestroy();
1.246 + }
1.247 + time = User::TickCount() - time;
1.248 + test.Printf(_L("Time to load 100 times: %d\n"),time);
1.249 +
1.250 + test.Next(_L("BUTTON and ARRAY"));
1.251 + time = User::TickCount();
1.252 + for (TInt jj=0; jj<100; jj++)
1.253 + {
1.254 + TResourceReader reader;
1.255 + CreateResourceReaderLC(reader,SYS_BUTTON_ONE);
1.256 + CleanupStack::PopAndDestroy();
1.257 + CreateResourceReaderLC(reader,SYS_ARRAY_ONE);
1.258 + CleanupStack::PopAndDestroy();
1.259 + }
1.260 + time = User::TickCount() - time;
1.261 + test.Printf(_L("Time to load 100 times: %d\n"),time);
1.262 + }
1.263 +
1.264 +
1.265 +TUint8 TRsReadTester::DumpByte(TUint aVal)
1.266 + {
1.267 + return(aVal>9? TUint8(aVal-10+'a'): TUint8(aVal+'0'));
1.268 + }
1.269 +
1.270 +void TRsReadTester::DumpBytes(const TAny* aPtr,TInt aLen)
1.271 + {
1.272 + TUint8* src=(TUint8*)aPtr;
1.273 + TBuf<100> whole;
1.274 + TUint8* tar=(TUint8*)whole.Ptr();
1.275 + TInt len=0;
1.276 + while (aLen--)
1.277 + {
1.278 + TUint val=(*src++);
1.279 + TUint top=val/16;
1.280 + TUint bottom=val%16;
1.281 + *tar++=DumpByte(top);
1.282 + *tar++=DumpByte(bottom);
1.283 + *tar++=' ';
1.284 + len+=3;
1.285 + }
1.286 + whole.SetLength(len);
1.287 + test.Printf(whole);
1.288 + test.Printf(_L("\r\n"));
1.289 + }
1.290 +
1.291 +TInt ThreadFunc1(TAny*)
1.292 + {
1.293 + CTrapCleanup* cleanup=CTrapCleanup::New();
1.294 + RResourceReader reader;
1.295 + reader.Close();// iCurrentPtr=NULL
1.296 + TRAPD(err,reader.AdvanceL(0));//calls TResourceReaderImpl::AdvanceL()
1.297 + delete cleanup;
1.298 + return err;
1.299 + }
1.300 +
1.301 +/**
1.302 +@SYMTestCaseID SYSLIB-BAFL-UT-1791
1.303 +@SYMTestCaseDesc Testing a panic on TResourceReaderImpl class(JustInTimeDebug is disabled)
1.304 +@SYMTestPriority Low
1.305 +@SYMTestActions Test that panics, when the condition inside __ASSERT is made false, by calling AdvanceL, after iCurrentPtr is made NULL using RResourceReader::close()
1.306 +@SYMTestExpectedResults Test must panic
1.307 +@SYMREQ REQ0000
1.308 +*/
1.309 +
1.310 +void TRsReadTester::PanicTResImp1()
1.311 + {
1.312 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-UT-1791 "));
1.313 + TRequestStatus threadStatus;
1.314 + RThread thread1;
1.315 + TInt rc;
1.316 + rc = thread1.Create(KPanicThread1, ThreadFunc1,
1.317 + KDefaultStackSize, KMinHeapSize, KMinHeapSize*4,NULL);
1.318 + test(KErrNone == rc);
1.319 + thread1.Logon(threadStatus);
1.320 + thread1.Resume();
1.321 + User::WaitForRequest(threadStatus);
1.322 +
1.323 + test(thread1.ExitType() == EExitPanic);
1.324 + thread1.Close();
1.325 + }
1.326 +
1.327 +TInt ThreadFunc2(TAny*)
1.328 + {
1.329 + CTrapCleanup* cleanup=CTrapCleanup::New();
1.330 + RResourceReader reader;
1.331 + reader.Close();// iCurrentPtr=NULL
1.332 + TRAPD(err,reader.ReadInt8L());//calls TResourceReaderImpl::ReadInt8L()
1.333 + delete cleanup;
1.334 + return err;
1.335 + }
1.336 +
1.337 +/**
1.338 +@SYMTestCaseID SYSLIB-BAFL-UT-1792
1.339 +@SYMTestCaseDesc Testing a panic on TResourceReaderImpl class(JustInTimeDebug is disabled)
1.340 +@SYMTestPriority Low
1.341 +@SYMTestActions Test that panics, when the condition inside __ASSERT is made false, by calling ReadInt8L, after iCurrentPtr is made NULL using RResourceReader::close()
1.342 +@SYMTestExpectedResults Test must panic
1.343 +@SYMREQ REQ0000
1.344 +*/
1.345 +void TRsReadTester::PanicTResImp2()
1.346 + {
1.347 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-UT-1792 "));
1.348 + TRequestStatus threadStatus;
1.349 + RThread thread2;
1.350 + TInt rc;
1.351 + rc = thread2.Create(KPanicThread2, ThreadFunc2,
1.352 + KDefaultStackSize, KMinHeapSize, KMinHeapSize*4,NULL);
1.353 + test(KErrNone == rc);
1.354 + thread2.Logon(threadStatus);
1.355 + thread2.Resume();
1.356 + User::WaitForRequest(threadStatus);
1.357 +
1.358 + test(thread2.ExitType() == EExitPanic);
1.359 + thread2.Close();
1.360 + }
1.361 +
1.362 +TInt ThreadFunc3(TAny*)
1.363 + {
1.364 + CTrapCleanup* cleanup=CTrapCleanup::New();
1.365 + RResourceReader reader;
1.366 + reader.Close();
1.367 + TRAPD(err,reader.ReadTPtrC8L());//calls TResourceReaderImpl::ReadTPtrC8L()
1.368 + delete cleanup;
1.369 + return err;
1.370 + }
1.371 +
1.372 +/**
1.373 +@SYMTestCaseID SYSLIB-BAFL-UT-1793
1.374 +@SYMTestCaseDesc Testing a panic on TResourceReaderImpl class(JustInTimeDebug is disabled)
1.375 +@SYMTestPriority Low
1.376 +@SYMTestActions Test that panics, when the condition inside __ASSERT is made false, by calling ReadTPtrC8L, after iCurrentPtr is made NULL using RResourceReader::close()
1.377 +@SYMTestExpectedResults Test must panic
1.378 +@SYMREQ REQ0000
1.379 +*/
1.380 +void TRsReadTester::PanicTResImp3()
1.381 + {
1.382 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-UT-1793 "));
1.383 + TRequestStatus threadStatus;
1.384 + RThread thread3;
1.385 + TInt rc;
1.386 + rc = thread3.Create(KPanicThread3, ThreadFunc3,
1.387 + KDefaultStackSize, KMinHeapSize, KMinHeapSize*4,NULL);
1.388 + test(KErrNone == rc);
1.389 + thread3.Logon(threadStatus);
1.390 + thread3.Resume();
1.391 + User::WaitForRequest(threadStatus);
1.392 +
1.393 + test(thread3.ExitType() == EExitPanic);
1.394 + thread3.Close();
1.395 + }
1.396 +
1.397 +TInt ThreadFunc4(TAny*)
1.398 + {
1.399 + CTrapCleanup* cleanup=CTrapCleanup::New();
1.400 + RResourceReader reader;
1.401 + reader.Close();
1.402 + TRAPD(err,reader.ReadUint8L());//calls TResourceReaderImpl::ReadUint8L()
1.403 + delete cleanup;
1.404 + return err;
1.405 + }
1.406 +
1.407 +/**
1.408 +@SYMTestCaseID SYSLIB-BAFL-UT-1794
1.409 +@SYMTestCaseDesc Testing a panic on TResourceReaderImpl class(JustInTimeDebug is disabled)
1.410 +@SYMTestPriority Low
1.411 +@SYMTestActions Test that panics, when the condition inside __ASSERT is made false, by calling ReadUint8L, after iCurrentPtr is made NULL using RResourceReader::close()
1.412 +@SYMTestExpectedResults Test must panic
1.413 +@SYMREQ REQ0000
1.414 +*/
1.415 +void TRsReadTester::PanicTResImp4()
1.416 + {
1.417 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-UT-1794 "));
1.418 + TRequestStatus threadStatus;
1.419 + RThread thread4;
1.420 + TInt rc;
1.421 + rc = thread4.Create(KPanicThread4, ThreadFunc4,
1.422 + KDefaultStackSize, KMinHeapSize, KMinHeapSize*4,NULL);
1.423 + test(KErrNone == rc);
1.424 + thread4.Logon(threadStatus);
1.425 + thread4.Resume();
1.426 + User::WaitForRequest(threadStatus);
1.427 +
1.428 + test(thread4.ExitType() == EExitPanic);
1.429 + thread4.Close();
1.430 + }
1.431 +
1.432 +TInt TRsReadTester::PanicTests()
1.433 + {
1.434 + TBool jit;
1.435 + jit = User::JustInTime();
1.436 + User::SetJustInTime(EFalse);
1.437 +
1.438 + //Tests for panics in TResourceReaderImpl class, through RResourceReader class
1.439 + PanicTResImp1();
1.440 + PanicTResImp2();
1.441 + PanicTResImp3();
1.442 + PanicTResImp4();
1.443 +
1.444 + User::SetJustInTime(jit);
1.445 + return KErrNone;
1.446 + }
1.447 +
1.448 +/**
1.449 +@SYMTestCaseID SYSLIB-BAFL-CT-0440
1.450 +@SYMTestCaseDesc Resource reader test
1.451 +@SYMTestPriority High
1.452 +@SYMTestActions Executes all the tests related to resource read
1.453 +@SYMTestExpectedResults Tests must not fail
1.454 +@SYMREQ REQ0000
1.455 +*/
1.456 +void RunTests()
1.457 + {
1.458 + test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0440 Resource reader "));
1.459 + TheFs.Connect();
1.460 + TheResourceFile.OpenL(TheFs,KRomResourceFile);
1.461 + TRsReadTester lt;
1.462 + TRAPD(errCode, lt.TestButtonL());
1.463 + test(errCode==KErrNone);
1.464 + TRAP(errCode, lt.TestArrayL());
1.465 + test(errCode==KErrNone);
1.466 + TRAP(errCode, lt.TestFlPtEdL());
1.467 + test(errCode==KErrNone);
1.468 + TRAP(errCode, lt.TestMenuBarL());
1.469 + test(errCode==KErrNone);
1.470 + TRAP(errCode, lt.TestAlignment1L());
1.471 + test(errCode==KErrNone);
1.472 + TRAP(errCode, lt.TestAlignment2L());
1.473 + test(errCode==KErrNone);
1.474 + TRAP(errCode, lt.TimingTestsL());
1.475 + test(errCode==KErrNone);
1.476 + TheResourceFile.Close();
1.477 + //Test that raises panics
1.478 + test(KErrNone==lt.PanicTests());
1.479 +
1.480 + TheFs.Close();
1.481 + test.End();
1.482 + test.Close();
1.483 + }
1.484 +
1.485 +TInt E32Main()
1.486 + {
1.487 + __UHEAP_MARK;
1.488 + CTrapCleanup *cleanup=CTrapCleanup::New();
1.489 + test.Title();
1.490 + TRAPD(err,RunTests());
1.491 + test(!err);
1.492 + test.Close();
1.493 + delete(cleanup);
1.494 + __UHEAP_MARKEND;
1.495 + return(0);
1.496 + }