Update contrib.
1 // Copyright (c) 1997-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 // EComRomRslvrExampleOnC on C:
16 // EComRomRslvrExampleOnZ 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 // 10009DC6 version 2 version 1 ROM resolver selects version 2 on C:
20 // 10009DC7 version 1 version 2 ROM resolver selects version 2 on Z:
21 // 10009DCF version 1 - ROM resolver does not return this
29 #include <ecom/ecom.h>
30 #include "EComUidCodes.h"
31 #include "Interface.h" // interface to Plugins
32 #include "../EcomTestUtils/EcomTestUtils.h"
34 TUid KUidInterface = {0x10009DC8};
35 const TInt KUidImplementationAValue = 0x10009DC6;
36 const TInt KUidImplementationBValue = 0x10009DC7;
37 const TInt KUidImplementationCValue = 0x10009DCF;
38 const TInt KOneSecond = 1000000;
40 LOCAL_D RTest test(_L("t_romresolver.exe"));
42 _LIT(KEComPlugin2OnZ, "z:\\RAMOnly\\EComRomRslvrExampleOnC.dll");
44 _LIT(KEComPluginRsc2OnZ, "z:\\RAMOnly\\EComRomRslvrExampleOnC.rsc");
45 _LIT(KEComPlugin2OnC, "c:\\sys\\bin\\EComRomRslvrExampleOnC.dll");
46 _LIT(KEComPluginRsc2OnC, "c:\\resource\\plugins\\EComRomRslvrExampleOnC.rsc");
56 @SYMTestCaseID SYSLIB-ECOM-CT-0663
57 @SYMTestCaseDesc Tests for REComSession::ListImplementationsL() function
59 @SYMTestActions Tests for interface implementation data
60 @SYMTestExpectedResults The test must not fail.
63 LOCAL_C void TestDefaultResolverL()
65 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0663 TestDefaultResolverL "));
68 // Testing a overloaded method for ListImplementationsL
69 // ------------------------------------------------------------------
72 // Set up for heap leak checking
75 // and leaking thread handles
76 TInt startProcessHandleCount;
77 TInt startThreadHandleCount;
78 TInt endProcessHandleCount;
79 TInt endThreadHandleCount;
83 thisThread.HandleCount(startProcessHandleCount, startThreadHandleCount);
85 RImplInfoPtrArray ifArray;
87 TEComResolverParams ResolverParams;
88 _LIT8(KImplementationTest,"text/wml");
89 ResolverParams.SetDataType(KImplementationTest());
90 ResolverParams.SetWildcardMatch(ETrue); // Allow wildcard matching
92 REComSession::ListImplementationsL(
98 const TInt availCount = ifArray.Count();
99 test.Printf(_L("Found %d implementations.\n"),availCount);
102 for (TInt count=0;count<availCount;++count)
104 const CImplementationInformation* info = ifArray[count];
106 TDriveName driveName = info->Drive().Name();
107 test.Printf(_L("%d. uid={%x} version=%d on drive %S\n"), count+1, info->ImplementationUid(), info->Version(), &driveName);
109 switch(info->ImplementationUid().iUid)
111 case KUidImplementationAValue:
112 test(info->Version()==1);
113 test(info->Drive()==EDriveZ);
116 case KUidImplementationBValue:
117 test(info->Version()==2);
118 test(info->Drive()==EDriveZ);
121 case KUidImplementationCValue:
122 test(info->Version()==1);
123 test(info->Drive()==EDriveC);
127 test.Printf(_L("Unknown implementation UID\n"));
132 // Empty the array of implementations
133 test.Printf(_L("Destroying List..."));
134 ifArray.ResetAndDestroy();
136 REComSession::FinalClose(); // Don't want leaks outside the test
138 // Check for open handles
139 thisThread.HandleCount(endProcessHandleCount, endThreadHandleCount);
141 test(startThreadHandleCount == endThreadHandleCount);
142 test.Printf(_L("Great ! No handle mismatch."));
149 @SYMTestCaseID SYSLIB-ECOM-CT-0664
150 @SYMTestCaseDesc Tests for REComSession::ListImplementationsL() function
151 @SYMTestPriority High
152 @SYMTestActions Tests for interface implementation data
153 @SYMTestExpectedResults The test must not fail.
156 LOCAL_C void TestRomResolverL()
158 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0664 TestRomResolverL "));
161 // Testing a overloaded method for ListImplementationsL
162 // ------------------------------------------------------------------
165 // Set up for heap leak checking
168 // and leaking thread handles
169 TInt startProcessHandleCount;
170 TInt startThreadHandleCount;
171 TInt endProcessHandleCount;
172 TInt endThreadHandleCount;
176 thisThread.HandleCount(startProcessHandleCount, startThreadHandleCount);
178 RImplInfoPtrArray ifArray;
180 TEComResolverParams ResolverParams;
181 _LIT8(KImplementationTest,"text/wml");
182 ResolverParams.SetDataType(KImplementationTest());
183 ResolverParams.SetWildcardMatch(ETrue); // Allow wildcard matching
185 REComSession::ListImplementationsL(
191 const TInt availCount = ifArray.Count();
192 test.Printf(_L("Found %d implementations.\n"),availCount);
193 test(availCount == 2);
195 for (TInt count=0;count<availCount;++count)
197 const CImplementationInformation* info = ifArray[count];
199 TDriveName driveName = info->Drive().Name();
200 test.Printf(_L("%d. uid={%x} version=%d on drive %S\n"), count+1, info->ImplementationUid(), info->Version(), &driveName);
202 switch(info->ImplementationUid().iUid)
204 case KUidImplementationAValue:
205 test(info->Version()==1);
206 test(info->Drive()==EDriveZ);
209 case KUidImplementationBValue:
210 test(info->Version()==2);
211 test(info->Drive()==EDriveZ);
215 test.Printf(_L("Unknown implementation UID\n"));
220 // Empty the array of implementations
221 test.Printf(_L("Destroying List..."));
222 ifArray.ResetAndDestroy();
224 REComSession::FinalClose(); // Don't want leaks outside the test
226 // Check for open handles
227 thisThread.HandleCount(endProcessHandleCount, endThreadHandleCount);
229 test(startThreadHandleCount == endThreadHandleCount);
230 test.Printf(_L("Great ! No handle mismatch."));
236 LOCAL_C void TestListImplementationL()
238 TestDefaultResolverL();
242 void TheTest::StartTestL()
244 TestListImplementationL();
249 // Should any tests leave past the lowest level???
257 TRAPD(err, EComTestUtils::FileManCopyFileL(KEComPlugin2OnZ, KEComPlugin2OnC));
260 TRAP(err, EComTestUtils::FileManCopyFileL(KEComPluginRsc2OnZ, KEComPluginRsc2OnC));
266 TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComPlugin2OnC));
267 TRAP(err, EComTestUtils::FileManDeleteFileL(KEComPluginRsc2OnC));
270 GLDEF_C TInt E32Main()
274 test.Start(_L("Rom resolver tests"));
276 // get clean-up stack
277 CTrapCleanup* cleanup = CTrapCleanup::New();
280 //The reason for the folowing delay is:
281 //ECOM server could be already started. It means that when we copy some
282 //ECOM plugins from Z: to C: drive - ECOM server should look for and
283 //find the new ECOM plugins. The ECOM server uses for that CDiscoverer::CIdleScanningTimer
284 //which is an active object. So the discovering service is asynchronous. We have to
285 //wait some time until it finishes. Otherwise ListImplementationsL could fail to find
286 //requested implementations.
287 User::After(KOneSecond * 3);
289 TRAPD(err,DoTestsL());