os/ossrv/lowlevellibsandfws/pluginfw/Framework/SimpleTests/t_hashcheck.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) 2006-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 // Contains tests to exercise the hash checking feature for removable drives
    15 // 
    16 //
    17 
    18 
    19 #include <ecom/ecom.h>
    20 #include "../EcomTestUtils/EcomTestUtils.h"
    21 #include <hash.h>
    22 #include <swi/swispubsubdefs.h>
    23 #include "../Example/EComHashExample.h"
    24 #include "../EcomTestUtils/TPropertyManager.h"
    25 
    26 using namespace Swi;
    27 
    28 LOCAL_D RTest test(_L("t_hashcheck.exe"));
    29 
    30 LOCAL_D CTrapCleanup* 	  TheTrapCleanup 	 = NULL;
    31 
    32 LOCAL_D CActiveScheduler* TheActiveScheduler = NULL;
    33 
    34 LOCAL_D RFs					TheFs;
    35 
    36 #define UNUSED_VAR(a) a = a
    37 
    38 // Implementaion IDs used for testing
    39 const TUid KUidTestInterface = {0x10009E34};
    40 const TUid KUidTestImplementation = {0x10009E35};
    41 
    42 // Plugins used in tests.
    43 _LIT(KEComHashExampleDllOnZ, "z:\\RAMOnly\\EComHashExample.dll");
    44 _LIT(KEComHashExampleRscOnZ, "z:\\RAMOnly\\EComHashExample.rsc");
    45 
    46 _LIT(KEComAllRSCFilesName,					"\\Resource\\Plugins\\*.rsc");
    47 _LIT(KEComRscDirName,						"\\Resource\\Plugins");
    48 
    49 #if defined(__WINSCW__) // X: on emulator
    50 _LIT(KEComHashExampleDllOnRemovableDrive, "X:\\sys\\bin\\EComHashExample.dll");
    51 _LIT(KEComHashExampleRscOnRemovableDrive, "X:\\resource\\plugins\\EComHashExample.rsc");
    52 #else // E: on hardware
    53 _LIT(KEComHashExampleDllOnRemovableDrive, "E:\\sys\\bin\\EComHashExample.dll");
    54 _LIT(KEComHashExampleRscOnRemovableDrive, "E:\\resource\\plugins\\EComHashExample.rsc");
    55 #endif
    56 
    57 // hash files
    58 _LIT(KEComTempHashFileOnC, "c:\\EComTempHashFile.dll");
    59 _LIT(KEComTempCorruptHashFileOnC, "c:\\EComTempCorruptHashFile.dll");
    60 _LIT(KEComHashExampleHashFileOnRemovableDrive, "c:\\sys\\hash\\EComHashExample.dll");
    61 _LIT(KEComCorruptHash, "12345678912345678900");
    62 
    63 const TInt KHashFileReadSize = 1024*8;
    64 
    65 void CreateTempHashFileL()
    66 	{
    67 	// Create valid hash file for the DLL to be used during this test.
    68 	TInt readsize = KHashFileReadSize;
    69 	HBufC8* block0 = HBufC8::NewLC(readsize);
    70 	TPtr8 fileblock0(block0->Des());
    71 	CSHA1* hasher=CSHA1::NewL();
    72 	CleanupStack::PushL(hasher);
    73 
    74 	RFile file;
    75        CleanupClosePushL(file);
    76 	User::LeaveIfError(file.Open(TheFs, KEComHashExampleDllOnZ, EFileRead));
    77 
    78 	TInt size;
    79 	User::LeaveIfError(file.Size(size));
    80 	TInt offset=0;
    81 	do  {
    82 		if((size - offset) < readsize)
    83 			readsize = (size - offset);
    84 		User::LeaveIfError(file.Read(offset, fileblock0, readsize));
    85 		hasher->Update(fileblock0);
    86 		offset+=readsize;
    87 		}
    88 	while(offset < size);
    89 
    90 	CleanupStack::PopAndDestroy(1); // file
    91 
    92 	TBuf8<SHA1_HASH> hash;
    93 	hash=hasher->Final();
    94 
    95 	CleanupStack::PopAndDestroy(2); // block0, hasher
    96 
    97 	// write hash to file
    98 	RFile tempHashFile;
    99        CleanupClosePushL(tempHashFile);
   100       	User::LeaveIfError(tempHashFile.Replace(TheFs, KEComTempHashFileOnC, EFileWrite));
   101 	tempHashFile.Write(hash);
   102 	CleanupStack::PopAndDestroy(1); // tempHashFile
   103     }
   104 
   105 void DeleteTempHashFileL()
   106 	{
   107 	TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComTempHashFileOnC));
   108 	test(err == KErrNone);
   109 	}
   110 
   111 void CreateTempCorruptHashFileL()
   112 	{
   113 	// write corrupt hash to file
   114 	TBuf8<SHA1_HASH> hash;
   115 	hash.Append(KEComCorruptHash);
   116 	RFile tempHashFile;
   117        CleanupClosePushL(tempHashFile);
   118       	User::LeaveIfError(tempHashFile.Replace(TheFs, KEComTempCorruptHashFileOnC, EFileWrite));
   119 	tempHashFile.Write(hash);
   120 	CleanupStack::PopAndDestroy(1); // tempHashFile
   121 	}
   122 
   123 void DeleteTempCorruptHashFileL()
   124 	{
   125 	TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComTempCorruptHashFileOnC));
   126 	test(err == KErrNone);
   127 	}
   128 
   129 void CopyHashFile()
   130 	{
   131 	TRAPD(err, EComTestUtils::FileManCopyFileL(KEComTempHashFileOnC,
   132 											KEComHashExampleHashFileOnRemovableDrive));
   133 	test(err == KErrNone);
   134 	}
   135 
   136 void DeleteHashFile()
   137 	{
   138 	TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComHashExampleHashFileOnRemovableDrive));
   139 	UNUSED_VAR(err);
   140 
   141 	// If ECOM server is already running we need to allow some time for re-discovery
   142 	// to complete.
   143 	WAIT_FOR3s;
   144 	}
   145 
   146 void CopyCorruptHashFile()
   147 	{
   148 	TRAPD(err, EComTestUtils::FileManCopyFileL(KEComTempCorruptHashFileOnC,
   149 											KEComHashExampleHashFileOnRemovableDrive));
   150 	test(err == KErrNone);
   151 	}
   152 
   153 void CopyPlugins()
   154 	{
   155 	TRAPD(err, EComTestUtils::FileManCopyFileL(KEComHashExampleDllOnZ, KEComHashExampleDllOnRemovableDrive));
   156 	test(err == KErrNone);
   157 	TRAP(err, EComTestUtils::FileManCopyFileL(KEComHashExampleRscOnZ, KEComHashExampleRscOnRemovableDrive));
   158 	test(err == KErrNone);
   159 
   160 	// If ECOM server is already running we need to allow some time for re-discovery
   161 	// to complete.
   162 	WAIT_FOR3s;
   163 	}
   164 
   165 void DeletePlugins()
   166 	{
   167 	TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComHashExampleDllOnRemovableDrive));
   168 	UNUSED_VAR(err);
   169 	TRAP(err, EComTestUtils::FileManDeleteFileL(KEComHashExampleRscOnRemovableDrive));
   170 	UNUSED_VAR(err);
   171 
   172 	// If ECOM server is already running we need to allow some time for re-discovery
   173 	// to complete.
   174 	WAIT_FOR3s;
   175 	}
   176 
   177 
   178 void DeleteRSCFolderOnDrive(TUint aDriveNum)
   179 	{
   180 	TInt err=KErrNone;
   181 	TDriveUnit aDrive(aDriveNum);
   182 
   183 	TBuf<256> resourceFileName;
   184 	resourceFileName.Append(aDrive.Name());
   185 	resourceFileName.Append(KEComAllRSCFilesName);
   186 	TRAP(err, EComTestUtils::FileManDeleteFileL(resourceFileName));
   187 
   188 	TBuf<256> resourceDirName;
   189 	resourceDirName.Append(aDrive.Name());
   190 	resourceDirName.Append(KEComRscDirName);
   191 	TRAP(err, EComTestUtils::FileManDeleteDirL(resourceDirName));
   192 	}
   193 
   194 TBool IsImplementationListedL()
   195 	{
   196 	RImplInfoPtrArray implArray;
   197 	REComSession::ListImplementationsL(KUidTestInterface, implArray);
   198 
   199 	TBool found = EFalse;
   200 	TInt count = implArray.Count();
   201 	while(count)
   202 		{
   203 		count--;
   204 		if(implArray[count]->ImplementationUid() == KUidTestImplementation)
   205 			{
   206 			found = ETrue;
   207 			break;
   208 			}
   209 		}
   210 	REComSession::FinalClose();
   211 	implArray.ResetAndDestroy();
   212 	return found;
   213 	}
   214 
   215 TInt IsImplementationCreatedL()
   216 	{
   217 	TUid dtor_ID_Key;
   218 	TAny* ptr = NULL;
   219 	TRAPD(err, ptr = REComSession::CreateImplementationL(KUidTestImplementation, dtor_ID_Key));
   220 
   221 	CImplementationHashExample* implPtr = reinterpret_cast <CImplementationHashExample*> (ptr);
   222 
   223 	if(err == KErrNone)
   224 		{
   225 		REComSession::DestroyedImplementation(dtor_ID_Key);
   226 		delete implPtr;
   227 		}
   228 
   229 	REComSession::FinalClose();
   230 	return err;
   231 	}
   232 
   233 void	DoPreInstall()
   234 	{
   235 	// Install in progress
   236 	PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisInstall);
   237 	CopyHashFile();
   238 	WAIT_FOR1s;
   239 
   240 	// Install successful
   241 	PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisInstall);
   242 	WAIT_FOR3s;
   243 
   244 	// Reset
   245 	PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisNone);
   246 	WAIT_FOR1s;
   247 	}
   248 
   249 void	DoCorruptPreInstall()
   250 	{
   251 	// Install in progress
   252 	PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisInstall);
   253 	CopyCorruptHashFile();
   254 	WAIT_FOR1s;
   255 
   256 	// Install successful
   257 	PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisInstall);
   258 	WAIT_FOR3s;
   259 
   260 	// Reset
   261 	PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisNone);
   262 	WAIT_FOR1s;
   263 	}
   264 
   265 void	DoPreUninstall()
   266 	{
   267 	// Uninstall in progress
   268 	PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisUninstall);
   269 	DeleteHashFile();
   270 	WAIT_FOR1s;
   271 
   272 	// Uninstall successful
   273 	PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisUninstall);
   274 	WAIT_FOR3s;
   275 
   276 	// Reset
   277 	PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisNone);
   278 	WAIT_FOR1s;
   279 	}
   280 
   281 /**
   282 @SYMTestCaseID SYSLIB-ECOM-CT-1922
   283 @SYMTestCaseDesc Test that implementation on removable drive is not available
   284 	when no hash file has been installed.
   285 @SYMTestPriority High
   286 @SYMTestActions	 Copy plugins to removable drive.
   287 				 Call ListImplementations() and CreateImplementation()
   288 				 Check implementation is unavailable.
   289 @SYMTestExpectedResults The test must not fail.
   290 @SYMDEF PDEF090578
   291 */
   292 LOCAL_C void TestNoHashFileInstalledL()
   293 	{
   294 	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1922 "));
   295 	__UHEAP_MARK;
   296 
   297 	// Test ListImplementations()
   298 	CopyPlugins();
   299 	TBool implListed = IsImplementationListedL();
   300 
   301 	// Check implementation
   302 	// On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's
   303 	// on the X drive. Because of this the implementation will not be listed.
   304 	//
   305 	// On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash
   306 	// is available for the DLL. In this case there is no hash so the implementation is
   307 	// not listed.
   308 	test(!implListed);
   309 
   310 	// Test CreateImplementation()
   311 	TInt implCreated = IsImplementationCreatedL();
   312 
   313 	// Check implementation
   314 	// On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's
   315 	// on the X drive. Because of this the implementation will not be created.
   316 	//
   317 	// On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash
   318 	// is available for the DLL. In this case there is no hash so the implementation is
   319 	// not created.
   320 	test(implCreated == KErrNotFound);
   321 
   322 	DeletePlugins();
   323 	__UHEAP_MARKEND;
   324 	}
   325 
   326 /**
   327 @SYMTestCaseID SYSLIB-ECOM-CT-1923
   328 @SYMTestCaseDesc Test that implementation on removable drive is available
   329 	when a Pre Install occurs exists.
   330 @SYMTestPriority High
   331 @SYMTestActions	 Copy plugins to removable drive.
   332 				 Call ListImplementations() and CreateImplementation()
   333 				 Check implementation is unavailable.
   334 				 Emulate pre-install.
   335 				 Call ListImplementations() and CreateImplementation()
   336 				 Check implementation is available.
   337 				 Emulate uninstall.
   338 				 Call ListImplementations() and CreateImplementation()
   339 				 Check implementation is unavailable.
   340 @SYMTestExpectedResults The test must not fail.
   341 @SYMDEF PDEF090578
   342 */
   343 LOCAL_C void TestPreInstallL()
   344 	{
   345 	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1923 "));
   346 	__UHEAP_MARK;
   347 
   348 	// Only copy plugins - during pre-install plugins exists before the install occurs
   349 	CopyPlugins();
   350 
   351 	// Test ListImplementations()
   352 	TBool implListed = IsImplementationListedL();
   353 
   354 	// Check implementation
   355 	// On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's
   356 	// on the X drive. Because of this the implementation will not be listed.
   357 	//
   358 	// On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash
   359 	// is available for the DLL. In this case there is no hash because install has not occurred
   360 	// so the implementation is not listed.
   361 	test(!implListed);
   362 
   363 	// Test CreateImplementation()
   364 	// No hash so no implementation should  be created.
   365 	TInt implCreated = IsImplementationCreatedL();
   366 
   367 	// Check implementation
   368 	// On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's
   369 	// on the X drive. Because of this the implementation will not be created.
   370 	//
   371 	// On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash
   372 	// is available for the DLL. In this case there is no hash because install has not occurred
   373 	// so the implementation is not created.
   374 	test(implCreated == KErrNotFound);
   375 
   376 	// Do install
   377 	DoPreInstall();
   378 
   379 	// Test ListImplementations()
   380 	implListed = IsImplementationListedL();
   381 
   382 	_LIT(KMessage3,"Pre-Install 3: List = %d");
   383 	RDebug::Print(KMessage3, implListed);
   384 	// Check implementation
   385 #if defined(__WINSCW__)
   386 	// On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's
   387 	// on the X drive. Because of this the implementation will not be listed.
   388 	//
   389 	test(!implListed);
   390 #else
   391 	// On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash
   392 	// is available for the DLL. In this case there is a hash so the implementation is
   393 	// listed.
   394 	test(implListed);
   395 #endif
   396 
   397 	// Test CreateImplementation()
   398 	implCreated = IsImplementationCreatedL();
   399 
   400 	// Check implementation was created
   401 #if defined(__WINSCW__)
   402 	// On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's
   403 	// on the X drive. Because of this the implementation will not be created.
   404 	//
   405 	test(implCreated == KErrNotFound);
   406 #else
   407 	// On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash
   408 	// is available for the DLL. In this case there is a hash so the implementation is
   409 	// created.
   410 	test(implCreated == KErrNone);
   411 #endif
   412 
   413 	__UHEAP_MARKEND;
   414 	}
   415 
   416 /**
   417 @SYMTestCaseID SYSLIB-ECOM-CT-1924
   418 @SYMTestCaseDesc Test that implementation on removable drive is unavailable
   419 	after an uninstall occurs.
   420 @SYMTestPriority High
   421 @SYMTestActions	 Emulate uninstall.
   422 				 Call ListImplementations() and CreateImplementation()
   423 				 Check implementation is unavailable.
   424 @SYMTestExpectedResults The test must not fail.
   425 @SYMDEF PDEF090578
   426 */
   427 LOCAL_C void TestPreUninstallL()
   428 	{
   429 	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1924 "));
   430 	__UHEAP_MARK;
   431 
   432 	// Do uninstall
   433 	DoPreUninstall();
   434 
   435 	// Test ListImplementations()
   436 	TBool implListed = IsImplementationListedL();
   437 
   438 	// Check implementation
   439 	// On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's
   440 	// on the X drive. Because of this the implementation will not be listed.
   441 	//
   442 	// On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash
   443 	// is available for the DLL. In this case there is no hash so the implementation is
   444 	// not listed.
   445 	test(!implListed);
   446 
   447 	// Test CreateImplementation()
   448 	TInt implCreated = IsImplementationCreatedL();
   449 
   450 	// Check implementation
   451 	// On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's
   452 	// on the X drive. Because of this the implementation will not be created.
   453 	//
   454 	// On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash
   455 	// is available for the DLL. In this case there is no hash so the implementation is
   456 	// not created.
   457 	test(implCreated == KErrNotFound);
   458 
   459 	DeletePlugins();
   460 	__UHEAP_MARKEND;
   461 	}
   462 
   463 /**
   464 @SYMTestCaseID SYSLIB-ECOM-CT-1925
   465 @SYMTestCaseDesc Test that implementation on removable drive is unavailable
   466 	if the hash is corrupted for the DLL.
   467 @SYMTestPriority High
   468 @SYMTestActions	 Emulate pre-install with a corrupted hash file.
   469 				 Call ListImplementations() and CreateImplementation()
   470 				 Check implementation is unavailable.
   471 @SYMTestExpectedResults The test must not fail.
   472 @SYMDEF PDEF090578
   473 */
   474 LOCAL_C void TestCorruptHashL()
   475 	{
   476 	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1925 "));
   477 	__UHEAP_MARK;
   478 
   479 	// Only copy plugins - during pre-install plugins exists before the install occurs
   480 	CopyPlugins();
   481 
   482 	// Do pre install
   483 	DoCorruptPreInstall();
   484 
   485 	// Test ListImplementations()
   486 	TBool implListed = IsImplementationListedL();
   487 
   488 	// Check implementation
   489 	// On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's
   490 	// on the X drive. Because of this the implementation will not be listed.
   491 	//
   492 	// On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash
   493 	// is available for the DLL. In this case the hash file is corrupted so the implementation is
   494 	// not listed.
   495 	test(!implListed);
   496 
   497 	// Test CreateImplementation()
   498 	TInt implCreated = IsImplementationCreatedL();
   499 
   500 	// Check implementation
   501 	// On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's
   502 	// on the X drive. Because of this the implementation will not be created.
   503 	//
   504 	// On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash
   505 	// is available for the DLL. In this case the hash file is corrupted so the implementation is
   506 	// not created.
   507 	test(implCreated == KErrNotFound);
   508 
   509 	DeletePlugins();
   510 	DeleteHashFile();
   511 	__UHEAP_MARKEND;
   512 	}
   513 
   514 /**
   515 @SYMTestCaseID SYSLIB-ECOM-CT-1926
   516 @SYMTestCaseDesc Test that implementation on removable drive is available
   517 	when a full Install occurs exists.
   518 @SYMTestPriority High
   519 @SYMTestActions	 Copy plugins to removable drive.
   520 				 Emulate pre-install.
   521 				 Call ListImplementations() and CreateImplementation()
   522 				 Check implementation is available.
   523 @SYMTestExpectedResults The test must not fail.
   524 @SYMDEF PDEF090578
   525 */
   526 LOCAL_C void TestFullInstallL()
   527 	{
   528 	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1926 "));
   529 	__UHEAP_MARK;
   530 
   531 	// Only copy plugins - during pre-install plugins exists before the install occurs
   532 	CopyPlugins();
   533 	// Do install
   534 	DoPreInstall();
   535 
   536 	// Test ListImplementations()
   537 	TBool implListed = IsImplementationListedL();
   538 
   539 	// Test CreateImplementation()
   540 	TInt implCreated = IsImplementationCreatedL();
   541 
   542 #if defined(__WINSCW__)
   543 	// On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's
   544 	// on the X drive. Because of this the implementation will not be listed and
   545 	// the implementation will not be created.
   546 	test(!implListed);
   547 	test(implCreated == KErrNotFound);
   548 #else
   549 	// On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash
   550 	// is available for the DLL. In this case there is a valid hash so the implementation is
   551 	// listed and created.
   552 	test(implListed);
   553 	test(implCreated == KErrNone);
   554 #endif
   555 
   556 	__UHEAP_MARKEND;
   557 	}
   558 /**
   559 @SYMTestCaseID SYSLIB-ECOM-CT-1927
   560 @SYMTestCaseDesc Test that implementation on removable drive is unavailable
   561 	after an uninstall occurs.
   562 @SYMTestPriority High
   563 @SYMTestActions	 Emulate uninstall.
   564 				 Call ListImplementations() and CreateImplementation()
   565 				 Check implementation is unavailable.
   566 @SYMTestExpectedResults The test must not fail.
   567 @SYMDEF PDEF09057
   568 */
   569 LOCAL_C void TestFullUninstallL()
   570 	{
   571 	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1927 "));
   572 	__UHEAP_MARK;
   573 
   574 	//Clean up DLL on remove drive
   575 	DeletePlugins();
   576 
   577 	//Clean up the hash file related the DLL
   578 	DoPreUninstall();
   579 
   580 	// Test ListImplementations()
   581 	TBool implListed = IsImplementationListedL();
   582 
   583 	// Check implementation
   584 	// On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's
   585 	// on the X drive. Because of this the implementation will not be listed.
   586 	//
   587 	// On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash
   588 	// is available for the DLL. In this case there is no plugin and no hash so the implementation
   589 	// is not listed.
   590 	test(!implListed);
   591 
   592 	// Test CreateImplementation()
   593 	TInt implCreated = IsImplementationCreatedL();
   594 	// Check implementation
   595 	// On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's
   596 	// on the X drive. Because of this the implementation will not be created.
   597 	//
   598 	// On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash
   599 	// is available for the DLL. In this case there is no plugins and no hash file so the
   600 	// implementation is not created.
   601 	test(implCreated == KErrNotFound);
   602 
   603 	__UHEAP_MARKEND;
   604 	}
   605 
   606 typedef void (*ClassFuncPtrL) (void);
   607 
   608 /**
   609 Wrapper function to call all test functions
   610 
   611 @param		testFuncL pointer to test function
   612 @param		aTestDesc test function name
   613 */
   614 LOCAL_C void DoBasicTestL(ClassFuncPtrL testFuncL, const TDesC& aTestDesc)
   615 	{
   616 	test.Next(aTestDesc);
   617 
   618 	__UHEAP_MARK;
   619   	// find out the number of open handles
   620 	TInt startProcessHandleCount;
   621 	TInt startThreadHandleCount;
   622 	RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
   623 
   624 	//Call the test function
   625 	(*testFuncL)();
   626 
   627 	// check that no handles have leaked
   628 	TInt endProcessHandleCount;
   629 	TInt endThreadHandleCount;
   630 	RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
   631 
   632 	test(startThreadHandleCount  == endThreadHandleCount);
   633 
   634 	__UHEAP_MARKEND;
   635 	}
   636 
   637 LOCAL_C void DoTestsL()
   638 	{
   639 	__UHEAP_MARK;
   640 
   641 //If it is hardware and E: drive deosn't exist, don't run the test.
   642 #if (!defined(__WINSCW__))
   643 	if(!TheFs.IsValidDrive(EDriveE))
   644 		{
   645 		test.Printf(_L("E: drive doesn't exist, the test won't be able to run \n"));
   646 		return;
   647 		}
   648 #endif
   649 
   650 	// Basic tests
   651 	test.Next(_L("Basic Test Suite"));
   652 	test.Start(_L("Basic Test Suite"));
   653 	DoBasicTestL(&TestPreInstallL, _L("TestPreInstallL"));
   654 	DoBasicTestL(&TestPreUninstallL, _L("TestPreUninstallL"));
   655 
   656 	DoBasicTestL(&TestFullInstallL, _L("TestFullInstallL"));
   657 	DoBasicTestL(&TestFullUninstallL, _L("TestFullUninstallL"));
   658 
   659 	DoBasicTestL(&TestNoHashFileInstalledL, _L("TestNoHashFileInstalledL"));
   660 	DoBasicTestL(&TestCorruptHashL, _L("TestCorruptHashL"));
   661 	test.End();
   662 
   663 	__UHEAP_MARKEND;
   664 	}
   665 
   666 
   667 //Initialise the Active Scheduler
   668 //
   669 LOCAL_C void SetupL()
   670 	{
   671 	// Construct and install the Active Scheduler. The Active Schedular is needed
   672 	// by components used by this test as they are ActiveObjects.
   673 	TheActiveScheduler = new(ELeave)CActiveScheduler;
   674 	CActiveScheduler::Install(TheActiveScheduler);
   675 
   676 	// create hash files
   677 	CreateTempHashFileL();
   678 	CreateTempCorruptHashFileL();
   679 
   680 	//Define swinstall property
   681 	PropertyManager::DefineProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,RProperty::EInt);
   682 
   683 	// Initialise swinstall property
   684 	PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisNone);
   685 	}
   686 
   687 GLDEF_C TInt E32Main()
   688 	{
   689 	__UHEAP_MARK;
   690 
   691 	test.Printf(_L("\n"));
   692 	test.Title();
   693 	test.Start(_L("Hash Tests"));
   694 
   695 	TheTrapCleanup = CTrapCleanup::New();
   696 
   697 	//Delete swinstall property if it already exists
   698 	PropertyManager::DeleteProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue);
   699 
   700 	TInt err = TheFs.Connect();
   701 	test(err == KErrNone);
   702 	TRAP(err, SetupL());
   703 	test(err == KErrNone);
   704 
   705 
   706 	// Perform tests.
   707 	TRAP(err,DoTestsL());
   708 	test(err==KErrNone);
   709 
   710 	DeleteTempHashFileL();
   711 	DeleteTempCorruptHashFileL();
   712 
   713 	//Delete swinstall property
   714 	PropertyManager::DeleteProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue);
   715 
   716 #if !defined(__WINSCW__)
   717 	DeleteRSCFolderOnDrive(EDriveE);
   718 #endif
   719 
   720 	delete TheActiveScheduler;
   721 	TheFs.Close();
   722 	delete TheTrapCleanup;
   723 
   724 	test.End();
   725 	test.Close();
   726 
   727 	__UHEAP_MARKEND;
   728 	return (KErrNone);
   729 	}