sl@0: // Copyright (c) 2007-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: // sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: #include sl@0: #include "EComUidCodes.h" sl@0: #include "Interface.h" // interface to Plugins sl@0: //Test utils for copying the resolver to C sl@0: #include "../EcomTestUtils/EcomTestUtils.h" sl@0: #include "../EcomTestUtils/TPropertyManager.h" sl@0: sl@0: using namespace Swi; sl@0: sl@0: REComSession EComSess; sl@0: sl@0: LOCAL_D RTest TEST(_L("ECom SWI Test")); sl@0: sl@0: _LIT(KEComExDllOnZ, "Z:\\ramonly\\EComSwiExample.dll"); sl@0: _LIT(KEComExDllOnC, "C:\\sys\\bin\\EComSwiExample.dll"); sl@0: _LIT(KEComRscFileOnC, "C:\\resource\\plugins\\EComSwiExample.rsc"); sl@0: _LIT(KEComRscFileOnZ, "Z:\\ramonly\\EComSwiExample.rsc"); sl@0: _LIT(KEComRscPath, "C:\\resource\\plugins\\"); sl@0: sl@0: const TInt KWaitDuration = 5000000; // delay in usecs sl@0: sl@0: #define UNUSED_VAR(a) a = a sl@0: inline LOCAL_C TInt DeleteTestPlugin() sl@0: { sl@0: TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComExDllOnC)); sl@0: if((err == KErrNone)||(err == KErrNotFound)) sl@0: { sl@0: TRAP(err, EComTestUtils::FileManDeleteFileL(KEComRscFileOnC)); sl@0: } sl@0: if(err == KErrNotFound) sl@0: { sl@0: err = KErrNone; sl@0: } sl@0: return err; sl@0: } sl@0: sl@0: LOCAL_C TInt DeletePluginFolder() sl@0: { sl@0: TRAPD(err, EComTestUtils::FileManDeleteDirL(KEComRscPath)); sl@0: User::After(1000000); sl@0: return err; sl@0: } sl@0: /** sl@0: Copies the Resolver Plugins to C:\ drive sl@0: */ sl@0: LOCAL_C TInt CopyPluginsL() sl@0: { sl@0: // Copy the dlls and .rsc files on to RAM sl@0: TRAPD(err, EComTestUtils::FileManCopyFileL(KEComExDllOnZ, KEComExDllOnC)); sl@0: TEST(err==KErrNone, __LINE__); sl@0: TRAP(err, EComTestUtils::FileManCopyFileL(KEComRscFileOnZ, KEComRscFileOnC)); sl@0: TEST(err==KErrNone, __LINE__); sl@0: User::After(1000000); sl@0: return err; sl@0: } sl@0: sl@0: LOCAL_C void RegisterForNotificationL(TRequestStatus& aNotifyStatus) sl@0: { sl@0: REComSession& ecomSession = REComSession::OpenL(); sl@0: CleanupClosePushL(ecomSession); sl@0: sl@0: ecomSession.NotifyOnChange(aNotifyStatus); sl@0: TEST.Printf(_L("Request notification on ECom registration data change\n")); sl@0: TInt result = aNotifyStatus.Int(); sl@0: TEST(result == KRequestPending); sl@0: sl@0: ecomSession.Close(); sl@0: CleanupStack::PopAndDestroy(); sl@0: } sl@0: sl@0: LOCAL_C void WaitForNotificationL(TBool aExpected, TRequestStatus& aNotifyStatus) sl@0: { sl@0: //Wait for ECOM Server notification to arrive with timeout sl@0: RTimer timer; sl@0: CleanupClosePushL(timer); sl@0: User::LeaveIfError(timer.CreateLocal()); sl@0: TRequestStatus timerStatus; sl@0: sl@0: //Wait for ECom notification sl@0: timer.After(timerStatus, KWaitDuration); sl@0: TEST(timerStatus.Int() == KRequestPending); sl@0: sl@0: TEST.Printf(_L("Waiting for notification from ECOM Server...\n")); sl@0: User::WaitForRequest(timerStatus, aNotifyStatus); sl@0: sl@0: if(aExpected) sl@0: { sl@0: //Verify that we recieved notification from ECom sl@0: TEST(timerStatus.Int() == KRequestPending); sl@0: TEST(aNotifyStatus.Int() == KErrNone); sl@0: } sl@0: else sl@0: { sl@0: //Verify that we have not recieved notification from ECom sl@0: TEST(timerStatus.Int() == KErrNone); sl@0: TEST(aNotifyStatus.Int() == KRequestPending); sl@0: } sl@0: timer.Cancel(); sl@0: sl@0: CleanupStack::PopAndDestroy(); sl@0: } sl@0: sl@0: LOCAL_C void FindImplementationsL(TInt aExpected) sl@0: { sl@0: REComSession& ecomSession = REComSession::OpenL(); sl@0: CleanupClosePushL(ecomSession); sl@0: sl@0: //Get a list of available implementations sl@0: TUid interfaceUid={0x10009DD9}; sl@0: RImplInfoPtrArray ifArray; sl@0: sl@0: ecomSession.ListImplementationsL(interfaceUid,ifArray); sl@0: sl@0: //Verify that the expected number of implementations were found sl@0: TInt count = ifArray.Count(); sl@0: TEST(count == aExpected); sl@0: sl@0: TEST.Printf(_L("%d Implementations found...\n"),count); sl@0: sl@0: //cleanup sl@0: ifArray.ResetAndDestroy(); sl@0: ecomSession.Close(); sl@0: CleanupStack::PopAndDestroy(); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-ECOM-CT-3602 sl@0: @SYMTestCaseDesc Tests notification processing when SWI does not exist sl@0: DEF108840: Undesireable interaction between ECOM and SWI sl@0: @SYMTestActions Request notifcation of ECom registry change sl@0: Copy plugin to c:\ and check that notification is recieved sl@0: sl@0: @SYMTestExpectedResults Notification should be recieved as normal if SWI is not present sl@0: @SYMDEF DEF108840 sl@0: */ sl@0: LOCAL_C void DoSWITest1L() sl@0: { sl@0: sl@0: TRequestStatus notifyStatus; sl@0: RegisterForNotificationL(notifyStatus); sl@0: sl@0: FindImplementationsL(0); sl@0: sl@0: //Copy plugin file to c: sl@0: TEST.Printf(_L("Copy Plugin Files...\n")); sl@0: CopyPluginsL(); sl@0: sl@0: WaitForNotificationL(ETrue,notifyStatus); sl@0: sl@0: FindImplementationsL(1); sl@0: sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-ECOM-CT-3547 sl@0: @SYMTestCaseDesc Tests notification processing during SWI for sl@0: DEF108840: Undesireable interaction between ECOM and SWI sl@0: @SYMTestActions Set P&S variable to indicate SWI in progress. sl@0: Request notifcation of ECom registry change sl@0: Copy plugin to c:\ and check that notification is not recieved sl@0: Clear P&S variable to indicate SWI completion and verify that notification is recieved. sl@0: @SYMTestExpectedResults Notification should not be recieved while SWI is in progress, but should be sl@0: recieved when SWI completes sl@0: @SYMDEF DEF108840 sl@0: */ sl@0: LOCAL_C void DoSWITest2L() sl@0: { sl@0: //Set SWI as running sl@0: TInt r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisInstall); sl@0: TEST.Printf(_L("SWI Started\n")); sl@0: sl@0: TRequestStatus notifyStatus; sl@0: RegisterForNotificationL(notifyStatus); sl@0: sl@0: FindImplementationsL(0); sl@0: sl@0: //Copy plugin file to c: sl@0: TEST.Printf(_L("Copy Plugin Files...\n")); sl@0: CopyPluginsL(); sl@0: sl@0: //Verify that the wait timed out - we didn't recieve notification sl@0: WaitForNotificationL(EFalse,notifyStatus); sl@0: sl@0: FindImplementationsL(0); sl@0: sl@0: //Set SWI as complete sl@0: r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisNone); sl@0: TEST.Printf(_L("SWI Complete\n")); sl@0: sl@0: WaitForNotificationL(ETrue,notifyStatus); sl@0: sl@0: FindImplementationsL(1); sl@0: sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-ECOM-CT-3668 sl@0: @SYMTestCaseDesc Tests notification processing during SWI for sl@0: INC110470 ECOM does not notify when plug-ins get uninstalled sl@0: @SYMTestActions Uses P&S variables to simulate SWI install and uninstall sl@0: Request notification of ECom registry change sl@0: Verify that notifications are recieved after both install and uninstall sl@0: @SYMTestExpectedResults Notification should be recieved after both SWI install and uninstall sl@0: @SYMDEF INC110470 sl@0: */ sl@0: LOCAL_C void DoSWITest3L() sl@0: { sl@0: sl@0: TRequestStatus notifyStatus; sl@0: RegisterForNotificationL(notifyStatus); sl@0: sl@0: FindImplementationsL(0); sl@0: sl@0: //Set SWI as running sl@0: TInt r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisInstall); sl@0: TEST.Printf(_L("SWI Started\n")); sl@0: sl@0: //Copy plugin file to c: sl@0: TEST.Printf(_L("Copy Plugin Files...\n")); sl@0: CopyPluginsL(); sl@0: sl@0: //Set SWI as complete sl@0: r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisNone); sl@0: TEST.Printf(_L("SWI Complete\n")); sl@0: sl@0: WaitForNotificationL(ETrue,notifyStatus); sl@0: sl@0: FindImplementationsL(1); sl@0: sl@0: RegisterForNotificationL(notifyStatus); sl@0: sl@0: //Set SWI as running sl@0: r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisUninstall); sl@0: TEST.Printf(_L("SWI Started\n")); sl@0: sl@0: //delete files from c: sl@0: TEST.Printf(_L("Delete Plugin Files...\n")); sl@0: DeleteTestPlugin(); sl@0: sl@0: //Delete plugin folder so that drive is unmounted by ECom sl@0: DeletePluginFolder(); sl@0: sl@0: //Set SWI as complete sl@0: r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisNone); sl@0: TEST.Printf(_L("SWI Complete\n")); sl@0: sl@0: WaitForNotificationL(ETrue,notifyStatus); sl@0: sl@0: FindImplementationsL(0); sl@0: sl@0: RegisterForNotificationL(notifyStatus); sl@0: sl@0: //Set SWI as running sl@0: r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisInstall); sl@0: TEST.Printf(_L("SWI Started\n")); sl@0: sl@0: //Copy plugin file to c: sl@0: TEST.Printf(_L("Copy Plugin Files...\n")); sl@0: CopyPluginsL(); sl@0: sl@0: //Set SWI as complete sl@0: r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisNone); sl@0: TEST.Printf(_L("SWI Complete\n")); sl@0: sl@0: WaitForNotificationL(ETrue,notifyStatus); sl@0: sl@0: FindImplementationsL(1); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-ECOM-CT-3669 sl@0: @SYMTestCaseDesc Tests robustness of notification processing during SWI sl@0: @SYMTestActions Uses P&S variables to simulate SWI install and uninstall sl@0: Request notification of ECom registry change sl@0: Verify that notifications are recieved after both install and uninstall even sl@0: if a SWI scan is pending when SWI begins sl@0: @SYMTestExpectedResults Notification should be recieved after both SWI install and uninstall sl@0: @SYMDEF INC110470 sl@0: */ sl@0: LOCAL_C void DoSWITest4L() sl@0: { sl@0: sl@0: TRequestStatus notifyStatus; sl@0: RegisterForNotificationL(notifyStatus); sl@0: sl@0: //Set SWI as complete sl@0: PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisNone); sl@0: TEST.Printf(_L("SWI Complete\n")); sl@0: sl@0: FindImplementationsL(0); sl@0: sl@0: //Set SWI as running sl@0: TInt r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisInstall); sl@0: TEST.Printf(_L("SWI Started\n")); sl@0: sl@0: //Copy plugin file to c: sl@0: TEST.Printf(_L("Copy Plugin Files...\n")); sl@0: CopyPluginsL(); sl@0: sl@0: //Set SWI as complete sl@0: r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisNone); sl@0: TEST.Printf(_L("SWI Complete\n")); sl@0: sl@0: WaitForNotificationL(ETrue,notifyStatus); sl@0: sl@0: FindImplementationsL(1); sl@0: sl@0: RegisterForNotificationL(notifyStatus); sl@0: sl@0: //Set SWI as running sl@0: r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisUninstall); sl@0: TEST.Printf(_L("SWI Started\n")); sl@0: sl@0: //Delete plugin files sl@0: TEST.Printf(_L("Delete Plugin Files...\n")); sl@0: DeleteTestPlugin(); sl@0: sl@0: //Set SWI as complete sl@0: r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisNone); sl@0: TEST.Printf(_L("SWI Complete\n")); sl@0: sl@0: //Wait again for ECom notification sl@0: WaitForNotificationL(ETrue,notifyStatus); sl@0: sl@0: FindImplementationsL(0); sl@0: } sl@0: sl@0: LOCAL_C TInt SetupTest() sl@0: { sl@0: //Ensure plugin files are not on C: sl@0: TInt res = DeleteTestPlugin(); sl@0: TEST.Printf(_L("Deleting test plugin...\n")); sl@0: sl@0: //Wait to ensure files are deleted sl@0: User::After(2000000); sl@0: sl@0: //Create an ECom session to ensure ECom is up and running sl@0: EComSess = REComSession::OpenL(); sl@0: sl@0: //Wait to ensure ECom startup has occurred sl@0: User::After(2000000); sl@0: sl@0: return res; sl@0: } sl@0: sl@0: LOCAL_C void RunTestL() sl@0: { sl@0: __UHEAP_MARK; sl@0: sl@0: TInt res = SetupTest(); sl@0: TEST(res == KErrNone); sl@0: sl@0: res = PropertyManager::DeleteProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue); sl@0: TEST(res == KErrNone); sl@0: sl@0: //Run the test sl@0: TEST.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3602 ECom SWI Test - SWI Not Present ")); sl@0: DoSWITest1L(); sl@0: sl@0: //Cleanup sl@0: EComSess.Close(); sl@0: sl@0: res = SetupTest(); sl@0: TEST(res == KErrNone); sl@0: sl@0: res = PropertyManager::DefineProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,RProperty::EInt); sl@0: TEST(res == KErrNone); sl@0: sl@0: TEST.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3547 ECom SWI Test - SWI Present ")); sl@0: DoSWITest2L(); sl@0: sl@0: //Cleanup sl@0: EComSess.Close(); sl@0: sl@0: res = SetupTest(); sl@0: TEST(res == KErrNone); sl@0: sl@0: TEST.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3668 ECom SWI Uninstall Test - SWI Present ")); sl@0: DoSWITest3L(); sl@0: sl@0: //Cleanup sl@0: EComSess.Close(); sl@0: sl@0: res = SetupTest(); sl@0: TEST(res == KErrNone); sl@0: sl@0: TEST.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3669 ECom SWI Robustness Test ")); sl@0: DoSWITest4L(); sl@0: sl@0: res = PropertyManager::DeleteProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue); sl@0: TEST(res == KErrNone); sl@0: sl@0: //Cleanup sl@0: EComSess.Close(); sl@0: REComSession::FinalClose(); sl@0: sl@0: //Ensure plugin files are not on C: sl@0: res = DeleteTestPlugin(); sl@0: TEST(res == KErrNone); sl@0: sl@0: __UHEAP_MARKEND; sl@0: } sl@0: sl@0: GLDEF_C TInt E32Main() sl@0: { sl@0: __UHEAP_MARK; sl@0: sl@0: TEST.Title(); sl@0: TEST.Start(_L("ECom SWI tests.")); sl@0: sl@0: CTrapCleanup* cleanup = CTrapCleanup::New(); sl@0: CActiveScheduler* scheduler = new(ELeave)CActiveScheduler; sl@0: CActiveScheduler::Install(scheduler); sl@0: sl@0: TRAPD(err,RunTestL()); sl@0: TEST(err==KErrNone, __LINE__); sl@0: sl@0: delete scheduler; sl@0: delete cleanup; sl@0: sl@0: TEST.End(); sl@0: TEST.Close(); sl@0: sl@0: __UHEAP_MARKEND; sl@0: return(0); sl@0: }