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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Contains tests to exercise the hash checking feature for removable drives
19 #include <ecom/ecom.h>
20 #include "../EcomTestUtils/EcomTestUtils.h"
22 #include <swi/swispubsubdefs.h>
23 #include "../Example/EComHashExample.h"
24 #include "../EcomTestUtils/TPropertyManager.h"
28 LOCAL_D RTest test(_L("t_hashcheck.exe"));
30 LOCAL_D CTrapCleanup* TheTrapCleanup = NULL;
32 LOCAL_D CActiveScheduler* TheActiveScheduler = NULL;
36 #define UNUSED_VAR(a) a = a
38 // Implementaion IDs used for testing
39 const TUid KUidTestInterface = {0x10009E34};
40 const TUid KUidTestImplementation = {0x10009E35};
42 // Plugins used in tests.
43 _LIT(KEComHashExampleDllOnZ, "z:\\RAMOnly\\EComHashExample.dll");
44 _LIT(KEComHashExampleRscOnZ, "z:\\RAMOnly\\EComHashExample.rsc");
46 _LIT(KEComAllRSCFilesName, "\\Resource\\Plugins\\*.rsc");
47 _LIT(KEComRscDirName, "\\Resource\\Plugins");
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");
58 _LIT(KEComTempHashFileOnC, "c:\\EComTempHashFile.dll");
59 _LIT(KEComTempCorruptHashFileOnC, "c:\\EComTempCorruptHashFile.dll");
60 _LIT(KEComHashExampleHashFileOnRemovableDrive, "c:\\sys\\hash\\EComHashExample.dll");
61 _LIT(KEComCorruptHash, "12345678912345678900");
63 const TInt KHashFileReadSize = 1024*8;
65 void CreateTempHashFileL()
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);
75 CleanupClosePushL(file);
76 User::LeaveIfError(file.Open(TheFs, KEComHashExampleDllOnZ, EFileRead));
79 User::LeaveIfError(file.Size(size));
82 if((size - offset) < readsize)
83 readsize = (size - offset);
84 User::LeaveIfError(file.Read(offset, fileblock0, readsize));
85 hasher->Update(fileblock0);
90 CleanupStack::PopAndDestroy(1); // file
92 TBuf8<SHA1_HASH> hash;
95 CleanupStack::PopAndDestroy(2); // block0, hasher
99 CleanupClosePushL(tempHashFile);
100 User::LeaveIfError(tempHashFile.Replace(TheFs, KEComTempHashFileOnC, EFileWrite));
101 tempHashFile.Write(hash);
102 CleanupStack::PopAndDestroy(1); // tempHashFile
105 void DeleteTempHashFileL()
107 TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComTempHashFileOnC));
108 test(err == KErrNone);
111 void CreateTempCorruptHashFileL()
113 // write corrupt hash to file
114 TBuf8<SHA1_HASH> hash;
115 hash.Append(KEComCorruptHash);
117 CleanupClosePushL(tempHashFile);
118 User::LeaveIfError(tempHashFile.Replace(TheFs, KEComTempCorruptHashFileOnC, EFileWrite));
119 tempHashFile.Write(hash);
120 CleanupStack::PopAndDestroy(1); // tempHashFile
123 void DeleteTempCorruptHashFileL()
125 TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComTempCorruptHashFileOnC));
126 test(err == KErrNone);
131 TRAPD(err, EComTestUtils::FileManCopyFileL(KEComTempHashFileOnC,
132 KEComHashExampleHashFileOnRemovableDrive));
133 test(err == KErrNone);
136 void DeleteHashFile()
138 TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComHashExampleHashFileOnRemovableDrive));
141 // If ECOM server is already running we need to allow some time for re-discovery
146 void CopyCorruptHashFile()
148 TRAPD(err, EComTestUtils::FileManCopyFileL(KEComTempCorruptHashFileOnC,
149 KEComHashExampleHashFileOnRemovableDrive));
150 test(err == KErrNone);
155 TRAPD(err, EComTestUtils::FileManCopyFileL(KEComHashExampleDllOnZ, KEComHashExampleDllOnRemovableDrive));
156 test(err == KErrNone);
157 TRAP(err, EComTestUtils::FileManCopyFileL(KEComHashExampleRscOnZ, KEComHashExampleRscOnRemovableDrive));
158 test(err == KErrNone);
160 // If ECOM server is already running we need to allow some time for re-discovery
167 TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComHashExampleDllOnRemovableDrive));
169 TRAP(err, EComTestUtils::FileManDeleteFileL(KEComHashExampleRscOnRemovableDrive));
172 // If ECOM server is already running we need to allow some time for re-discovery
178 void DeleteRSCFolderOnDrive(TUint aDriveNum)
181 TDriveUnit aDrive(aDriveNum);
183 TBuf<256> resourceFileName;
184 resourceFileName.Append(aDrive.Name());
185 resourceFileName.Append(KEComAllRSCFilesName);
186 TRAP(err, EComTestUtils::FileManDeleteFileL(resourceFileName));
188 TBuf<256> resourceDirName;
189 resourceDirName.Append(aDrive.Name());
190 resourceDirName.Append(KEComRscDirName);
191 TRAP(err, EComTestUtils::FileManDeleteDirL(resourceDirName));
194 TBool IsImplementationListedL()
196 RImplInfoPtrArray implArray;
197 REComSession::ListImplementationsL(KUidTestInterface, implArray);
199 TBool found = EFalse;
200 TInt count = implArray.Count();
204 if(implArray[count]->ImplementationUid() == KUidTestImplementation)
210 REComSession::FinalClose();
211 implArray.ResetAndDestroy();
215 TInt IsImplementationCreatedL()
219 TRAPD(err, ptr = REComSession::CreateImplementationL(KUidTestImplementation, dtor_ID_Key));
221 CImplementationHashExample* implPtr = reinterpret_cast <CImplementationHashExample*> (ptr);
225 REComSession::DestroyedImplementation(dtor_ID_Key);
229 REComSession::FinalClose();
235 // Install in progress
236 PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisInstall);
240 // Install successful
241 PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisInstall);
245 PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisNone);
249 void DoCorruptPreInstall()
251 // Install in progress
252 PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisInstall);
253 CopyCorruptHashFile();
256 // Install successful
257 PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisInstall);
261 PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisNone);
265 void DoPreUninstall()
267 // Uninstall in progress
268 PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisUninstall);
272 // Uninstall successful
273 PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisUninstall);
277 PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisNone);
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.
292 LOCAL_C void TestNoHashFileInstalledL()
294 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1922 "));
297 // Test ListImplementations()
299 TBool implListed = IsImplementationListedL();
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.
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
310 // Test CreateImplementation()
311 TInt implCreated = IsImplementationCreatedL();
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.
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
320 test(implCreated == KErrNotFound);
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.
335 Call ListImplementations() and CreateImplementation()
336 Check implementation is available.
338 Call ListImplementations() and CreateImplementation()
339 Check implementation is unavailable.
340 @SYMTestExpectedResults The test must not fail.
343 LOCAL_C void TestPreInstallL()
345 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1923 "));
348 // Only copy plugins - during pre-install plugins exists before the install occurs
351 // Test ListImplementations()
352 TBool implListed = IsImplementationListedL();
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.
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.
363 // Test CreateImplementation()
364 // No hash so no implementation should be created.
365 TInt implCreated = IsImplementationCreatedL();
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.
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);
379 // Test ListImplementations()
380 implListed = IsImplementationListedL();
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.
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
397 // Test CreateImplementation()
398 implCreated = IsImplementationCreatedL();
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.
405 test(implCreated == KErrNotFound);
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
410 test(implCreated == KErrNone);
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.
427 LOCAL_C void TestPreUninstallL()
429 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1924 "));
435 // Test ListImplementations()
436 TBool implListed = IsImplementationListedL();
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.
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
447 // Test CreateImplementation()
448 TInt implCreated = IsImplementationCreatedL();
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.
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
457 test(implCreated == KErrNotFound);
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.
474 LOCAL_C void TestCorruptHashL()
476 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1925 "));
479 // Only copy plugins - during pre-install plugins exists before the install occurs
483 DoCorruptPreInstall();
485 // Test ListImplementations()
486 TBool implListed = IsImplementationListedL();
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.
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
497 // Test CreateImplementation()
498 TInt implCreated = IsImplementationCreatedL();
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.
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
507 test(implCreated == KErrNotFound);
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.
521 Call ListImplementations() and CreateImplementation()
522 Check implementation is available.
523 @SYMTestExpectedResults The test must not fail.
526 LOCAL_C void TestFullInstallL()
528 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1926 "));
531 // Only copy plugins - during pre-install plugins exists before the install occurs
536 // Test ListImplementations()
537 TBool implListed = IsImplementationListedL();
539 // Test CreateImplementation()
540 TInt implCreated = IsImplementationCreatedL();
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.
547 test(implCreated == KErrNotFound);
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.
553 test(implCreated == KErrNone);
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.
569 LOCAL_C void TestFullUninstallL()
571 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1927 "));
574 //Clean up DLL on remove drive
577 //Clean up the hash file related the DLL
580 // Test ListImplementations()
581 TBool implListed = IsImplementationListedL();
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.
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
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.
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);
606 typedef void (*ClassFuncPtrL) (void);
609 Wrapper function to call all test functions
611 @param testFuncL pointer to test function
612 @param aTestDesc test function name
614 LOCAL_C void DoBasicTestL(ClassFuncPtrL testFuncL, const TDesC& aTestDesc)
616 test.Next(aTestDesc);
619 // find out the number of open handles
620 TInt startProcessHandleCount;
621 TInt startThreadHandleCount;
622 RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
624 //Call the test function
627 // check that no handles have leaked
628 TInt endProcessHandleCount;
629 TInt endThreadHandleCount;
630 RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
632 test(startThreadHandleCount == endThreadHandleCount);
637 LOCAL_C void DoTestsL()
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))
645 test.Printf(_L("E: drive doesn't exist, the test won't be able to run \n"));
651 test.Next(_L("Basic Test Suite"));
652 test.Start(_L("Basic Test Suite"));
653 DoBasicTestL(&TestPreInstallL, _L("TestPreInstallL"));
654 DoBasicTestL(&TestPreUninstallL, _L("TestPreUninstallL"));
656 DoBasicTestL(&TestFullInstallL, _L("TestFullInstallL"));
657 DoBasicTestL(&TestFullUninstallL, _L("TestFullUninstallL"));
659 DoBasicTestL(&TestNoHashFileInstalledL, _L("TestNoHashFileInstalledL"));
660 DoBasicTestL(&TestCorruptHashL, _L("TestCorruptHashL"));
667 //Initialise the Active Scheduler
669 LOCAL_C void SetupL()
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);
677 CreateTempHashFileL();
678 CreateTempCorruptHashFileL();
680 //Define swinstall property
681 PropertyManager::DefineProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,RProperty::EInt);
683 // Initialise swinstall property
684 PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisNone);
687 GLDEF_C TInt E32Main()
691 test.Printf(_L("\n"));
693 test.Start(_L("Hash Tests"));
695 TheTrapCleanup = CTrapCleanup::New();
697 //Delete swinstall property if it already exists
698 PropertyManager::DeleteProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue);
700 TInt err = TheFs.Connect();
701 test(err == KErrNone);
703 test(err == KErrNone);
707 TRAP(err,DoTestsL());
710 DeleteTempHashFileL();
711 DeleteTempCorruptHashFileL();
713 //Delete swinstall property
714 PropertyManager::DeleteProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue);
716 #if !defined(__WINSCW__)
717 DeleteRSCFolderOnDrive(EDriveE);
720 delete TheActiveScheduler;
722 delete TheTrapCleanup;