os/ossrv/lowlevellibsandfws/apputils/tsrc/T_RESOURCE_COMPRESSION2.CPP
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 // Copyright (c) 2003-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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include <e32std.h>
    17 #include <e32base.h>
    18 #include <e32test.h>
    19 #include <f32file.h>
    20 #include <bautils.h>
    21 #include <barsc2.h>
    22 #include <barsread2.h>
    23 #include <t_compressed_unicode_1.rsg>
    24 #include <t_compressed_unicode_2.rsg>
    25 
    26 RTest test(_L("T_RESOURCE_COMPRESSION2"));
    27 RFs fileServerSession;
    28 _LIT8(KRscFileHeaderData, "0123456789ABCDEF");
    29 _LIT(KRomResourceFileHeader, "z:\\system\\data\\RscHeader.bin");
    30 
    31 LOCAL_D const TPtrC rsc_files[] =
    32 	{
    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")
    39 	};
    40 _LIT(KZDir, "z:\\system\\data\\");
    41 _LIT(KCDir, "c:\\");
    42 
    43 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
    44 	{
    45 	// make sure the file is read/write
    46 	TInt err = fileServerSession.SetAtt(aFullName,0, KEntryAttReadOnly);
    47 	if(err != KErrNone)
    48 		{
    49 		RDebug::Print(_L("error changing attributes file = %d"),err);
    50 		}
    51 	// delete the file
    52 	err = BaflUtils::DeleteFile(fileServerSession, aFullName);
    53 	if(err != KErrNone)
    54 		{
    55 		RDebug::Print(_L("error deleting file = %d"),err);
    56 		}
    57 	}
    58 
    59 LOCAL_C TInt FileSizeL(const TDesC& aFileName)
    60 	{
    61 	RFile file;
    62 	User::LeaveIfError(file.Open(fileServerSession, aFileName, EFileRead));
    63 	CleanupClosePushL(file);
    64 	TInt size = 0;
    65 	User::LeaveIfError(file.Size(size));
    66 	CleanupStack::PopAndDestroy(&file);
    67 	return size;
    68 	}
    69 
    70 LOCAL_C void CreateFileFromL(const TDesC& aDestFileName, const TDesC& aSrcFileName)
    71 	{
    72 	RFile destFile;
    73 	RFile srcFile;
    74 
    75 	CleanupClosePushL(destFile);
    76 	CleanupClosePushL(srcFile);
    77 
    78 	BaflUtils::DeleteFile(fileServerSession, aDestFileName);
    79 	User::LeaveIfError(destFile.Create(fileServerSession, aDestFileName, EFileRead | EFileWrite));
    80 
    81 	User::LeaveIfError(srcFile.Open(fileServerSession, aSrcFileName, EFileRead));
    82 	TInt size = 0;
    83 	User::LeaveIfError(srcFile.Size(size));
    84 	HBufC8* buf = HBufC8::NewMaxLC(size);
    85 	TPtr8 ptr = buf->Des();
    86 	srcFile.Read(ptr);
    87 
    88 	destFile.Write(KRscFileHeaderData);
    89 	destFile.Write(ptr);
    90 
    91 	CleanupStack::PopAndDestroy(buf);
    92 	CleanupStack::PopAndDestroy(&srcFile);
    93 	CleanupStack::PopAndDestroy(&destFile);
    94 	}
    95 
    96 LOCAL_C void CreateFileFromL(TDes& aDestFilePath, const TDesC& aDestFileName, const TDesC& aSrcFilePath)
    97 	{
    98 	aDestFilePath.Copy(KCDir);
    99 	aDestFilePath += _L("N_");
   100 	aDestFilePath += aDestFileName;
   101 	CreateFileFromL(aDestFilePath, aSrcFilePath);
   102 	}
   103 
   104 LOCAL_C void Test1L(const TDesC& aResourceFileName, TUint aFileOffset = 0, TInt aFileSize = 0)
   105 	{
   106 	CResourceFile* resourceFile = CResourceFile::NewLC(fileServerSession, aResourceFileName, aFileOffset, aFileSize);
   107 	test(resourceFile->UidType()==TUidType(TUid::Uid(0x101f4a6b), TUid::Uid(0x000eb205), TUid::Uid(TUint(T_COMPRESSED_UNICODE_1_RESOURCE_1)>>12)));
   108 	HBufC8* resource = NULL;
   109 	RResourceReader resourceReader;
   110 
   111 	resource=resourceFile->AllocReadLC(1);
   112 	test(resource->Length()%sizeof(TText)==0);
   113 	test(TPtrC((TText*)resource->Ptr(), resource->Length()/sizeof(TText))==_L("Gruezi miteinander"));
   114 	CleanupStack::PopAndDestroy(resource);
   115 	resource = NULL;
   116 
   117 	resourceReader.OpenLC(resourceFile, 2);
   118 	test(resourceReader.ReadUint16L()==4);
   119 	test(resourceReader.ReadTPtrCL()==_L("Bonjour"));
   120 	test(resourceReader.ReadTPtrCL()==_L("Ni3 hao3"));
   121 	test(resourceReader.ReadTPtrCL()==_L("Konnichiwa"));
   122 	test(resourceReader.ReadTPtrCL()==_L("Zdravstvuit'e"));
   123 	CleanupStack::PopAndDestroy(1, &resourceReader);
   124 	resource = NULL;
   125 
   126 	resourceReader.OpenLC(resourceFile, 3);
   127 	test(resourceReader.ReadUint16L()==3);
   128 	test(resourceReader.ReadTPtrCL()==_L("Gamarjoba"));
   129 	test(resourceReader.ReadTPtrCL()==_L("Gasou"));
   130 	test(resourceReader.ReadTPtrCL()==_L("Ola"));
   131 	CleanupStack::PopAndDestroy(1, &resourceReader);
   132 	resource = NULL;
   133 
   134 	resourceReader.OpenLC(resourceFile, 4);
   135 	test(resourceReader.ReadUint16L()==3);
   136 	test(resourceReader.ReadUint8L()==0xbd);
   137 	test(resourceReader.ReadUint8L()==0x5e);
   138 	test(resourceReader.ReadUint8L()==0xf1);
   139 	CleanupStack::PopAndDestroy(1, &resourceReader);
   140 	resource = NULL;
   141 
   142 	resourceReader.OpenLC(resourceFile, 5);
   143 	test(resourceReader.ReadUint32L()==4);
   144 	test(resourceReader.ReadUint32L()==T_COMPRESSED_UNICODE_1_RESOURCE_5);
   145 	CleanupStack::PopAndDestroy(1, &resourceReader);
   146 	resource = NULL;
   147 
   148 	resource=resourceFile->AllocReadLC(6);
   149 	test(resource->Length()%sizeof(TText)==0);
   150 	test(TPtrC((TText*)resource->Ptr(), resource->Length()/sizeof(TText))==_L("_"));
   151 	CleanupStack::PopAndDestroy(resource);
   152 	resource = NULL;
   153 
   154 	resourceReader.OpenLC(resourceFile, 7);
   155 	test(resourceReader.ReadUint8L()==9);
   156 	test(resourceReader.ReadTPtrCL()==_L("To"));
   157 	test(resourceReader.ReadUint8L()==97);
   158 	CleanupStack::PopAndDestroy(1, &resourceReader);
   159 	resource = NULL;
   160 
   161 	resourceReader.OpenLC(resourceFile, 8);
   162 	test(resourceReader.ReadUint16L()==999);
   163 	test(resourceReader.ReadTPtrCL()==_L("To"));
   164 	test(resourceReader.ReadUint8L()==79);
   165 	CleanupStack::PopAndDestroy(1, &resourceReader);
   166 	resource = NULL;
   167 
   168 	resourceReader.OpenLC(resourceFile, 9);
   169 	test(resourceReader.ReadUint16L()==53132);
   170 	test(resourceReader.ReadTPtrCL()==_L("T"));
   171 	test(resourceReader.ReadUint8L()==62);
   172 	CleanupStack::PopAndDestroy(1, &resourceReader);
   173 	resource = NULL;
   174 
   175 	resourceReader.OpenLC(resourceFile, 10);
   176 	test(resourceReader.ReadInt32L()==1253869);
   177 	test(resourceReader.ReadInt32L()==-986324);
   178 	test(resourceReader.ReadUint32L()==0x600ddea1u);
   179 	CleanupStack::PopAndDestroy(1, &resourceReader);
   180 	resource = NULL;
   181 
   182 	CleanupStack::PopAndDestroy(resourceFile);
   183 	}
   184 
   185 LOCAL_C void Test2L(const TDesC& aResourceFileName, TUid aFirstUid, TUint aFileOffset = 0, TInt aFileSize = 0)
   186 	{
   187 	CResourceFile* resourceFile = CResourceFile::NewLC(fileServerSession, aResourceFileName, aFileOffset, aFileSize);
   188 	test(resourceFile->UidType()==TUidType(aFirstUid, TUid::Null(), TUid::Uid(TUint(T_COMPRESSED_UNICODE_2_RESOURCE_1)>>12)));
   189 	HBufC8* resource = NULL;
   190 	RResourceReader resourceReader;
   191 
   192 	resourceReader.OpenLC(resourceFile, 1);
   193 	test(resourceReader.ReadUint32L()==4);
   194 	test(resourceReader.ReadUint32L()==T_COMPRESSED_UNICODE_2_RESOURCE_1);
   195 	CleanupStack::PopAndDestroy(1, &resourceReader);
   196 	resource = NULL;
   197 
   198 	resource=resourceFile->AllocReadLC(2);
   199 	test(resource->Length()%sizeof(TText)==0);
   200 	test(TPtrC((TText*)resource->Ptr(), resource->Length()/sizeof(TText))==_L("My program is cool"));
   201 	CleanupStack::PopAndDestroy(resource);
   202 	resource = NULL;
   203 
   204 	resource=resourceFile->AllocReadLC(3);
   205 	test(resource->Length()%sizeof(TText)==0);
   206 	test(TPtrC((TText*)resource->Ptr(), resource->Length()/sizeof(TText))==_L("z:\\system\\data\\eikon.mbm"));
   207 	CleanupStack::PopAndDestroy(resource);
   208 	resource = NULL;
   209 
   210 	resourceReader.OpenLC(resourceFile, 4);
   211 	test(resourceReader.ReadInt32L()==9174804);
   212 	test(resourceReader.ReadUint8L()==6);
   213 	test(resourceReader.ReadInt32L()==-6208493);
   214 	test(resourceReader.ReadUint16L()==0x3176);
   215 	CleanupStack::PopAndDestroy(1, &resourceReader);
   216 	resource = NULL;
   217 
   218 	resourceReader.OpenLC(resourceFile, 5);
   219 	test(resourceReader.ReadInt32L()==-120727);
   220 	test(resourceReader.ReadInt32L()==-82385253);
   221 	test(resourceReader.ReadUint16L()==0x3176);
   222 	CleanupStack::PopAndDestroy(1, &resourceReader);
   223 	resource = NULL;
   224 
   225 	resourceReader.OpenLC(resourceFile, 6);
   226 	test(resourceReader.ReadUint8L()==2);
   227 	test(resourceReader.ReadTPtrCL()==_L("z:\\system\\data\\uikon.mbm"));
   228 	test(resourceReader.ReadTPtrCL()==_L("z:\\system\\apps\\my_program\\my_program.mbm"));
   229 	CleanupStack::PopAndDestroy(1, &resourceReader);
   230 	resource = NULL;
   231 
   232 	CleanupStack::PopAndDestroy(resourceFile);
   233 	}
   234 
   235 LOCAL_C void Test3L(const TDesC& aResourceFileName, TUint aFileOffset = 0, TInt aFileSize = 0)
   236 	{
   237 	/* This function tests the calypso resoruce file format loading/reading
   238 	 * and was derived from the Test1 function above. Therefore the resource
   239 	 * file it reads is also derived from the file used in test 1.
   240 	 */
   241 
   242 	CResourceFile* resourceFile = CResourceFile::NewLC(fileServerSession, aResourceFileName, aFileOffset, aFileSize);
   243 	HBufC8* resource = NULL;
   244 	RResourceReader resourceReader;
   245 
   246 	resource=resourceFile->AllocReadLC(1);
   247 	test(resource->Length()%sizeof(TText)==0);
   248 	test(TPtrC((TText*)resource->Ptr(), resource->Length()/sizeof(TText))==_L("Gruezi miteinander"));
   249 	CleanupStack::PopAndDestroy(resource);
   250 	resource = NULL;
   251 
   252 	resourceReader.OpenLC(resourceFile, 2);
   253 	test(resourceReader.ReadUint16L()==4);
   254 	test(resourceReader.ReadTPtrCL()==_L("Bonjour"));
   255 	test(resourceReader.ReadTPtrCL()==_L("Ni3 hao3"));
   256 	test(resourceReader.ReadTPtrCL()==_L("Konnichiwa"));
   257 	test(resourceReader.ReadTPtrCL()==_L("Zdravstvuit'e"));
   258 	CleanupStack::PopAndDestroy(1, &resourceReader);
   259 	resource = NULL;
   260 
   261 	resourceReader.OpenLC(resourceFile, 3);
   262 	test(resourceReader.ReadUint16L()==3);
   263 	test(resourceReader.ReadTPtrCL()==_L("Gamarjoba"));
   264 	test(resourceReader.ReadTPtrCL()==_L("Gasou"));
   265 	test(resourceReader.ReadTPtrCL()==_L("Ola"));
   266 	CleanupStack::PopAndDestroy(1, &resourceReader);
   267 	resource = NULL;
   268 
   269 	resourceReader.OpenLC(resourceFile, 4);
   270 	test(resourceReader.ReadUint16L()==3);
   271 	test(resourceReader.ReadUint8L()==0xbd);
   272 	test(resourceReader.ReadUint8L()==0x5e);
   273 	test(resourceReader.ReadUint8L()==0xf1);
   274 	CleanupStack::PopAndDestroy(1, &resourceReader);
   275 	resource = NULL;
   276 
   277 	resourceReader.OpenLC(resourceFile, 5);
   278 	test(resourceReader.ReadUint32L()==4);
   279 	test(resourceReader.ReadUint32L()==T_COMPRESSED_UNICODE_1_RESOURCE_5);
   280 	CleanupStack::PopAndDestroy(1, &resourceReader);
   281 	resource = NULL;
   282 
   283 	resource=resourceFile->AllocReadLC(6);
   284 	test(resource->Length()%sizeof(TText)==0);
   285 	test(TPtrC((TText*)resource->Ptr(), resource->Length()/sizeof(TText))==_L("_"));
   286 	CleanupStack::PopAndDestroy(resource);
   287 	resource = NULL;
   288 
   289 	resourceReader.OpenLC(resourceFile, 7);
   290 	test(resourceReader.ReadUint8L()==9);
   291 	test(resourceReader.ReadTPtrCL()==_L("To"));
   292 	test(resourceReader.ReadUint8L()==97);
   293 	CleanupStack::PopAndDestroy(1, &resourceReader);
   294 	resource = NULL;
   295 
   296 	resourceReader.OpenLC(resourceFile, 8);
   297 	test(resourceReader.ReadUint16L()==999);
   298 	test(resourceReader.ReadTPtrCL()==_L("To"));
   299 	test(resourceReader.ReadUint8L()==79);
   300 	CleanupStack::PopAndDestroy(1, &resourceReader);
   301 	resource = NULL;
   302 
   303 	resourceReader.OpenLC(resourceFile, 9);
   304 	test(resourceReader.ReadUint16L()==53132);
   305 	test(resourceReader.ReadTPtrCL()==_L("T"));
   306 	test(resourceReader.ReadUint8L()==62);
   307 	CleanupStack::PopAndDestroy(1, &resourceReader);
   308 	resource = NULL;
   309 
   310 	resourceReader.OpenLC(resourceFile, 10);
   311 	test(resourceReader.ReadInt32L()==1253869);
   312 	test(resourceReader.ReadInt32L()==-986324);
   313 	test(resourceReader.ReadUint32L()==0x600ddea1u);
   314 	CleanupStack::PopAndDestroy(1, &resourceReader);
   315 	resource = NULL;
   316 
   317 	// reading resource 11 takes some time, as it is long
   318 	// and gets compressed.
   319 	// This is useful for the timing measurements in TestDef044572L()
   320 	resourceReader.OpenLC(resourceFile, 11);
   321 	CleanupStack::PopAndDestroy(1, &resourceReader);
   322 	resource = NULL;
   323 
   324 	CleanupStack::PopAndDestroy(resourceFile);
   325 	}
   326 
   327 LOCAL_C void Test4L(const TDesC& aResourceFileName, TUint aFileOffset = 0, TInt aFileSize = 0)
   328 	{
   329 	/* This function tests the behaviour of bafl when reading a calypso resource file
   330 	 * for a signature. Calypso resource files do not have signatures.
   331 	 */
   332 
   333 	CResourceFile* resourceFile = CResourceFile::NewLC(fileServerSession, aResourceFileName, aFileOffset, aFileSize);
   334 
   335 	// Need to pass the TInt as required, but doesn't
   336 	// use it. Legacy for BC sake.
   337 	TInt err = KErrNone;
   338 	TRAP(err, resourceFile->ConfirmSignatureL(1));
   339 	test(err == KErrCorrupt);
   340 
   341 	// New function that has further test to confirm absence of signature
   342 	// Hopefully we can get clients to move over to this in future.
   343 	TRAP(err, resourceFile->ConfirmSignatureL());
   344 	test(err == KErrCorrupt);
   345 
   346 	CleanupStack::PopAndDestroy(resourceFile);
   347 	}
   348 
   349 LOCAL_C void Test5L(const TDesC& aResourceFileName, TUint aFileOffset = 0, TInt aFileSize = 0)
   350 	{
   351 	/* This function tests the behaviour of bafl when reading a resource file
   352 	 * for a signature.
   353 	 * In this case the signature is present and is NOT the first resource.
   354 	 */
   355 
   356 	CResourceFile* resourceFile = CResourceFile::NewLC(fileServerSession, aResourceFileName, aFileOffset, aFileSize);
   357 
   358 	// Need to pass the TInt as required, but doesn't
   359 	// use it. Legacy for BC sake.
   360 	TInt err = KErrNone;
   361 	TRAP(err, resourceFile->ConfirmSignatureL(1));
   362 	test(err == KErrCorrupt);
   363 
   364 	// New function that has further test to confirm absence of signature
   365 	// Hopefully we can get clients to move over to this in future.
   366 	TRAP(err, resourceFile->ConfirmSignatureL());
   367 	test(err == KErrCorrupt);
   368 
   369 	CleanupStack::PopAndDestroy(resourceFile);
   370 	}
   371 
   372 LOCAL_C void Test6L(const TDesC& aResourceFileName, TUint aFileOffset = 0, TInt aFileSize = 0)
   373 	{
   374 	/* This function tests the behaviour of bafl when reading a resource file
   375 	 * for a signature.
   376 	 * In this case the signature is present and is the first resource.
   377 	 */
   378 
   379 	CResourceFile* resourceFile = CResourceFile::NewLC(fileServerSession, aResourceFileName, aFileOffset, aFileSize);
   380 
   381 	// Need to pass the TInt as required, but doesn't
   382 	// use it. Legacy for BC sake.
   383 	TInt err = KErrNone;
   384 	TRAP(err, resourceFile->ConfirmSignatureL(1));
   385 	test(err == KErrNone);
   386 
   387 	// New function that has further test to confirm absence of signature
   388 	// Hopefully we can get clients to move over to this in future.
   389 	TRAP(err, resourceFile->ConfirmSignatureL());
   390 	test(err == KErrNone);
   391 
   392 	CleanupStack::PopAndDestroy(resourceFile);
   393 	}
   394 
   395 LOCAL_C void Test7L(const TDesC& aResourceFileName, TUint aFileOffset = 0, TInt aFileSize = 0)
   396 	{
   397 	/* This function tests the behaviour of bafl when reading a non resource file.
   398 	 */
   399 	TRAPD(err, (void)CResourceFile::NewL(fileServerSession, aResourceFileName, aFileOffset, aFileSize));
   400 	test(err != KErrNotFound && err != KErrNone);
   401 	}
   402 
   403 /**
   404 @SYMTestCaseID          SYSLIB-BAFL-CT-0480
   405 @SYMTestCaseDesc        Testing resource files containing Unicode-compressed text
   406 @SYMTestPriority        High
   407 @SYMTestActions         Wrapper function calling up Test1L() and Test2L() functions
   408 @SYMTestExpectedResults Tests must not fail
   409 @SYMREQ                 REQ0000
   410 */
   411 LOCAL_C void SubTest1L()
   412 	{
   413 	test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0480 Testing resource files containing Unicode-compressed text "));
   414 	TBuf<128> z_path;
   415 	TBuf<128> c_path;
   416 
   417 	z_path.Copy(KZDir);
   418 	z_path += rsc_files[0];
   419 	Test1L(z_path);
   420 	CreateFileFromL(c_path, rsc_files[0], z_path);
   421 	Test1L(c_path, KRscFileHeaderData().Length(), FileSizeL(z_path));
   422 	DeleteDataFile(c_path);
   423 
   424 	z_path.Copy(KZDir);
   425 	z_path.Append(rsc_files[1]);
   426 	Test2L(z_path, TUid::Uid(0x101f4a6b));
   427 	CreateFileFromL(c_path, rsc_files[1], z_path);
   428 	Test2L(c_path, TUid::Uid(0x101f4a6b), KRscFileHeaderData().Length(), FileSizeL(z_path));
   429 	DeleteDataFile(c_path);
   430 	}
   431 
   432 /**
   433 @SYMTestCaseID          SYSLIB-BAFL-CT-0481
   434 @SYMTestCaseDesc        Testing dictionary-compressed resource files
   435 @SYMTestPriority        High
   436 @SYMTestActions         Wrapper function calling up Test2L() function
   437 @SYMTestExpectedResults Tests must not fail
   438 @SYMREQ                 REQ0000
   439 */
   440 LOCAL_C void SubTest2L()
   441 	{
   442 	test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0481 Testing dictionary-compressed resource files "));
   443 	TBuf<128> z_path;
   444 	TBuf<128> c_path;
   445 
   446 	z_path.Copy(KZDir);
   447 	z_path.Append(rsc_files[2]);
   448 	Test2L(z_path, TUid::Uid(0x101f5010));
   449 	CreateFileFromL(c_path, rsc_files[2], z_path);
   450 	Test2L(c_path, TUid::Uid(0x101f5010), KRscFileHeaderData().Length(), FileSizeL(z_path));
   451 	DeleteDataFile(c_path);
   452 	}
   453 
   454 /**
   455 @SYMTestCaseID          SYSLIB-BAFL-CT-0482-0001
   456 @SYMTestCaseDesc        Testing Calypso ER5u format dictionary-compressed resource files
   457 @SYMTestPriority        High
   458 @SYMTestActions         Wrapper function calling up Test3L() function
   459 @SYMTestExpectedResults Tests must not fail
   460 @SYMREQ                 REQ0000
   461 */
   462 LOCAL_C void SubTest3L()
   463 	{
   464 	test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0482-0001 Testing Calypso ER5u format dictionary-compressed resource files "));
   465 	TBuf<128> z_path;
   466 	TBuf<128> c_path;
   467 
   468 	z_path.Copy(KZDir);
   469 	z_path.Append(rsc_files[3]);
   470 	Test3L(z_path);
   471 	CreateFileFromL(c_path, rsc_files[3], z_path);
   472 	Test3L(c_path, KRscFileHeaderData().Length(), FileSizeL(z_path));
   473 	DeleteDataFile(c_path);
   474 
   475 	z_path.Copy(KZDir);
   476 	z_path.Append(rsc_files[5]);
   477 	Test3L(z_path, FileSizeL(KRomResourceFileHeader), FileSizeL(z_path) - FileSizeL(KRomResourceFileHeader));
   478 	}
   479 
   480 /**
   481 @SYMTestCaseID          SYSLIB-BAFL-CT-0483-0001
   482 @SYMTestCaseDesc        Testing resource file missing signature behaviour
   483 @SYMTestPriority        High
   484 @SYMTestActions         Wrapper function calling up Test4L() function
   485 @SYMTestExpectedResults Tests must not fail
   486 @SYMREQ                 REQ0000
   487 */
   488 LOCAL_C void SubTest4L()
   489 	{
   490 	test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0483-0001 Testing resource file missing signature behaviour "));
   491 	TBuf<128> z_path;
   492 	TBuf<128> c_path;
   493 
   494 	z_path.Copy(KZDir);
   495 	z_path.Append(rsc_files[3]);
   496 	Test4L(z_path);
   497 	CreateFileFromL(c_path, rsc_files[3], z_path);
   498 	Test4L(c_path, KRscFileHeaderData().Length(), FileSizeL(z_path));
   499 	DeleteDataFile(c_path);
   500 	}
   501 
   502 /**
   503 @SYMTestCaseID          SYSLIB-BAFL-CT-0484-0001
   504 @SYMTestCaseDesc        Testing resource file signature present and not in order behaviour
   505 @SYMTestPriority        High
   506 @SYMTestActions         Wrapper function calling up Test5() function
   507 @SYMTestExpectedResults Tests must not fail
   508 @SYMREQ                 REQ0000
   509 */
   510 LOCAL_C void SubTest5L()
   511 	{
   512 	test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0484-0001 Testing resource file signature present and not in order behaviour "));
   513 	TBuf<128> z_path;
   514 	TBuf<128> c_path;
   515 
   516 	z_path.Copy(KZDir);
   517 	z_path.Append(rsc_files[0]);
   518 	Test5L(z_path);
   519 	CreateFileFromL(c_path, rsc_files[0], z_path);
   520 	Test5L(c_path, KRscFileHeaderData().Length(), FileSizeL(z_path));
   521 	DeleteDataFile(c_path);
   522 	}
   523 
   524 /**
   525 @SYMTestCaseID          SYSLIB-BAFL-CT-0485-0001
   526 @SYMTestCaseDesc        Testing resource file signature present and in order behaviour
   527 @SYMTestPriority        High
   528 @SYMTestActions         Wrapper function calling up Test6L() function
   529 @SYMTestExpectedResults Tests must not fail
   530 @SYMREQ                 REQ0000
   531 */
   532 LOCAL_C void SubTest6L()
   533 	{
   534 	test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0485-0001 Testing resource file signature present and in order behaviour "));
   535 	TBuf<128> z_path;
   536 	TBuf<128> c_path;
   537 
   538 	z_path.Copy(KZDir);
   539 	z_path.Append(rsc_files[1]);
   540 	Test6L(z_path);
   541 	CreateFileFromL(c_path, rsc_files[1], z_path);
   542 	Test6L(c_path, KRscFileHeaderData().Length(), FileSizeL(z_path));
   543 	DeleteDataFile(c_path);
   544 	}
   545 
   546 /**
   547 @SYMTestCaseID          SYSLIB-BAFL-CT-0486-0001
   548 @SYMTestCaseDesc        Testing invalid resource file
   549 @SYMTestPriority        High
   550 @SYMTestActions         Wrapper function calling up Test7L() function
   551 @SYMTestExpectedResults Tests must not fail
   552 @SYMREQ                 REQ0000
   553 */
   554 LOCAL_C void SubTest7L()
   555 	{
   556 	test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0486-0001 Testing invalid resource file "));
   557 	TBuf<128> z_path;
   558 	TBuf<128> c_path;
   559 
   560 	z_path.Copy(KZDir);
   561 	z_path.Append(rsc_files[4]);
   562 	Test7L(z_path);
   563 	CreateFileFromL(c_path, rsc_files[4], z_path);
   564 	Test7L(c_path, KRscFileHeaderData().Length(), FileSizeL(z_path));
   565 	DeleteDataFile(c_path);
   566 	}
   567 
   568 /**
   569 This test is for measuring the performance improvements from
   570 compressed resource file dictionary cache (added DEF044572)
   571 
   572 @SYMTestCaseID          SYSLIB-BAFL-CT-0487-0001
   573 @SYMTestCaseDesc        Tests for defect number Def044572L
   574 @SYMTestPriority        High
   575 @SYMTestActions         Attempt for measuring the performance improvements from compressed resource file dictionary cache
   576 @SYMTestExpectedResults Tests must not fail
   577 @SYMREQ                 REQ0000
   578 */
   579 LOCAL_C void TestDef044572L()
   580 	{
   581 	test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0487-0001 "));
   582 	// measure the time taken to run this test 10 times.
   583 	TTime startTime, stopTime;
   584 	startTime.UniversalTime();
   585 
   586 	// run the test 20 times to make the time easier to measure
   587 	for (TInt repeat=0;repeat<20;repeat++)
   588 		{
   589 		// SubTest3 which uses "Calypso ER5u format dictionary-compressed resource files"
   590 		SubTest3L();
   591 		}
   592 
   593 	// display the time taken
   594 	// for WINSCW this increase from 3.4 to 1.3 seconds when the
   595 	// compressed resource file dictionary cache was added DEF044572
   596 	stopTime.UniversalTime();
   597 	TTimeIntervalMicroSeconds timeTaken = stopTime.MicroSecondsFrom(startTime);
   598 	test.Printf(_L("Time taken for Subtest3:%d microseconds\n"), timeTaken.Int64() );
   599 	}
   600 
   601 /**
   602 This test checks reading resource files for memory leaks,
   603 when running Out Of Memory.(added as part of DEF044572)
   604 
   605 @SYMTestCaseID          SYSLIB-BAFL-CT-0488-0001
   606 @SYMTestCaseDesc        Out of memory tests
   607 @SYMTestPriority        High
   608 @SYMTestActions         Tests for memory leaks while reading resource files.
   609 @SYMTestExpectedResults Tests must not fail
   610 @SYMREQ                 REQ0000
   611 */
   612 LOCAL_C void MemoryLeakTestL()
   613 	{
   614 	test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0488-0001 "));
   615 	TInt ret = KErrNoMemory;
   616 	TInt pass = 1;
   617 
   618 	__UHEAP_MARK;
   619 	// increasing the value of pass until the test completes with KErrNone
   620 	while  (ret != KErrNone )
   621 		{
   622 		// check that the test is failing with KErrNoMemory
   623 		test(ret==KErrNoMemory);
   624 
   625 		__UHEAP_FAILNEXT(pass);
   626 		TRAP(ret, SubTest3L());
   627 		__UHEAP_CHECK(0);
   628 
   629 		pass++;
   630 		}
   631 
   632 	// disable the heap fail
   633 	__UHEAP_RESET;
   634 	__UHEAP_MARKEND;
   635 
   636 	}
   637 
   638 
   639 LOCAL_C void DoE32MainL()
   640 	{
   641 	CleanupClosePushL(fileServerSession);
   642 	User::LeaveIfError(fileServerSession.Connect());
   643 
   644 	SubTest1L();
   645 	SubTest2L();
   646 	SubTest3L();
   647 	SubTest4L();
   648 	SubTest5L();
   649 	SubTest6L();
   650 	SubTest7L();
   651 	TestDef044572L();
   652 	MemoryLeakTestL();
   653 
   654 	CleanupStack::PopAndDestroy(1, &fileServerSession);
   655 	}
   656 
   657 GLDEF_C TInt E32Main()
   658 	{
   659 	__UHEAP_MARK;
   660 	CTrapCleanup* trapCleanup=CTrapCleanup::New();
   661 	TRAPD(error, DoE32MainL());
   662 	test(error == KErrNone);
   663 	test.Next(_L("/n"));
   664 	test.End();
   665 	test.Close();
   666 	delete trapCleanup;
   667 	__UHEAP_MARKEND;
   668 	return error;
   669 	}
   670