Update contrib.
1 // Copyright (c) 2004-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 // This file contains code to test the plugin upgrade feature of ecom as required by CR 65BCA3.
22 #include "../EcomTestUtils/EcomTestUtils.h"
23 #include "Discoverer.h"
24 #include <ecom/ecom.h>
25 #include "EComUidCodes.h"
26 #include "Interface.h" // interface to Plugins
28 // RAM Only RSC and DLL
29 _LIT(KEComPluginDLL, "Z:\\RAMOnly\\DefectPlugin.dll");
30 _LIT(KEComPluginRSC, "Z:\\RAMOnly\\DefectPlugin.rsc");
32 _LIT(KEComPluginDLLOnC, "C:\\sys\\bin\\DefectPlugin.dll");
33 _LIT(KEComPluginRSCOnC, "C:\\Resource\\Plugins\\DefectPlugin.rsc");
34 _LIT(KClearEComResourceDir, "C:\\Resource\\");
35 _LIT(KClearEComSysDir, "C:\\Sys\\");
37 LOCAL_D RTest test(_L("Drive Mount Test"));
40 Copies the Plugins to specific folder for testing purpose
42 LOCAL_C void CopyPlugin()
44 test.Printf(_L("\nCopying plugins into C drive... \n"));
46 TRAP(err, EComTestUtils::FileManCopyFileL(KEComPluginDLL, KEComPluginDLLOnC));
48 TRAP(err, EComTestUtils::FileManCopyFileL(KEComPluginRSC, KEComPluginRSCOnC));
50 // Give ECOM a chance to discover new plugins.
51 // Otherwise ListImplementationsL could fail to find requested implementations.
56 Deletes Plugin from the RAM for cleanup purpose
58 LOCAL_C void DeletePlugin()
60 test.Printf(_L("\nRemoving plugins to clean environment... \n"));
62 TRAP(err, EComTestUtils::FileManDeleteFileL(KEComPluginDLLOnC));
64 TRAP(err, EComTestUtils::FileManDeleteFileL(KEComPluginRSCOnC));
66 // Give ECOM a chance to discover new plugins.
67 // Otherwise ListImplementationsL could fail to find requested implementations.
72 Removes the Plugin folder together with its sub-folders
74 LOCAL_C void RemoveDir()
76 //Remove plugins from the folders before deleting the directory or else
77 //error -14 will be returned on the h2!
80 test.Printf(_L("Removing 'Resource' & 'Sys' folders... \n"));
81 TRAP(err, EComTestUtils::FileManDeleteDirL(KClearEComResourceDir));
83 TRAP(err, EComTestUtils::FileManDeleteDirL(KClearEComSysDir));
86 // Give ECOM a chance to discover new plugins.
87 // Otherwise ListImplementationsL could fail to find requested implementations.
93 Prepares test environment, before the tests get started. This is to ensure that ecom.lang is created,
94 which mustn't change during the test run. Otherwise, the test (although it will pass), won't test
95 the mounting of a drive.
97 LOCAL_C void PrepareTestEnvironmentL()
99 test.Printf(_L("preparing test environment\n"));
100 ECOMTU_KILL_SERVER_L(test);
101 TUid interfaceUid={0x102797A1};
102 RImplInfoPtrArray implArray;
103 //start ecom session, which will create ecom.lang
104 REComSession::ListImplementationsL(interfaceUid, implArray);
105 implArray.ResetAndDestroy();
107 REComSession::FinalClose();
108 ECOMTU_KILL_SERVER_L(test);
111 //environment ready for the tests to start
116 Cleans up the test environment after the test...
118 LOCAL_C void FinalCleanup()
120 DeletePlugin(); //remove plugins from the folders
125 @SYMTestCaseID SYSLIB-ECOM-CT-1446
126 @SYMTestCaseDesc Tests to ensure that the registry index gets updated when mounting
128 @SYMTestPriority High
129 @SYMTestActions Copy plugin into c-drive.
130 Call REComSession::ListImplementations() and check if implementation
132 @SYMTestExpectedResults The test must not fail.
134 LOCAL_C void MountFromBootL()
136 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1446 "));
139 //Copy plugins into C drive
142 TUid interfaceUid={0x102797A1};
143 RImplInfoPtrArray implArray;
146 The following plugin is now added to the C drive and will be discovered by ECOM during startup.
148 Interface UID DLL UID Imp. UID Version DllFile
149 ------------------------------------------------------------------------------------------------------------------------------------------
150 0x102797A1 0x102797A0 0x102797A2 1 C:\\..\\DefectPlugin.dll
154 // Now start ecom discovery and get implementations for IF UID 0x102797A1
155 REComSession::ListImplementationsL(interfaceUid, implArray);
157 //Expected number of implementations returned
158 test(implArray.Count()==1);
160 //Check that the implementation uid returned matched the specs above
161 TUid implUid = implArray[0]->ImplementationUid();
162 TInt version = implArray[0]->Version();
163 TInt drive = implArray[0]->Drive();
166 test(implUid.iUid == 0x102797A2);
170 test(drive == EDriveC);
173 implArray.ResetAndDestroy();
175 REComSession::FinalClose();
176 ECOMTU_KILL_SERVER_L(test);
181 @SYMTestCaseID SYSLIB-ECOM-CT-1448
182 @SYMTestCaseDesc Tests to ensure that the registry index gets updated when unmounting
184 @SYMTestPriority High
185 @SYMTestActions Pluginfolder (resource) is removed (to simulate the removal of an mmc card)
186 Call REComSession::ListImplementations() and check if implementation
188 @SYMTestExpectedResults The test must not fail.
190 LOCAL_C void UnmountFromBootL()
192 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1448 "));
195 The following plugin is added to the C drive and discovered by ECOM. The Plugin will be dismounted
196 and trigger a re-discovery.
198 Interface UID DLL UID Imp. UID Version DllFile
199 ------------------------------------------------------------------------------------------------------------------------------------------
200 0x102797A1 0x102797A0 0x102797A2 1 C:\\..\\DefectPlugin.dll
205 TUid interfaceUid={0x102797A1};
206 RImplInfoPtrArray implArray;
208 // Get implementations for IF UID 0x102797A1
209 REComSession::ListImplementationsL(interfaceUid, implArray);
211 //Expected number of implementations returned
212 test(implArray.Count()==0);
215 implArray.ResetAndDestroy();
218 REComSession::FinalClose();
219 ECOMTU_KILL_SERVER_L(test);
225 @SYMTestCaseID SYSLIB-ECOM-CT-1449
226 @SYMTestCaseDesc Tests to ensure that the registry index gets updated when mounting
227 a drive after boot time
228 @SYMTestPriority High
229 @SYMTestActions First clean the c-drive by removing the plugin folder
230 Next call REComSession::ListImplementations() with any z-drive plugin,
231 to start up ecom server and copy the plugins back into the c-drive, which
232 triggers ecom discovery.
233 Now call REComSession::ListImplementations() and check if implementation
235 @SYMTestExpectedResults The test must not fail.
237 LOCAL_C void MountAfterBootL()
239 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1449 "));
241 //start ecom server and prepare test environment...
243 TUid interfaceUid={0x102797A1};
244 RImplInfoPtrArray implArray;
245 REComSession::ListImplementationsL(interfaceUid, implArray);
249 The following plugin will now be added to the C drive and ECOM will do a rediscovery and discover it.
251 Interface UID DLL UID Imp. UID Version DllFile
252 ------------------------------------------------------------------------------------------------------------------------------------------
253 0x102797A1 0x102797A0 0x102797A2 1 C:\\..\\DefectPlugin.dll
256 //ECom server is running... Now test for mount after boot time.
258 REComSession::ListImplementationsL(interfaceUid, implArray);
260 test(implArray.Count()==1);
262 //Check that the implementation uid returned matched the specs above
263 TUid implUid = implArray[0]->ImplementationUid();
264 TInt version = implArray[0]->Version();
265 TInt drive = implArray[0]->Drive();
267 test(implUid.iUid == 0x102797A2);
271 test(drive == EDriveC);
274 implArray.ResetAndDestroy();
275 REComSession::FinalClose();
276 ECOMTU_KILL_SERVER_L(test);
281 @SYMTestCaseID SYSLIB-ECOM-CT-1450
282 @SYMTestCaseDesc Tests to ensure that the registry index gets updated when unmounting
283 a drive after boot time
284 @SYMTestPriority High
285 @SYMTestActions Remove plugin folders to unmount and call REComSession::ListImplementations()
286 to check if implementation on C drive exists.
287 @SYMTestExpectedResults The test must not fail.
289 LOCAL_C void UnmountAfterBootL()
291 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1450 "));
293 //start ecom server and prepare test environment...
295 TUid interfaceUid={0x102797A1};
296 RImplInfoPtrArray implArray;
297 REComSession::ListImplementationsL(interfaceUid, implArray);
300 The following plugin is added to the C drive and discovered by ECOM. The Plugin will be dismounted
301 and trigger a re-discovery.
303 Interface UID DLL UID Imp. UID Version DllFile
304 ------------------------------------------------------------------------------------------------------------------------------------------
305 0x102797A1 0x102797A0 0x102797A2 1 C:\\..\\DefectPlugin.dll
308 //Ecom server still running...
311 // Get implementations for IF UID 0x102797A1
312 REComSession::ListImplementationsL(interfaceUid, implArray);
314 //Expected number of implementations returned
315 test(implArray.Count()==0);
318 implArray.ResetAndDestroy();
320 REComSession::FinalClose();
321 ECOMTU_KILL_SERVER_L(test);
325 typedef void (*ClassFuncPtrL) (void);
328 Wrapper function to call all test functions
330 @param testFuncL pointer to test function
331 @param aTestDesc test function name
333 LOCAL_C void DoBasicTestL(ClassFuncPtrL testFuncL, const TDesC& aTestDesc)
335 test.Next(aTestDesc);
338 // find out the number of open handles
339 TInt startProcessHandleCount;
340 TInt startThreadHandleCount;
341 RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
343 //Call the test function
346 // check that no handles have leaked
347 TInt endProcessHandleCount;
348 TInt endThreadHandleCount;
349 RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
351 test(startThreadHandleCount == endThreadHandleCount);
357 LOCAL_C void DoTestsL()
359 //don't change the order of the tests!
361 PrepareTestEnvironmentL();
363 DoBasicTestL(&MountFromBootL, _L("MountFromBoot"));
364 DoBasicTestL(&UnmountFromBootL, _L("UnmountFromBoot"));
365 DoBasicTestL(&MountAfterBootL, _L("MountAfterBoot"));
366 DoBasicTestL(&UnmountAfterBootL, _L("UnmountAfterBoot"));
372 GLDEF_C TInt E32Main()
377 test.Start(_L("Drive Mount Tests."));
379 CTrapCleanup* cleanup = CTrapCleanup::New();
380 CActiveScheduler* scheduler = new(ELeave)CActiveScheduler;
381 CActiveScheduler::Install(scheduler);
383 TRAPD(err,DoTestsL());
388 REComSession::FinalClose();