Update contrib.
1 // Copyright (c) 2003-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 test assumes the following setup:
15 // EComRomOnlyExampleOnC/10009DB6 on C:
16 // EComRomOnlyExampleOnZ/10009DB5 on Z:
17 // The tests work by checking that the correct implementations are chosen from two plug-ins, one on C:, one on Z:
18 // Implementation: On C: On Z: Expected result:
19 // 10009DCA version 2 version 1, not ROM-only ECom selects version 2 on C:
20 // 10009DCB version 2, ROM-only f version 1, not ROM-only ECom selects version 1 on Z:
21 // 10009DCC version 1 version 2, not ROM-only ECom selects version 2 on Z:
22 // 10009DCD version 2 version 1, ROM-only ECom selects version 1 on Z:
23 // 10009DCE version 1 version 2, ROM-only ECom selects version 2 on Z:
24 // 10009DCF version 3 version 1 & version 2, ROM-only ECom selects version 2 on Z:
33 #include <ecom/ecom.h>
34 #include "EComUidCodes.h"
35 #include "Interface.h" // interface to Plugins
36 #include "../EcomTestUtils/EcomTestUtils.h"
38 const TUid KUidInterface = {0x10009DC9};
39 const TInt KUidImplementationAValue = 0x10009DCA;
40 const TInt KUidImplementationBValue = 0x10009DCB;
41 const TInt KUidImplementationCValue = 0x10009DCC;
42 const TInt KUidImplementationDValue = 0x10009DCD;
43 const TInt KUidImplementationEValue = 0x10009DCE;
44 const TInt KUidImplementationFValue = 0x10009DCF;
45 const TInt KOneSecond = 1000000;
47 LOCAL_D RTest test(_L("t_romonly.exe"));
49 _LIT(KEComPluginOnZ, "z:\\RAMOnly\\EComRomOnlyExampleOnC.dll");
51 _LIT(KEComPluginOnC, "c:\\sys\\bin\\EComRomOnlyExampleOnC.dll");
52 _LIT(KEComPluginRscOnZ, "z:\\RAMOnly\\EComRomOnlyExampleOnC.rsc");
53 _LIT(KEComPluginRscOnC, "c:\\resource\\plugins\\EComRomOnlyExampleOnC.rsc");
63 TRAPD(err, EComTestUtils::FileManCopyFileL(KEComPluginOnZ, KEComPluginOnC));
66 TRAP(err, EComTestUtils::FileManCopyFileL(KEComPluginRscOnZ, KEComPluginRscOnC));
72 TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComPluginOnC));
73 TRAP(err, EComTestUtils::FileManDeleteFileL(KEComPluginRscOnC));
77 @SYMTestCaseID SYSLIB-ECOM-CT-0665
78 @SYMTestCaseDesc Tests for REComSession::ListImplementationsL() function
80 @SYMTestActions Checks that the correct implementations are chosen from two plug-ins, one on C:, one on Z:
81 @SYMTestExpectedResults The test must not fail.
84 LOCAL_C void TestImplementationsL()
86 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0665 TestImplementationsL "));
88 // Set up for heap leak checking
91 // and leaking thread handles
92 TInt startProcessHandleCount;
93 TInt startThreadHandleCount;
94 TInt endProcessHandleCount;
95 TInt endThreadHandleCount;
99 thisThread.HandleCount(startProcessHandleCount, startThreadHandleCount);
101 RImplInfoPtrArray ifArray;
103 TEComResolverParams ResolverParams;
104 _LIT8(KImplementationTest,"text/wml");
105 ResolverParams.SetDataType(KImplementationTest());
106 ResolverParams.SetWildcardMatch(ETrue); // Allow wildcard matching
108 REComSession::ListImplementationsL(
114 const TInt availCount = ifArray.Count();
115 test.Printf(_L("Found %d implementations.\n"),availCount);
116 test(availCount == 6);
118 for (TInt count=0;count<availCount;++count)
120 const CImplementationInformation* info = ifArray[count];
122 TDriveName driveName = info->Drive().Name();
123 test.Printf(_L("%d. uid={%x} version=%d on drive %S\n"), count+1, info->ImplementationUid(), info->Version(), &driveName);
125 switch(info->ImplementationUid().iUid)
127 case KUidImplementationAValue:
128 test(info->Version()==1);
129 test(info->Drive()==EDriveZ);
132 case KUidImplementationBValue:
133 test(info->Version()==1);
134 test(info->Drive()==EDriveZ);
137 case KUidImplementationCValue:
138 test(info->Version()==2);
139 test(info->Drive()==EDriveZ);
142 case KUidImplementationDValue:
143 test(info->Version()==1);
144 test(info->Drive()==EDriveZ);
147 case KUidImplementationEValue:
148 test(info->Version()==2);
149 test(info->Drive()==EDriveZ);
152 case KUidImplementationFValue:
153 test(info->Version()==2);
154 test(info->Drive()==EDriveZ);
159 // Empty the array of implementations
160 test.Printf(_L("Destroying List..."));
161 ifArray.ResetAndDestroy();
163 REComSession::FinalClose(); // Don't want leaks outside the test
165 // Check for open handles
166 thisThread.HandleCount(endProcessHandleCount, endThreadHandleCount);
168 test(startThreadHandleCount == endThreadHandleCount);
169 test.Printf(_L("Great ! No handle mismatch."));
176 void TheTest::StartTestL()
178 TestImplementationsL();
183 // Should any tests leave past the lowest level???
189 GLDEF_C TInt E32Main()
193 test.Start(_L("Rom resolver tests"));
195 // get clean-up stack
196 CTrapCleanup* cleanup = CTrapCleanup::New();
199 //The reason for the folowing delay is:
200 //ECOM server could be already started. It means that when we copy some
201 //ECOM plugins from Z: to C: drive - ECOM server should look for and
202 //find the new ECOM plugins. The ECOM server uses for that CDiscoverer::CIdleScanningTimer
203 //which is an active object. So the discovering service is asynchronous. We have to
204 //wait some time until it finishes. Otherwise ListImplementationsL could fail to find
205 //requested implementations.
206 User::After(KOneSecond * 3);
208 TRAPD(err,DoTestsL());