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: sl@0: REComSession EComSess; sl@0: sl@0: LOCAL_D RTest TEST(_L("ECom BUR 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: 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: /** 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: 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: 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: //Wait here for 20s as it takes 15s for the server to register its backup notification sl@0: User::After(20000000); sl@0: sl@0: return res; sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-ECOM-CT-4003 sl@0: @SYMTestCaseDesc Tests that notifications will not be ignored during a backup/restore. sl@0: @SYMTestActions Uses P&S variables to simulate backup/restore sl@0: Simulates a backup operation, which should suspend the scanning timer sl@0: Copy plugin to the relevant directory and check to see that this is discovered sl@0: after the scanning timer is resumed (after backup is complete) sl@0: @SYMTestExpectedResults Notification of a directory change should occur during backup/restore, but not processed until afterwards sl@0: @SYMDEF DEF103909 sl@0: */ sl@0: LOCAL_C void RunTestL() sl@0: { sl@0: __UHEAP_MARK; sl@0: sl@0: //ensure that ecom server is already running sl@0: TInt res = SetupTest(); sl@0: TEST(res == KErrNone); sl@0: sl@0: //use the backup client to initiate a backup sl@0: CBaBackupSessionWrapper* backupClient= CBaBackupSessionWrapper::NewL(); sl@0: sl@0: //emulate start of backup/restore sl@0: TBackupOperationAttributes attribs; sl@0: attribs.iFileFlag=MBackupObserver::EReleaseLockReadOnly; sl@0: attribs.iOperation=MBackupOperationObserver::EStart; sl@0: backupClient->NotifyBackupOperationL(attribs); sl@0: sl@0: TEST(backupClient->IsBackupOperationRunning()); sl@0: sl@0: User::After(2000000); sl@0: sl@0: //now do copying of some plugin files sl@0: CopyPluginsL(); sl@0: sl@0: User::After(2000000); sl@0: sl@0: // check ecom has not discovered the plugins as idle scanning timer is disabled sl@0: FindImplementationsL(0); sl@0: sl@0: //emulate end of backup/restore sl@0: attribs.iFileFlag=MBackupObserver::EReleaseLockReadOnly; sl@0: attribs.iOperation=MBackupOperationObserver::EEnd; sl@0: backupClient->NotifyBackupOperationL(attribs); sl@0: sl@0: User::After(2000000); sl@0: sl@0: //now check whether our plugins that is installed during the backup is registered sl@0: FindImplementationsL(1); 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: delete backupClient; 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(" @SYMTestCaseID:SYSLIB-ECOM-CT-4003 ECom BUR 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: }