Update contrib.
1 // Copyright (c) 2001-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.
23 #include <t_compressed_unicode_1.rsg>
24 #include <t_compressed_unicode_2.rsg>
26 RTest test=_L("T_RESOURCE_COMPRESSION");
27 RFs fileServerSession;
28 _LIT8(KRscFileHeaderData, "0123456789ABCDEF");
29 _LIT(KRomResourceFileHeader, "z:\\system\\data\\RscHeader.bin");
31 LOCAL_D const TPtrC rsc_files[] =
33 _L("T_COMPRESSED_UNICODE_1.RSC")
34 , _L("T_COMPRESSED_UNICODE_2.RSC")
35 , _L("T_DICTIONARY_COMPRESSED_VERSIO_OF_2.RSC")
36 , _L("T_CALYPSO_TEST_RESOURCE_FILE_1.RSC")
37 , _L("T_NotRscFile.RSC")
38 , _L("TRscROMCalypsoComprNewFmt.rsc")
40 _LIT(KZDir, "z:\\system\\data\\");
43 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
45 // make sure the file is read/write
46 TInt err = fileServerSession.SetAtt(aFullName,0, KEntryAttReadOnly);
49 RDebug::Print(_L("error changing attributes file = %d"),err);
52 err = BaflUtils::DeleteFile(fileServerSession, aFullName);
55 RDebug::Print(_L("error deleting file = %d"),err);
59 LOCAL_C TInt FileSizeL(const TDesC& aFileName)
62 User::LeaveIfError(file.Open(fileServerSession, aFileName, EFileRead));
63 CleanupClosePushL(file);
65 User::LeaveIfError(file.Size(size));
66 CleanupStack::PopAndDestroy(&file);
70 LOCAL_C void CreateFileFromL(const TDesC& aDestFileName, const TDesC& aSrcFileName)
75 CleanupClosePushL(destFile);
76 CleanupClosePushL(srcFile);
78 BaflUtils::DeleteFile(fileServerSession, aDestFileName);
79 User::LeaveIfError(destFile.Create(fileServerSession, aDestFileName, EFileRead | EFileWrite));
81 User::LeaveIfError(srcFile.Open(fileServerSession, aSrcFileName, EFileRead));
83 User::LeaveIfError(srcFile.Size(size));
84 HBufC8* buf = HBufC8::NewMaxLC(size);
85 TPtr8 ptr = buf->Des();
88 destFile.Write(KRscFileHeaderData);
91 CleanupStack::PopAndDestroy(buf);
92 CleanupStack::PopAndDestroy(&srcFile);
93 CleanupStack::PopAndDestroy(&destFile);
96 LOCAL_C void CreateFileFromL(TDes& aDestFilePath, const TDesC& aDestFileName, const TDesC& aSrcFilePath)
98 aDestFilePath.Copy(KCDir);
99 aDestFilePath += _L("N_");
100 aDestFilePath += aDestFileName;
101 CreateFileFromL(aDestFilePath, aSrcFilePath);
105 @SYMTestCaseID SYSLIB-BAFL-CT-0451
106 @SYMTestCaseDesc RResourceReader class functionality test
107 @SYMTestPriority High
108 @SYMTestActions Tests for reading descriptors,integers
109 @SYMTestExpectedResults Tests must not fail
112 LOCAL_C void Test1(const TDesC& aResourceFileName, TUint aFileOffset = 0, TInt aFileSize = 0)
114 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0451 "));
115 RResourceFile resourceFile;
116 CleanupClosePushL(resourceFile);
117 resourceFile.OpenL(fileServerSession, aResourceFileName, aFileOffset, aFileSize);
118 test(resourceFile.UidType()==TUidType(TUid::Uid(0x101f4a6b), TUid::Uid(0x000eb205), TUid::Uid(TUint(T_COMPRESSED_UNICODE_1_RESOURCE_1)>>12)));
120 TResourceReader resourceReader;
122 resource=resourceFile.AllocReadLC(1);
123 test(resource->Length()%sizeof(TText)==0);
124 test(TPtrC((TText*)resource->Ptr(), resource->Length()/sizeof(TText))==_L("Gruezi miteinander"));
125 CleanupStack::PopAndDestroy(resource);
127 resource=resourceFile.AllocReadLC(2);
128 resourceReader.SetBuffer(resource);
129 test(resourceReader.ReadUint16()==4);
130 test(resourceReader.ReadTPtrC()==_L("Bonjour"));
131 test(resourceReader.ReadTPtrC()==_L("Ni3 hao3"));
132 test(resourceReader.ReadTPtrC()==_L("Konnichiwa"));
133 test(resourceReader.ReadTPtrC()==_L("Zdravstvuit'e"));
134 CleanupStack::PopAndDestroy(resource);
136 resource=resourceFile.AllocReadLC(3);
137 resourceReader.SetBuffer(resource);
138 test(resourceReader.ReadUint16()==3);
139 test(resourceReader.ReadTPtrC()==_L("Gamarjoba"));
140 test(resourceReader.ReadTPtrC()==_L("Gasou"));
141 test(resourceReader.ReadTPtrC()==_L("Ola"));
142 CleanupStack::PopAndDestroy(resource);
144 resource=resourceFile.AllocReadLC(4);
145 resourceReader.SetBuffer(resource);
146 test(resourceReader.ReadUint16()==3);
147 test(resourceReader.ReadUint8()==0xbd);
148 test(resourceReader.ReadUint8()==0x5e);
149 test(resourceReader.ReadUint8()==0xf1);
150 CleanupStack::PopAndDestroy(resource);
152 resource=resourceFile.AllocReadLC(5);
153 resourceReader.SetBuffer(resource);
154 test(resourceReader.ReadUint32()==4);
155 test(resourceReader.ReadUint32()==T_COMPRESSED_UNICODE_1_RESOURCE_5);
156 CleanupStack::PopAndDestroy(resource);
158 resource=resourceFile.AllocReadLC(6);
159 test(resource->Length()%sizeof(TText)==0);
160 test(TPtrC((TText*)resource->Ptr(), resource->Length()/sizeof(TText))==_L("_"));
161 CleanupStack::PopAndDestroy(resource);
163 resource=resourceFile.AllocReadLC(7);
164 resourceReader.SetBuffer(resource);
165 test(resourceReader.ReadUint8()==9);
166 test(resourceReader.ReadTPtrC()==_L("To"));
167 test(resourceReader.ReadUint8()==97);
168 CleanupStack::PopAndDestroy(resource);
170 resource=resourceFile.AllocReadLC(8);
171 resourceReader.SetBuffer(resource);
172 test(resourceReader.ReadUint16()==999);
173 test(resourceReader.ReadTPtrC()==_L("To"));
174 test(resourceReader.ReadUint8()==79);
175 CleanupStack::PopAndDestroy(resource);
177 resource=resourceFile.AllocReadLC(9);
178 resourceReader.SetBuffer(resource);
179 test(resourceReader.ReadUint16()==53132);
180 test(resourceReader.ReadTPtrC()==_L("T"));
181 test(resourceReader.ReadUint8()==62);
182 CleanupStack::PopAndDestroy(resource);
184 resource=resourceFile.AllocReadLC(10);
185 resourceReader.SetBuffer(resource);
186 test(resourceReader.ReadInt32()==1253869);
187 test(resourceReader.ReadInt32()==-986324);
188 test(resourceReader.ReadUint32()==0x600ddea1u);
189 CleanupStack::PopAndDestroy(resource);
191 CleanupStack::PopAndDestroy(&resourceFile);
195 @SYMTestCaseID SYSLIB-BAFL-CT-0452
196 @SYMTestCaseDesc RResourceReader class test
197 Tests for RResourceReader::UidType() function
198 @SYMTestPriority High
199 @SYMTestActions Tests for reading compressed unicode
200 @SYMTestExpectedResults Tests must not fail
203 LOCAL_C void Test2(const TDesC& aResourceFileName, TUid aFirstUid, TUint aFileOffset = 0, TInt aFileSize = 0)
205 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0452 "));
206 RResourceFile resourceFile;
207 CleanupClosePushL(resourceFile);
208 resourceFile.OpenL(fileServerSession, aResourceFileName, aFileOffset, aFileSize);
209 test(resourceFile.UidType()==TUidType(aFirstUid, TUid::Null(), TUid::Uid(TUint(T_COMPRESSED_UNICODE_2_RESOURCE_1)>>12)));
211 TResourceReader resourceReader;
213 resource=resourceFile.AllocReadLC(1);
214 resourceReader.SetBuffer(resource);
215 test(resourceReader.ReadUint32()==4);
216 test(resourceReader.ReadUint32()==T_COMPRESSED_UNICODE_2_RESOURCE_1);
217 CleanupStack::PopAndDestroy(resource);
219 resource=resourceFile.AllocReadLC(2);
220 test(resource->Length()%sizeof(TText)==0);
221 test(TPtrC((TText*)resource->Ptr(), resource->Length()/sizeof(TText))==_L("My program is cool"));
222 CleanupStack::PopAndDestroy(resource);
224 resource=resourceFile.AllocReadLC(3);
225 test(resource->Length()%sizeof(TText)==0);
226 test(TPtrC((TText*)resource->Ptr(), resource->Length()/sizeof(TText))==_L("z:\\system\\data\\eikon.mbm"));
227 CleanupStack::PopAndDestroy(resource);
229 resource=resourceFile.AllocReadLC(4);
230 resourceReader.SetBuffer(resource);
231 test(resourceReader.ReadInt32()==9174804);
232 test(resourceReader.ReadUint8()==6);
233 test(resourceReader.ReadInt32()==-6208493);
234 test(resourceReader.ReadUint16()==0x3176);
235 CleanupStack::PopAndDestroy(resource);
237 resource=resourceFile.AllocReadLC(5);
238 resourceReader.SetBuffer(resource);
239 test(resourceReader.ReadInt32()==-120727);
240 test(resourceReader.ReadInt32()==-82385253);
241 test(resourceReader.ReadUint16()==0x3176);
242 CleanupStack::PopAndDestroy(resource);
244 resource=resourceFile.AllocReadLC(6);
245 resourceReader.SetBuffer(resource);
246 test(resourceReader.ReadUint8()==2);
247 test(resourceReader.ReadTPtrC()==_L("z:\\system\\data\\uikon.mbm"));
248 test(resourceReader.ReadTPtrC()==_L("z:\\system\\apps\\my_program\\my_program.mbm"));
249 CleanupStack::PopAndDestroy(resource);
251 CleanupStack::PopAndDestroy(&resourceFile);
255 @SYMTestCaseID SYSLIB-BAFL-CT-0453
256 @SYMTestCaseDesc RResourceReader class test
257 Tests the calypso resource file format for loading and reading
258 @SYMTestPriority High
259 @SYMTestActions Tests for reading calypso resource file format
260 @SYMTestExpectedResults Tests must not fail
263 LOCAL_C void Test3(const TDesC& aResourceFileName, TUint aFileOffset = 0, TInt aFileSize = 0)
265 /* This function tests the calypso resoruce file format loading/reading
266 * and was derived from the Test1 function above. Therefore the resource
267 * file it reads is also derived from the file used in test 1.
270 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0453 "));
271 RResourceFile resourceFile;
272 CleanupClosePushL(resourceFile);
273 resourceFile.OpenL(fileServerSession, aResourceFileName, aFileOffset, aFileSize);
275 TResourceReader resourceReader;
277 resource=resourceFile.AllocReadLC(1);
278 test(resource->Length()%sizeof(TText)==0);
279 test(TPtrC((TText*)resource->Ptr(), resource->Length()/sizeof(TText))==_L("Gruezi miteinander"));
280 CleanupStack::PopAndDestroy(resource);
282 resource=resourceFile.AllocReadLC(2);
283 resourceReader.SetBuffer(resource);
284 test(resourceReader.ReadUint16()==4);
285 test(resourceReader.ReadTPtrC()==_L("Bonjour"));
286 test(resourceReader.ReadTPtrC()==_L("Ni3 hao3"));
287 test(resourceReader.ReadTPtrC()==_L("Konnichiwa"));
288 test(resourceReader.ReadTPtrC()==_L("Zdravstvuit'e"));
289 CleanupStack::PopAndDestroy(resource);
291 resource=resourceFile.AllocReadLC(3);
292 resourceReader.SetBuffer(resource);
293 test(resourceReader.ReadUint16()==3);
294 test(resourceReader.ReadTPtrC()==_L("Gamarjoba"));
295 test(resourceReader.ReadTPtrC()==_L("Gasou"));
296 test(resourceReader.ReadTPtrC()==_L("Ola"));
297 CleanupStack::PopAndDestroy(resource);
299 resource=resourceFile.AllocReadLC(4);
300 resourceReader.SetBuffer(resource);
301 test(resourceReader.ReadUint16()==3);
302 test(resourceReader.ReadUint8()==0xbd);
303 test(resourceReader.ReadUint8()==0x5e);
304 test(resourceReader.ReadUint8()==0xf1);
305 CleanupStack::PopAndDestroy(resource);
307 resource=resourceFile.AllocReadLC(5);
308 resourceReader.SetBuffer(resource);
309 test(resourceReader.ReadUint32()==4);
310 test(resourceReader.ReadUint32()==T_COMPRESSED_UNICODE_1_RESOURCE_5);
311 CleanupStack::PopAndDestroy(resource);
313 resource=resourceFile.AllocReadLC(6);
314 test(resource->Length()%sizeof(TText)==0);
315 test(TPtrC((TText*)resource->Ptr(), resource->Length()/sizeof(TText))==_L("_"));
316 CleanupStack::PopAndDestroy(resource);
318 resource=resourceFile.AllocReadLC(7);
319 resourceReader.SetBuffer(resource);
320 test(resourceReader.ReadUint8()==9);
321 test(resourceReader.ReadTPtrC()==_L("To"));
322 test(resourceReader.ReadUint8()==97);
323 CleanupStack::PopAndDestroy(resource);
325 resource=resourceFile.AllocReadLC(8);
326 resourceReader.SetBuffer(resource);
327 test(resourceReader.ReadUint16()==999);
328 test(resourceReader.ReadTPtrC()==_L("To"));
329 test(resourceReader.ReadUint8()==79);
330 CleanupStack::PopAndDestroy(resource);
332 resource=resourceFile.AllocReadLC(9);
333 resourceReader.SetBuffer(resource);
334 test(resourceReader.ReadUint16()==53132);
335 test(resourceReader.ReadTPtrC()==_L("T"));
336 test(resourceReader.ReadUint8()==62);
337 CleanupStack::PopAndDestroy(resource);
339 resource=resourceFile.AllocReadLC(10);
340 resourceReader.SetBuffer(resource);
341 test(resourceReader.ReadInt32()==1253869);
342 test(resourceReader.ReadInt32()==-986324);
343 test(resourceReader.ReadUint32()==0x600ddea1u);
344 CleanupStack::PopAndDestroy(resource);
346 CleanupStack::PopAndDestroy(&resourceFile);
350 @SYMTestCaseID SYSLIB-BAFL-CT-0454
351 @SYMTestCaseDesc Tests for reading calypso resource file for signature.
352 Calypso resource files do not have signatures.
353 @SYMTestPriority High
354 @SYMTestActions Tests for RResourceFile::ConfirmSignatureL() function
355 @SYMTestExpectedResults Tests must not fail
358 LOCAL_C void Test4(const TDesC& aResourceFileName, TUint aFileOffset = 0, TInt aFileSize = 0)
360 /* This function tests the behaviour of bafl when reading a calypso resource file
361 * for a signature. Calypso resource files do not have signatures.
364 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0454 "));
365 RResourceFile resourceFile;
366 CleanupClosePushL(resourceFile);
367 resourceFile.OpenL(fileServerSession, aResourceFileName, aFileOffset, aFileSize);
369 // Need to pass the TInt as required, but doesn't
370 // use it. Legacy for BC sake.
372 TRAP(err, resourceFile.ConfirmSignatureL(1));
373 test(err == KErrCorrupt);
375 // New function that has further test to confirm absence of signature
376 // Hopefully we can get clients to move over to this in future.
377 TRAP(err, resourceFile.ConfirmSignatureL());
378 test(err == KErrCorrupt);
380 CleanupStack::PopAndDestroy(&resourceFile);
384 @SYMTestCaseID SYSLIB-BAFL-CT-0456
385 @SYMTestCaseDesc Tests the behaviour of BAFL when reading a resource file for a signature.
386 @SYMTestPriority High
387 @SYMTestActions Tests for reading a resource file for signature.
388 In this case the signature is present and is NOT the first resource.
389 @SYMTestExpectedResults Tests must not fail
392 LOCAL_C void Test5(const TDesC& aResourceFileName, TUint aFileOffset = 0, TInt aFileSize = 0)
394 /* This function tests the behaviour of bafl when reading a resource file
396 * In this case the signature is present and is NOT the first resource.
399 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0456 "));
400 RResourceFile resourceFile;
401 CleanupClosePushL(resourceFile);
402 resourceFile.OpenL(fileServerSession, aResourceFileName, aFileOffset, aFileSize);
404 // Need to pass the TInt as required, but doesn't
405 // use it. Legacy for BC sake.
407 TRAP(err, resourceFile.ConfirmSignatureL(1));
408 test(err == KErrCorrupt);
410 // New function that has further test to confirm absence of signature
411 // Hopefully we can get clients to move over to this in future.
412 TRAP(err, resourceFile.ConfirmSignatureL());
413 test(err == KErrCorrupt);
415 CleanupStack::PopAndDestroy(&resourceFile);
419 @SYMTestCaseID SYSLIB-BAFL-CT-0457
420 @SYMTestCaseDesc Tests the behaviour of BAFL when reading a resource file for a signature.
421 The signature is present and is the first resource.
422 @SYMTestPriority High
423 @SYMTestActions Tests for RResourceFile::ConfirmSignatureL() function
424 @SYMTestExpectedResults Tests must not fail
427 LOCAL_C void Test6(const TDesC& aResourceFileName, TUint aFileOffset = 0, TInt aFileSize = 0)
429 /* This function tests the behaviour of bafl when reading a resource file
431 * In this case the signature is present and is the first resource.
434 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0457 "));
435 RResourceFile resourceFile;
436 CleanupClosePushL(resourceFile);
437 resourceFile.OpenL(fileServerSession, aResourceFileName, aFileOffset, aFileSize);
439 // Need to pass the TInt as required, but doesn't
440 // use it. Legacy for BC sake.
442 TRAP(err, resourceFile.ConfirmSignatureL(1));
443 test(err == KErrNone);
445 // New function that has further test to confirm absence of signature
446 // Hopefully we can get clients to move over to this in future.
447 TRAP(err, resourceFile.ConfirmSignatureL());
448 test(err == KErrNone);
450 CleanupStack::PopAndDestroy(&resourceFile);
454 @SYMTestCaseID SYSLIB-BAFL-CT-0458
455 @SYMTestCaseDesc Tests the behaviour of BAFL when reading a non resource file
456 @SYMTestPriority High
457 @SYMTestActions Attempt to open a non resource file.
458 @SYMTestExpectedResults Tests must not fail
461 LOCAL_C void Test7(const TDesC& aResourceFileName, TUint aFileOffset = 0, TInt aFileSize = 0)
463 /* This function tests the behaviour of bafl when reading a non resource file.
466 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0458 "));
467 RResourceFile resourceFile;
468 CleanupClosePushL(resourceFile);
470 // Need to pass the TInt as required, but doesn't
471 // use it. Legacy for BC sake.
474 TRAP(err, resourceFile.OpenL(fileServerSession, aResourceFileName, aFileOffset, aFileSize));
475 test(err != KErrNotFound && err != KErrNone);
477 CleanupStack::PopAndDestroy(&resourceFile);
481 @SYMTestCaseID SYSLIB-BAFL-CT-0459
482 @SYMTestCaseDesc Tests resource files containing Unicode-compressed text
483 @SYMTestPriority High
484 @SYMTestActions Calls up Test1() and Test2() functions
485 @SYMTestExpectedResults Test must not fail
488 LOCAL_C void SubTest1L()
490 test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0459 Testing resource files containing Unicode-compressed text "));
495 z_path += rsc_files[0];
497 CreateFileFromL(c_path, rsc_files[0], z_path);
498 Test1(c_path, KRscFileHeaderData().Length(), FileSizeL(z_path));
499 DeleteDataFile(c_path);
502 z_path.Append(rsc_files[1]);
503 Test2(z_path, TUid::Uid(0x101f4a6b));
504 CreateFileFromL(c_path, rsc_files[1], z_path);
505 Test2(c_path, TUid::Uid(0x101f4a6b), KRscFileHeaderData().Length(), FileSizeL(z_path));
506 DeleteDataFile(c_path);
510 @SYMTestCaseID SYSLIB-BAFL-CT-0460
511 @SYMTestCaseDesc Tests for dictionary-compressed resource files
512 @SYMTestPriority High
513 @SYMTestActions Check by reading the dictionary-compressed resource files
514 @SYMTestExpectedResults Test must not fail
517 LOCAL_C void SubTest2L()
519 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0460 Testing dictionary-compressed resource files "));
524 z_path.Append(rsc_files[2]);
525 Test2(z_path, TUid::Uid(0x101f5010));
526 CreateFileFromL(c_path, rsc_files[2], z_path);
527 Test2(c_path, TUid::Uid(0x101f5010), KRscFileHeaderData().Length(), FileSizeL(z_path));
528 DeleteDataFile(c_path);
532 @SYMTestCaseID SYSLIB-BAFL-CT-0461
533 @SYMTestCaseDesc Tests for reading the Calypso ER5u format dictionary-compressed resource files
534 @SYMTestPriority High
535 @SYMTestActions Wrapper function calling up Test3() function
536 @SYMTestExpectedResults Test must not fail
539 LOCAL_C void SubTest3L()
541 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0461 Testing Calypso ER5u format dictionary-compressed resource files "));
546 z_path.Append(rsc_files[3]);
549 CreateFileFromL(c_path, rsc_files[3], z_path);
550 Test3(c_path, KRscFileHeaderData().Length(), FileSizeL(z_path));
551 DeleteDataFile(c_path);
554 z_path.Append(rsc_files[5]);
555 Test3(z_path, FileSizeL(KRomResourceFileHeader), FileSizeL(z_path) - FileSizeL(KRomResourceFileHeader));
559 @SYMTestCaseID SYSLIB-BAFL-CT-0462
560 @SYMTestCaseDesc Tests for resource file missing signature behaviour
561 @SYMTestPriority High
562 @SYMTestActions Wrapper function calling up Test4() function
563 @SYMTestExpectedResults Test must not fail
566 LOCAL_C void SubTest4L()
568 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0462 Testing resource file missing signature behaviour "));
573 z_path.Append(rsc_files[3]);
576 CreateFileFromL(c_path, rsc_files[3], z_path);
577 Test4(c_path, KRscFileHeaderData().Length(), FileSizeL(z_path));
578 DeleteDataFile(c_path);
582 @SYMTestCaseID SYSLIB-BAFL-CT-0463
583 @SYMTestCaseDesc Testing resource file signature present and not in order behaviour
584 @SYMTestPriority High
585 @SYMTestActions Wrapper function calling up Test5() function
586 @SYMTestExpectedResults Test must not fail
589 LOCAL_C void SubTest5L()
591 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0463 Testing resource file signature present and not in order behaviour "));
596 z_path.Append(rsc_files[0]);
599 CreateFileFromL(c_path, rsc_files[0], z_path);
600 Test5(c_path, KRscFileHeaderData().Length(), FileSizeL(z_path));
601 DeleteDataFile(c_path);
605 @SYMTestCaseID SYSLIB-BAFL-CT-0464
606 @SYMTestCaseDesc Tests for resource file signature and in order behaviour
607 @SYMTestPriority High
608 @SYMTestActions Wrapper function calling up Test6() function
609 @SYMTestExpectedResults Test must not fail
612 LOCAL_C void SubTest6L()
614 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0464 Testing resource file signature present and in order behaviour "));
619 z_path.Append(rsc_files[1]);
622 CreateFileFromL(c_path, rsc_files[1], z_path);
623 Test6(c_path, KRscFileHeaderData().Length(), FileSizeL(z_path));
624 DeleteDataFile(c_path);
628 @SYMTestCaseID SYSLIB-BAFL-CT-0465
629 @SYMTestCaseDesc Tests for invalid resource file
630 @SYMTestPriority High
631 @SYMTestActions Wrapper function calling up Test7() function
632 @SYMTestExpectedResults Test must not fail
635 LOCAL_C void SubTest7L()
637 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0465 Testing invalid resource file "));
642 z_path.Append(rsc_files[4]);
645 CreateFileFromL(c_path, rsc_files[4], z_path);
646 Test7(c_path, KRscFileHeaderData().Length(), FileSizeL(z_path));
647 DeleteDataFile(c_path);
650 LOCAL_C void DoE32MainL()
652 CleanupClosePushL(fileServerSession);
653 User::LeaveIfError(fileServerSession.Connect());
663 CleanupStack::PopAndDestroy(1, &fileServerSession);
666 GLDEF_C TInt E32Main()
669 CTrapCleanup* trapCleanup=CTrapCleanup::New();
670 TRAPD(error, DoE32MainL());
671 test(error == KErrNone);