sl@0: // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // Contains tests to exercise the hash checking feature for removable drives sl@0: // sl@0: // sl@0: sl@0: sl@0: #include sl@0: #include "../EcomTestUtils/EcomTestUtils.h" sl@0: #include sl@0: #include sl@0: #include "../Example/EComHashExample.h" sl@0: #include "../EcomTestUtils/TPropertyManager.h" sl@0: sl@0: using namespace Swi; sl@0: sl@0: LOCAL_D RTest test(_L("t_hashcheck.exe")); sl@0: sl@0: LOCAL_D CTrapCleanup* TheTrapCleanup = NULL; sl@0: sl@0: LOCAL_D CActiveScheduler* TheActiveScheduler = NULL; sl@0: sl@0: LOCAL_D RFs TheFs; sl@0: sl@0: #define UNUSED_VAR(a) a = a sl@0: sl@0: // Implementaion IDs used for testing sl@0: const TUid KUidTestInterface = {0x10009E34}; sl@0: const TUid KUidTestImplementation = {0x10009E35}; sl@0: sl@0: // Plugins used in tests. sl@0: _LIT(KEComHashExampleDllOnZ, "z:\\RAMOnly\\EComHashExample.dll"); sl@0: _LIT(KEComHashExampleRscOnZ, "z:\\RAMOnly\\EComHashExample.rsc"); sl@0: sl@0: _LIT(KEComAllRSCFilesName, "\\Resource\\Plugins\\*.rsc"); sl@0: _LIT(KEComRscDirName, "\\Resource\\Plugins"); sl@0: sl@0: #if defined(__WINSCW__) // X: on emulator sl@0: _LIT(KEComHashExampleDllOnRemovableDrive, "X:\\sys\\bin\\EComHashExample.dll"); sl@0: _LIT(KEComHashExampleRscOnRemovableDrive, "X:\\resource\\plugins\\EComHashExample.rsc"); sl@0: #else // E: on hardware sl@0: _LIT(KEComHashExampleDllOnRemovableDrive, "E:\\sys\\bin\\EComHashExample.dll"); sl@0: _LIT(KEComHashExampleRscOnRemovableDrive, "E:\\resource\\plugins\\EComHashExample.rsc"); sl@0: #endif sl@0: sl@0: // hash files sl@0: _LIT(KEComTempHashFileOnC, "c:\\EComTempHashFile.dll"); sl@0: _LIT(KEComTempCorruptHashFileOnC, "c:\\EComTempCorruptHashFile.dll"); sl@0: _LIT(KEComHashExampleHashFileOnRemovableDrive, "c:\\sys\\hash\\EComHashExample.dll"); sl@0: _LIT(KEComCorruptHash, "12345678912345678900"); sl@0: sl@0: const TInt KHashFileReadSize = 1024*8; sl@0: sl@0: void CreateTempHashFileL() sl@0: { sl@0: // Create valid hash file for the DLL to be used during this test. sl@0: TInt readsize = KHashFileReadSize; sl@0: HBufC8* block0 = HBufC8::NewLC(readsize); sl@0: TPtr8 fileblock0(block0->Des()); sl@0: CSHA1* hasher=CSHA1::NewL(); sl@0: CleanupStack::PushL(hasher); sl@0: sl@0: RFile file; sl@0: CleanupClosePushL(file); sl@0: User::LeaveIfError(file.Open(TheFs, KEComHashExampleDllOnZ, EFileRead)); sl@0: sl@0: TInt size; sl@0: User::LeaveIfError(file.Size(size)); sl@0: TInt offset=0; sl@0: do { sl@0: if((size - offset) < readsize) sl@0: readsize = (size - offset); sl@0: User::LeaveIfError(file.Read(offset, fileblock0, readsize)); sl@0: hasher->Update(fileblock0); sl@0: offset+=readsize; sl@0: } sl@0: while(offset < size); sl@0: sl@0: CleanupStack::PopAndDestroy(1); // file sl@0: sl@0: TBuf8 hash; sl@0: hash=hasher->Final(); sl@0: sl@0: CleanupStack::PopAndDestroy(2); // block0, hasher sl@0: sl@0: // write hash to file sl@0: RFile tempHashFile; sl@0: CleanupClosePushL(tempHashFile); sl@0: User::LeaveIfError(tempHashFile.Replace(TheFs, KEComTempHashFileOnC, EFileWrite)); sl@0: tempHashFile.Write(hash); sl@0: CleanupStack::PopAndDestroy(1); // tempHashFile sl@0: } sl@0: sl@0: void DeleteTempHashFileL() sl@0: { sl@0: TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComTempHashFileOnC)); sl@0: test(err == KErrNone); sl@0: } sl@0: sl@0: void CreateTempCorruptHashFileL() sl@0: { sl@0: // write corrupt hash to file sl@0: TBuf8 hash; sl@0: hash.Append(KEComCorruptHash); sl@0: RFile tempHashFile; sl@0: CleanupClosePushL(tempHashFile); sl@0: User::LeaveIfError(tempHashFile.Replace(TheFs, KEComTempCorruptHashFileOnC, EFileWrite)); sl@0: tempHashFile.Write(hash); sl@0: CleanupStack::PopAndDestroy(1); // tempHashFile sl@0: } sl@0: sl@0: void DeleteTempCorruptHashFileL() sl@0: { sl@0: TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComTempCorruptHashFileOnC)); sl@0: test(err == KErrNone); sl@0: } sl@0: sl@0: void CopyHashFile() sl@0: { sl@0: TRAPD(err, EComTestUtils::FileManCopyFileL(KEComTempHashFileOnC, sl@0: KEComHashExampleHashFileOnRemovableDrive)); sl@0: test(err == KErrNone); sl@0: } sl@0: sl@0: void DeleteHashFile() sl@0: { sl@0: TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComHashExampleHashFileOnRemovableDrive)); sl@0: UNUSED_VAR(err); sl@0: sl@0: // If ECOM server is already running we need to allow some time for re-discovery sl@0: // to complete. sl@0: WAIT_FOR3s; sl@0: } sl@0: sl@0: void CopyCorruptHashFile() sl@0: { sl@0: TRAPD(err, EComTestUtils::FileManCopyFileL(KEComTempCorruptHashFileOnC, sl@0: KEComHashExampleHashFileOnRemovableDrive)); sl@0: test(err == KErrNone); sl@0: } sl@0: sl@0: void CopyPlugins() sl@0: { sl@0: TRAPD(err, EComTestUtils::FileManCopyFileL(KEComHashExampleDllOnZ, KEComHashExampleDllOnRemovableDrive)); sl@0: test(err == KErrNone); sl@0: TRAP(err, EComTestUtils::FileManCopyFileL(KEComHashExampleRscOnZ, KEComHashExampleRscOnRemovableDrive)); sl@0: test(err == KErrNone); sl@0: sl@0: // If ECOM server is already running we need to allow some time for re-discovery sl@0: // to complete. sl@0: WAIT_FOR3s; sl@0: } sl@0: sl@0: void DeletePlugins() sl@0: { sl@0: TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComHashExampleDllOnRemovableDrive)); sl@0: UNUSED_VAR(err); sl@0: TRAP(err, EComTestUtils::FileManDeleteFileL(KEComHashExampleRscOnRemovableDrive)); sl@0: UNUSED_VAR(err); sl@0: sl@0: // If ECOM server is already running we need to allow some time for re-discovery sl@0: // to complete. sl@0: WAIT_FOR3s; sl@0: } sl@0: sl@0: sl@0: void DeleteRSCFolderOnDrive(TUint aDriveNum) sl@0: { sl@0: TInt err=KErrNone; sl@0: TDriveUnit aDrive(aDriveNum); sl@0: sl@0: TBuf<256> resourceFileName; sl@0: resourceFileName.Append(aDrive.Name()); sl@0: resourceFileName.Append(KEComAllRSCFilesName); sl@0: TRAP(err, EComTestUtils::FileManDeleteFileL(resourceFileName)); sl@0: sl@0: TBuf<256> resourceDirName; sl@0: resourceDirName.Append(aDrive.Name()); sl@0: resourceDirName.Append(KEComRscDirName); sl@0: TRAP(err, EComTestUtils::FileManDeleteDirL(resourceDirName)); sl@0: } sl@0: sl@0: TBool IsImplementationListedL() sl@0: { sl@0: RImplInfoPtrArray implArray; sl@0: REComSession::ListImplementationsL(KUidTestInterface, implArray); sl@0: sl@0: TBool found = EFalse; sl@0: TInt count = implArray.Count(); sl@0: while(count) sl@0: { sl@0: count--; sl@0: if(implArray[count]->ImplementationUid() == KUidTestImplementation) sl@0: { sl@0: found = ETrue; sl@0: break; sl@0: } sl@0: } sl@0: REComSession::FinalClose(); sl@0: implArray.ResetAndDestroy(); sl@0: return found; sl@0: } sl@0: sl@0: TInt IsImplementationCreatedL() sl@0: { sl@0: TUid dtor_ID_Key; sl@0: TAny* ptr = NULL; sl@0: TRAPD(err, ptr = REComSession::CreateImplementationL(KUidTestImplementation, dtor_ID_Key)); sl@0: sl@0: CImplementationHashExample* implPtr = reinterpret_cast (ptr); sl@0: sl@0: if(err == KErrNone) sl@0: { sl@0: REComSession::DestroyedImplementation(dtor_ID_Key); sl@0: delete implPtr; sl@0: } sl@0: sl@0: REComSession::FinalClose(); sl@0: return err; sl@0: } sl@0: sl@0: void DoPreInstall() sl@0: { sl@0: // Install in progress sl@0: PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisInstall); sl@0: CopyHashFile(); sl@0: WAIT_FOR1s; sl@0: sl@0: // Install successful sl@0: PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisInstall); sl@0: WAIT_FOR3s; sl@0: sl@0: // Reset sl@0: PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisNone); sl@0: WAIT_FOR1s; sl@0: } sl@0: sl@0: void DoCorruptPreInstall() sl@0: { sl@0: // Install in progress sl@0: PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisInstall); sl@0: CopyCorruptHashFile(); sl@0: WAIT_FOR1s; sl@0: sl@0: // Install successful sl@0: PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisInstall); sl@0: WAIT_FOR3s; sl@0: sl@0: // Reset sl@0: PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisNone); sl@0: WAIT_FOR1s; sl@0: } sl@0: sl@0: void DoPreUninstall() sl@0: { sl@0: // Uninstall in progress sl@0: PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisUninstall); sl@0: DeleteHashFile(); sl@0: WAIT_FOR1s; sl@0: sl@0: // Uninstall successful sl@0: PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisUninstall); sl@0: WAIT_FOR3s; sl@0: sl@0: // Reset sl@0: PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisNone); sl@0: WAIT_FOR1s; sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-ECOM-CT-1922 sl@0: @SYMTestCaseDesc Test that implementation on removable drive is not available sl@0: when no hash file has been installed. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Copy plugins to removable drive. sl@0: Call ListImplementations() and CreateImplementation() sl@0: Check implementation is unavailable. sl@0: @SYMTestExpectedResults The test must not fail. sl@0: @SYMDEF PDEF090578 sl@0: */ sl@0: LOCAL_C void TestNoHashFileInstalledL() sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1922 ")); sl@0: __UHEAP_MARK; sl@0: sl@0: // Test ListImplementations() sl@0: CopyPlugins(); sl@0: TBool implListed = IsImplementationListedL(); sl@0: sl@0: // Check implementation sl@0: // On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's sl@0: // on the X drive. Because of this the implementation will not be listed. sl@0: // sl@0: // On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash sl@0: // is available for the DLL. In this case there is no hash so the implementation is sl@0: // not listed. sl@0: test(!implListed); sl@0: sl@0: // Test CreateImplementation() sl@0: TInt implCreated = IsImplementationCreatedL(); sl@0: sl@0: // Check implementation sl@0: // On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's sl@0: // on the X drive. Because of this the implementation will not be created. sl@0: // sl@0: // On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash sl@0: // is available for the DLL. In this case there is no hash so the implementation is sl@0: // not created. sl@0: test(implCreated == KErrNotFound); sl@0: sl@0: DeletePlugins(); sl@0: __UHEAP_MARKEND; sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-ECOM-CT-1923 sl@0: @SYMTestCaseDesc Test that implementation on removable drive is available sl@0: when a Pre Install occurs exists. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Copy plugins to removable drive. sl@0: Call ListImplementations() and CreateImplementation() sl@0: Check implementation is unavailable. sl@0: Emulate pre-install. sl@0: Call ListImplementations() and CreateImplementation() sl@0: Check implementation is available. sl@0: Emulate uninstall. sl@0: Call ListImplementations() and CreateImplementation() sl@0: Check implementation is unavailable. sl@0: @SYMTestExpectedResults The test must not fail. sl@0: @SYMDEF PDEF090578 sl@0: */ sl@0: LOCAL_C void TestPreInstallL() sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1923 ")); sl@0: __UHEAP_MARK; sl@0: sl@0: // Only copy plugins - during pre-install plugins exists before the install occurs sl@0: CopyPlugins(); sl@0: sl@0: // Test ListImplementations() sl@0: TBool implListed = IsImplementationListedL(); sl@0: sl@0: // Check implementation sl@0: // On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's sl@0: // on the X drive. Because of this the implementation will not be listed. sl@0: // sl@0: // On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash sl@0: // is available for the DLL. In this case there is no hash because install has not occurred sl@0: // so the implementation is not listed. sl@0: test(!implListed); sl@0: sl@0: // Test CreateImplementation() sl@0: // No hash so no implementation should be created. sl@0: TInt implCreated = IsImplementationCreatedL(); sl@0: sl@0: // Check implementation sl@0: // On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's sl@0: // on the X drive. Because of this the implementation will not be created. sl@0: // sl@0: // On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash sl@0: // is available for the DLL. In this case there is no hash because install has not occurred sl@0: // so the implementation is not created. sl@0: test(implCreated == KErrNotFound); sl@0: sl@0: // Do install sl@0: DoPreInstall(); sl@0: sl@0: // Test ListImplementations() sl@0: implListed = IsImplementationListedL(); sl@0: sl@0: _LIT(KMessage3,"Pre-Install 3: List = %d"); sl@0: RDebug::Print(KMessage3, implListed); sl@0: // Check implementation sl@0: #if defined(__WINSCW__) sl@0: // On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's sl@0: // on the X drive. Because of this the implementation will not be listed. sl@0: // sl@0: test(!implListed); sl@0: #else sl@0: // On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash sl@0: // is available for the DLL. In this case there is a hash so the implementation is sl@0: // listed. sl@0: test(implListed); sl@0: #endif sl@0: sl@0: // Test CreateImplementation() sl@0: implCreated = IsImplementationCreatedL(); sl@0: sl@0: // Check implementation was created sl@0: #if defined(__WINSCW__) sl@0: // On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's sl@0: // on the X drive. Because of this the implementation will not be created. sl@0: // sl@0: test(implCreated == KErrNotFound); sl@0: #else sl@0: // On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash sl@0: // is available for the DLL. In this case there is a hash so the implementation is sl@0: // created. sl@0: test(implCreated == KErrNone); sl@0: #endif sl@0: sl@0: __UHEAP_MARKEND; sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-ECOM-CT-1924 sl@0: @SYMTestCaseDesc Test that implementation on removable drive is unavailable sl@0: after an uninstall occurs. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Emulate uninstall. sl@0: Call ListImplementations() and CreateImplementation() sl@0: Check implementation is unavailable. sl@0: @SYMTestExpectedResults The test must not fail. sl@0: @SYMDEF PDEF090578 sl@0: */ sl@0: LOCAL_C void TestPreUninstallL() sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1924 ")); sl@0: __UHEAP_MARK; sl@0: sl@0: // Do uninstall sl@0: DoPreUninstall(); sl@0: sl@0: // Test ListImplementations() sl@0: TBool implListed = IsImplementationListedL(); sl@0: sl@0: // Check implementation sl@0: // On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's sl@0: // on the X drive. Because of this the implementation will not be listed. sl@0: // sl@0: // On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash sl@0: // is available for the DLL. In this case there is no hash so the implementation is sl@0: // not listed. sl@0: test(!implListed); sl@0: sl@0: // Test CreateImplementation() sl@0: TInt implCreated = IsImplementationCreatedL(); sl@0: sl@0: // Check implementation sl@0: // On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's sl@0: // on the X drive. Because of this the implementation will not be created. sl@0: // sl@0: // On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash sl@0: // is available for the DLL. In this case there is no hash so the implementation is sl@0: // not created. sl@0: test(implCreated == KErrNotFound); sl@0: sl@0: DeletePlugins(); sl@0: __UHEAP_MARKEND; sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-ECOM-CT-1925 sl@0: @SYMTestCaseDesc Test that implementation on removable drive is unavailable sl@0: if the hash is corrupted for the DLL. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Emulate pre-install with a corrupted hash file. sl@0: Call ListImplementations() and CreateImplementation() sl@0: Check implementation is unavailable. sl@0: @SYMTestExpectedResults The test must not fail. sl@0: @SYMDEF PDEF090578 sl@0: */ sl@0: LOCAL_C void TestCorruptHashL() sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1925 ")); sl@0: __UHEAP_MARK; sl@0: sl@0: // Only copy plugins - during pre-install plugins exists before the install occurs sl@0: CopyPlugins(); sl@0: sl@0: // Do pre install sl@0: DoCorruptPreInstall(); sl@0: sl@0: // Test ListImplementations() sl@0: TBool implListed = IsImplementationListedL(); sl@0: sl@0: // Check implementation sl@0: // On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's sl@0: // on the X drive. Because of this the implementation will not be listed. sl@0: // sl@0: // On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash sl@0: // is available for the DLL. In this case the hash file is corrupted so the implementation is sl@0: // not listed. sl@0: test(!implListed); sl@0: sl@0: // Test CreateImplementation() sl@0: TInt implCreated = IsImplementationCreatedL(); sl@0: sl@0: // Check implementation sl@0: // On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's sl@0: // on the X drive. Because of this the implementation will not be created. sl@0: // sl@0: // On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash sl@0: // is available for the DLL. In this case the hash file is corrupted so the implementation is sl@0: // not created. sl@0: test(implCreated == KErrNotFound); sl@0: sl@0: DeletePlugins(); sl@0: DeleteHashFile(); sl@0: __UHEAP_MARKEND; sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-ECOM-CT-1926 sl@0: @SYMTestCaseDesc Test that implementation on removable drive is available sl@0: when a full Install occurs exists. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Copy plugins to removable drive. sl@0: Emulate pre-install. sl@0: Call ListImplementations() and CreateImplementation() sl@0: Check implementation is available. sl@0: @SYMTestExpectedResults The test must not fail. sl@0: @SYMDEF PDEF090578 sl@0: */ sl@0: LOCAL_C void TestFullInstallL() sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1926 ")); sl@0: __UHEAP_MARK; sl@0: sl@0: // Only copy plugins - during pre-install plugins exists before the install occurs sl@0: CopyPlugins(); sl@0: // Do install sl@0: DoPreInstall(); sl@0: sl@0: // Test ListImplementations() sl@0: TBool implListed = IsImplementationListedL(); sl@0: sl@0: // Test CreateImplementation() sl@0: TInt implCreated = IsImplementationCreatedL(); sl@0: sl@0: #if defined(__WINSCW__) sl@0: // On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's sl@0: // on the X drive. Because of this the implementation will not be listed and sl@0: // the implementation will not be created. sl@0: test(!implListed); sl@0: test(implCreated == KErrNotFound); sl@0: #else sl@0: // On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash sl@0: // is available for the DLL. In this case there is a valid hash so the implementation is sl@0: // listed and created. sl@0: test(implListed); sl@0: test(implCreated == KErrNone); sl@0: #endif sl@0: sl@0: __UHEAP_MARKEND; sl@0: } sl@0: /** sl@0: @SYMTestCaseID SYSLIB-ECOM-CT-1927 sl@0: @SYMTestCaseDesc Test that implementation on removable drive is unavailable sl@0: after an uninstall occurs. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Emulate uninstall. sl@0: Call ListImplementations() and CreateImplementation() sl@0: Check implementation is unavailable. sl@0: @SYMTestExpectedResults The test must not fail. sl@0: @SYMDEF PDEF09057 sl@0: */ sl@0: LOCAL_C void TestFullUninstallL() sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1927 ")); sl@0: __UHEAP_MARK; sl@0: sl@0: //Clean up DLL on remove drive sl@0: DeletePlugins(); sl@0: sl@0: //Clean up the hash file related the DLL sl@0: DoPreUninstall(); sl@0: sl@0: // Test ListImplementations() sl@0: TBool implListed = IsImplementationListedL(); sl@0: sl@0: // Check implementation sl@0: // On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's sl@0: // on the X drive. Because of this the implementation will not be listed. sl@0: // sl@0: // On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash sl@0: // is available for the DLL. In this case there is no plugin and no hash so the implementation sl@0: // is not listed. sl@0: test(!implListed); sl@0: sl@0: // Test CreateImplementation() sl@0: TInt implCreated = IsImplementationCreatedL(); sl@0: // Check implementation sl@0: // On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's sl@0: // on the X drive. Because of this the implementation will not be created. sl@0: // sl@0: // On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash sl@0: // is available for the DLL. In this case there is no plugins and no hash file so the sl@0: // implementation is not created. sl@0: test(implCreated == KErrNotFound); sl@0: sl@0: __UHEAP_MARKEND; sl@0: } sl@0: sl@0: typedef void (*ClassFuncPtrL) (void); sl@0: sl@0: /** sl@0: Wrapper function to call all test functions sl@0: sl@0: @param testFuncL pointer to test function sl@0: @param aTestDesc test function name sl@0: */ sl@0: LOCAL_C void DoBasicTestL(ClassFuncPtrL testFuncL, const TDesC& aTestDesc) sl@0: { sl@0: test.Next(aTestDesc); sl@0: sl@0: __UHEAP_MARK; sl@0: // find out the number of open handles sl@0: TInt startProcessHandleCount; sl@0: TInt startThreadHandleCount; sl@0: RThread().HandleCount(startProcessHandleCount, startThreadHandleCount); sl@0: sl@0: //Call the test function sl@0: (*testFuncL)(); sl@0: sl@0: // check that no handles have leaked sl@0: TInt endProcessHandleCount; sl@0: TInt endThreadHandleCount; sl@0: RThread().HandleCount(endProcessHandleCount, endThreadHandleCount); sl@0: sl@0: test(startThreadHandleCount == endThreadHandleCount); sl@0: sl@0: __UHEAP_MARKEND; sl@0: } sl@0: sl@0: LOCAL_C void DoTestsL() sl@0: { sl@0: __UHEAP_MARK; sl@0: sl@0: //If it is hardware and E: drive deosn't exist, don't run the test. sl@0: #if (!defined(__WINSCW__)) sl@0: if(!TheFs.IsValidDrive(EDriveE)) sl@0: { sl@0: test.Printf(_L("E: drive doesn't exist, the test won't be able to run \n")); sl@0: return; sl@0: } sl@0: #endif sl@0: sl@0: // Basic tests sl@0: test.Next(_L("Basic Test Suite")); sl@0: test.Start(_L("Basic Test Suite")); sl@0: DoBasicTestL(&TestPreInstallL, _L("TestPreInstallL")); sl@0: DoBasicTestL(&TestPreUninstallL, _L("TestPreUninstallL")); sl@0: sl@0: DoBasicTestL(&TestFullInstallL, _L("TestFullInstallL")); sl@0: DoBasicTestL(&TestFullUninstallL, _L("TestFullUninstallL")); sl@0: sl@0: DoBasicTestL(&TestNoHashFileInstalledL, _L("TestNoHashFileInstalledL")); sl@0: DoBasicTestL(&TestCorruptHashL, _L("TestCorruptHashL")); sl@0: test.End(); sl@0: sl@0: __UHEAP_MARKEND; sl@0: } sl@0: sl@0: sl@0: //Initialise the Active Scheduler sl@0: // sl@0: LOCAL_C void SetupL() sl@0: { sl@0: // Construct and install the Active Scheduler. The Active Schedular is needed sl@0: // by components used by this test as they are ActiveObjects. sl@0: TheActiveScheduler = new(ELeave)CActiveScheduler; sl@0: CActiveScheduler::Install(TheActiveScheduler); sl@0: sl@0: // create hash files sl@0: CreateTempHashFileL(); sl@0: CreateTempCorruptHashFileL(); sl@0: sl@0: //Define swinstall property sl@0: PropertyManager::DefineProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,RProperty::EInt); sl@0: sl@0: // Initialise swinstall property sl@0: PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisNone); sl@0: } sl@0: sl@0: GLDEF_C TInt E32Main() sl@0: { sl@0: __UHEAP_MARK; sl@0: sl@0: test.Printf(_L("\n")); sl@0: test.Title(); sl@0: test.Start(_L("Hash Tests")); sl@0: sl@0: TheTrapCleanup = CTrapCleanup::New(); sl@0: sl@0: //Delete swinstall property if it already exists sl@0: PropertyManager::DeleteProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue); sl@0: sl@0: TInt err = TheFs.Connect(); sl@0: test(err == KErrNone); sl@0: TRAP(err, SetupL()); sl@0: test(err == KErrNone); sl@0: sl@0: sl@0: // Perform tests. sl@0: TRAP(err,DoTestsL()); sl@0: test(err==KErrNone); sl@0: sl@0: DeleteTempHashFileL(); sl@0: DeleteTempCorruptHashFileL(); sl@0: sl@0: //Delete swinstall property sl@0: PropertyManager::DeleteProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue); sl@0: sl@0: #if !defined(__WINSCW__) sl@0: DeleteRSCFolderOnDrive(EDriveE); sl@0: #endif sl@0: sl@0: delete TheActiveScheduler; sl@0: TheFs.Close(); sl@0: delete TheTrapCleanup; sl@0: sl@0: test.End(); sl@0: test.Close(); sl@0: sl@0: __UHEAP_MARKEND; sl@0: return (KErrNone); sl@0: }