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 test classes and their implementations that test
15 // class CDefaultResolver. Demonstrates a simple set of derived class
16 // implementations using RTest.
20 #include <ecom/ecom.h>
21 #include "EComUidCodes.h"
22 #include "RegistryData.h"
23 #include "Registrar.h"
24 #include "RegistrarObserver.h"
25 #include "EComResolverParams.h"
26 #include "DefaultResolver.h"
27 #include "../EcomTestUtils/EcomTestUtils.h"
28 #include "DriveInfo.h"
29 #include "RegistryResolveTransaction.h"
35 #include <startup.hrh>
37 // Used for suppressing warning in OOM tests
38 #define __UNUSED_VAR(var) var = var
41 #define TEST_OOM_ERR if(err == KErrNoMemory) User::Leave(err)
43 // Interface Uids used within tests
44 const TUid KCExampleInterfaceUid = {0x10009DC0};
45 const TUid KCExampleInterfaceImp = {0x10009DC1};
46 const TInt KOneSecond = 1000000;
48 // Interface Implementation Uids used for testing
49 const TInt KUidImplementation1 = 0x10009DC3;
50 const TInt KUidImplementation2 = 0x10009DC4;
52 // Dlls copied to RAM for testing purpose
53 _LIT(KEComExDllOnZ, "z:\\RAMOnly\\EComExample5.dll");
55 // Contains .rsc files of dlls that be copied to RAM
56 // for testing purpose
57 _LIT(KEComExDllOnC, "c:\\sys\\bin\\EComExample5.dll");
58 _LIT(KEComRscFileOnZ, "z:\\RAMOnly\\EComExample5.rsc");
59 _LIT(KEComRscFileOnC, "c:\\resource\\plugins\\EComExample5.rsc");
61 _LIT(KEComExampleDllOnC, "C:\\sys\\bin\\EComExample.dll");
62 _LIT(KEComExample2DllOnC, "C:\\sys\\bin\\EComExample2.dll");
63 _LIT(KEComExample3DllOnC, "C:\\sys\\bin\\EComExample3.dll");
65 _LIT(KEComExampleRscOnC, "C:\\resource\\plugins\\EComExample.rsc");
66 _LIT(KEComExample2RscOnC, "C:\\resource\\plugins\\EComExample2.rsc");
67 _LIT(KEComExample3RscOnC, "C:\\resource\\plugins\\EComExample3.rsc");
69 _LIT(KEComExampleRscOnZ, "Z:\\RAMOnly\\EComExample.rsc");
70 _LIT(KEComExample2RscOnZ, "Z:\\RAMOnly\\EComExample2.rsc");
71 _LIT(KEComExample3RscOnZ, "Z:\\RAMOnly\\EComExample3.rsc");
74 _LIT(KEComExampleDllOnZ, "Z:\\RAMOnly\\EComExample.dll");
75 _LIT(KEComExample2DllOnZ, "Z:\\RAMOnly\\EComExample2.dll");
76 _LIT(KEComExample3DllOnZ, "Z:\\RAMOnly\\EComExample3.dll");
78 // Datatype on implementations that .rsc file contains
79 _LIT8(KResolveMatchType, "text/wml");
80 // Datatype to look for
81 _LIT8(KResolveImplementationType, "text/wml||data");
83 LOCAL_D CTrapCleanup* TheTrapCleanup=NULL;
85 LOCAL_D CActiveScheduler* TheActiveScheduler=NULL;
89 LOCAL_D RTest test(_L("t_resolver.exe"));
91 //LOCAL_D TCapabilitySet dummycaps;
92 // Utility clean up function
93 LOCAL_C void CleanupEComPtrArray(TAny* aArray);
96 This friend class allows us to access private and protected members of production
97 code class CDefaultResolver
99 class TDefaultResolver_StateAccessor
102 //Auxiliary methods that provide access to private members
103 TBool Match(CDefaultResolver& aResolver,
104 const TDesC8& aImplementationType,
105 const TDesC8& aMatchType,
106 TBool aIsGeneric) const;
108 TUid Resolve(CDefaultResolver& aResolver,
109 RImplInfoArray& aImplementationInfo,
110 const TEComResolverParams& aAdditionalParameters) const;
114 Searches for a match of a data type on an implementation type.
115 Match returns ETrue if aMatchType is found within aImplementationType
116 @param aResolver resolver object on which implementations are matched
117 @param aImplementationType The implementation data type to search for a match
118 @param aMatchType Search data that identifies/matches to implementations
119 @param aIsGeneric ETrue if wildcard matching is allowed
120 @return TBool ETrue if a match is found, EFalse if match is not found
122 TBool TDefaultResolver_StateAccessor::Match(CDefaultResolver& aResolver,
123 const TDesC8& aImplementationType,
124 const TDesC8& aMatchType,
125 TBool aIsGeneric) const
127 return aResolver.Match(aImplementationType, aMatchType, aIsGeneric);
131 Selects an appropriate implementation from a list of possibles
132 @param aResolver resolver object on which implementations are resolved
133 @param aImplementationInfo Information on the potential implementations
134 @param aAdditionalParameters The data to match against to determine the
136 @return The Uid of a suitable implementation
138 TUid TDefaultResolver_StateAccessor::Resolve(CDefaultResolver& aResolver,
139 RImplInfoArray& aImplementationInfo,
140 const TEComResolverParams& aAdditionalParameters) const
142 return aResolver.Resolve(aImplementationInfo, aAdditionalParameters);
146 The implementation of the abstract Registrar Observer class,
147 used for recieving notifications of registry changes.
148 Stub class(for CEComServer) used for the creation of CRegistrar class object.
149 CEComServer class acts as observer for CRegistrar.
151 class CTestRegistrarObserver : public MRegistrarObserver // codescanner::missingcclass
154 // This function is used by RegistrarObserver (i.e.CEComServer) to notify its
155 // clients(REComSession objects) that some change has happened in Registry.
156 // Here we have no clients to notify, so no implementaion.
157 void Notification( TInt /*aNotification*/ ) {}
161 Test class encloses necessary members that aid to test CDefaultResolver
163 class CResolverTest: public CBase
166 static CResolverTest* NewL();
167 virtual ~CResolverTest();
169 void IdentifyImplementationTestL();
179 /** The instance of the class under test */
180 CDefaultResolver* iDefaultResolver;
181 /** The data store which is used by the resolver */
182 CRegistryData* iRegistryData;
183 /** Friend class pointer used for accessing private members */
184 TDefaultResolver_StateAccessor* iStateAccessor;
185 /** An array of potential implementations to resolve between */
186 RImplInfoArray iImplementationData;
187 /** ECom example interface Uid */
189 /** The Uid returned by IdentifyImplementationL(), used to resolve
190 the implementation. */
191 TUid iResolvedImpUid;
192 /** Additional parameters used for resolving between implementations */
193 TEComResolverParams iAdditionalParameters;
195 CRegistrar* iRegistrar;
196 /** Registrar observer test class */
197 CTestRegistrarObserver* iRegistrarObserver;
198 /** CRegistryResolveTransaction */
199 CRegistryResolveTransaction* iRegistryResolveTransaction;
200 /** ExtendedInterfaces List*/
201 RArray<TUid> iExtendedInterfaces;
203 TClientRequest iClientReq;
207 Create a CResolverTest object on the CleanupStack
208 @return A pointer to the newly created class.
210 CResolverTest* CResolverTest::NewL()
212 CResolverTest* self = new (ELeave) CResolverTest();
213 CleanupStack::PushL(self);
220 Standardized default constructor
221 @post CRegistrarTest is fully constructed.
223 CResolverTest::CResolverTest()
226 // Interface uid to find implemenations
227 iInterfaceUid.iUid = KCExampleInterfaceUid.iUid;
231 Standardized 2nd(Initialization) phase of two phase construction.
232 Completes the safe construction of the CResolverTest object
233 @post CRegistrarTest is fully constructed.
236 void CResolverTest::ConstructL()
238 iStateAccessor = new(ELeave) TDefaultResolver_StateAccessor;
239 iRegistryData = CRegistryData::NewL(TheFs);
240 iRegistrarObserver=new (ELeave) CTestRegistrarObserver;
241 // construct the registry resolve transaction object here
242 TBool capability= ETrue;
243 iRegistryResolveTransaction = CRegistryResolveTransaction::NewL(*iRegistryData,iExtendedInterfaces,iClientReq,capability);
244 iRegistrar=CRegistrar::NewL(*iRegistryData, *iRegistrarObserver, TheFs);
245 iRegistrar->ProcessSSAEventL(EStartupStateNonCritical);
246 // next the default resolver
247 iDefaultResolver = CDefaultResolver::NewL(*iRegistryResolveTransaction);
251 Standardized default destructor
252 @post This object is properly destroyed.
254 CResolverTest::~CResolverTest()
256 delete iStateAccessor;
257 delete iDefaultResolver;
259 delete iRegistrarObserver;
260 delete iRegistryData;
261 delete iRegistryResolveTransaction;
262 iExtendedInterfaces.Close();
266 @SYMTestCaseID SYSLIB-ECOM-CT-0659
267 @SYMTestCaseDesc Create and delete Resolver object test
268 @SYMTestPriority High
269 @SYMTestActions Creates and deletes the resolver object
270 @SYMTestExpectedResults The test must not fail.
273 LOCAL_C void CreateDeleteTestL()
275 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0659 CreateDeleteTestL "));
277 // Creates and deletes resolver object
278 // ------------------------------------------------------------------
280 // Set up for heap leak checking
282 // and leaking thread handles
283 TInt startProcessHandleCount;
284 TInt startThreadHandleCount;
285 TInt endProcessHandleCount;
286 TInt endThreadHandleCount;
289 RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
291 CResolverTest* theTest=NULL;
293 TRAPD(err, theTest = CResolverTest::NewL());
294 test(err == KErrNone);
297 // Check for open handles
298 RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
299 test(startThreadHandleCount == endThreadHandleCount);
306 @SYMTestCaseID SYSLIB-ECOM-CT-1324
307 @SYMTestCaseDesc Tests for CDefaultResolver::IdentifyImplementationL() function
308 @SYMTestPriority High
309 @SYMTestActions Tests that the resolver identifies most appropriate
310 interface implementation
311 @SYMTestExpectedResults The test must not fail.
314 void CResolverTest::IdentifyImplementationTestL()
316 // Tests that the resolver identifies most appropriate
317 // interface implementation
318 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1324 "));
319 iAdditionalParameters.SetDataType(KResolveMatchType);
320 iAdditionalParameters.SetGenericMatch(ETrue);//Allow wildcard matching
321 TRAPD(err, iResolvedImpUid =
322 iDefaultResolver->IdentifyImplementationL(iInterfaceUid, iAdditionalParameters));
324 test(err == KErrNone);
325 // Check the Appropriate implementation id that should be identified
326 test(iResolvedImpUid.iUid == KUidImplementation1);
328 test.Printf(_L("Interface Uid 0x%08x\n"), iInterfaceUid);
329 test.Printf(_L("Resolved Implementation Uid = 0x%08x\n"), iResolvedImpUid);
334 @SYMTestCaseID SYSLIB-ECOM-CT-1325
335 @SYMTestCaseDesc Tests for CDefaultResolver::ListAllL() function
336 @SYMTestPriority High
337 @SYMTestActions The test executes by sending an interface id and data type to match.
338 Prints all the implementation for the interface id
339 @SYMTestExpectedResults The test must not fail.
342 void CResolverTest::ListAllTestL()
344 // Tests that ListAll() lists implementations for a specified interface
345 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1325 "));
347 // set datatype to text/wml and enable wildcard match
348 iAdditionalParameters.SetDataType(KResolveMatchType);
349 iAdditionalParameters.SetGenericMatch(ETrue);
350 RImplInfoArray* implData=NULL;
352 /* This should list two implementations given below
353 depending on additional parameter and wildcard match
354 10009DC3 Ver 2/"text/ wml"/10009DB3
355 10009DC4 Ver 2/"text/ *"/10009DB3
357 TRAPD(err, implData = iDefaultResolver->ListAllL(iInterfaceUid, iAdditionalParameters));
360 test(err == KErrNone);
361 CleanupStack::PushL(TCleanupItem(CleanupEComPtrArray, implData));
363 const TInt availCount = implData->Count();
364 test(availCount == 2);
366 test.Printf(_L("Found %d implementations.\n"),availCount);
368 for (TInt count=0;count<availCount;++count)
370 const CImplementationInformation* info = (*implData)[count];
372 TDriveName driveName = info->Drive().Name();
373 test.Printf(_L("%d. uid={%x} version=%d on drive %S\n"), count+1,
374 info->ImplementationUid(), info->Version(), &driveName);
376 switch(info->ImplementationUid().iUid)
378 case KUidImplementation1:
379 test(info->Version()==2);
380 test(info->Drive()==EDriveC);
383 case KUidImplementation2:
384 test(info->Version()==2);
385 test(info->Drive()==EDriveC);
389 test.Printf(_L("Mismatched implementation Uid\n"));
393 // Empty the array of implementations
394 CleanupStack::PopAndDestroy();//ifArray, results in a call to CleanupEComPtrArray
399 @SYMTestCaseID SYSLIB-ECOM-CT-1326
400 @SYMTestCaseDesc Tests for TDefaultResolver_StateAccessor::Match() function
401 @SYMTestPriority High
402 @SYMTestActions The test executes by searching for a match of a data type on an implementation type
403 @SYMTestExpectedResults The test must not fail.
406 void CResolverTest::MatchTest()
408 // 1.Search using search parameters that result in a Match to a particular
410 // 2.Search using search parameters that result in a mismatch.
411 // 3.Finally, search using search parameters with wildcards that result in a Match
413 // Searches for KResolveMatchType (text/wml) on implementations
414 // KResolveImplementationType(text/wml||data)
415 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1326 "));
416 TBool matchResult = iStateAccessor->Match(*iDefaultResolver,
417 KResolveImplementationType,
422 _LIT8(KUnResolveableImplType, "Abc||xyz");
423 // Pass data "Abc||xyz" which is not present on implementation type
424 // to look for and test for failure
425 matchResult = iStateAccessor->Match(*iDefaultResolver,
426 KUnResolveableImplType,
431 // Wild card in data type
432 _LIT8(KResolveWildImplType, "text*||xyz");
434 // Set to enable wild card search and test for success
435 matchResult = iStateAccessor->Match(*iDefaultResolver,
436 KResolveWildImplType,
444 @SYMTestCaseID SYSLIB-ECOM-CT-1327
445 @SYMTestCaseDesc Tests the TDefaultResolver_StateAccessor::Resolve() function
446 @SYMTestPriority High
447 @SYMTestActions The test executes by sending an implementation data with additional parameter
448 @SYMTestExpectedResults The test must not fail.
451 void CResolverTest::ResolveTestL()
453 // Resolves a appropriate implementation from a list of possibles
455 // Create iImplementationType on heap so that address can be passed to
456 // CImplementationInformation::NewL method
457 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1327 "));
458 HBufC8* implementationType = HBufC8::NewL(KResolveImplementationType().Length());
459 CleanupStack::PushL(implementationType);
460 TPtr8 impPtr = implementationType->Des();
461 impPtr = KResolveImplementationType;
463 // Interface Uid to create an item of implementation data
464 iResolvedImpUid.iUid=KCExampleInterfaceImp.iUid;
466 TDriveUnit drive(EDriveC);
467 CImplementationInformation* impData = CImplementationInformation::NewL(iResolvedImpUid,
475 // Pop now before pushing impData since ownership is not with it
476 CleanupStack::Pop(implementationType);
477 CleanupStack::PushL(impData);
478 // Add implementation data so that you can resolve the same
479 User::LeaveIfError(iImplementationData.Append(impData));
480 CleanupStack::Pop(impData);
482 // set datatype to text/wml and enable wildcard match
483 iAdditionalParameters.SetDataType(KResolveMatchType);
484 iAdditionalParameters.SetGenericMatch(ETrue);
488 TRAPD(err, resolvedUid = iStateAccessor->Resolve(*iDefaultResolver,
490 iAdditionalParameters));
492 test(err == KErrNone);
493 // confirm newly created interface id
494 test(resolvedUid == iResolvedImpUid);
496 // Logging and cleaning up the array elements
497 while(iImplementationData.Count())
499 // Fetch the address at first location and empty it
500 CImplementationInformation* impInfo = iImplementationData[0];
501 test.Printf(_L("Resolved Uid is 0x%x \n"), impInfo->ImplementationUid());
502 iImplementationData.Remove(0);
505 iImplementationData.Reset();
509 @SYMTestCaseID SYSLIB-ECOM-CT-0660
510 @SYMTestCaseDesc Tests for OOM while create and delete test
511 @SYMTestPriority High
512 @SYMTestActions Calls the CResolverTest test function
513 @SYMTestExpectedResults The test must not fail.
516 LOCAL_C void OOMCreateDeleteTest()
518 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0660 OOM CreateDeleteTest"));
521 __UNUSED_VAR(failAt);
523 CResolverTest* resolverTest = NULL;
528 // find out the number of open handles
529 TInt startProcessHandleCount;
530 TInt startThreadHandleCount;
531 RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
533 __UHEAP_SETFAIL(RHeap::EDeterministic, failAt+=100);
535 TRAP(err, resolverTest = CResolverTest::NewL());
537 __UHEAP_SETFAIL(RHeap::ENone, 0);
542 // check that no handles have leaked
543 TInt endProcessHandleCount;
544 TInt endThreadHandleCount;
545 RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
547 test(startProcessHandleCount == endProcessHandleCount);
548 test(startThreadHandleCount == endThreadHandleCount);
552 while(err == KErrNoMemory);
554 test.Printf(_L("- Succeeded at heap failure rate of %i\n"), failAt);
555 test(err == KErrNone);
558 // Type definition for pointer to member function.
559 // Used in calling the CResolverTest member function for testing.
560 typedef void (CResolverTest::*ClassFuncPtrL) (void);
563 This function is used to force a discovery prior to the tests commencing.
565 LOCAL_C void ForceDiscovery()
567 CTestRegistrarObserver* registrarObserver = new (ELeave) CTestRegistrarObserver;
568 CleanupStack::PushL(registrarObserver);
569 CRegistryData* registryData = CRegistryData::NewL(TheFs);
570 CleanupStack::PushL(registryData);
571 CRegistrar* registrar = CRegistrar::NewL(*registryData, *registrarObserver, TheFs);
572 CleanupStack::PushL(registrar);
573 registrar->ProcessSSAEventL(EStartupStateNonCritical);
575 CleanupStack::PopAndDestroy(registrar);
576 CleanupStack::PopAndDestroy(registryData);
577 CleanupStack::PopAndDestroy(registrarObserver);
581 @SYMTestCaseID SYSLIB-ECOM-CT-0661
582 @SYMTestCaseDesc Wrapper function which calls other test functions
583 @SYMTestPriority High
584 @SYMTestActions Calls the CResolverTest test function
585 @SYMTestExpectedResults The test must not fail.
589 Wrapper function to call all test functions
591 @param testFunc pointer to test function
592 @param aTestDesc test function name
594 LOCAL_C void DoBasicTestL(ClassFuncPtrL testFuncL, const TDesC& aTestDesc)
596 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0661 "));
597 test.Next(aTestDesc);
600 // find out the number of open handles
601 TInt startProcessHandleCount;
602 TInt startThreadHandleCount;
603 RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
605 CResolverTest* resolverTest = CResolverTest::NewL();
606 CleanupStack::PushL(resolverTest);
608 (resolverTest->*testFuncL)();
610 CleanupStack::PopAndDestroy(resolverTest);
612 // check that no handles have leaked
613 TInt endProcessHandleCount;
614 TInt endThreadHandleCount;
615 RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
617 test(startProcessHandleCount == endProcessHandleCount);
618 test(startThreadHandleCount == endThreadHandleCount);
624 @SYMTestCaseID SYSLIB-ECOM-CT-0662
625 @SYMTestCaseDesc Function to call all OOM test functions
626 @SYMTestPriority High
627 @SYMTestActions Calls the CResolverTest test function
628 @SYMTestExpectedResults The test must not fail.
632 Wrapper function to call all OOM test functions
634 @param testFuncL pointer to OOM test function
635 @param aTestDesc test function name
637 LOCAL_C void DoOOMTestL(ClassFuncPtrL testFuncL, const TDesC& aTestDesc)
639 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0662 "));
640 test.Next(aTestDesc);
647 // find out the number of open handles
648 TInt startProcessHandleCount;
649 TInt startThreadHandleCount;
650 RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
652 CResolverTest* resolverTest = CResolverTest::NewL();
653 CleanupStack::PushL(resolverTest);
655 __UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
657 TRAP(err, (resolverTest->*testFuncL)());
659 __UHEAP_SETFAIL(RHeap::ENone, 0);
661 CleanupStack::PopAndDestroy(resolverTest);
663 // check that no handles have leaked
664 TInt endProcessHandleCount;
665 TInt endThreadHandleCount;
666 RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
668 test(startProcessHandleCount == endProcessHandleCount);
669 test(startThreadHandleCount == endThreadHandleCount);
672 } while(err == KErrNoMemory);
674 test(err == KErrNone);
675 test.Printf(_L("- server succeeded at heap failure rate of %i\n"), tryCount);
678 LOCAL_C void DoTestsL()
682 // Force a discovery to ensure that the ecom.dat file is updated with the data from the plugins
683 // required for this test. The plugins for this test are copied by calling CopyPlugins() from E32Main().
684 // They are deleted by calling DeleteTestPlugin() also from E32Main().
689 DoBasicTestL(&CResolverTest::IdentifyImplementationTestL, _L("Identify implementation test"));
690 DoBasicTestL(&CResolverTest::ListAllTestL, _L("ListAllTestL"));
691 DoBasicTestL(&CResolverTest::MatchTest, _L("MatchTest"));
692 DoBasicTestL(&CResolverTest::ResolveTestL, _L("ResolveTestL"));
695 OOMCreateDeleteTest();
696 DoOOMTestL(&CResolverTest::IdentifyImplementationTestL, _L("OOM IdentifyImplementationTestL"));
697 DoOOMTestL(&CResolverTest::ListAllTestL, _L("OOM ListAllTestL"));
698 DoOOMTestL(&CResolverTest::MatchTest, _L("OOM MatchTest"));
699 DoOOMTestL(&CResolverTest::ResolveTestL, _L("OOM ResolveTestL"));
705 This function is used for cleanup support of locally declared arrays
707 LOCAL_C void CleanupEComPtrArray(TAny* aArray)
710 (static_cast<RImplInfoArray*>(aArray))->Reset();
711 delete aArray;// delete here
716 Copies the Plugins to specific folder for testing purpose
718 LOCAL_C void CopyPlugins()
720 // Copy the dlls and .rsc files on to RAM
721 TRAPD(err, EComTestUtils::FileManCopyFileL(KEComExDllOnZ, KEComExDllOnC));
724 TRAP(err, EComTestUtils::FileManCopyFileL(KEComRscFileOnZ, KEComRscFileOnC));
727 TRAP(err, EComTestUtils::FileManCopyFileL(KEComExampleDllOnZ, KEComExampleDllOnC));
729 TRAP(err, EComTestUtils::FileManCopyFileL(KEComExample2DllOnZ, KEComExample2DllOnC));
731 TRAP(err, EComTestUtils::FileManCopyFileL(KEComExample3DllOnZ, KEComExample3DllOnC));
734 TRAP(err, EComTestUtils::FileManCopyFileL(KEComExampleRscOnZ, KEComExampleRscOnC));
736 TRAP(err, EComTestUtils::FileManCopyFileL(KEComExample2RscOnZ, KEComExample2RscOnC));
738 TRAP(err, EComTestUtils::FileManCopyFileL(KEComExample3RscOnZ, KEComExample3RscOnC));
742 // Deleting plugin from the RAM for cleanup purpose
743 inline LOCAL_C void DeleteTestPlugin()
745 TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComExDllOnC));
746 TRAP(err, EComTestUtils::FileManDeleteFileL(KEComRscFileOnC));
747 TRAP(err, EComTestUtils::FileManDeleteFileL(KEComExampleDllOnC));
748 TRAP(err, EComTestUtils::FileManDeleteFileL(KEComExample2DllOnC));
749 TRAP(err, EComTestUtils::FileManDeleteFileL(KEComExample3DllOnC));
750 TRAP(err, EComTestUtils::FileManDeleteFileL(KEComExampleRscOnC));
751 TRAP(err, EComTestUtils::FileManDeleteFileL(KEComExample2RscOnC));
752 TRAP(err, EComTestUtils::FileManDeleteFileL(KEComExample3RscOnC));
755 //Initialise the Active Scheduler
756 LOCAL_C void SetupL()
758 // Construct and install the Active Scheduler. The Active Schedular is needed
759 // by components used by this test as they are ActiveObjects.
760 TheActiveScheduler = new(ELeave)CActiveScheduler;
761 CActiveScheduler::Install(TheActiveScheduler);
765 GLDEF_C TInt E32Main()
769 test.Printf(_L("\n"));
771 test.Start(_L("Resolver Tests"));
773 TheTrapCleanup = CTrapCleanup::New();
775 TRAPD(err, SetupL());
776 test(err == KErrNone);
778 // Connect the file server instance
779 User::LeaveIfError(TheFs.Connect());
783 // Wait, so that ECom server looks for plugins copied from Z: to C drive
784 // ECOM server could be already started. It means that when we copy some
785 // ECOM plugins from Z: to C: drive - ECOM server should look for and
786 // find the new ECOM plugins. The ECOM server uses for that CDiscoverer::CIdleScanningTimer
787 // which is an active object. So the discovering service is asynchronous. We have to
788 // wait some time until it finishes. Otherwise ListImplementationsL could fail to find
789 // requested implementations.
790 User::After(KOneSecond * 3);
792 TRAP(err, DoTestsL());
793 test(err == KErrNone);
795 // Cleanup files. If the cleanup fails that is no problem,
796 // as any subsequent tests will replace them. The only downside
797 // would be the disk not being tidied
801 delete TheTrapCleanup;
802 delete TheActiveScheduler;