Update contrib.
1 // Copyright (c) 2007-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.
22 #include <ecom/ecom.h>
23 #include "EComUidCodes.h"
24 #include "Interface.h" // interface to Plugins
25 //Test utils for copying the resolver to C
26 #include "../EcomTestUtils/EcomTestUtils.h"
28 REComSession EComSess;
30 LOCAL_D RTest TEST(_L("ECom BUR Test"));
32 _LIT(KEComExDllOnZ, "Z:\\ramonly\\EComSwiExample.dll");
33 _LIT(KEComExDllOnC, "C:\\sys\\bin\\EComSwiExample.dll");
34 _LIT(KEComRscFileOnC, "C:\\resource\\plugins\\EComSwiExample.rsc");
35 _LIT(KEComRscFileOnZ, "Z:\\ramonly\\EComSwiExample.rsc");
37 #define UNUSED_VAR(a) a = a
38 inline LOCAL_C TInt DeleteTestPlugin()
40 TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComExDllOnC));
41 if((err == KErrNone)||(err == KErrNotFound))
43 TRAP(err, EComTestUtils::FileManDeleteFileL(KEComRscFileOnC));
45 if(err == KErrNotFound)
53 Copies the Resolver Plugins to C:\ drive
55 LOCAL_C TInt CopyPluginsL()
57 // Copy the dlls and .rsc files on to RAM
58 TRAPD(err, EComTestUtils::FileManCopyFileL(KEComExDllOnZ, KEComExDllOnC));
59 TEST(err==KErrNone, __LINE__);
60 TRAP(err, EComTestUtils::FileManCopyFileL(KEComRscFileOnZ, KEComRscFileOnC));
61 TEST(err==KErrNone, __LINE__);
67 LOCAL_C void FindImplementationsL(TInt aExpected)
69 REComSession& ecomSession = REComSession::OpenL();
70 CleanupClosePushL(ecomSession);
72 //Get a list of available implementations
73 TUid interfaceUid={0x10009DD9};
74 RImplInfoPtrArray ifArray;
76 ecomSession.ListImplementationsL(interfaceUid,ifArray);
78 //Verify that the expected number of implementations were found
79 TInt count = ifArray.Count();
80 TEST(count == aExpected);
82 TEST.Printf(_L("%d Implementations found...\n"),count);
85 ifArray.ResetAndDestroy();
87 CleanupStack::PopAndDestroy();
90 LOCAL_C TInt SetupTest()
92 //Ensure plugin files are not on C:
93 TInt res = DeleteTestPlugin();
94 TEST.Printf(_L("Deleting test plugin...\n"));
96 //Wait to ensure files are deleted
99 //Create an ECom session to ensure ECom is up and running
100 EComSess = REComSession::OpenL();
102 //Wait to ensure ECom startup has occurred
103 //Wait here for 20s as it takes 15s for the server to register its backup notification
104 User::After(20000000);
110 @SYMTestCaseID SYSLIB-ECOM-CT-4003
111 @SYMTestCaseDesc Tests that notifications will not be ignored during a backup/restore.
112 @SYMTestActions Uses P&S variables to simulate backup/restore
113 Simulates a backup operation, which should suspend the scanning timer
114 Copy plugin to the relevant directory and check to see that this is discovered
115 after the scanning timer is resumed (after backup is complete)
116 @SYMTestExpectedResults Notification of a directory change should occur during backup/restore, but not processed until afterwards
119 LOCAL_C void RunTestL()
123 //ensure that ecom server is already running
124 TInt res = SetupTest();
125 TEST(res == KErrNone);
127 //use the backup client to initiate a backup
128 CBaBackupSessionWrapper* backupClient= CBaBackupSessionWrapper::NewL();
130 //emulate start of backup/restore
131 TBackupOperationAttributes attribs;
132 attribs.iFileFlag=MBackupObserver::EReleaseLockReadOnly;
133 attribs.iOperation=MBackupOperationObserver::EStart;
134 backupClient->NotifyBackupOperationL(attribs);
136 TEST(backupClient->IsBackupOperationRunning());
138 User::After(2000000);
140 //now do copying of some plugin files
143 User::After(2000000);
145 // check ecom has not discovered the plugins as idle scanning timer is disabled
146 FindImplementationsL(0);
148 //emulate end of backup/restore
149 attribs.iFileFlag=MBackupObserver::EReleaseLockReadOnly;
150 attribs.iOperation=MBackupOperationObserver::EEnd;
151 backupClient->NotifyBackupOperationL(attribs);
153 User::After(2000000);
155 //now check whether our plugins that is installed during the backup is registered
156 FindImplementationsL(1);
160 REComSession::FinalClose();
162 //Ensure plugin files are not on C:
163 res = DeleteTestPlugin();
164 TEST(res == KErrNone);
171 GLDEF_C TInt E32Main()
176 TEST.Start(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-4003 ECom BUR tests. "));
178 CTrapCleanup* cleanup = CTrapCleanup::New();
179 CActiveScheduler* scheduler = new(ELeave)CActiveScheduler;
180 CActiveScheduler::Install(scheduler);
182 TRAPD(err,RunTestL());
183 TEST(err==KErrNone, __LINE__);