Update contrib.
1 // Copyright (c) 1997-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 // Started by MJB, May 1995
15 // Updated Nov 1996 by PNJ for Unicode.
16 // Tests RResourceFile class
28 LOCAL_D RTest test(_L("T_RSC"));
31 _LIT(KRamResourceFile, "c:\\T_RSC.RSC");
32 _LIT(KRamResourceFile2, "c:\\NewRscFormat.RSC");
33 _LIT(KFailResourceFile,"z:\\system\\data\\nonexist.rsc");
35 LOCAL_C TInt compare( const TDesC8 &aresbuf, const TDesC &abuf, TBool aUnicode )
36 // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
38 // Compare a buffer taken from a resource file with one that was defined in
39 // source code. All resources read at this level are read as pure data.
40 // However, the resource file entries for this test code are defined as
41 // generic text, which may be 8 or 16 bit codes, depending on how the
42 // resource was compiled. The third parameter indicates which is expected.
45 // Return a true value if the text matches, else false.
47 // ----------------------------------------------------------------------------
50 TInt count = abuf.Length();
52 // exit immediately of the strings are of different length.
53 if ( abuf.Size() != aresbuf.Size() ) return FALSE;
55 // loop through character by character and exit if any comparison fails.
62 TInt bi; // byte index
65 uch = (aresbuf[bi+1]<<8) | aresbuf[bi];
66 if ( uch != abuf[count] ) return FALSE;
74 if ( aresbuf[count] != abuf[count] ) return FALSE;
80 } // end of compare function.
83 LOCAL_C void CopyFileL(const TDesC& aFrom,const TDesC& aTo)
89 CFileMan* man=CFileMan::NewL(TheFs);
90 TInt r=man->Copy(aFrom,aTo);
92 User::LeaveIfError(r);
93 User::LeaveIfError(TheFs.SetAtt(aTo,0,KEntryAttReadOnly)); // clear RO
96 LOCAL_C void DeleteFile(const TDesC& aFileName)
101 // make sure the file is read/write
102 TInt err = TheFs.SetAtt(aFileName, 0, KEntryAttReadOnly);
105 RDebug::Print(_L("error changing attributes file = %d"),err);
108 err = BaflUtils::DeleteFile(TheFs, aFileName);
111 RDebug::Print(_L("error deleting file = %d"),err);
115 LOCAL_C TInt FileSizeL(const TDesC& aFileName)
118 User::LeaveIfError(file.Open(TheFs, aFileName, EFileRead));
119 CleanupClosePushL(file);
121 User::LeaveIfError(file.Size(size));
122 CleanupStack::PopAndDestroy(&file);
126 template <class T> class TestRsc
129 void TestReadL(T* aRscFile);
132 class TestRRsc : public TestRsc<RResourceFile>
135 void TestReadROldL(const TDesC &aTitle, const TDesC &aFileName);
136 void TestReadRNewL(const TDesC &aTitle, const TDesC &aFileName, TUint aFileOffset, TUint aFileSize);
140 class TestCRsc : public TestRsc<CResourceFile>
143 void TestReadCNewL(const TDesC &aTitle, const TDesC &aFileName, TUint aFileOffset, TUint aFileSize);
148 @SYMTestCaseID SYSLIB-BAFL-CT-0427
149 @SYMTestCaseDesc RResourceFile class functionality test
150 @SYMTestPriority Medium
151 @SYMTestActions Attempts to read from an 8 and 16 bit resource file
152 @SYMTestExpectedResults Tests must not fail
155 void TestRRsc::TestReadROldL(const TDesC &aTitle, const TDesC &aFileName)
158 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0427 "));
160 CleanupClosePushL(rsc);
161 rsc.OpenL(TheFs, aFileName);
163 CleanupStack::PopAndDestroy();
168 @SYMTestCaseID SYSLIB-BAFL-CT-0428
169 @SYMTestCaseDesc Tests for RResourceFile::OpenL(,,,) function
170 @SYMTestPriority Medium
171 @SYMTestActions Attempt to read from a resource file
172 @SYMTestExpectedResults Tests must not fail
175 void TestRRsc::TestReadRNewL(const TDesC &aTitle, const TDesC &aFileName, TUint aFileOffset, TUint aFileSize)
178 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0428 "));
180 CleanupClosePushL(rsc);
181 rsc.OpenL(TheFs, aFileName, aFileOffset, aFileSize);
183 CleanupStack::PopAndDestroy();
188 @SYMTestCaseID SYSLIB-BAFL-CT-0429
189 @SYMTestCaseDesc Testing error recovery - R file
190 @SYMTestPriority Medium
191 @SYMTestActions Attempt to read a resouce file,should recover on error.
192 @SYMTestExpectedResults Tests must not fail
195 void TestRRsc::TestOpenR()
197 test.Start(_L("Testing error recovery - R file"));
198 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0429 "));
199 RResourceFile rsc_file;
200 TRAPD(err, rsc_file.OpenL(TheFs, KFailResourceFile));
201 test(err != KErrNone);
206 @SYMTestCaseID SYSLIB-BAFL-CT-0430
207 @SYMTestCaseDesc Tests for RResourceFile::NewL() function
208 @SYMTestPriority Medium
209 @SYMTestActions Tests for reading the new resource file
210 @SYMTestExpectedResults Tests must not fail
213 void TestCRsc::TestReadCNewL(const TDesC &aTitle, const TDesC &aFileName, TUint aFileOffset, TUint aFileSize)
216 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0430 "));
217 CResourceFile* rsc = CResourceFile::NewL(TheFs, aFileName, aFileOffset, aFileSize);
218 CleanupStack::PushL(rsc);
220 CleanupStack::PopAndDestroy(rsc);
225 @SYMTestCaseID SYSLIB-BAFL-CT-0431
226 @SYMTestCaseDesc Testing error recovery - C file
227 @SYMTestPriority Medium
228 @SYMTestActions Tests for new open resource file,should recover on error
229 @SYMTestExpectedResults Tests must not fail
232 void TestCRsc::TestOpenC()
234 test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0431 Testing error recovery - C file "));
235 CResourceFile* rsc_file = NULL;
236 TRAPD(err, rsc_file = CResourceFile::NewL(TheFs, KFailResourceFile, 0, 0));
237 test(err != KErrNone);
242 template <class T> void TestRsc<T>::TestReadL(T* aRscFile)
246 // First test to see if we have an 8 or 16-bit text resource file.
247 // This is done by looking at a signature resource that is defined
248 // as an LTEXT item and seeing how its length computes.
251 test.Next(_L("Testing 8 or 16-bit signature"));
254 TBool isUnicode = EFalse;
256 HBufC8 *ps = aRscFile->AllocReadL(R_TEXT_SIGNATURE);
257 TPtr8 sig = ps->Des();
259 TInt l = sig.Length(); // length of the raw resource data
260 TInt sig_count = sig[0]; // count byte at the start of the LTEXT
262 if ( l == (1 + sig_count) ) // count + TText8 data
264 test.Printf(_L("8-bit resource text\n"));
267 if ( l == (1+1+(sig_count*2)) ) // count + padding + TText16 data
270 test.Printf(_L("Unicode resource text...\n"));
271 test(sig[1]==0xAB); // check for the defined padding byte
274 test.Printf(_L("Invalid signature found\n"));
278 for (ii=SYS_SPECIAL_CHARACTERS;ii<=SYS_PAGE_IS;ii++)
280 TPtrC des=TPtrC(S_Resource[ii]);
282 testbuf.Format(_L("Testing ReadL for resource: \"%S\""),&des);
285 aRscFile->ReadL(buf,ii);
286 test(compare(buf,des,isUnicode));
289 for (ii=SYS_SPECIAL_CHARACTERS;ii<=SYS_PAGE_IS;ii++)
291 TPtrC des=TPtrC(S_Resource[ii]);
293 testbuf.Format(_L("Testing AllocReadL for resource: \"%S\""),&des);
295 HBufC8 *p=aRscFile->AllocReadL(ii);
297 test(compare(wp,des,isUnicode));
301 for (ii=SYS_SPECIAL_CHARACTERS;ii<=SYS_PAGE_IS;ii++)
303 TPtrC des=TPtrC(S_Resource[ii]);
305 testbuf.Format(_L("Testing AllocReadLC for resource: \"%S\""),&des);
307 HBufC8 *p=aRscFile->AllocReadLC(ii);
309 test(compare(wp,des,isUnicode));
310 CleanupStack::PopAndDestroy();
315 @SYMTestCaseID SYSLIB-BAFL-CT-0432
316 @SYMTestCaseDesc Testing RResourceFile & CResourceFile classes
317 @SYMTestPriority High
318 @SYMTestActions Wrapper function, calls up test execute functions
319 @SYMTestExpectedResults Tests must not fail
322 LOCAL_C void DoTestsL()
324 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0432 "));
325 CleanupClosePushL(TheFs);
326 User::LeaveIfError(TheFs.Connect());
328 test.Printf(_L("Copying resource files to RAM\r\n"));
329 CopyFileL(KRomResourceFile,KRamResourceFile);
330 CopyFileL(KRomResourceFile2,KRamResourceFile2);
332 //The new resource format rsc file is compiled from RscHeader.bin, TRsc.rsc and 16RAMC.mbm.
333 //So I want to know the offset and size of TRsc.rsc.
334 TInt header_size = ::FileSizeL(KRomResourceFileHeader);
335 TInt rsc_size1 = ::FileSizeL(KRomResourceFile);
336 TInt rsc_size2 = ::FileSizeL(KRamResourceFile);
340 t1.TestReadROldL(_L("Testing ROM Resource file T_RSC.RSC"),KRomResourceFile);
342 t1.TestReadRNewL(_L("Testing ROM Resource file NewRscFormat.RSC"),
347 t1.TestReadROldL(_L("Testing RAM Resource file T_RSC.RSC"),KRamResourceFile);
349 t1.TestReadRNewL(_L("Testing RAM Resource file NewRscFormat.RSC"),
358 t2.TestReadCNewL(_L("Testing ROM Resource file T_RSC.RSC"),KRomResourceFile, 0, 0);
360 t2.TestReadCNewL(_L("Testing ROM Resource file NewRscFormat.RSC"),
365 t2.TestReadCNewL(_L("Testing RAM Resource file T_RSC.RSC"),KRamResourceFile, 0, 0);
367 t2.TestReadCNewL(_L("Testing RAM Resource file NewRscFormat.RSC"),
375 DeleteFile(KRamResourceFile);
376 DeleteFile(KRamResourceFile2);
378 CleanupStack::PopAndDestroy(1, &TheFs);
381 GLDEF_C TInt E32Main()
384 CTrapCleanup *cleanup=CTrapCleanup::New();
386 test.Start(_L("Testing RResourceFile & CResourceFile"));
387 TRAPD(err,DoTestsL());
388 test.Printf(_L("Error code is %d\n"),err);