os/ossrv/lowlevellibsandfws/pluginfw/Framework/PluginUpgradeTest/t_pluginupgrade.cpp
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"
24 #include <ecom/ecom.h>
25 #include "EComUidCodes.h"
26 #include "Interface.h" // interface to Plugins
28 // RAM Only RSC and DLL
29 _LIT(KRamOnlyEComUpgradeExample1DLL, "Z:\\RAMOnly\\EComUpgradeExample1.dll");
30 _LIT(KRamOnlyEComUpgradeExample1RSC, "Z:\\RAMOnly\\EComUpgradeExample1.rsc");
32 _LIT(KRamOnlyEComUpgradeExample2DLL, "Z:\\RAMOnly\\EComUpgradeExample2.dll");
33 _LIT(KRamOnlyEComUpgradeExample2RSC, "Z:\\RAMOnly\\EComUpgradeExample2.rsc");
35 _LIT(KRamOnlyEComUpgradeExample3DLL, "Z:\\RAMOnly\\EComUpgradeExample3.dll");
36 _LIT(KRamOnlyEComUpgradeExample3RSC, "Z:\\RAMOnly\\EComUpgradeExample3.rsc");
38 _LIT(KEComUpgradeExample1DLLOnC, "C:\\sys\\bin\\EComUpgradeExample1.dll");
39 _LIT(KEComUpgradeExample1RSCOnC, "C:\\Resource\\Plugins\\EComUpgradeExample1.rsc");
41 _LIT(KEComUpgradeExample2DLLOnC, "C:\\sys\\bin\\EComUpgradeExample2.dll");
42 _LIT(KEComUpgradeExample2RSCOnC, "C:\\Resource\\Plugins\\EComUpgradeExample2.rsc");
44 _LIT(KEComUpgradeExample3DLLOnC, "C:\\sys\\bin\\EComUpgradeExample3.dll");
45 _LIT(KEComUpgradeExample3RSCOnC, "C:\\Resource\\Plugins\\EComUpgradeExample3.rsc");
47 _LIT(KRamOnlyEComUpgradeROExample1DLL, "Z:\\RAMOnly\\EComUpgradeROExample1.dll");
48 _LIT(KRamOnlyEComUpgradeROExample1RSC, "Z:\\RAMOnly\\EComUpgradeROExample1.rsc");
50 _LIT(KRamOnlyEComUpgradeROExample2DLL, "Z:\\RAMOnly\\EComUpgradeROExample2.dll");
51 _LIT(KRamOnlyEComUpgradeROExample2RSC, "Z:\\RAMOnly\\EComUpgradeROExample2.rsc");
53 _LIT(KRamOnlyEComUpgradeROExample3DLL, "Z:\\RAMOnly\\EComUpgradeROExample3.dll");
54 _LIT(KRamOnlyEComUpgradeROExample3RSC, "Z:\\RAMOnly\\EComUpgradeROExample3.rsc");
56 _LIT(KEComUpgradeROExample1DLLOnC, "C:\\sys\\bin\\EComUpgradeROExample1.dll");
57 _LIT(KEComUpgradeROExample1RSCOnC, "C:\\Resource\\Plugins\\EComUpgradeROExample1.rsc");
59 _LIT(KEComUpgradeROExample2DLLOnC, "C:\\sys\\bin\\EComUpgradeROExample2.dll");
60 _LIT(KEComUpgradeROExample2RSCOnC, "C:\\Resource\\Plugins\\EComUpgradeROExample2.rsc");
62 _LIT(KEComUpgradeROExample3DLLOnC, "C:\\sys\\bin\\EComUpgradeROExample3.dll");
63 _LIT(KEComUpgradeROExample3RSCOnC, "C:\\Resource\\Plugins\\EComUpgradeROExample3.rsc");
65 const TInt KOneSecond = 1000000;
66 const TInt KInterfaceUid = 0x10009DBA;
67 const TInt KRomOnlyInterfaceUid = 0x10009DBD;
68 const TInt KImplementationUid = 0x10009DBB;
69 const TInt KRomOnlyImplementationUid = 0x10009DBE;
71 LOCAL_D RTest TheTest(_L("Plugin Upgrade Test"));
74 Test macroes and functions
76 static void Check(TInt aValue, TInt aExpected, TInt aLine)
78 if(aValue != aExpected)
80 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
81 TheTest(EFalse, aLine);
84 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
87 Kill Ecom Server for testing purposes
89 static void KillEComServerL()
91 //Need to ensure that the EComServer process is killed before even starting this test by using
92 //the EComTestUtils library
93 _LIT(KEComServerProcessName,"ecomserver");
94 TRAPD(error, EComTestUtils::KillProcessL(KEComServerProcessName));
98 class RPluginUpgradeTest
101 static void UpgradePluginSameNameLowerVersionL(TBool aIsRomOnly);
102 static void UpgradePluginDifferentNameLowerVersionL(TBool aIsRomOnly);
103 static void UpgradePluginSameNameHigherVersionL(TBool aIsRomOnly);
104 static void UpgradePluginDifferentNameHigherVersionL(TBool aIsRomOnly);
105 static void UpgradePluginSameNameSameVersionL(TBool aIsRomOnly);
106 static void UpgradePluginDifferentNameSameVersionL(TBool aIsRomOnly);
110 Copies the Plugins to specific folder for testing purpose
112 LOCAL_C void CopyPluginSameNameLowerVersion(TBool aIsRomOnly)
117 TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeROExample1DLL, KEComUpgradeROExample2DLLOnC));
118 TEST2(err, KErrNone);
119 TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeROExample1RSC, KEComUpgradeROExample2RSCOnC));
120 TEST2(err, KErrNone);
124 TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeExample1DLL, KEComUpgradeExample2DLLOnC));
125 TEST2(err, KErrNone);
126 TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeExample1RSC, KEComUpgradeExample2RSCOnC));
127 TEST2(err, KErrNone);
131 LOCAL_C void CopyPluginDifferentNameLowerVersion(TBool aIsRomOnly)
136 TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeROExample1DLL, KEComUpgradeROExample1DLLOnC));
137 TEST2(err, KErrNone);
138 TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeROExample1RSC, KEComUpgradeROExample1RSCOnC));
139 TEST2(err, KErrNone);
143 TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeExample1DLL, KEComUpgradeExample1DLLOnC));
144 TEST2(err, KErrNone);
145 TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeExample1RSC, KEComUpgradeExample1RSCOnC));
146 TEST2(err, KErrNone);
150 LOCAL_C void CopyPluginSameNameHigherVersion(TBool aIsRomOnly)
155 TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeROExample3DLL, KEComUpgradeROExample2DLLOnC));
156 TEST2(err, KErrNone);
157 TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeROExample3RSC, KEComUpgradeROExample2RSCOnC));
158 TEST2(err, KErrNone);
162 TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeExample3DLL, KEComUpgradeExample2DLLOnC));
163 TEST2(err, KErrNone);
164 TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeExample3RSC, KEComUpgradeExample2RSCOnC));
165 TEST2(err, KErrNone);
169 LOCAL_C void CopyPluginDifferentNameHigherVersion(TBool aIsRomOnly)
174 TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeROExample3DLL, KEComUpgradeROExample3DLLOnC));
175 TEST2(err, KErrNone);
176 TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeROExample3RSC, KEComUpgradeROExample3RSCOnC));
177 TEST2(err, KErrNone);
181 TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeExample3DLL, KEComUpgradeExample3DLLOnC));
182 TEST2(err, KErrNone);
183 TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeExample3RSC, KEComUpgradeExample3RSCOnC));
184 TEST2(err, KErrNone);
188 LOCAL_C void CopyPluginSameNameSameVersion(TBool aIsRomOnly)
193 TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeROExample2DLL, KEComUpgradeROExample2DLLOnC));
194 TEST2(err, KErrNone);
195 TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeROExample2RSC, KEComUpgradeROExample2RSCOnC));
196 TEST2(err, KErrNone);
200 TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeExample2DLL, KEComUpgradeExample2DLLOnC));
201 TEST2(err, KErrNone);
202 TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeExample2RSC, KEComUpgradeExample2RSCOnC));
203 TEST2(err, KErrNone);
207 LOCAL_C void CopyPluginDifferentNameSameVersion(TBool aIsRomOnly)
212 TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeROExample2DLL, KEComUpgradeROExample3DLLOnC));
213 TEST2(err, KErrNone);
214 TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeROExample2RSC, KEComUpgradeROExample3RSCOnC));
215 TEST2(err, KErrNone);
219 TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeExample2DLL, KEComUpgradeExample3DLLOnC));
220 TEST2(err, KErrNone);
221 TRAP(err, EComTestUtils::FileManCopyFileL(KRamOnlyEComUpgradeExample2RSC, KEComUpgradeExample3RSCOnC));
222 TEST2(err, KErrNone);
226 inline LOCAL_C void ResetEcom()
229 REComSession::FinalClose();
235 // Deleting plugin from the RAM for cleanup purpose
236 inline LOCAL_C void DeleteUpgradeExample1Plugins(TBool aIsRomOnly)
241 TRAP(err, EComTestUtils::FileManDeleteFileL(KEComUpgradeROExample1DLLOnC));
242 TRAP(err, EComTestUtils::FileManDeleteFileL(KEComUpgradeROExample1RSCOnC));
246 TRAP(err, EComTestUtils::FileManDeleteFileL(KEComUpgradeExample1DLLOnC));
247 TRAP(err, EComTestUtils::FileManDeleteFileL(KEComUpgradeExample1RSCOnC));
251 inline LOCAL_C void DeleteUpgradeExample2Plugins(TBool aIsRomOnly)
256 TRAP(err, EComTestUtils::FileManDeleteFileL(KEComUpgradeROExample2DLLOnC));
257 TRAP(err, EComTestUtils::FileManDeleteFileL(KEComUpgradeROExample2RSCOnC));
261 TRAP(err, EComTestUtils::FileManDeleteFileL(KEComUpgradeExample2DLLOnC));
262 TRAP(err, EComTestUtils::FileManDeleteFileL(KEComUpgradeExample2RSCOnC));
266 inline LOCAL_C void DeleteUpgradeExample3Plugins(TBool aIsRomOnly)
271 TRAP(err, EComTestUtils::FileManDeleteFileL(KEComUpgradeROExample3DLLOnC));
272 TRAP(err, EComTestUtils::FileManDeleteFileL(KEComUpgradeROExample3RSCOnC));
276 TRAP(err, EComTestUtils::FileManDeleteFileL(KEComUpgradeExample3DLLOnC));
277 TRAP(err, EComTestUtils::FileManDeleteFileL(KEComUpgradeExample3RSCOnC));
281 inline LOCAL_C void CheckDefaultPluginOnZ(TBool aIsRomOnly)
283 RImplInfoPtrArray implArray;
289 The following Plugin exists on the Z drive and will be discovered by ECOM during startup.
291 Interface UID DLL UID Imp. UID Version DllFile
292 ---------------------------------------------------------------------------------------
293 0x10009DBD 0x10009DBC 0x10009DBE 2 Z:\\..\\EComUpgradeExample2.dll
295 interfaceUid = TUid::Uid(KRomOnlyInterfaceUid);
300 The following Plugin exists on the Z drive and will be discovered by ECOM during startup.
302 Interface UID DLL UID Imp. UID Version DllFile
303 ---------------------------------------------------------------------------------------
304 0x10009DBA 0x10009DB9 0x10009DBB 2 Z:\\..\\EComUpgradeExample2.dll
306 interfaceUid = TUid::Uid(KInterfaceUid);
309 // Get implementations for IF UID 0x10009DBA
310 REComSession::ListImplementationsL(interfaceUid, implArray);
312 //Expected number of implementations returned
313 TEST2(implArray.Count(), 1);
315 //Check that the implementation uid returned matched the specs above
316 TUid implUid = implArray[0]->ImplementationUid();
317 TInt version = implArray[0]->Version();
318 TInt drive = implArray[0]->Drive();
320 RDebug::Print(_L("implUid = 0x%x, version = %d drive = %d \n"), implUid, version, drive);
325 TEST2(implUid.iUid, KRomOnlyImplementationUid);
329 TEST2(implUid.iUid, KImplementationUid);
334 TEST2(drive, EDriveZ);
336 implArray.ResetAndDestroy();
340 @SYMTestCaseID SYSLIB-ECOM-CT-1596
341 @SYMTestCaseDesc Tests to ensure that an implementation will not be upgraded when the
342 upgrading DLL/RSC name is the same as the DLL/RSC name to be
343 upgraded but has a lower version.
344 @SYMTestPriority High
345 @SYMTestActions Call REComSession::ListImplementations() and check V1 implementation
347 Copy DLL/RSC with same name and lower version to C drive.
348 Call REComSession::ListImplementations() and check V1 implementation
349 upgrades on C drive has not upgraded the original implementation on Z drive.
350 Restart ECOM (to test subsequent boot condition i.e. loading from dat file
351 Call REComSession::ListImplementations() and check V1 implementation
352 upgrades on C drive has not upgraded the original implementation on Z drive.
353 Check for no crash and memory leaks.
354 The same test is repeated for Rom Only drives. And no upgrade in version is
356 @SYMTestExpectedResults The test must not fail.
359 void RPluginUpgradeTest::UpgradePluginSameNameLowerVersionL(TBool aIsRomOnly)
361 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1596 "));
366 CheckDefaultPluginOnZ(aIsRomOnly);
371 interfaceUid = TUid::Uid(KRomOnlyInterfaceUid);
375 interfaceUid = TUid::Uid(KInterfaceUid);
377 RImplInfoPtrArray implArray;
380 The following plugin is now added to the C drive and ECOM will do a rediscovery and
381 will not discover it.
383 Interface UID DLL UID Imp. UID Version DllFile
384 ---------------------------------------------------------------------------------------
386 0x10009DBD 0x10009DBC 0x10009DBE 1 C:\\..\\EComUpgradeROExample2.dll
388 0x10009DBA 0x10009DB9 0x10009DBB 1 C:\\..\\EComUpgradeExample2.dll
391 CopyPluginSameNameLowerVersion(aIsRomOnly);
392 // Give ECOM a chance to discover new plugins.
393 // Otherwise ListImplementationsL could fail to find requested implementations.
394 User::After(KOneSecond * 3);
396 // The directory notifier will now detect that a new plugin has been added to the C drive and will cause
397 // ECOM to perform a new discovery.
399 // Get implementations for IF UID 0x10009DBA
400 REComSession::ListImplementationsL(interfaceUid, implArray);
402 //Expected number of implementations returned
403 TEST2(implArray.Count(), 1);
405 //Check that the implementation uid returned matched the specs above
406 TUid implUid = implArray[0]->ImplementationUid();
407 TInt version = implArray[0]->Version();
408 TInt drive = implArray[0]->Drive();
410 RDebug::Print(_L("After new implementation is discovered...\n"));
411 RDebug::Print(_L("implUid = 0x%x, version = %d drive = %d \n"), implUid, version, drive);
414 TEST2(implUid.iUid, KRomOnlyImplementationUid);
416 TEST2(drive, EDriveZ);
420 TEST2(implUid.iUid, KImplementationUid);
422 TEST2(drive, EDriveZ);
425 implArray.ResetAndDestroy();
428 REComSession::FinalClose();
433 // Get implementations for IF UID 0x10009DBA
434 REComSession::ListImplementationsL(interfaceUid, implArray);
436 //Expected number of implementations returned
437 TEST2(implArray.Count(), 1);
439 //Check that the implementation uid returned matched the specs above
440 implUid = implArray[0]->ImplementationUid();
441 version = implArray[0]->Version();
442 drive = implArray[0]->Drive();
444 RDebug::Print(_L("After restart...\n"));
445 RDebug::Print(_L("implUid = 0x%x, version = %d drive = %d \n"), implUid, version, drive);
448 TEST2(implUid.iUid, KRomOnlyImplementationUid);
450 TEST2(drive, EDriveZ);
454 TEST2(implUid.iUid, KImplementationUid);
456 TEST2(drive, EDriveZ);
459 implArray.ResetAndDestroy();
462 REComSession::FinalClose();
465 // Remove plugins from C drive
466 DeleteUpgradeExample2Plugins(aIsRomOnly);
468 // Give ECOM a chance to rediscover after deletion of plugins.
469 User::After(KOneSecond * 3);
472 REComSession::FinalClose();
482 @SYMTestCaseID SYSLIB-ECOM-CT-1597
483 @SYMTestCaseDesc Tests to ensure that an implementation will not be upgraded when the
484 upgrading DLL/RSC name is different from the DLL/RSC to be upgraded.
485 See CR65BCA3 even when the version is lower.
486 @SYMTestPriority High
487 @SYMTestActions Call REComSession::ListImplementations() and check V2 implementation
489 Copy DLL/RSC with different name and V1 to DLL/RSC to C drive.
490 Call REComSession::ListImplementations() and check the original V2
491 implementation on Z drive has not been upgraded.
492 Check for no crash and memory leaks.
493 The same test is repeated for Rom Only drives. And no upgrade in version is
495 @SYMTestExpectedResults The test must not fail.
498 void RPluginUpgradeTest::UpgradePluginDifferentNameLowerVersionL(TBool aIsRomOnly)
500 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1597 "));
505 CheckDefaultPluginOnZ(aIsRomOnly);
507 TUid interfaceUid = TUid::Null();
510 interfaceUid = TUid::Uid(KRomOnlyInterfaceUid);
514 interfaceUid = TUid::Uid(KInterfaceUid);
516 RImplInfoPtrArray implArray;
519 The following plugin is now added to the C drive and ECOM will do a rediscovery and attempt to discover it.
521 Interface UID DLL UID Imp. UID Version DllFile
522 ----------------------------------------------------------------------------------------
524 0x10009DBD 0x10009DBC 0x10009DBE 1 C:\\..\\EComUpgradeROExample1.dll
526 0x10009DBA 0x10009DB9 0x10009DBB 1 C:\\..\\EComUpgradeExample1.dll
529 CopyPluginDifferentNameLowerVersion(aIsRomOnly);
530 // Give ECOM a chance to discover new plugins.
531 // Otherwise ListImplementationsL could fail to find requested implementations.
532 User::After(KOneSecond * 3);
534 // The directory notifier will now detect that a new plugin has been added to the C drive and will cause
535 // ECOM to perform a new discovery.
537 // The upgrade should fail an dthe existing implementation on the Z should remain
539 // Get implementations for IF UID 0x10009DBA
540 REComSession::ListImplementationsL(interfaceUid, implArray);
542 //Expected number of implementations returned
543 TEST2(implArray.Count(), 1);
545 //Check that the implementation uid returned matched the specs above
546 TUid implUid = implArray[0]->ImplementationUid();
547 TInt version = implArray[0]->Version();
548 TInt drive = implArray[0]->Drive();
550 RDebug::Print(_L("After new implementation is discovered...\n"));
551 RDebug::Print(_L("implUid = 0x%x, version = %d drive = %d \n"), implUid, version, drive);
554 TEST2(implUid.iUid, KRomOnlyImplementationUid);
556 TEST2(drive, EDriveZ);
560 TEST2(implUid.iUid, KImplementationUid);
562 TEST2(drive, EDriveZ);
564 implArray.ResetAndDestroy();
567 REComSession::FinalClose();
572 // Get implementations for IF UID 0x10009DBA
573 REComSession::ListImplementationsL(interfaceUid, implArray);
575 //Expected number of implementations returned
576 TEST2(implArray.Count(), 1);
578 //Check that the implementation uid returned matched the specs above
579 implUid = implArray[0]->ImplementationUid();
580 version = implArray[0]->Version();
581 drive = implArray[0]->Drive();
583 RDebug::Print(_L("After restart...\n"));
584 RDebug::Print(_L("implUid = 0x%x, version = %d drive = %d \n"), implUid, version, drive);
587 TEST2(implUid.iUid, KRomOnlyImplementationUid);
589 TEST2(drive, EDriveZ);
593 TEST2(implUid.iUid, KImplementationUid);
595 TEST2(drive, EDriveZ);
597 implArray.ResetAndDestroy();
600 REComSession::FinalClose();
603 // Remove plugins from C drive
604 DeleteUpgradeExample1Plugins(aIsRomOnly);
606 // Give ECOM a chance to rediscover after deletion of plugins.
607 User::After(KOneSecond * 3);
610 REComSession::FinalClose();
620 @SYMTestCaseID SYSLIB-ECOM-CT-0286
621 @SYMTestCaseDesc Tests to ensure that an implementation can be upgraded when the
622 upgrading DLL/RSC name is the same as the DLL/RSC name to be
625 @SYMTestPriority High
626 @SYMTestActions Call REComSession::ListImplementations() and check V1 implementation
628 Copy DLL/RSC with same name as DLL/RSC to be upgraded to C drive.
629 Call REComSession::ListImplementations() and check V3 implementation
630 upgrades on C drive has upgraded the original implementation on Z drive.
631 Restart ECOM (to test subsequent boot condition i.e. loading from dat file
632 Call REComSession::ListImplementations() and check V3 implementation
633 upgrades on C drive has upgraded the original implementation on Z drive.
634 Check for no crash and memory leaks.
635 The same test is repeated for Rom Only drives. And no upgrade in version is
637 @SYMTestExpectedResults The test must not fail.
641 void RPluginUpgradeTest::UpgradePluginSameNameHigherVersionL(TBool aIsRomOnly)
643 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0286 "));
648 CheckDefaultPluginOnZ(aIsRomOnly);
653 interfaceUid = TUid::Uid(KRomOnlyInterfaceUid);
657 interfaceUid = TUid::Uid(KInterfaceUid);
659 RImplInfoPtrArray implArray;
662 The following plugin is now added to the C drive and ECOM will do a rediscovery and discover it.
664 Interface UID DLL UID Imp. UID Version DllFile
665 ------------------------------------------------------------------------------------------------------------------------------------------
667 0x10009DBD 0x10009DBC 0x10009DBE 3 C:\\..\\EComUpgradeROExample2.dll
669 0x10009DBA 0x10009DB9 0x10009DBB 3 C:\\..\\EComUpgradeExample2.dll
672 CopyPluginSameNameHigherVersion(aIsRomOnly);
673 // Give ECOM a chance to discover new plugins.
674 // Otherwise ListImplementationsL could fail to find requested implementations.
675 User::After(KOneSecond * 3);
677 // The directory notifier will now detect that a new plugin has been added to the C drive and will cause
678 // ECOM to perform a new discovery.
680 // Get implementations for IF UID 0x10009DBA
681 REComSession::ListImplementationsL(interfaceUid, implArray);
683 //Expected number of implementations returned
684 TEST2(implArray.Count(), 1);
686 //Check that the implementation uid returned matched the specs above
687 TUid implUid = implArray[0]->ImplementationUid();
688 TInt version = implArray[0]->Version();
689 TInt drive = implArray[0]->Drive();
691 RDebug::Print(_L("After new implementation is discovered...\n"));
692 RDebug::Print(_L("implUid = 0x%x, version = %d drive = %d \n"), implUid, version, drive);
695 TEST2(implUid.iUid, KRomOnlyImplementationUid);
697 TEST2(drive, EDriveZ);
701 TEST2(implUid.iUid, KImplementationUid);
703 TEST2(drive, EDriveC);
706 implArray.ResetAndDestroy();
709 REComSession::FinalClose();
714 // Get implementations for IF UID 0x10009DBA
715 REComSession::ListImplementationsL(interfaceUid, implArray);
717 //Expected number of implementations returned
718 TEST2(implArray.Count(), 1);
720 //Check that the implementation uid returned matched the specs above
721 implUid = implArray[0]->ImplementationUid();
722 version = implArray[0]->Version();
723 drive = implArray[0]->Drive();
725 RDebug::Print(_L("After restart...\n"));
726 RDebug::Print(_L("implUid = 0x%x, version = %d drive = %d \n"), implUid, version, drive);
729 TEST2(implUid.iUid, KRomOnlyImplementationUid);
731 TEST2(drive, EDriveZ);
735 TEST2(implUid.iUid, KImplementationUid);
737 TEST2(drive, EDriveC);
739 implArray.ResetAndDestroy();
742 REComSession::FinalClose();
745 // Remove plugins from C drive
746 DeleteUpgradeExample2Plugins(aIsRomOnly);
748 // Give ECOM a chance to rediscover after deletion of plugins.
749 User::After(KOneSecond * 3);
752 REComSession::FinalClose();
761 @SYMTestCaseID SYSLIB-ECOM-CT-0287
762 @SYMTestCaseDesc Tests to ensure that an implementation will not be upgraded when the
763 upgrading DLL/RSC name is different from the DLL/RSC to be upgraded.
765 @SYMTestPriority High
766 @SYMTestActions Call REComSession::ListImplementations() and check V1 implementation
768 Copy DLL/RSC with different name to DLL/RSC to be upgraded to C drive.
769 Call REComSession::ListImplementations() and check the original V2
770 implementation on Z drive has not been upgraded.
771 Check for no crash and memory leaks.
772 The same test is repeated for Rom Only drives. And no upgrade in version is
774 @SYMTestExpectedResults The test must not fail.
778 void RPluginUpgradeTest::UpgradePluginDifferentNameHigherVersionL(TBool aIsRomOnly)
780 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0287 "));
785 CheckDefaultPluginOnZ(aIsRomOnly);
790 interfaceUid = TUid::Uid(KRomOnlyInterfaceUid);
794 interfaceUid = TUid::Uid(KInterfaceUid);
796 RImplInfoPtrArray implArray;
799 The following plugin is now added to the C drive and ECOM will do a rediscovery and attempt to discover it.
801 Interface UID DLL UID Imp. UID Version DllFile
802 ------------------------------------------------------------------------------------------------------------------------------------------
804 0x10009DBD 0x10009DBC 0x10009DBE 3 C:\\..\\EComUpgradeROExample3.dll
806 0x10009DBA 0x10009DB9 0x10009DBB 3 C:\\..\\EComUpgradeExample3.dll
809 CopyPluginDifferentNameHigherVersion(aIsRomOnly);
810 // Give ECOM a chance to discover new plugins.
811 // Otherwise ListImplementationsL could fail to find requested implementations.
812 User::After(KOneSecond * 3);
814 // The directory notifier will now detect that a new plugin has been added to the C drive and will cause
815 // ECOM to perform a new discovery.
817 // The upgrade should fail an dthe existing implementation on the Z should remain
819 // Get implementations for IF UID 0x10009DBA
820 REComSession::ListImplementationsL(interfaceUid, implArray);
822 //Expected number of implementations returned
823 TEST2(implArray.Count(), 1);
825 //Check that the implementation uid returned matched the specs above
826 TUid implUid = implArray[0]->ImplementationUid();
827 TInt version = implArray[0]->Version();
828 TInt drive = implArray[0]->Drive();
830 RDebug::Print(_L("After new implementation is discovered...\n"));
831 RDebug::Print(_L("implUid = 0x%x, version = %d drive = %d \n"), implUid, version, drive);
834 TEST2(implUid.iUid, KRomOnlyImplementationUid);
836 TEST2(drive, EDriveZ);
840 TEST2(implUid.iUid, KImplementationUid);
842 TEST2(drive, EDriveZ);
844 implArray.ResetAndDestroy();
847 REComSession::FinalClose();
852 // Get implementations for IF UID 0x10009DBA
853 REComSession::ListImplementationsL(interfaceUid, implArray);
855 //Expected number of implementations returned
856 TEST2(implArray.Count(), 1);
858 //Check that the implementation uid returned matched the specs above
859 implUid = implArray[0]->ImplementationUid();
860 version = implArray[0]->Version();
861 drive = implArray[0]->Drive();
863 RDebug::Print(_L("After restart...\n"));
864 RDebug::Print(_L("implUid = 0x%x, version = %d drive = %d \n"), implUid, version, drive);
867 TEST2(implUid.iUid, KRomOnlyImplementationUid);
869 TEST2(drive, EDriveZ);
873 TEST2(implUid.iUid, KImplementationUid);
875 TEST2(drive, EDriveZ);
877 implArray.ResetAndDestroy();
880 REComSession::FinalClose();
883 // Remove plugins from C drive
884 DeleteUpgradeExample3Plugins(aIsRomOnly);
886 // Give ECOM a chance to rediscover after deletion of plugins.
887 User::After(KOneSecond * 3);
890 REComSession::FinalClose();
899 @SYMTestCaseID SYSLIB-ECOM-CT-0288
900 @SYMTestCaseDesc Tests to ensure that an implementation can be upgraded when the
901 upgrading DLL/RSC name is the same as the DLL/RSC name to be
902 upgraded and also the version is the same.
904 @SYMTestPriority High
905 @SYMTestActions Call REComSession::ListImplementations() and check V1 implementation
907 Copy DLL/RSC with same name as DLL/RSC to be upgraded to C drive.
908 Call REComSession::ListImplementations() and check V2 implementation
909 upgrades on C drive has upgraded the original implementation on Z drive.
910 Check for no crash and memory leaks.
911 Restart ECOM (to test subsequent boot condition i.e. loading from dat file
912 Call REComSession::ListImplementations() and check V2 implementation
913 upgrades on C drive has upgraded the original implementation on Z drive.
914 The same test is repeated for Rom Only drives. And no upgrade in version is
916 @SYMTestExpectedResults The test must not fail.
920 void RPluginUpgradeTest::UpgradePluginSameNameSameVersionL(TBool aIsRomOnly)
922 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0288 "));
927 CheckDefaultPluginOnZ(aIsRomOnly);
932 interfaceUid = TUid::Uid(KRomOnlyInterfaceUid);
936 interfaceUid = TUid::Uid(KInterfaceUid);
938 RImplInfoPtrArray implArray;
941 The following plugin is now added to the C drive and ECOM will do a rediscovery and discover it.
943 Interface UID DLL UID Imp. UID Version DllFile
944 ------------------------------------------------------------------------------------------------------------------------------------------
946 0x10009DBD 0x10009DBC 0x10009DBE 2 C:\\..\\EComUpgradeROExample2.dll
948 0x10009DBA 0x10009DB9 0x10009DBB 2 C:\\..\\EComUpgradeExample2.dll
951 CopyPluginSameNameSameVersion(aIsRomOnly);
952 // Give ECOM a chance to discover new plugins.
953 // Otherwise ListImplementationsL could fail to find requested implementations.
954 User::After(KOneSecond * 3);
956 // The directory notifier will now detect that a new plugin has been added to the C drive and will cause
957 // ECOM to perform a new discovery.
959 // Get implementations for IF UID 0x10009DBA
960 REComSession::ListImplementationsL(interfaceUid, implArray);
962 //Expected number of implementations returned
963 TEST2(implArray.Count(), 1);
965 //Check that the implementation uid returned matched the specs above
966 TUid implUid = implArray[0]->ImplementationUid();
967 TInt version = implArray[0]->Version();
968 TInt drive = implArray[0]->Drive();
970 RDebug::Print(_L("After new implementation is discovered...\n"));
971 RDebug::Print(_L("implUid = 0x%x, version = %d drive = %d \n"), implUid, version, drive);
974 TEST2(implUid.iUid, KRomOnlyImplementationUid);
976 TEST2(drive, EDriveZ);
980 TEST2(implUid.iUid, KImplementationUid);
982 TEST2(drive, EDriveC);
984 implArray.ResetAndDestroy();
987 REComSession::FinalClose();
992 // Get implementations for IF UID 0x10009DBA
993 REComSession::ListImplementationsL(interfaceUid, implArray);
995 //Expected number of implementations returned
996 TEST2(implArray.Count(), 1);
998 //Check that the implementation uid returned matched the specs above
999 implUid = implArray[0]->ImplementationUid();
1000 version = implArray[0]->Version();
1001 drive = implArray[0]->Drive();
1003 RDebug::Print(_L("After restart...\n"));
1004 RDebug::Print(_L("implUid = 0x%x, version = %d drive = %d \n"), implUid, version, drive);
1007 TEST2(implUid.iUid, KRomOnlyImplementationUid);
1009 TEST2(drive, EDriveZ);
1013 TEST2(implUid.iUid, KImplementationUid);
1015 TEST2(drive, EDriveC);
1017 implArray.ResetAndDestroy();
1020 REComSession::FinalClose();
1023 // Remove plugins from C drive
1024 DeleteUpgradeExample2Plugins(aIsRomOnly);
1025 // Give ECOM a chance to rediscover after deletion of plugins.
1026 User::After(KOneSecond * 3);
1029 REComSession::FinalClose();
1038 @SYMTestCaseID SYSLIB-ECOM-CT-0289
1039 @SYMTestCaseDesc Tests to ensure that an implementation will not be upgraded when the
1040 upgrading DLL/RSC name is different from the DLL/RSC to be upgraded
1041 and also the version is the same.
1043 @SYMTestPriority High
1044 @SYMTestActions Call REComSession::ListImplementations() and check V2 implementation
1046 Copy DLL/RSC with different name, but same version, to DLL/RSC to be
1047 upgraded to C drive.
1048 Call REComSession::ListImplementations() and check the original V2
1049 implementation on Z drive has not been upgraded.
1050 Check for no crash and memory leaks.
1051 The same test is repeated for Rom Only drives. And no upgrade in version is
1053 @SYMTestExpectedResults The test must not fail.
1057 void RPluginUpgradeTest::UpgradePluginDifferentNameSameVersionL(TBool aIsRomOnly)
1059 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0289 "));
1064 CheckDefaultPluginOnZ(aIsRomOnly);
1069 interfaceUid = TUid::Uid(KRomOnlyInterfaceUid);
1073 interfaceUid = TUid::Uid(KInterfaceUid);
1075 RImplInfoPtrArray implArray;
1078 The following plugin is now added to the C drive and ECOM will do a rediscovery and attempt to discover it.
1080 Interface UID DLL UID Imp. UID Version DllFile
1081 ----------------------------------------------------------------------------------------
1083 0x10009DBD 0x10009DBC 0x10009DBE 2 C:\\..\\EComUpgradeROExample3.dll
1085 0x10009DBA 0x10009DB9 0x10009DBB 2 C:\\..\\EComUpgradeExample3.dll
1088 CopyPluginDifferentNameSameVersion(aIsRomOnly);
1089 // Give ECOM a chance to discover new plugins.
1090 // Otherwise ListImplementationsL could fail to find requested implementations.
1091 User::After(KOneSecond * 3);
1093 // The directory notifier will now detect that a new plugin has been added to the C drive and will cause
1094 // ECOM to perform a new discovery.
1096 // The upgrade should fail an dthe existing implementation on the Z should remain
1098 // Get implementations for IF UID 0x10009DBA
1099 REComSession::ListImplementationsL(interfaceUid, implArray);
1101 //Expected number of implementations returned
1102 TEST2(implArray.Count(), 1);
1104 //Check that the implementation uid returned matched the specs above
1105 TUid implUid = implArray[0]->ImplementationUid();
1106 TInt version = implArray[0]->Version();
1107 TInt drive = implArray[0]->Drive();
1108 RDebug::Print(_L("After new implementation is discovered...\n"));
1109 RDebug::Print(_L("implUid = 0x%x, version = %d drive = %d \n"), implUid, version, drive);
1113 TEST2(implUid.iUid, KRomOnlyImplementationUid);
1115 TEST2(drive, EDriveZ);
1119 TEST2(implUid.iUid, KImplementationUid);
1121 TEST2(drive, EDriveZ);
1123 implArray.ResetAndDestroy();
1126 REComSession::FinalClose();
1131 // Get implementations for IF UID 0x10009DBA
1132 REComSession::ListImplementationsL(interfaceUid, implArray);
1134 //Expected number of implementations returned
1135 TEST2(implArray.Count(), 1);
1137 //Check that the implementation uid returned matched the specs above
1138 implUid = implArray[0]->ImplementationUid();
1139 version = implArray[0]->Version();
1140 drive = implArray[0]->Drive();
1141 RDebug::Print(_L("After new implementation is discovered...\n"));
1142 RDebug::Print(_L("implUid = 0x%x, version = %d drive = %d \n"), implUid, version, drive);
1146 TEST2(implUid.iUid, KRomOnlyImplementationUid);
1148 TEST2(drive, EDriveZ);
1152 TEST2(implUid.iUid, KImplementationUid);
1154 TEST2(drive, EDriveZ);
1156 implArray.ResetAndDestroy();
1159 REComSession::FinalClose();
1162 // Remove plugins from C drive
1163 DeleteUpgradeExample3Plugins(aIsRomOnly);
1164 // Give ECOM a chance to rediscover after deletion of plugins.
1165 User::After(KOneSecond * 3);
1168 REComSession::FinalClose();
1176 LOCAL_C void RunTestL()
1181 TheTest.Next(_L("Upgrade rom only plugin with same name and lower version"));
1182 RPluginUpgradeTest::UpgradePluginSameNameLowerVersionL(ETrue);
1184 TheTest.Next(_L("Upgrade rom only plugin with different name and lower version"));
1185 RPluginUpgradeTest::UpgradePluginDifferentNameLowerVersionL(ETrue);
1187 TheTest.Next(_L("Upgrade rom only plugin with same name and higher version"));
1188 RPluginUpgradeTest::UpgradePluginSameNameHigherVersionL(ETrue);
1190 TheTest.Next(_L("Upgrade rom only plugin with different name and higher version"));
1191 RPluginUpgradeTest::UpgradePluginDifferentNameHigherVersionL(ETrue);
1193 TheTest.Next(_L("Upgrade rom only plugin with same name and same version"));
1194 RPluginUpgradeTest::UpgradePluginSameNameSameVersionL(ETrue);
1196 TheTest.Next(_L("Upgrade rom only plugin with different name and same version"));
1197 RPluginUpgradeTest::UpgradePluginDifferentNameSameVersionL(ETrue);
1199 TheTest.Next(_L("Upgrade plugin with same name and lower version"));
1200 RPluginUpgradeTest::UpgradePluginSameNameLowerVersionL(EFalse);
1202 TheTest.Next(_L("Upgrade plugin with different name and lower version"));
1203 RPluginUpgradeTest::UpgradePluginDifferentNameLowerVersionL(EFalse);
1205 TheTest.Next(_L("Upgrade plugin with same name and higher version"));
1206 RPluginUpgradeTest::UpgradePluginSameNameHigherVersionL(EFalse);
1208 TheTest.Next(_L("Upgrade plugin with different name and higher version"));
1209 RPluginUpgradeTest::UpgradePluginDifferentNameHigherVersionL(EFalse);
1211 TheTest.Next(_L("Upgrade plugin with same name and same version"));
1212 RPluginUpgradeTest::UpgradePluginSameNameSameVersionL(EFalse);
1214 TheTest.Next(_L("Upgrade plugin with different name and same version"));
1215 RPluginUpgradeTest::UpgradePluginDifferentNameSameVersionL(EFalse);
1220 void CleanupPluginFiles()
1222 DeleteUpgradeExample1Plugins(EFalse);
1223 DeleteUpgradeExample2Plugins(EFalse);
1224 DeleteUpgradeExample3Plugins(EFalse);
1225 DeleteUpgradeExample1Plugins(ETrue);
1226 DeleteUpgradeExample2Plugins(ETrue);
1227 DeleteUpgradeExample3Plugins(ETrue);
1230 GLDEF_C TInt E32Main()
1235 TheTest.Start(_L("Plugin Upgrade Tests."));
1237 CTrapCleanup* cleanup = CTrapCleanup::New();
1238 CActiveScheduler* scheduler = new(ELeave)CActiveScheduler;
1239 CActiveScheduler::Install(scheduler);
1242 CleanupPluginFiles();
1245 TRAPD(err,RunTestL());
1250 CleanupPluginFiles();
1253 TEST2(err, KErrNone);
1256 REComSession::FinalClose();