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.
20 #include <swi/swispubsubdefs.h>
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"
27 #include "../EcomTestUtils/TPropertyManager.h"
31 REComSession EComSess;
33 LOCAL_D RTest TEST(_L("ECom SWI Test"));
35 _LIT(KEComExDllOnZ, "Z:\\ramonly\\EComSwiExample.dll");
36 _LIT(KEComExDllOnC, "C:\\sys\\bin\\EComSwiExample.dll");
37 _LIT(KEComRscFileOnC, "C:\\resource\\plugins\\EComSwiExample.rsc");
38 _LIT(KEComRscFileOnZ, "Z:\\ramonly\\EComSwiExample.rsc");
39 _LIT(KEComRscPath, "C:\\resource\\plugins\\");
41 const TInt KWaitDuration = 5000000; // delay in usecs
43 #define UNUSED_VAR(a) a = a
44 inline LOCAL_C TInt DeleteTestPlugin()
46 TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComExDllOnC));
47 if((err == KErrNone)||(err == KErrNotFound))
49 TRAP(err, EComTestUtils::FileManDeleteFileL(KEComRscFileOnC));
51 if(err == KErrNotFound)
58 LOCAL_C TInt DeletePluginFolder()
60 TRAPD(err, EComTestUtils::FileManDeleteDirL(KEComRscPath));
65 Copies the Resolver Plugins to C:\ drive
67 LOCAL_C TInt CopyPluginsL()
69 // Copy the dlls and .rsc files on to RAM
70 TRAPD(err, EComTestUtils::FileManCopyFileL(KEComExDllOnZ, KEComExDllOnC));
71 TEST(err==KErrNone, __LINE__);
72 TRAP(err, EComTestUtils::FileManCopyFileL(KEComRscFileOnZ, KEComRscFileOnC));
73 TEST(err==KErrNone, __LINE__);
78 LOCAL_C void RegisterForNotificationL(TRequestStatus& aNotifyStatus)
80 REComSession& ecomSession = REComSession::OpenL();
81 CleanupClosePushL(ecomSession);
83 ecomSession.NotifyOnChange(aNotifyStatus);
84 TEST.Printf(_L("Request notification on ECom registration data change\n"));
85 TInt result = aNotifyStatus.Int();
86 TEST(result == KRequestPending);
89 CleanupStack::PopAndDestroy();
92 LOCAL_C void WaitForNotificationL(TBool aExpected, TRequestStatus& aNotifyStatus)
94 //Wait for ECOM Server notification to arrive with timeout
96 CleanupClosePushL(timer);
97 User::LeaveIfError(timer.CreateLocal());
98 TRequestStatus timerStatus;
100 //Wait for ECom notification
101 timer.After(timerStatus, KWaitDuration);
102 TEST(timerStatus.Int() == KRequestPending);
104 TEST.Printf(_L("Waiting for notification from ECOM Server...\n"));
105 User::WaitForRequest(timerStatus, aNotifyStatus);
109 //Verify that we recieved notification from ECom
110 TEST(timerStatus.Int() == KRequestPending);
111 TEST(aNotifyStatus.Int() == KErrNone);
115 //Verify that we have not recieved notification from ECom
116 TEST(timerStatus.Int() == KErrNone);
117 TEST(aNotifyStatus.Int() == KRequestPending);
121 CleanupStack::PopAndDestroy();
124 LOCAL_C void FindImplementationsL(TInt aExpected)
126 REComSession& ecomSession = REComSession::OpenL();
127 CleanupClosePushL(ecomSession);
129 //Get a list of available implementations
130 TUid interfaceUid={0x10009DD9};
131 RImplInfoPtrArray ifArray;
133 ecomSession.ListImplementationsL(interfaceUid,ifArray);
135 //Verify that the expected number of implementations were found
136 TInt count = ifArray.Count();
137 TEST(count == aExpected);
139 TEST.Printf(_L("%d Implementations found...\n"),count);
142 ifArray.ResetAndDestroy();
144 CleanupStack::PopAndDestroy();
148 @SYMTestCaseID SYSLIB-ECOM-CT-3602
149 @SYMTestCaseDesc Tests notification processing when SWI does not exist
150 DEF108840: Undesireable interaction between ECOM and SWI
151 @SYMTestActions Request notifcation of ECom registry change
152 Copy plugin to c:\ and check that notification is recieved
154 @SYMTestExpectedResults Notification should be recieved as normal if SWI is not present
157 LOCAL_C void DoSWITest1L()
160 TRequestStatus notifyStatus;
161 RegisterForNotificationL(notifyStatus);
163 FindImplementationsL(0);
165 //Copy plugin file to c:
166 TEST.Printf(_L("Copy Plugin Files...\n"));
169 WaitForNotificationL(ETrue,notifyStatus);
171 FindImplementationsL(1);
176 @SYMTestCaseID SYSLIB-ECOM-CT-3547
177 @SYMTestCaseDesc Tests notification processing during SWI for
178 DEF108840: Undesireable interaction between ECOM and SWI
179 @SYMTestActions Set P&S variable to indicate SWI in progress.
180 Request notifcation of ECom registry change
181 Copy plugin to c:\ and check that notification is not recieved
182 Clear P&S variable to indicate SWI completion and verify that notification is recieved.
183 @SYMTestExpectedResults Notification should not be recieved while SWI is in progress, but should be
184 recieved when SWI completes
187 LOCAL_C void DoSWITest2L()
190 TInt r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisInstall);
191 TEST.Printf(_L("SWI Started\n"));
193 TRequestStatus notifyStatus;
194 RegisterForNotificationL(notifyStatus);
196 FindImplementationsL(0);
198 //Copy plugin file to c:
199 TEST.Printf(_L("Copy Plugin Files...\n"));
202 //Verify that the wait timed out - we didn't recieve notification
203 WaitForNotificationL(EFalse,notifyStatus);
205 FindImplementationsL(0);
207 //Set SWI as complete
208 r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisNone);
209 TEST.Printf(_L("SWI Complete\n"));
211 WaitForNotificationL(ETrue,notifyStatus);
213 FindImplementationsL(1);
218 @SYMTestCaseID SYSLIB-ECOM-CT-3668
219 @SYMTestCaseDesc Tests notification processing during SWI for
220 INC110470 ECOM does not notify when plug-ins get uninstalled
221 @SYMTestActions Uses P&S variables to simulate SWI install and uninstall
222 Request notification of ECom registry change
223 Verify that notifications are recieved after both install and uninstall
224 @SYMTestExpectedResults Notification should be recieved after both SWI install and uninstall
227 LOCAL_C void DoSWITest3L()
230 TRequestStatus notifyStatus;
231 RegisterForNotificationL(notifyStatus);
233 FindImplementationsL(0);
236 TInt r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisInstall);
237 TEST.Printf(_L("SWI Started\n"));
239 //Copy plugin file to c:
240 TEST.Printf(_L("Copy Plugin Files...\n"));
243 //Set SWI as complete
244 r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisNone);
245 TEST.Printf(_L("SWI Complete\n"));
247 WaitForNotificationL(ETrue,notifyStatus);
249 FindImplementationsL(1);
251 RegisterForNotificationL(notifyStatus);
254 r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisUninstall);
255 TEST.Printf(_L("SWI Started\n"));
257 //delete files from c:
258 TEST.Printf(_L("Delete Plugin Files...\n"));
261 //Delete plugin folder so that drive is unmounted by ECom
262 DeletePluginFolder();
264 //Set SWI as complete
265 r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisNone);
266 TEST.Printf(_L("SWI Complete\n"));
268 WaitForNotificationL(ETrue,notifyStatus);
270 FindImplementationsL(0);
272 RegisterForNotificationL(notifyStatus);
275 r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisInstall);
276 TEST.Printf(_L("SWI Started\n"));
278 //Copy plugin file to c:
279 TEST.Printf(_L("Copy Plugin Files...\n"));
282 //Set SWI as complete
283 r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisNone);
284 TEST.Printf(_L("SWI Complete\n"));
286 WaitForNotificationL(ETrue,notifyStatus);
288 FindImplementationsL(1);
292 @SYMTestCaseID SYSLIB-ECOM-CT-3669
293 @SYMTestCaseDesc Tests robustness of notification processing during SWI
294 @SYMTestActions Uses P&S variables to simulate SWI install and uninstall
295 Request notification of ECom registry change
296 Verify that notifications are recieved after both install and uninstall even
297 if a SWI scan is pending when SWI begins
298 @SYMTestExpectedResults Notification should be recieved after both SWI install and uninstall
301 LOCAL_C void DoSWITest4L()
304 TRequestStatus notifyStatus;
305 RegisterForNotificationL(notifyStatus);
307 //Set SWI as complete
308 PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisNone);
309 TEST.Printf(_L("SWI Complete\n"));
311 FindImplementationsL(0);
314 TInt r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisInstall);
315 TEST.Printf(_L("SWI Started\n"));
317 //Copy plugin file to c:
318 TEST.Printf(_L("Copy Plugin Files...\n"));
321 //Set SWI as complete
322 r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisNone);
323 TEST.Printf(_L("SWI Complete\n"));
325 WaitForNotificationL(ETrue,notifyStatus);
327 FindImplementationsL(1);
329 RegisterForNotificationL(notifyStatus);
332 r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisUninstall);
333 TEST.Printf(_L("SWI Started\n"));
335 //Delete plugin files
336 TEST.Printf(_L("Delete Plugin Files...\n"));
339 //Set SWI as complete
340 r = PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,ESASwisNone);
341 TEST.Printf(_L("SWI Complete\n"));
343 //Wait again for ECom notification
344 WaitForNotificationL(ETrue,notifyStatus);
346 FindImplementationsL(0);
349 LOCAL_C TInt SetupTest()
351 //Ensure plugin files are not on C:
352 TInt res = DeleteTestPlugin();
353 TEST.Printf(_L("Deleting test plugin...\n"));
355 //Wait to ensure files are deleted
356 User::After(2000000);
358 //Create an ECom session to ensure ECom is up and running
359 EComSess = REComSession::OpenL();
361 //Wait to ensure ECom startup has occurred
362 User::After(2000000);
367 LOCAL_C void RunTestL()
371 TInt res = SetupTest();
372 TEST(res == KErrNone);
374 res = PropertyManager::DeleteProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue);
375 TEST(res == KErrNone);
378 TEST.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3602 ECom SWI Test - SWI Not Present "));
385 TEST(res == KErrNone);
387 res = PropertyManager::DefineProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,RProperty::EInt);
388 TEST(res == KErrNone);
390 TEST.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3547 ECom SWI Test - SWI Present "));
397 TEST(res == KErrNone);
399 TEST.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3668 ECom SWI Uninstall Test - SWI Present "));
406 TEST(res == KErrNone);
408 TEST.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3669 ECom SWI Robustness Test "));
411 res = PropertyManager::DeleteProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue);
412 TEST(res == KErrNone);
416 REComSession::FinalClose();
418 //Ensure plugin files are not on C:
419 res = DeleteTestPlugin();
420 TEST(res == KErrNone);
425 GLDEF_C TInt E32Main()
430 TEST.Start(_L("ECom SWI tests."));
432 CTrapCleanup* cleanup = CTrapCleanup::New();
433 CActiveScheduler* scheduler = new(ELeave)CActiveScheduler;
434 CActiveScheduler::Install(scheduler);
436 TRAPD(err,RunTestL());
437 TEST(err==KErrNone, __LINE__);