sl@0
|
1 |
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include <e32test.h>
|
sl@0
|
17 |
#include <f32file.h>
|
sl@0
|
18 |
#include <bautils.h>
|
sl@0
|
19 |
#include <ecom/ecom.h>
|
sl@0
|
20 |
#include <ecom/ecompanics.h>
|
sl@0
|
21 |
#include "EComUidCodes.h"
|
sl@0
|
22 |
#include "Interface.h" // interface to Plugins
|
sl@0
|
23 |
#include "../EcomTestUtils/EcomTestUtils.h"
|
sl@0
|
24 |
|
sl@0
|
25 |
//The tests test all the new APIs added to REComSession created for EC43
|
sl@0
|
26 |
|
sl@0
|
27 |
TUid KCExampleImplUid = {0x10009DC3};
|
sl@0
|
28 |
|
sl@0
|
29 |
const TInt KOneSecond = 1000000;
|
sl@0
|
30 |
|
sl@0
|
31 |
LOCAL_D RTest test(_L("t_extendedinterfaces"));
|
sl@0
|
32 |
LOCAL_D RFs TheFs;
|
sl@0
|
33 |
|
sl@0
|
34 |
#define __UNUSED_VAR(var) var = var
|
sl@0
|
35 |
|
sl@0
|
36 |
// Used for OOM test
|
sl@0
|
37 |
#define TEST_OOM_ERR if(err == KErrNoMemory) {User::Leave(err);}
|
sl@0
|
38 |
|
sl@0
|
39 |
|
sl@0
|
40 |
static void ResetAndDestroyArray(TAny* aPtr)
|
sl@0
|
41 |
{
|
sl@0
|
42 |
(static_cast<RImplInfoPtrArray*>(aPtr))->ResetAndDestroy();
|
sl@0
|
43 |
}
|
sl@0
|
44 |
|
sl@0
|
45 |
|
sl@0
|
46 |
/**
|
sl@0
|
47 |
Test function for REcomSession::ListImplementationL
|
sl@0
|
48 |
|
sl@0
|
49 |
@param aContainInvalidExtIf The bool value identifying if the extended interfaces list contains
|
sl@0
|
50 |
invalid extended interface Uid
|
sl@0
|
51 |
@param aUseDefResolver The bool value identifying if default resolver is used.
|
sl@0
|
52 |
@param aUseResolveParam The bool value identifying if resolve parameter is used.
|
sl@0
|
53 |
@param aNumEntriesInExtIFList The number of entries in the extended interfaces list.
|
sl@0
|
54 |
@param aImplInfoArray A reference to a client owned array which will be filled
|
sl@0
|
55 |
with interface implementation data.
|
sl@0
|
56 |
*/
|
sl@0
|
57 |
LOCAL_C void ListImplementationTestL(TBool aContainInvalidExtIf,
|
sl@0
|
58 |
TBool aUseDefResolver,
|
sl@0
|
59 |
TBool aUseResolveParam,
|
sl@0
|
60 |
TInt aNumEntriesInExtIFList,
|
sl@0
|
61 |
RImplInfoPtrArray& aImplInfoArray)
|
sl@0
|
62 |
{
|
sl@0
|
63 |
const TUid KInterfaceUid = {0x10009DBB};
|
sl@0
|
64 |
const TUid KExtendedInterfaceUid1 = {0x10009E44};
|
sl@0
|
65 |
const TUid KExtendedInterfaceUid2 = {0x10009E45};
|
sl@0
|
66 |
const TUid KExtendedInterfaceUid3 = {0x10009E46};
|
sl@0
|
67 |
const TUid KInvalidExtendedInterfaceUid2 = {0x10009E49};
|
sl@0
|
68 |
_LIT8(KExample10ImplementationTest,"Example 10");
|
sl@0
|
69 |
|
sl@0
|
70 |
TUid resolverUid = {0x10009DD0};
|
sl@0
|
71 |
|
sl@0
|
72 |
// Set up extended interfaces
|
sl@0
|
73 |
RArray<TUid> extendedInterfaces;
|
sl@0
|
74 |
CleanupClosePushL(extendedInterfaces);
|
sl@0
|
75 |
|
sl@0
|
76 |
if (!aContainInvalidExtIf)
|
sl@0
|
77 |
{
|
sl@0
|
78 |
if (aNumEntriesInExtIFList==1)
|
sl@0
|
79 |
{
|
sl@0
|
80 |
extendedInterfaces.AppendL(KExtendedInterfaceUid1);
|
sl@0
|
81 |
}
|
sl@0
|
82 |
else if (aNumEntriesInExtIFList>1)
|
sl@0
|
83 |
{
|
sl@0
|
84 |
extendedInterfaces.AppendL(KExtendedInterfaceUid2);
|
sl@0
|
85 |
extendedInterfaces.AppendL(KExtendedInterfaceUid3);
|
sl@0
|
86 |
}
|
sl@0
|
87 |
}
|
sl@0
|
88 |
else
|
sl@0
|
89 |
{
|
sl@0
|
90 |
extendedInterfaces.AppendL(KExtendedInterfaceUid1);
|
sl@0
|
91 |
extendedInterfaces.AppendL(KInvalidExtendedInterfaceUid2);
|
sl@0
|
92 |
}
|
sl@0
|
93 |
|
sl@0
|
94 |
//Set up resolve parameter
|
sl@0
|
95 |
TEComResolverParams ResolverParams;
|
sl@0
|
96 |
if (aUseResolveParam)
|
sl@0
|
97 |
{
|
sl@0
|
98 |
ResolverParams.SetDataType(KExample10ImplementationTest());
|
sl@0
|
99 |
ResolverParams.SetGenericMatch(ETrue); // Allow wildcard matching
|
sl@0
|
100 |
if (aUseDefResolver) //ListImplementationTest2L,ListImplementationTest4L
|
sl@0
|
101 |
{
|
sl@0
|
102 |
REComSession::ListImplementationsL(KInterfaceUid,extendedInterfaces,ResolverParams,aImplInfoArray);
|
sl@0
|
103 |
}
|
sl@0
|
104 |
else //ListImplementationTest3L
|
sl@0
|
105 |
{
|
sl@0
|
106 |
REComSession::ListImplementationsL(KInterfaceUid,extendedInterfaces,ResolverParams,resolverUid,aImplInfoArray);
|
sl@0
|
107 |
}
|
sl@0
|
108 |
|
sl@0
|
109 |
}
|
sl@0
|
110 |
else //ListImplementationTest1L, ListImplementationTest5L
|
sl@0
|
111 |
{
|
sl@0
|
112 |
REComSession::ListImplementationsL(KInterfaceUid,extendedInterfaces,aImplInfoArray);
|
sl@0
|
113 |
}
|
sl@0
|
114 |
CleanupStack::PopAndDestroy(&extendedInterfaces);
|
sl@0
|
115 |
}
|
sl@0
|
116 |
|
sl@0
|
117 |
|
sl@0
|
118 |
/**
|
sl@0
|
119 |
@SYMTestCaseID SYSLIB-ECOM-CT-3597
|
sl@0
|
120 |
@SYMTestCaseDesc Tests for CImplementationInformation structure.
|
sl@0
|
121 |
@SYMTestPriority High
|
sl@0
|
122 |
@SYMTestActions Call ListImplementationL method to get a list of implementations with extended interfaces.
|
sl@0
|
123 |
Check that the expected extended interfaces are available in the CImplementationInformation
|
sl@0
|
124 |
data structure via GetExtendedInterfaceList method.
|
sl@0
|
125 |
@SYMTestExpectedResults Extended interfaces are available in implementation information structure.
|
sl@0
|
126 |
@SYMEC EC43
|
sl@0
|
127 |
*/
|
sl@0
|
128 |
LOCAL_C void ListImplementationTest5L()
|
sl@0
|
129 |
{
|
sl@0
|
130 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3597 "));
|
sl@0
|
131 |
// Test Starts...
|
sl@0
|
132 |
RImplInfoPtrArray ifArray;
|
sl@0
|
133 |
TBool containInvalidExtIf = EFalse;
|
sl@0
|
134 |
TBool useDefResolver = ETrue;
|
sl@0
|
135 |
TBool useResolveParam = EFalse;
|
sl@0
|
136 |
TInt numEntriesOnExtIFList = 3;
|
sl@0
|
137 |
|
sl@0
|
138 |
ListImplementationTestL(containInvalidExtIf,useDefResolver,useResolveParam,numEntriesOnExtIFList,ifArray);
|
sl@0
|
139 |
|
sl@0
|
140 |
//Checks the result
|
sl@0
|
141 |
//0x10009E38 is implemented in EcomExample10.dll
|
sl@0
|
142 |
TUid KExample10ImplUid = {0x10009E38};
|
sl@0
|
143 |
TUid KExtendedInterfaceUid1 = {0x10009E44};
|
sl@0
|
144 |
TUid KExtendedInterfaceUid2 = {0x10009E45};
|
sl@0
|
145 |
TUid KExtendedInterfaceUid3 = {0x10009E46};
|
sl@0
|
146 |
const TInt availCount = ifArray.Count();
|
sl@0
|
147 |
test.Printf(_L("Found %d implementations.\n"),availCount);
|
sl@0
|
148 |
test(availCount == 1);
|
sl@0
|
149 |
|
sl@0
|
150 |
//tests extended interfaces
|
sl@0
|
151 |
CImplementationInformation* info = ifArray[0];
|
sl@0
|
152 |
test.Printf(_L("Implementation Uid-%x. %s\n"),info->ImplementationUid(),((info->DisplayName()).Ptr()));
|
sl@0
|
153 |
test (KExample10ImplUid==info->ImplementationUid());
|
sl@0
|
154 |
|
sl@0
|
155 |
CleanupStack::PushL(TCleanupItem(ResetAndDestroyArray, &ifArray));
|
sl@0
|
156 |
|
sl@0
|
157 |
// Gets extended interfaces list
|
sl@0
|
158 |
RArray<TUid> extInf;
|
sl@0
|
159 |
CleanupClosePushL(extInf);
|
sl@0
|
160 |
info->GetExtendedInterfaceListL(extInf);
|
sl@0
|
161 |
test(extInf[0] == KExtendedInterfaceUid1);
|
sl@0
|
162 |
test(extInf[1] == KExtendedInterfaceUid2);
|
sl@0
|
163 |
test(extInf[2] == KExtendedInterfaceUid3);
|
sl@0
|
164 |
CleanupStack::PopAndDestroy(&extInf);
|
sl@0
|
165 |
|
sl@0
|
166 |
// Empty the array of implementations
|
sl@0
|
167 |
test.Printf(_L("Destroying List..."));
|
sl@0
|
168 |
CleanupStack::PopAndDestroy(&ifArray);
|
sl@0
|
169 |
}
|
sl@0
|
170 |
|
sl@0
|
171 |
|
sl@0
|
172 |
/**
|
sl@0
|
173 |
@SYMTestCaseID SYSLIB-ECOM-CT-3594
|
sl@0
|
174 |
@SYMTestCaseDesc Tests for REComSession::ListImplementationL created with an Interface Uid
|
sl@0
|
175 |
and invalid extended Interfaces.
|
sl@0
|
176 |
@SYMTestPriority High
|
sl@0
|
177 |
@SYMTestActions Call ListImplementationL method supporting interface UID and extended interfaces
|
sl@0
|
178 |
that are invalid.
|
sl@0
|
179 |
@SYMTestExpectedResults No implementation is returned.
|
sl@0
|
180 |
@SYMEC EC43
|
sl@0
|
181 |
*/
|
sl@0
|
182 |
LOCAL_C void ListImplementationTest4L()
|
sl@0
|
183 |
{
|
sl@0
|
184 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3594 "));
|
sl@0
|
185 |
// Test Starts...
|
sl@0
|
186 |
RImplInfoPtrArray ifArray;
|
sl@0
|
187 |
TBool containInvalidExtIf = ETrue;
|
sl@0
|
188 |
TBool useDefResolver = ETrue;
|
sl@0
|
189 |
TBool useResolveParam = ETrue;
|
sl@0
|
190 |
TInt numEntriesOnExtIFList = 2;
|
sl@0
|
191 |
|
sl@0
|
192 |
ListImplementationTestL(containInvalidExtIf,useDefResolver,useResolveParam,numEntriesOnExtIFList,ifArray);
|
sl@0
|
193 |
|
sl@0
|
194 |
//Checks the result
|
sl@0
|
195 |
const TInt availCount = ifArray.Count();
|
sl@0
|
196 |
test.Printf(_L("Found %d implementations.\n"),availCount);
|
sl@0
|
197 |
test(availCount == 0);
|
sl@0
|
198 |
|
sl@0
|
199 |
// Empty the array of implementations
|
sl@0
|
200 |
test.Printf(_L("Destroying List..."));
|
sl@0
|
201 |
ifArray.ResetAndDestroy();
|
sl@0
|
202 |
}
|
sl@0
|
203 |
|
sl@0
|
204 |
/**
|
sl@0
|
205 |
@SYMTestCaseID SYSLIB-ECOM-CT-3589
|
sl@0
|
206 |
@SYMTestCaseDesc Tests for REComSession::ListImplementationsL for known Interface UID,
|
sl@0
|
207 |
resolver match characteristics, resolver UID and extended interfaces.
|
sl@0
|
208 |
@SYMTestPriority High
|
sl@0
|
209 |
@SYMTestActions Call ListImplementationL method supporting interface UID, resolver parameters
|
sl@0
|
210 |
resolver UID and extended interfaces.
|
sl@0
|
211 |
@SYMTestExpectedResults Expected implementations are returned.
|
sl@0
|
212 |
@SYMEC EC43
|
sl@0
|
213 |
*/
|
sl@0
|
214 |
LOCAL_C void ListImplementationTest3L()
|
sl@0
|
215 |
{
|
sl@0
|
216 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3589 "));
|
sl@0
|
217 |
// Test Starts...
|
sl@0
|
218 |
RImplInfoPtrArray ifArray;
|
sl@0
|
219 |
TBool containInvalidExtIf = EFalse;
|
sl@0
|
220 |
TBool useDefResolver = EFalse;
|
sl@0
|
221 |
TBool useResolveParam = ETrue;
|
sl@0
|
222 |
|
sl@0
|
223 |
//Number of entries in extended interfaces is 3.
|
sl@0
|
224 |
TInt numEntriesOnExtIFList = 3;
|
sl@0
|
225 |
ListImplementationTestL(containInvalidExtIf,useDefResolver,useResolveParam,numEntriesOnExtIFList,ifArray);
|
sl@0
|
226 |
|
sl@0
|
227 |
//Checks the result
|
sl@0
|
228 |
TUid KImplementationUid = {0x10009E38};
|
sl@0
|
229 |
TInt availCount = ifArray.Count();
|
sl@0
|
230 |
test.Printf(_L("Found %d implementations.\n"),availCount);
|
sl@0
|
231 |
test(availCount == 1);
|
sl@0
|
232 |
|
sl@0
|
233 |
//tests implementation uid
|
sl@0
|
234 |
for (TInt count = 0; count < availCount; ++count)
|
sl@0
|
235 |
{
|
sl@0
|
236 |
const CImplementationInformation* info = ifArray[count];
|
sl@0
|
237 |
test.Printf(_L("Implementation Uid-%x. %s\n"),info->ImplementationUid(),((info->DisplayName()).Ptr()));
|
sl@0
|
238 |
test(KImplementationUid == info->ImplementationUid());
|
sl@0
|
239 |
}
|
sl@0
|
240 |
|
sl@0
|
241 |
// Empty the array of implementations
|
sl@0
|
242 |
test.Printf(_L("Destroying List..."));
|
sl@0
|
243 |
ifArray.ResetAndDestroy();
|
sl@0
|
244 |
|
sl@0
|
245 |
//Number of entries in extended interfaces is 0.
|
sl@0
|
246 |
numEntriesOnExtIFList = 0;
|
sl@0
|
247 |
ListImplementationTestL(containInvalidExtIf,useDefResolver,useResolveParam,numEntriesOnExtIFList,ifArray);
|
sl@0
|
248 |
|
sl@0
|
249 |
//Checks the result
|
sl@0
|
250 |
availCount = ifArray.Count();
|
sl@0
|
251 |
test.Printf(_L("Found %d implementations.\n"),availCount);
|
sl@0
|
252 |
test(availCount == 1);
|
sl@0
|
253 |
|
sl@0
|
254 |
//tests implementation uid
|
sl@0
|
255 |
for (TInt count = 0; count < availCount; ++count)
|
sl@0
|
256 |
{
|
sl@0
|
257 |
const CImplementationInformation* info = ifArray[count];
|
sl@0
|
258 |
test.Printf(_L("Implementation Uid-%x. %s\n"),info->ImplementationUid(),((info->DisplayName()).Ptr()));
|
sl@0
|
259 |
}
|
sl@0
|
260 |
|
sl@0
|
261 |
// Empty the array of implementations
|
sl@0
|
262 |
test.Printf(_L("Destroying List..."));
|
sl@0
|
263 |
ifArray.ResetAndDestroy();
|
sl@0
|
264 |
|
sl@0
|
265 |
//Number of entries in extended interfaces is 1.
|
sl@0
|
266 |
numEntriesOnExtIFList = 1;
|
sl@0
|
267 |
ListImplementationTestL(containInvalidExtIf,useDefResolver,useResolveParam,numEntriesOnExtIFList,ifArray);
|
sl@0
|
268 |
|
sl@0
|
269 |
//Checks the result
|
sl@0
|
270 |
availCount = ifArray.Count();
|
sl@0
|
271 |
test.Printf(_L("Found %d implementations.\n"),availCount);
|
sl@0
|
272 |
test(availCount == 1);
|
sl@0
|
273 |
|
sl@0
|
274 |
//tests implementation uid
|
sl@0
|
275 |
for (TInt count = 0; count < availCount; ++count)
|
sl@0
|
276 |
{
|
sl@0
|
277 |
const CImplementationInformation* info = ifArray[count];
|
sl@0
|
278 |
test.Printf(_L("Implementation Uid-%x. %s\n"),info->ImplementationUid(),((info->DisplayName()).Ptr()));
|
sl@0
|
279 |
}
|
sl@0
|
280 |
|
sl@0
|
281 |
// Empty the array of implementations
|
sl@0
|
282 |
test.Printf(_L("Destroying List..."));
|
sl@0
|
283 |
ifArray.ResetAndDestroy();
|
sl@0
|
284 |
}
|
sl@0
|
285 |
|
sl@0
|
286 |
|
sl@0
|
287 |
/**
|
sl@0
|
288 |
@SYMTestCaseID SYSLIB-ECOM-CT-3588
|
sl@0
|
289 |
@SYMTestCaseDesc Tests for REComSession::ListImplementationsL for known Interface UID,
|
sl@0
|
290 |
resolver match characteristics and extended interfaces.
|
sl@0
|
291 |
@SYMTestPriority High
|
sl@0
|
292 |
@SYMTestActions Call ListImplementationL method supporting interface UID, resolver parameters and extended interfaces.
|
sl@0
|
293 |
@SYMTestExpectedResults Expected implementations are returned.
|
sl@0
|
294 |
@SYMEC EC43
|
sl@0
|
295 |
*/
|
sl@0
|
296 |
LOCAL_C void ListImplementationTest2L()
|
sl@0
|
297 |
{
|
sl@0
|
298 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3588 "));
|
sl@0
|
299 |
// Test Starts...
|
sl@0
|
300 |
RImplInfoPtrArray ifArray;
|
sl@0
|
301 |
TBool containInvalidExtIf = EFalse;
|
sl@0
|
302 |
TBool useDefResolver = ETrue;
|
sl@0
|
303 |
TBool useResolveParam = ETrue;
|
sl@0
|
304 |
|
sl@0
|
305 |
//Number of entries in extended interfaces is 3.
|
sl@0
|
306 |
TInt numEntriesOnExtIFList = 3;
|
sl@0
|
307 |
ListImplementationTestL(containInvalidExtIf,useDefResolver,useResolveParam,numEntriesOnExtIFList,ifArray);
|
sl@0
|
308 |
|
sl@0
|
309 |
//Checks the result
|
sl@0
|
310 |
TUid KImplementationUid = {0x10009E38};
|
sl@0
|
311 |
TInt availCount = ifArray.Count();
|
sl@0
|
312 |
test.Printf(_L("Found %d implementations.\n"),availCount);
|
sl@0
|
313 |
test(availCount == 1);
|
sl@0
|
314 |
|
sl@0
|
315 |
//tests implementation uid
|
sl@0
|
316 |
for (TInt count = 0; count < availCount; ++count)
|
sl@0
|
317 |
{
|
sl@0
|
318 |
const CImplementationInformation* info = ifArray[count];
|
sl@0
|
319 |
test.Printf(_L("Implementation Uid-%x. %s\n"),info->ImplementationUid(),((info->DisplayName()).Ptr()));
|
sl@0
|
320 |
test(KImplementationUid==info->ImplementationUid());
|
sl@0
|
321 |
}
|
sl@0
|
322 |
|
sl@0
|
323 |
// Empty the array of implementations
|
sl@0
|
324 |
test.Printf(_L("Destroying List..."));
|
sl@0
|
325 |
ifArray.ResetAndDestroy();
|
sl@0
|
326 |
|
sl@0
|
327 |
//Number of entries in extended interfaces is 0.
|
sl@0
|
328 |
numEntriesOnExtIFList = 0;
|
sl@0
|
329 |
ListImplementationTestL(containInvalidExtIf,useDefResolver,useResolveParam,numEntriesOnExtIFList,ifArray);
|
sl@0
|
330 |
|
sl@0
|
331 |
//Checks the result
|
sl@0
|
332 |
availCount = ifArray.Count();
|
sl@0
|
333 |
test.Printf(_L("Found %d implementations.\n"),availCount);
|
sl@0
|
334 |
test(availCount == 1);
|
sl@0
|
335 |
|
sl@0
|
336 |
//tests implementation uid
|
sl@0
|
337 |
for (TInt count = 0; count < availCount; ++count)
|
sl@0
|
338 |
{
|
sl@0
|
339 |
const CImplementationInformation* info = ifArray[count];
|
sl@0
|
340 |
test.Printf(_L("Implementation Uid-%x. %s\n"),info->ImplementationUid(),((info->DisplayName()).Ptr()));
|
sl@0
|
341 |
}
|
sl@0
|
342 |
|
sl@0
|
343 |
// Empty the array of implementations
|
sl@0
|
344 |
test.Printf(_L("Destroying List..."));
|
sl@0
|
345 |
ifArray.ResetAndDestroy();
|
sl@0
|
346 |
|
sl@0
|
347 |
//Number of entries in extended interfaces is 1.
|
sl@0
|
348 |
numEntriesOnExtIFList = 1;
|
sl@0
|
349 |
ListImplementationTestL(containInvalidExtIf,useDefResolver,useResolveParam,numEntriesOnExtIFList,ifArray);
|
sl@0
|
350 |
|
sl@0
|
351 |
//Checks the result
|
sl@0
|
352 |
availCount = ifArray.Count();
|
sl@0
|
353 |
test.Printf(_L("Found %d implementations.\n"),availCount);
|
sl@0
|
354 |
test(availCount == 1);
|
sl@0
|
355 |
|
sl@0
|
356 |
//tests implementation uid
|
sl@0
|
357 |
for (TInt count = 0; count < availCount; ++count)
|
sl@0
|
358 |
{
|
sl@0
|
359 |
const CImplementationInformation* info = ifArray[count];
|
sl@0
|
360 |
test.Printf(_L("Implementation Uid-%x. %s\n"),info->ImplementationUid(),((info->DisplayName()).Ptr()));
|
sl@0
|
361 |
}
|
sl@0
|
362 |
|
sl@0
|
363 |
// Empty the array of implementations
|
sl@0
|
364 |
test.Printf(_L("Destroying List..."));
|
sl@0
|
365 |
ifArray.ResetAndDestroy();
|
sl@0
|
366 |
}
|
sl@0
|
367 |
|
sl@0
|
368 |
|
sl@0
|
369 |
/**
|
sl@0
|
370 |
@SYMTestCaseID SYSLIB-ECOM-CT-3587
|
sl@0
|
371 |
@SYMTestCaseDesc Tests for REComSession::ListImplementationsL for known Interface UID and extended interfaces.
|
sl@0
|
372 |
@SYMTestPriority High
|
sl@0
|
373 |
@SYMTestActions Call ListImplementationL method supporting interface UID and extended interfaces.
|
sl@0
|
374 |
@SYMTestExpectedResults Expected implementations are returned.
|
sl@0
|
375 |
@SYMEC EC43
|
sl@0
|
376 |
*/
|
sl@0
|
377 |
LOCAL_C void ListImplementationTest1L()
|
sl@0
|
378 |
{
|
sl@0
|
379 |
//
|
sl@0
|
380 |
// Testing a overloaded method for ListImplementationsL
|
sl@0
|
381 |
// ------------------------------------------------------------------
|
sl@0
|
382 |
//
|
sl@0
|
383 |
// Test Starts...
|
sl@0
|
384 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3587 "));
|
sl@0
|
385 |
RImplInfoPtrArray ifArray;
|
sl@0
|
386 |
|
sl@0
|
387 |
TBool containInvalidExtIf = EFalse;
|
sl@0
|
388 |
TBool useDefResolver = ETrue;
|
sl@0
|
389 |
TBool useResolveParam = EFalse;
|
sl@0
|
390 |
|
sl@0
|
391 |
//Number of entries in extended interfaces is 3.
|
sl@0
|
392 |
TInt numEntriesOnExtIFList = 3;
|
sl@0
|
393 |
ListImplementationTestL(containInvalidExtIf,useDefResolver,useResolveParam,numEntriesOnExtIFList,ifArray);
|
sl@0
|
394 |
|
sl@0
|
395 |
//Checks the result
|
sl@0
|
396 |
//0x10009E38 is implemented in EcomExample10.dll
|
sl@0
|
397 |
TUid KExample10ImplUid = {0x10009E38};
|
sl@0
|
398 |
TInt availCount = ifArray.Count();
|
sl@0
|
399 |
test.Printf(_L("Found %d implementations.\n"),availCount);
|
sl@0
|
400 |
test(availCount == 1);
|
sl@0
|
401 |
|
sl@0
|
402 |
//tests implementation uid
|
sl@0
|
403 |
const CImplementationInformation* info = ifArray[0];
|
sl@0
|
404 |
test.Printf(_L("Implementation Uid-%x. %s\n"),info->ImplementationUid(),((info->DisplayName()).Ptr()));
|
sl@0
|
405 |
test(KExample10ImplUid == info->ImplementationUid());
|
sl@0
|
406 |
|
sl@0
|
407 |
// Empty the array of implementations
|
sl@0
|
408 |
test.Printf(_L("Destroying List..."));
|
sl@0
|
409 |
ifArray.ResetAndDestroy();
|
sl@0
|
410 |
|
sl@0
|
411 |
//Number of entries in extended interfaces is 0.
|
sl@0
|
412 |
numEntriesOnExtIFList = 0;
|
sl@0
|
413 |
ListImplementationTestL(containInvalidExtIf,useDefResolver,useResolveParam,numEntriesOnExtIFList,ifArray);
|
sl@0
|
414 |
|
sl@0
|
415 |
//Checks the result
|
sl@0
|
416 |
availCount = ifArray.Count();
|
sl@0
|
417 |
test.Printf(_L("Found %d implementations.\n"),availCount);
|
sl@0
|
418 |
test(availCount == 3);
|
sl@0
|
419 |
|
sl@0
|
420 |
//tests implementation uid
|
sl@0
|
421 |
for (TInt count = 0;count < availCount; ++count)
|
sl@0
|
422 |
{
|
sl@0
|
423 |
const CImplementationInformation* info = ifArray[count];
|
sl@0
|
424 |
test.Printf(_L("Implementation Uid-%x. %s\n"),info->ImplementationUid(),((info->DisplayName()).Ptr()));
|
sl@0
|
425 |
}
|
sl@0
|
426 |
|
sl@0
|
427 |
// Empty the array of implementations
|
sl@0
|
428 |
test.Printf(_L("Destroying List..."));
|
sl@0
|
429 |
ifArray.ResetAndDestroy();
|
sl@0
|
430 |
|
sl@0
|
431 |
//Number of entries in extended interfaces is 1.
|
sl@0
|
432 |
numEntriesOnExtIFList = 1;
|
sl@0
|
433 |
ListImplementationTestL(containInvalidExtIf,useDefResolver,useResolveParam,numEntriesOnExtIFList,ifArray);
|
sl@0
|
434 |
|
sl@0
|
435 |
//Checks the result
|
sl@0
|
436 |
availCount = ifArray.Count();
|
sl@0
|
437 |
test.Printf(_L("Found %d implementations.\n"),availCount);
|
sl@0
|
438 |
test(availCount == 2);
|
sl@0
|
439 |
|
sl@0
|
440 |
//tests implementation uid
|
sl@0
|
441 |
for (TInt count = 0; count < availCount; ++count)
|
sl@0
|
442 |
{
|
sl@0
|
443 |
const CImplementationInformation* info = ifArray[count];
|
sl@0
|
444 |
test.Printf(_L("Implementation Uid-%x. %s\n"),info->ImplementationUid(),((info->DisplayName()).Ptr()));
|
sl@0
|
445 |
}
|
sl@0
|
446 |
|
sl@0
|
447 |
// Empty the array of implementations
|
sl@0
|
448 |
test.Printf(_L("Destroying List..."));
|
sl@0
|
449 |
ifArray.ResetAndDestroy();
|
sl@0
|
450 |
}
|
sl@0
|
451 |
|
sl@0
|
452 |
|
sl@0
|
453 |
/**
|
sl@0
|
454 |
@SYMTestCaseID SYSLIB-ECOM-CT-3713
|
sl@0
|
455 |
@SYMTestCaseDesc Tests for REComSession::CreateImplementationL and REComSession::ListImplementationL
|
sl@0
|
456 |
with a dummy Interface Uid, dummy implementation Uid or dummy resolver Uid.
|
sl@0
|
457 |
@SYMTestPriority High
|
sl@0
|
458 |
@SYMTestActions Call CreateImplementationL method with a dummy interface UID
|
sl@0
|
459 |
Call CreateImplementationL method with a dummy implementation UID
|
sl@0
|
460 |
Call CreateImplementationL method with a dummy Resolver UID
|
sl@0
|
461 |
Call ListImplementationL method with a dummy interface UID
|
sl@0
|
462 |
Call ListImplementationL method with a dummy Resolver UID
|
sl@0
|
463 |
@SYMTestExpectedResults Leave with KErrAugument and No implementation is created.
|
sl@0
|
464 |
@SYMDEF DEF111196
|
sl@0
|
465 |
*/
|
sl@0
|
466 |
LOCAL_C void DummyUidTestL()
|
sl@0
|
467 |
{
|
sl@0
|
468 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3713 "));
|
sl@0
|
469 |
TUid instanceKey;
|
sl@0
|
470 |
TUid dummyUid;
|
sl@0
|
471 |
dummyUid.iUid = 0;
|
sl@0
|
472 |
const TUid KInterfaceUid = {0x10009DBB};
|
sl@0
|
473 |
const TUid KExample10InterfaceUid = {0x10009DBB};
|
sl@0
|
474 |
_LIT8(KExample10ImplementationTest,"Example 10");
|
sl@0
|
475 |
|
sl@0
|
476 |
CExampleInterface* dllPtr = NULL;
|
sl@0
|
477 |
// Set up extended interfaces
|
sl@0
|
478 |
RArray<TUid> extendedInterfaces;
|
sl@0
|
479 |
CleanupClosePushL(extendedInterfaces);
|
sl@0
|
480 |
|
sl@0
|
481 |
//Set up resolve parameter
|
sl@0
|
482 |
TEComResolverParams ResolverParams;
|
sl@0
|
483 |
ResolverParams.SetDataType(KExample10ImplementationTest());
|
sl@0
|
484 |
ResolverParams.SetGenericMatch(ETrue); // Allow wildcard matching
|
sl@0
|
485 |
|
sl@0
|
486 |
CExampleInterface::TExampleInterfaceInitParams initParams;
|
sl@0
|
487 |
// Set up some empty initialisation parameters
|
sl@0
|
488 |
initParams.integer = 0;
|
sl@0
|
489 |
initParams.descriptor = NULL;
|
sl@0
|
490 |
|
sl@0
|
491 |
// CreateImplementationL with a dummy interface Uid
|
sl@0
|
492 |
TRAPD(err,dllPtr = REINTERPRET_CAST(CExampleInterface*,
|
sl@0
|
493 |
REComSession::CreateImplementationL(dummyUid,
|
sl@0
|
494 |
extendedInterfaces,
|
sl@0
|
495 |
instanceKey,
|
sl@0
|
496 |
ResolverParams,
|
sl@0
|
497 |
&initParams)));
|
sl@0
|
498 |
test(err == KErrArgument);
|
sl@0
|
499 |
test(dllPtr == NULL);
|
sl@0
|
500 |
|
sl@0
|
501 |
// CreateImplementationL with a dummy implementation Uid
|
sl@0
|
502 |
TRAP(err,dllPtr = REINTERPRET_CAST(CExampleInterface*,
|
sl@0
|
503 |
REComSession::CreateImplementationL(dummyUid,
|
sl@0
|
504 |
instanceKey)));
|
sl@0
|
505 |
test(err == KErrArgument);
|
sl@0
|
506 |
test(dllPtr == NULL);
|
sl@0
|
507 |
|
sl@0
|
508 |
// CreateImplementationL with a dummy resolver Uid
|
sl@0
|
509 |
TRAP(err, dllPtr = REINTERPRET_CAST(CExampleInterface*,
|
sl@0
|
510 |
REComSession::CreateImplementationL(KExample10InterfaceUid,
|
sl@0
|
511 |
extendedInterfaces,
|
sl@0
|
512 |
instanceKey,
|
sl@0
|
513 |
ResolverParams,
|
sl@0
|
514 |
dummyUid,
|
sl@0
|
515 |
&initParams)));
|
sl@0
|
516 |
test(err == KErrArgument);
|
sl@0
|
517 |
test(dllPtr == NULL);
|
sl@0
|
518 |
|
sl@0
|
519 |
RImplInfoPtrArray ifArray;
|
sl@0
|
520 |
|
sl@0
|
521 |
// ListImplementationL with a dummy interface Uid
|
sl@0
|
522 |
TRAP(err, REComSession::ListImplementationsL(dummyUid,extendedInterfaces,ResolverParams,ifArray));
|
sl@0
|
523 |
test(err == KErrArgument);
|
sl@0
|
524 |
test(ifArray.Count() == 0);
|
sl@0
|
525 |
|
sl@0
|
526 |
// ListImplementationL with a dummy resolver Uid
|
sl@0
|
527 |
TRAP(err, REComSession::ListImplementationsL(KInterfaceUid,extendedInterfaces,ResolverParams,dummyUid,ifArray));
|
sl@0
|
528 |
test(err == KErrArgument);
|
sl@0
|
529 |
test(ifArray.Count() == 0);
|
sl@0
|
530 |
|
sl@0
|
531 |
CleanupStack::PopAndDestroy(&extendedInterfaces);
|
sl@0
|
532 |
}
|
sl@0
|
533 |
|
sl@0
|
534 |
/**
|
sl@0
|
535 |
@SYMTestCaseID SYSLIB-ECOM-CT-3715
|
sl@0
|
536 |
@SYMTestCaseDesc Tests for REComSession::CreateImplementationL with ROMOnly resolver
|
sl@0
|
537 |
@SYMTestPriority High
|
sl@0
|
538 |
@SYMTestActions Call CreateImplementationL method with ROMOnly resolver
|
sl@0
|
539 |
@SYMTestExpectedResults Expected implementation is created. Ensure there is no OOM error.
|
sl@0
|
540 |
@SYMDEF DEF111196
|
sl@0
|
541 |
*/
|
sl@0
|
542 |
LOCAL_C void CreateImplementationTest7L()
|
sl@0
|
543 |
{
|
sl@0
|
544 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3715 "));
|
sl@0
|
545 |
// test start...
|
sl@0
|
546 |
const TUid KExample10InterfaceUid = {0x10009DBB};
|
sl@0
|
547 |
const TUid KExtendedInterfaceUid1 = {0x10009E44};
|
sl@0
|
548 |
const TUid KExtendedInterfaceUid2 = {0x10009E45};
|
sl@0
|
549 |
const TUid KExtendedInterfaceUid3 = {0x10009E46};
|
sl@0
|
550 |
const TUid KExample10ImplementationUid = {0x10009E38};
|
sl@0
|
551 |
|
sl@0
|
552 |
_LIT8(KExample10ImplementationTest,"Example 10");
|
sl@0
|
553 |
|
sl@0
|
554 |
// ROMOnly resolver Uid 0x10009D92
|
sl@0
|
555 |
TUid resolverUid = {0x10009D92};
|
sl@0
|
556 |
|
sl@0
|
557 |
TUid instanceKey;
|
sl@0
|
558 |
|
sl@0
|
559 |
CExampleInterface* dllPtr = NULL;
|
sl@0
|
560 |
// Set up extended interfaces
|
sl@0
|
561 |
RArray<TUid> extendedInterfaces;
|
sl@0
|
562 |
CleanupClosePushL(extendedInterfaces);
|
sl@0
|
563 |
extendedInterfaces.AppendL(KExtendedInterfaceUid1);
|
sl@0
|
564 |
extendedInterfaces.AppendL(KExtendedInterfaceUid2);
|
sl@0
|
565 |
extendedInterfaces.AppendL(KExtendedInterfaceUid3);
|
sl@0
|
566 |
|
sl@0
|
567 |
//Set up resolve parameter
|
sl@0
|
568 |
TEComResolverParams ResolverParams;
|
sl@0
|
569 |
ResolverParams.SetDataType(KExample10ImplementationTest());
|
sl@0
|
570 |
ResolverParams.SetGenericMatch(ETrue); // Allow wildcard matching
|
sl@0
|
571 |
|
sl@0
|
572 |
dllPtr = REINTERPRET_CAST(CExampleInterface*,
|
sl@0
|
573 |
REComSession::CreateImplementationL(KExample10InterfaceUid,
|
sl@0
|
574 |
extendedInterfaces,
|
sl@0
|
575 |
instanceKey,
|
sl@0
|
576 |
ResolverParams,
|
sl@0
|
577 |
resolverUid));
|
sl@0
|
578 |
CleanupStack::PopAndDestroy(&extendedInterfaces);
|
sl@0
|
579 |
|
sl@0
|
580 |
//checks the implementation created
|
sl@0
|
581 |
test(dllPtr != NULL);
|
sl@0
|
582 |
test.Printf(_L("Found dll uid %x, required %x.\n"),dllPtr->ImplId(), KExample10ImplementationUid);
|
sl@0
|
583 |
test(KExample10ImplementationUid == dllPtr->ImplId());
|
sl@0
|
584 |
|
sl@0
|
585 |
test.Printf(_L("Destroying Plugin..."));
|
sl@0
|
586 |
REComSession::DestroyedImplementation(instanceKey);
|
sl@0
|
587 |
|
sl@0
|
588 |
delete dllPtr;
|
sl@0
|
589 |
}
|
sl@0
|
590 |
|
sl@0
|
591 |
|
sl@0
|
592 |
/**
|
sl@0
|
593 |
Test function for REcomSession::CreateImplementationL
|
sl@0
|
594 |
|
sl@0
|
595 |
@param aContainInvalidExtIf The bool value identifying if the extended interfaces list contains
|
sl@0
|
596 |
invalid extended interface Uid
|
sl@0
|
597 |
@param aUseDefResolver The bool value identifying if default resolver is used.
|
sl@0
|
598 |
@param aUseInitParam The bool value identifying if initialise parameter is used.
|
sl@0
|
599 |
@param aNumEntriesInExtIFList The number of entries in the extended interfaces list.
|
sl@0
|
600 |
@param aInstanceKey A 32 bit identifer returned by the ECom framework to
|
sl@0
|
601 |
identify this instance to the framework.
|
sl@0
|
602 |
@return A pointer to the implementation created.
|
sl@0
|
603 |
*/
|
sl@0
|
604 |
LOCAL_C CExampleInterface* CreateImplementationTestL(TBool aContainInvalidExtIf,
|
sl@0
|
605 |
TBool aUseDefResolver,
|
sl@0
|
606 |
TBool aUseInitParam,
|
sl@0
|
607 |
TUid& aInstanceKey)
|
sl@0
|
608 |
{
|
sl@0
|
609 |
const TUid KExample10InterfaceUid = {0x10009DBB};
|
sl@0
|
610 |
const TUid KExtendedInterfaceUid1 = {0x10009E44};
|
sl@0
|
611 |
const TUid KExtendedInterfaceUid2 = {0x10009E45};
|
sl@0
|
612 |
const TUid KExtendedInterfaceUid3 = {0x10009E46};
|
sl@0
|
613 |
const TUid KInvalidExtendedInterfaceUid2 = {0x10009E49};
|
sl@0
|
614 |
_LIT8(KExample10ImplementationTest,"Example 10");
|
sl@0
|
615 |
|
sl@0
|
616 |
TUid resolverUid = {0x10009DD0};
|
sl@0
|
617 |
|
sl@0
|
618 |
CExampleInterface* dllPtr = NULL;
|
sl@0
|
619 |
// Set up extended interfaces
|
sl@0
|
620 |
RArray<TUid> extendedInterfaces;
|
sl@0
|
621 |
CleanupClosePushL(extendedInterfaces);
|
sl@0
|
622 |
|
sl@0
|
623 |
if (!aContainInvalidExtIf)
|
sl@0
|
624 |
{
|
sl@0
|
625 |
extendedInterfaces.AppendL(KExtendedInterfaceUid1);
|
sl@0
|
626 |
extendedInterfaces.AppendL(KExtendedInterfaceUid2);
|
sl@0
|
627 |
extendedInterfaces.AppendL(KExtendedInterfaceUid3);
|
sl@0
|
628 |
}
|
sl@0
|
629 |
else
|
sl@0
|
630 |
{
|
sl@0
|
631 |
extendedInterfaces.AppendL(KExtendedInterfaceUid1);
|
sl@0
|
632 |
extendedInterfaces.AppendL(KInvalidExtendedInterfaceUid2);
|
sl@0
|
633 |
}
|
sl@0
|
634 |
|
sl@0
|
635 |
//Set up resolve parameter
|
sl@0
|
636 |
TEComResolverParams ResolverParams;
|
sl@0
|
637 |
ResolverParams.SetDataType(KExample10ImplementationTest());
|
sl@0
|
638 |
ResolverParams.SetGenericMatch(ETrue); // Allow wildcard matching
|
sl@0
|
639 |
|
sl@0
|
640 |
CExampleInterface::TExampleInterfaceInitParams initParams;
|
sl@0
|
641 |
if (aUseInitParam) //CreateImplementationTest3L,CreateImplementationTest5L
|
sl@0
|
642 |
{
|
sl@0
|
643 |
// Set up some empty initialisation parameters
|
sl@0
|
644 |
initParams.integer = 0;
|
sl@0
|
645 |
initParams.descriptor = NULL;
|
sl@0
|
646 |
if (aUseDefResolver) //CreateImplementationTest3L
|
sl@0
|
647 |
{
|
sl@0
|
648 |
dllPtr = REINTERPRET_CAST(CExampleInterface*,
|
sl@0
|
649 |
REComSession::CreateImplementationL(KExample10InterfaceUid,
|
sl@0
|
650 |
extendedInterfaces,
|
sl@0
|
651 |
aInstanceKey,
|
sl@0
|
652 |
ResolverParams,
|
sl@0
|
653 |
&initParams));
|
sl@0
|
654 |
}
|
sl@0
|
655 |
else //CreateImplementationTest5L
|
sl@0
|
656 |
{
|
sl@0
|
657 |
dllPtr = REINTERPRET_CAST(CExampleInterface*,
|
sl@0
|
658 |
REComSession::CreateImplementationL(KExample10InterfaceUid,
|
sl@0
|
659 |
extendedInterfaces,
|
sl@0
|
660 |
aInstanceKey,
|
sl@0
|
661 |
ResolverParams,
|
sl@0
|
662 |
resolverUid,
|
sl@0
|
663 |
&initParams));
|
sl@0
|
664 |
}
|
sl@0
|
665 |
}
|
sl@0
|
666 |
else //CreateImplementationTest2L, CreateImplementationTest4L, CreateImplementationTest6
|
sl@0
|
667 |
{
|
sl@0
|
668 |
if (aUseDefResolver) //CreateImplementationTest2L, CreateImplementationTest6
|
sl@0
|
669 |
{
|
sl@0
|
670 |
dllPtr = REINTERPRET_CAST(CExampleInterface*,
|
sl@0
|
671 |
REComSession::CreateImplementationL(KExample10InterfaceUid,
|
sl@0
|
672 |
extendedInterfaces,
|
sl@0
|
673 |
aInstanceKey,
|
sl@0
|
674 |
ResolverParams));
|
sl@0
|
675 |
}
|
sl@0
|
676 |
else //CreateImplementationTest4L
|
sl@0
|
677 |
{
|
sl@0
|
678 |
dllPtr = REINTERPRET_CAST(CExampleInterface*,
|
sl@0
|
679 |
REComSession::CreateImplementationL(KExample10InterfaceUid,
|
sl@0
|
680 |
extendedInterfaces,
|
sl@0
|
681 |
aInstanceKey,
|
sl@0
|
682 |
ResolverParams,
|
sl@0
|
683 |
resolverUid));
|
sl@0
|
684 |
}
|
sl@0
|
685 |
}
|
sl@0
|
686 |
CleanupStack::PopAndDestroy(&extendedInterfaces);
|
sl@0
|
687 |
return dllPtr;
|
sl@0
|
688 |
}
|
sl@0
|
689 |
|
sl@0
|
690 |
/**
|
sl@0
|
691 |
@SYMTestCaseID SYSLIB-ECOM-CT-3708
|
sl@0
|
692 |
@SYMTestCaseDesc Tests for calling DestroyedImplementation() twice.
|
sl@0
|
693 |
@SYMTestPriority High
|
sl@0
|
694 |
@SYMTestActions Call CreateImplementationL method to load a plugin.
|
sl@0
|
695 |
Delete the plugin by calling DestroyedImplementation() twice.
|
sl@0
|
696 |
Delete pointer. Call DestroyedImplementation().
|
sl@0
|
697 |
Cal FinalClose(). Call DestroyedImplementation().
|
sl@0
|
698 |
@SYMTestExpectedResults Second call to DestroyedImplementation() should succeed.
|
sl@0
|
699 |
@SYMDEF DEF111428
|
sl@0
|
700 |
*/
|
sl@0
|
701 |
LOCAL_C void DestroyedImplementationTestL()
|
sl@0
|
702 |
{
|
sl@0
|
703 |
// Test Starts...
|
sl@0
|
704 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3708 "));
|
sl@0
|
705 |
TUid instanceKey;
|
sl@0
|
706 |
TBool containInvalidExtIf = EFalse;
|
sl@0
|
707 |
TBool useDefResolver = EFalse;
|
sl@0
|
708 |
TBool useInitParam = ETrue;
|
sl@0
|
709 |
TUid KExample10ImplementationUid = {0x10009E38};
|
sl@0
|
710 |
|
sl@0
|
711 |
test.Printf(_L("Loading Plugin..."));
|
sl@0
|
712 |
|
sl@0
|
713 |
// Test create implementation by pass in instance key.
|
sl@0
|
714 |
CExampleInterface* dllPtr = CreateImplementationTestL(containInvalidExtIf,useDefResolver,useInitParam,instanceKey);
|
sl@0
|
715 |
test.Printf(_L("Found dll uid %x, required %x.\n"),dllPtr->ImplId(), KExample10ImplementationUid);
|
sl@0
|
716 |
test(KExample10ImplementationUid == dllPtr->ImplId());
|
sl@0
|
717 |
|
sl@0
|
718 |
// the destructor calls DestroyedImplementation()
|
sl@0
|
719 |
test.Printf(_L("Calling DestroyedImplementation the 1st time through the plugin destructor..."));
|
sl@0
|
720 |
delete dllPtr;
|
sl@0
|
721 |
|
sl@0
|
722 |
test.Printf(_L("Calling DestroyedImplementation a 2nd time directly through REComSession..."));
|
sl@0
|
723 |
REComSession::DestroyedImplementation(instanceKey);
|
sl@0
|
724 |
|
sl@0
|
725 |
test.Printf(_L("Calling DestroyedImplementation a 3rd time directly through REComSession but after FinalClose..."));
|
sl@0
|
726 |
|
sl@0
|
727 |
REComSession::DestroyedImplementation(instanceKey);
|
sl@0
|
728 |
}
|
sl@0
|
729 |
|
sl@0
|
730 |
/**
|
sl@0
|
731 |
@SYMTestCaseID SYSLIB-ECOM-CT-3595
|
sl@0
|
732 |
@SYMTestCaseDesc Tests for REComSession::CreateImplementationL created with an Interface Uid
|
sl@0
|
733 |
and invalid extended Interfaces.
|
sl@0
|
734 |
@SYMTestPriority High
|
sl@0
|
735 |
@SYMTestActions Call CreateImplementationL method supporting interface UID and extended interfaces
|
sl@0
|
736 |
that are invalid.
|
sl@0
|
737 |
@SYMTestExpectedResults No implementation is created.
|
sl@0
|
738 |
@SYMEC EC43
|
sl@0
|
739 |
*/
|
sl@0
|
740 |
LOCAL_C void CreateImplementationTest6()
|
sl@0
|
741 |
{
|
sl@0
|
742 |
// Test Starts...
|
sl@0
|
743 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3595 "));
|
sl@0
|
744 |
TUid instanceKey;
|
sl@0
|
745 |
TBool containInvalidExtIf = ETrue;
|
sl@0
|
746 |
TBool useDefResolver = ETrue;
|
sl@0
|
747 |
TBool useInitParam = EFalse;
|
sl@0
|
748 |
|
sl@0
|
749 |
test.Printf(_L("Loading Plugin..."));
|
sl@0
|
750 |
TInt err;
|
sl@0
|
751 |
TRAP(err,CExampleInterface* dllPtr = CreateImplementationTestL(containInvalidExtIf,useDefResolver,useInitParam,instanceKey));
|
sl@0
|
752 |
|
sl@0
|
753 |
test(KErrNotFound == err);
|
sl@0
|
754 |
|
sl@0
|
755 |
test.Printf(_L("Implementation is not found.\n"));
|
sl@0
|
756 |
}
|
sl@0
|
757 |
|
sl@0
|
758 |
/**
|
sl@0
|
759 |
@SYMTestCaseID SYSLIB-ECOM-CT-3593
|
sl@0
|
760 |
@SYMTestCaseDesc Tests for REComSession::CreateImplementationL created with an resolver Uid
|
sl@0
|
761 |
@SYMTestPriority High
|
sl@0
|
762 |
@SYMTestActions Call CreateImplementationL method supporting interface UID, extended interfaces,
|
sl@0
|
763 |
construction parameters, resolver parameters and resolver UID.
|
sl@0
|
764 |
@SYMTestExpectedResults Expected implementation is created and no memory leaks.
|
sl@0
|
765 |
@SYMEC EC43
|
sl@0
|
766 |
*/
|
sl@0
|
767 |
LOCAL_C void CreateImplementationTest5L()
|
sl@0
|
768 |
{
|
sl@0
|
769 |
// Test Starts...
|
sl@0
|
770 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3593 "));
|
sl@0
|
771 |
TUid instanceKey;
|
sl@0
|
772 |
TBool containInvalidExtIf = EFalse;
|
sl@0
|
773 |
TBool useDefResolver = EFalse;
|
sl@0
|
774 |
TBool useInitParam = ETrue;
|
sl@0
|
775 |
TUid KExample10ImplementationUid = {0x10009E38};
|
sl@0
|
776 |
|
sl@0
|
777 |
test.Printf(_L("Loading Plugin..."));
|
sl@0
|
778 |
|
sl@0
|
779 |
// Test create implementation by pass in instance key.
|
sl@0
|
780 |
CExampleInterface* dllPtr = CreateImplementationTestL(containInvalidExtIf,useDefResolver,useInitParam,instanceKey);
|
sl@0
|
781 |
test.Printf(_L("Found dll uid %x, required %x.\n"),dllPtr->ImplId(), KExample10ImplementationUid);
|
sl@0
|
782 |
test(KExample10ImplementationUid == dllPtr->ImplId());
|
sl@0
|
783 |
|
sl@0
|
784 |
test.Printf(_L("Destroying Plugin..."));
|
sl@0
|
785 |
REComSession::DestroyedImplementation(instanceKey);
|
sl@0
|
786 |
delete dllPtr;
|
sl@0
|
787 |
|
sl@0
|
788 |
// Test create implementation by pass in offset of the instance key.
|
sl@0
|
789 |
dllPtr = CExampleInterface::NewL8();
|
sl@0
|
790 |
test.Printf(_L("Found dll uid %x, required %x.\n"),dllPtr->ImplId(), KExample10ImplementationUid);
|
sl@0
|
791 |
test(KExample10ImplementationUid == dllPtr->ImplId());
|
sl@0
|
792 |
|
sl@0
|
793 |
test.Printf(_L("Destroying Plugin..."));
|
sl@0
|
794 |
delete dllPtr;
|
sl@0
|
795 |
}
|
sl@0
|
796 |
|
sl@0
|
797 |
/**
|
sl@0
|
798 |
@SYMTestCaseID SYSLIB-ECOM-CT-3592
|
sl@0
|
799 |
@SYMTestCaseDesc Tests for REComSession::CreateImplementationL created with an resolver Uid
|
sl@0
|
800 |
@SYMTestPriority High
|
sl@0
|
801 |
@SYMTestActions Call CreateImplementationL method supporting interface UID, extended interfaces,
|
sl@0
|
802 |
resolver parameters and resolver UID.
|
sl@0
|
803 |
@SYMTestExpectedResults Expected implementation is created and no memory leaks.
|
sl@0
|
804 |
@SYMEC EC43
|
sl@0
|
805 |
*/
|
sl@0
|
806 |
LOCAL_C void CreateImplementationTest4L()
|
sl@0
|
807 |
{
|
sl@0
|
808 |
// Test Starts...
|
sl@0
|
809 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3592 "));
|
sl@0
|
810 |
TUid instanceKey;
|
sl@0
|
811 |
TBool containInvalidExtIf = EFalse;
|
sl@0
|
812 |
TBool useDefResolver = EFalse;
|
sl@0
|
813 |
TBool useInitParam = EFalse;
|
sl@0
|
814 |
TUid KExample10ImplementationUid = {0x10009E38};
|
sl@0
|
815 |
|
sl@0
|
816 |
test.Printf(_L("Loading Plugin..."));
|
sl@0
|
817 |
|
sl@0
|
818 |
// Test create implementation by pass in instance key.
|
sl@0
|
819 |
CExampleInterface* dllPtr = CreateImplementationTestL(containInvalidExtIf,useDefResolver,useInitParam,instanceKey);
|
sl@0
|
820 |
test.Printf(_L("Found dll uid %x, required %x.\n"),dllPtr->ImplId(), KExample10ImplementationUid);
|
sl@0
|
821 |
test(KExample10ImplementationUid == dllPtr->ImplId());
|
sl@0
|
822 |
|
sl@0
|
823 |
test.Printf(_L("Destroying Plugin..."));
|
sl@0
|
824 |
REComSession::DestroyedImplementation(instanceKey);
|
sl@0
|
825 |
delete dllPtr;
|
sl@0
|
826 |
|
sl@0
|
827 |
// Test create implementation by pass in offset of the instance key.
|
sl@0
|
828 |
dllPtr = CExampleInterface::NewL6();
|
sl@0
|
829 |
test.Printf(_L("Found dll uid %x, required %x.\n"),dllPtr->ImplId(), KExample10ImplementationUid);
|
sl@0
|
830 |
test(KExample10ImplementationUid == dllPtr->ImplId());
|
sl@0
|
831 |
|
sl@0
|
832 |
test.Printf(_L("Destroying Plugin..."));
|
sl@0
|
833 |
delete dllPtr;
|
sl@0
|
834 |
}
|
sl@0
|
835 |
|
sl@0
|
836 |
/**
|
sl@0
|
837 |
@SYMTestCaseID SYSLIB-ECOM-CT-3591
|
sl@0
|
838 |
@SYMTestCaseDesc Tests for REComSession::CreateImplementationL created with an Interface Uid,
|
sl@0
|
839 |
ExtendedInterface, construction parameters and resolver parameters
|
sl@0
|
840 |
@SYMTestPriority High
|
sl@0
|
841 |
@SYMTestActions Call CreateImplementationL method supporting interface UID,extended interfaces,
|
sl@0
|
842 |
construction parameters and resolver parameters.
|
sl@0
|
843 |
@SYMTestExpectedResults Expected implementation is created and no memory leaks.
|
sl@0
|
844 |
@SYMEC EC43
|
sl@0
|
845 |
*/
|
sl@0
|
846 |
LOCAL_C void CreateImplementationTest3L()
|
sl@0
|
847 |
{
|
sl@0
|
848 |
// Test Starts...
|
sl@0
|
849 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3591 "));
|
sl@0
|
850 |
TUid instanceKey;
|
sl@0
|
851 |
TBool containInvalidExtIf = EFalse;
|
sl@0
|
852 |
TBool useDefResolver = ETrue;
|
sl@0
|
853 |
TBool useInitParam = ETrue;
|
sl@0
|
854 |
TUid KExample10ImplementationUid = {0x10009E38};
|
sl@0
|
855 |
|
sl@0
|
856 |
test.Printf(_L("Loading Plugin..."));
|
sl@0
|
857 |
|
sl@0
|
858 |
// Test create implementation by pass in instance key.
|
sl@0
|
859 |
CExampleInterface* dllPtr = CreateImplementationTestL(containInvalidExtIf,useDefResolver,useInitParam,instanceKey);
|
sl@0
|
860 |
test.Printf(_L("Found dll uid %x, required %x.\n"),dllPtr->ImplId(), KExample10ImplementationUid);
|
sl@0
|
861 |
test(KExample10ImplementationUid == dllPtr->ImplId());
|
sl@0
|
862 |
|
sl@0
|
863 |
test.Printf(_L("Destroying Plugin..."));
|
sl@0
|
864 |
REComSession::DestroyedImplementation(instanceKey);
|
sl@0
|
865 |
delete dllPtr;
|
sl@0
|
866 |
|
sl@0
|
867 |
// Test create implementation by pass in offset of the instance key.
|
sl@0
|
868 |
dllPtr = CExampleInterface::NewL7();
|
sl@0
|
869 |
test.Printf(_L("Found dll uid %x, required %x.\n"),dllPtr->ImplId(), KExample10ImplementationUid);
|
sl@0
|
870 |
test(KExample10ImplementationUid == dllPtr->ImplId());
|
sl@0
|
871 |
|
sl@0
|
872 |
test.Printf(_L("Destroying Plugin..."));
|
sl@0
|
873 |
delete dllPtr;
|
sl@0
|
874 |
}
|
sl@0
|
875 |
|
sl@0
|
876 |
|
sl@0
|
877 |
/**
|
sl@0
|
878 |
@SYMTestCaseID SYSLIB-ECOM-CT-3590
|
sl@0
|
879 |
@SYMTestCaseDesc Tests for REComSession::CreateImplementationL created with an Interface Uid,
|
sl@0
|
880 |
ExtendedInterface and resolver parameters.
|
sl@0
|
881 |
@SYMTestPriority High
|
sl@0
|
882 |
@SYMTestActions Call CreateImplementationL method supporting interface UID,extended interfaces, and resolver parameters.
|
sl@0
|
883 |
@SYMTestExpectedResults Expected implementation is created and no memory leaks.
|
sl@0
|
884 |
@SYMEC EC43
|
sl@0
|
885 |
*/
|
sl@0
|
886 |
LOCAL_C void CreateImplementationTest2L()
|
sl@0
|
887 |
{
|
sl@0
|
888 |
// Test Starts...
|
sl@0
|
889 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3590 "));
|
sl@0
|
890 |
TUid instanceKey;
|
sl@0
|
891 |
TBool containInvalidExtIf = EFalse;
|
sl@0
|
892 |
TBool useDefResolver = ETrue;
|
sl@0
|
893 |
TBool useInitParam = EFalse;
|
sl@0
|
894 |
TUid KExample10ImplementationUid = {0x10009E38};
|
sl@0
|
895 |
|
sl@0
|
896 |
test.Printf(_L("Loading Plugin..."));
|
sl@0
|
897 |
// Test create implementation by pass in instance key.
|
sl@0
|
898 |
CExampleInterface* dllPtr = CreateImplementationTestL(containInvalidExtIf,useDefResolver,useInitParam,instanceKey);
|
sl@0
|
899 |
test.Printf(_L("Found dll uid %x, required %x.\n"),dllPtr->ImplId(), KExample10ImplementationUid);
|
sl@0
|
900 |
test(KExample10ImplementationUid == dllPtr->ImplId());
|
sl@0
|
901 |
|
sl@0
|
902 |
test.Printf(_L("Destroying Plugin..."));
|
sl@0
|
903 |
REComSession::DestroyedImplementation(instanceKey);
|
sl@0
|
904 |
delete dllPtr;
|
sl@0
|
905 |
|
sl@0
|
906 |
// Test create implementation by pass in offset of the instance key.
|
sl@0
|
907 |
dllPtr = CExampleInterface::NewL5();
|
sl@0
|
908 |
test.Printf(_L("Found dll uid %x, required %x.\n"),dllPtr->ImplId(), KExample10ImplementationUid);
|
sl@0
|
909 |
test(KExample10ImplementationUid == dllPtr->ImplId());
|
sl@0
|
910 |
|
sl@0
|
911 |
test.Printf(_L("Destroying Plugin..."));
|
sl@0
|
912 |
delete dllPtr;
|
sl@0
|
913 |
}
|
sl@0
|
914 |
|
sl@0
|
915 |
/**
|
sl@0
|
916 |
@SYMTestCaseID SYSLIB-ECOM-CT-3586
|
sl@0
|
917 |
@SYMTestCaseDesc Tests for GetExtendedInterfaceL, Manual release
|
sl@0
|
918 |
@SYMTestPriority High
|
sl@0
|
919 |
@SYMTestActions Create an implementation. Fetch two extended interfaces (one build in, and one
|
sl@0
|
920 |
stand alone and requires release). Manually release the stand alone extended
|
sl@0
|
921 |
interface. Destroy implementation.
|
sl@0
|
922 |
@SYMTestExpectedResults Ensure that manual release releases the stand alone interface correctly.
|
sl@0
|
923 |
@SYMEC EC43
|
sl@0
|
924 |
*/
|
sl@0
|
925 |
LOCAL_C void GetExtendedInterfaceTest4L()
|
sl@0
|
926 |
{
|
sl@0
|
927 |
// Test Starts...
|
sl@0
|
928 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3586 "));
|
sl@0
|
929 |
test.Printf(_L("Loading Plugin..."));
|
sl@0
|
930 |
const TUid KExample10ImplementationUid = {0x10009E38};
|
sl@0
|
931 |
|
sl@0
|
932 |
CExampleInterface* dllPtr = CExampleInterface::NewL2(KExample10ImplementationUid);
|
sl@0
|
933 |
CleanupStack::PushL(dllPtr);
|
sl@0
|
934 |
|
sl@0
|
935 |
test.Printf(_L("Found dll uid %x, required %x.\n"),dllPtr->ImplId(), KExample10ImplementationUid);
|
sl@0
|
936 |
test(KExample10ImplementationUid == dllPtr->ImplId());
|
sl@0
|
937 |
|
sl@0
|
938 |
// Call extended interface here.
|
sl@0
|
939 |
const TUid KExample10InterfaceUid1 = {0x10009E44};
|
sl@0
|
940 |
const TUid KExample10InterfaceUid2 = {0x10009E45};
|
sl@0
|
941 |
|
sl@0
|
942 |
MExampleInterfaceExtended* ext1 = static_cast<MExampleInterfaceExtended*>(dllPtr->GetExtendedInterfaceL(KExample10InterfaceUid1));
|
sl@0
|
943 |
ext1->DoMethodExtended();
|
sl@0
|
944 |
|
sl@0
|
945 |
MExampleInterfaceExtended2* ext2 = static_cast<MExampleInterfaceExtended2*>(dllPtr->GetExtendedInterfaceL(KExample10InterfaceUid2));
|
sl@0
|
946 |
ext2->DoMethodExtended2();
|
sl@0
|
947 |
|
sl@0
|
948 |
dllPtr->ManuallyReleaseExtendedInterfaceL(KExample10InterfaceUid2);
|
sl@0
|
949 |
|
sl@0
|
950 |
test.Printf(_L("Destroying Plugin..."));
|
sl@0
|
951 |
CleanupStack::Pop(dllPtr);
|
sl@0
|
952 |
delete dllPtr;
|
sl@0
|
953 |
|
sl@0
|
954 |
// Test Ends...
|
sl@0
|
955 |
}
|
sl@0
|
956 |
|
sl@0
|
957 |
/**
|
sl@0
|
958 |
@SYMTestCaseID SYSLIB-ECOM-CT-4001
|
sl@0
|
959 |
@SYMTestCaseDesc Tests GetExtendedInterfaceL with invalid instance keys
|
sl@0
|
960 |
@SYMTestPriority High
|
sl@0
|
961 |
@SYMTestActions Retrieve extended interface using unknown instance key
|
sl@0
|
962 |
Retrieve extended interface using null instance key
|
sl@0
|
963 |
@SYMTestExpectedResults Ensure that correct leaves occur.
|
sl@0
|
964 |
@SYMDEF DEF111553
|
sl@0
|
965 |
*/
|
sl@0
|
966 |
LOCAL_C void GetExtendedInterfaceTest5L()
|
sl@0
|
967 |
{
|
sl@0
|
968 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-4001 "));
|
sl@0
|
969 |
// Test Starts...
|
sl@0
|
970 |
TUid instanceKey;
|
sl@0
|
971 |
TBool containInvalidExtIf = EFalse;
|
sl@0
|
972 |
TBool useDefResolver = EFalse;
|
sl@0
|
973 |
TBool useInitParam = ETrue;
|
sl@0
|
974 |
|
sl@0
|
975 |
// get valid instance key by creating implementation
|
sl@0
|
976 |
CExampleInterface* dllPtr = CreateImplementationTestL(containInvalidExtIf,useDefResolver,useInitParam,instanceKey);
|
sl@0
|
977 |
|
sl@0
|
978 |
// remove implementation
|
sl@0
|
979 |
REComSession::DestroyedImplementation(instanceKey);
|
sl@0
|
980 |
delete dllPtr;
|
sl@0
|
981 |
|
sl@0
|
982 |
// Attempt to fetch extended interface with instance key that is no longer valid but
|
sl@0
|
983 |
// passes the ASSERT test
|
sl@0
|
984 |
const TUid KExtendedInterfaceUid = {0x10009E44};
|
sl@0
|
985 |
TRAPD(err, REComSession::GetExtendedInterfaceL(instanceKey,KExtendedInterfaceUid));
|
sl@0
|
986 |
test(err = KErrNotFound);
|
sl@0
|
987 |
|
sl@0
|
988 |
// Attempt to fetch extended interface with null instance key
|
sl@0
|
989 |
TRAP(err, REComSession::GetExtendedInterfaceL(KNullUid,KExtendedInterfaceUid));
|
sl@0
|
990 |
test(err = KErrArgument);
|
sl@0
|
991 |
|
sl@0
|
992 |
// Test Ends...
|
sl@0
|
993 |
}
|
sl@0
|
994 |
|
sl@0
|
995 |
/**
|
sl@0
|
996 |
@SYMTestCaseID SYSLIB-ECOM-CT-3581
|
sl@0
|
997 |
@SYMTestCaseDesc Tests for REComSession::ListExtendedInterfaces with a valid Implementation UID.
|
sl@0
|
998 |
Tests also for non-existent Implementation UID and PLUGIN1 implementation UID.
|
sl@0
|
999 |
Does some create and destruction of implementations before and after calling
|
sl@0
|
1000 |
ListExtendedInterfaces to mimic typical usage.
|
sl@0
|
1001 |
@SYMTestPriority High
|
sl@0
|
1002 |
@SYMTestActions List the extended interfaces. Check expected extended interfaces are returned.
|
sl@0
|
1003 |
Create an implementation. Ensure that Listing of the extended interface
|
sl@0
|
1004 |
still works after the create.
|
sl@0
|
1005 |
Delete the implementation. List extended interfaces again.
|
sl@0
|
1006 |
List the extended interfaces with a PLUGIN1 implementation UID.
|
sl@0
|
1007 |
@SYMTestExpectedResults Ensure all ListExtendedInterfaces calls return with expected extended interfaces.
|
sl@0
|
1008 |
@SYMEC EC43
|
sl@0
|
1009 |
@SYMDEF DEF111196
|
sl@0
|
1010 |
*/
|
sl@0
|
1011 |
LOCAL_C void ListExtendedInterfaceTestL()
|
sl@0
|
1012 |
{
|
sl@0
|
1013 |
// Test Starts...
|
sl@0
|
1014 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3581 "));
|
sl@0
|
1015 |
const TUid KExample10ImplementationUid = {0x10009E38};
|
sl@0
|
1016 |
const TUid KExample10ImplementationUid2 = {0x10009E3A};
|
sl@0
|
1017 |
const TUid KExample10ImplementationUid3 = {0x10009E3B};
|
sl@0
|
1018 |
|
sl@0
|
1019 |
const TUid KExample10InterfaceUid1 = {0x10009E44};
|
sl@0
|
1020 |
const TUid KExample10InterfaceUid2 = {0x10009E45};
|
sl@0
|
1021 |
const TUid KExample10InterfaceUid3 = {0x10009E46};
|
sl@0
|
1022 |
|
sl@0
|
1023 |
const TUid KImpUidPLUGIN1 = {0x10009DC3};
|
sl@0
|
1024 |
|
sl@0
|
1025 |
RArray<TUid> ifInfo;
|
sl@0
|
1026 |
CleanupClosePushL(ifInfo);
|
sl@0
|
1027 |
|
sl@0
|
1028 |
REComSession::ListExtendedInterfacesL(KExample10ImplementationUid,ifInfo);
|
sl@0
|
1029 |
test(ifInfo.Count() == 3);
|
sl@0
|
1030 |
|
sl@0
|
1031 |
// Checks that expected interfaces are in list.
|
sl@0
|
1032 |
test(ifInfo[0] == KExample10InterfaceUid1);
|
sl@0
|
1033 |
test(ifInfo[1] == KExample10InterfaceUid2);
|
sl@0
|
1034 |
test(ifInfo[2] == KExample10InterfaceUid3);
|
sl@0
|
1035 |
ifInfo.Reset();
|
sl@0
|
1036 |
|
sl@0
|
1037 |
// Creates an implementation
|
sl@0
|
1038 |
// Set up some empty initialisation parameters
|
sl@0
|
1039 |
test.Printf(_L("Loading Plugin..."));
|
sl@0
|
1040 |
|
sl@0
|
1041 |
CExampleInterface* dllPtr = CExampleInterface::NewL2(KExample10ImplementationUid);
|
sl@0
|
1042 |
CleanupStack::PushL(dllPtr);
|
sl@0
|
1043 |
|
sl@0
|
1044 |
test.Printf(_L("Found dll uid %x, required %x.\n"),dllPtr->ImplId(), KExample10ImplementationUid);
|
sl@0
|
1045 |
test(KExample10ImplementationUid == dllPtr->ImplId());
|
sl@0
|
1046 |
|
sl@0
|
1047 |
// Calls extended interface here.
|
sl@0
|
1048 |
MExampleInterfaceExtended* ext1 = static_cast<MExampleInterfaceExtended*>(dllPtr->GetExtendedInterfaceL(KExample10InterfaceUid1));
|
sl@0
|
1049 |
ext1->DoMethodExtended();
|
sl@0
|
1050 |
|
sl@0
|
1051 |
MExampleInterfaceExtended2* ext2 = static_cast<MExampleInterfaceExtended2*>(dllPtr->GetExtendedInterfaceL(KExample10InterfaceUid2));
|
sl@0
|
1052 |
ext2->DoMethodExtended2();
|
sl@0
|
1053 |
|
sl@0
|
1054 |
// Checks that ListExtendedInterfaces works after a Create Implementation
|
sl@0
|
1055 |
REComSession::ListExtendedInterfacesL(KExample10ImplementationUid,ifInfo);
|
sl@0
|
1056 |
test(ifInfo.Count() == 3);
|
sl@0
|
1057 |
|
sl@0
|
1058 |
// Checks that expected interfaces are in list.
|
sl@0
|
1059 |
test(ifInfo[0] == KExample10InterfaceUid1);
|
sl@0
|
1060 |
test(ifInfo[1] == KExample10InterfaceUid2);
|
sl@0
|
1061 |
test(ifInfo[2] == KExample10InterfaceUid3);
|
sl@0
|
1062 |
ifInfo.Reset();
|
sl@0
|
1063 |
|
sl@0
|
1064 |
test.Printf(_L("Destroying Plugin..."));
|
sl@0
|
1065 |
CleanupStack::Pop(dllPtr);
|
sl@0
|
1066 |
|
sl@0
|
1067 |
delete dllPtr;
|
sl@0
|
1068 |
|
sl@0
|
1069 |
// Test fetch of extended interfaces for an implementation that has no extended interfaces
|
sl@0
|
1070 |
REComSession::ListExtendedInterfacesL(KExample10ImplementationUid2,ifInfo);
|
sl@0
|
1071 |
test(ifInfo.Count() == 0);
|
sl@0
|
1072 |
ifInfo.Reset();
|
sl@0
|
1073 |
|
sl@0
|
1074 |
// Test fetch of extended interfaces for an implementation that does not exist
|
sl@0
|
1075 |
TRAPD(err,REComSession::ListExtendedInterfacesL(KNullUid,ifInfo));
|
sl@0
|
1076 |
TEST_OOM_ERR;
|
sl@0
|
1077 |
test(err == KErrNotFound);
|
sl@0
|
1078 |
ifInfo.Reset();
|
sl@0
|
1079 |
|
sl@0
|
1080 |
// Test fetch of extended interfaces for an implementation that has one extended interface
|
sl@0
|
1081 |
REComSession::ListExtendedInterfacesL(KExample10ImplementationUid3,ifInfo);
|
sl@0
|
1082 |
test(ifInfo.Count() == 1);
|
sl@0
|
1083 |
ifInfo.Reset();
|
sl@0
|
1084 |
|
sl@0
|
1085 |
// Test fetch of extended interfaces for an implementation with PLUGIN1 IIC that has no extended interfaces
|
sl@0
|
1086 |
REComSession::ListExtendedInterfacesL(KImpUidPLUGIN1,ifInfo);
|
sl@0
|
1087 |
test(ifInfo.Count() == 0);
|
sl@0
|
1088 |
ifInfo.Reset();
|
sl@0
|
1089 |
|
sl@0
|
1090 |
// Close array, finished with it.
|
sl@0
|
1091 |
CleanupStack::PopAndDestroy(&ifInfo);
|
sl@0
|
1092 |
// Test Ends...
|
sl@0
|
1093 |
}
|
sl@0
|
1094 |
|
sl@0
|
1095 |
/**
|
sl@0
|
1096 |
@SYMTestCaseID SYSLIB-ECOM-CT-3596
|
sl@0
|
1097 |
@SYMTestCaseDesc Try to load a PLUGIN3 DLL with a version one resource file. Also try to load a PLUGIN1 DLL
|
sl@0
|
1098 |
with a version three resource file. Tests UID mismatch specified in the DLL .mmp file and
|
sl@0
|
1099 |
the resource type in the resource file.
|
sl@0
|
1100 |
@SYMTestPriority High
|
sl@0
|
1101 |
@SYMTestActions Create an implementation using the invalid plugin.
|
sl@0
|
1102 |
@SYMTestExpectedResults The plugin should not have been loaded due to a UID1 mismatch.
|
sl@0
|
1103 |
@SYMEC EC43
|
sl@0
|
1104 |
*/
|
sl@0
|
1105 |
LOCAL_C void CreateImplementationTest1()
|
sl@0
|
1106 |
{
|
sl@0
|
1107 |
// Test Starts...
|
sl@0
|
1108 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3596 "));
|
sl@0
|
1109 |
TUid instanceKey;
|
sl@0
|
1110 |
|
sl@0
|
1111 |
// Set up some empty initialisation parameters
|
sl@0
|
1112 |
CExampleInterface::TExampleInterfaceInitParams initParams;
|
sl@0
|
1113 |
initParams.integer = 0;
|
sl@0
|
1114 |
initParams.descriptor = NULL;
|
sl@0
|
1115 |
|
sl@0
|
1116 |
test.Printf(_L("Loading Plugin..."));
|
sl@0
|
1117 |
|
sl@0
|
1118 |
// Interface with NULL get and release function pointers
|
sl@0
|
1119 |
const TUid KExample12InvalidDllImplementationUid = {0x10009E39};
|
sl@0
|
1120 |
|
sl@0
|
1121 |
TRAPD(err, TAny* dllPtr = REComSession::CreateImplementationL(KExample12InvalidDllImplementationUid,instanceKey,&initParams));
|
sl@0
|
1122 |
|
sl@0
|
1123 |
// The plugin should not have been loaded due to a UID1 mismatch. This is specified as the resource
|
sl@0
|
1124 |
// type in the resource file and UID1 in the DLL itself.
|
sl@0
|
1125 |
test(err==KErrNotFound);
|
sl@0
|
1126 |
|
sl@0
|
1127 |
// Load a PLUGIN1 DLL with a version three resource file
|
sl@0
|
1128 |
const TUid KExample14InvalidDllImplementationUid = {0x10009E48};
|
sl@0
|
1129 |
|
sl@0
|
1130 |
TRAP(err, TAny* dllPtr = REComSession::CreateImplementationL(KExample14InvalidDllImplementationUid,instanceKey,&initParams));
|
sl@0
|
1131 |
|
sl@0
|
1132 |
// The plugin should not have been loaded due to a UID1 mismatch. This is specified as the resource
|
sl@0
|
1133 |
// type in the resource file and UID1 in the DLL itself.
|
sl@0
|
1134 |
test(err==KErrNotFound);
|
sl@0
|
1135 |
// Test Ends...
|
sl@0
|
1136 |
}
|
sl@0
|
1137 |
|
sl@0
|
1138 |
/**
|
sl@0
|
1139 |
@SYMTestCaseID SYSLIB-ECOM-CT-3585
|
sl@0
|
1140 |
@SYMTestCaseDesc Get and release extended interfaces in cases in which both get and release function pointers
|
sl@0
|
1141 |
do not exist. The tests will be:
|
sl@0
|
1142 |
1) Get/release function pointers are NULL
|
sl@0
|
1143 |
2) Only get function, no release function
|
sl@0
|
1144 |
3) Test with a PLUGIN1 DLL (get/release function pointers should be NULL)
|
sl@0
|
1145 |
@SYMTestPriority High
|
sl@0
|
1146 |
@SYMTestActions Create an implementation.
|
sl@0
|
1147 |
Try getting and releasing interfaces even though no get and release function pointers exist
|
sl@0
|
1148 |
Test with get extended interface function pointer and no release function pointer
|
sl@0
|
1149 |
@SYMTestExpectedResults NULL should be returned if get and release function pointers do not exist
|
sl@0
|
1150 |
Releasing an interface that has no release function pointer should finish with
|
sl@0
|
1151 |
no errors.
|
sl@0
|
1152 |
@SYMEC EC43
|
sl@0
|
1153 |
*/
|
sl@0
|
1154 |
LOCAL_C void ReleaseExtendedInterfaceTest1L()
|
sl@0
|
1155 |
{
|
sl@0
|
1156 |
// Test Starts...
|
sl@0
|
1157 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3585 "));
|
sl@0
|
1158 |
test.Printf(_L("Loading Plugin..."));
|
sl@0
|
1159 |
// Interface with NULL get and release function pointers
|
sl@0
|
1160 |
const TUid KExample10ImplementationUid = {0x10009E3A};
|
sl@0
|
1161 |
|
sl@0
|
1162 |
CExampleInterface* dllPtr = CExampleInterface::NewL2(KExample10ImplementationUid);
|
sl@0
|
1163 |
CleanupStack::PushL(dllPtr);
|
sl@0
|
1164 |
|
sl@0
|
1165 |
test.Printf(_L("Found dll uid %x, required %x.\n"),dllPtr->ImplId(), KExample10ImplementationUid);
|
sl@0
|
1166 |
test(KExample10ImplementationUid == dllPtr->ImplId());
|
sl@0
|
1167 |
|
sl@0
|
1168 |
// Call extended interface here.
|
sl@0
|
1169 |
const TUid KExample10InterfaceUid1 = {0x10009E44};
|
sl@0
|
1170 |
const TUid KExample10InterfaceUid2 = {0x10009E45};
|
sl@0
|
1171 |
|
sl@0
|
1172 |
// Try getting and releasing interfaces even though no get and release function pointers exist
|
sl@0
|
1173 |
MExampleInterfaceExtended* ext1 = static_cast<MExampleInterfaceExtended*>(dllPtr->GetExtendedInterfaceL(KExample10InterfaceUid1));
|
sl@0
|
1174 |
test(ext1 == NULL);
|
sl@0
|
1175 |
|
sl@0
|
1176 |
MExampleInterfaceExtended2* ext2 = static_cast<MExampleInterfaceExtended2*>(dllPtr->GetExtendedInterfaceL(KExample10InterfaceUid2));
|
sl@0
|
1177 |
test(ext2 == NULL);
|
sl@0
|
1178 |
|
sl@0
|
1179 |
dllPtr->ManuallyReleaseExtendedInterfaceL(KExample10InterfaceUid2);
|
sl@0
|
1180 |
|
sl@0
|
1181 |
test.Printf(_L("Destroying Plugin 1..."));
|
sl@0
|
1182 |
CleanupStack::Pop(dllPtr);
|
sl@0
|
1183 |
delete dllPtr;
|
sl@0
|
1184 |
|
sl@0
|
1185 |
// Test with get extended interface function pointer and no release function pointer
|
sl@0
|
1186 |
const TUid KExample10ImplementationUidNoRelease = {0x10009E3B};
|
sl@0
|
1187 |
|
sl@0
|
1188 |
dllPtr = CExampleInterface::NewL2(KExample10ImplementationUidNoRelease);
|
sl@0
|
1189 |
CleanupStack::PushL(dllPtr);
|
sl@0
|
1190 |
|
sl@0
|
1191 |
test.Printf(_L("Found dll uid %x, required %x.\n"),dllPtr->ImplId(), KExample10ImplementationUidNoRelease);
|
sl@0
|
1192 |
test(KExample10ImplementationUidNoRelease == dllPtr->ImplId());
|
sl@0
|
1193 |
|
sl@0
|
1194 |
// Try releasing interfaces even though no release function pointer exists
|
sl@0
|
1195 |
MExampleInterfaceExtended* ext = static_cast<MExampleInterfaceExtended*>(dllPtr->GetExtendedInterfaceL(KExample10InterfaceUid1));
|
sl@0
|
1196 |
ext->DoMethodExtended();
|
sl@0
|
1197 |
|
sl@0
|
1198 |
// This should do nothing
|
sl@0
|
1199 |
dllPtr->ManuallyReleaseExtendedInterfaceL(KExample10InterfaceUid1);
|
sl@0
|
1200 |
|
sl@0
|
1201 |
test.Printf(_L("Destroying Plugin 2..."));
|
sl@0
|
1202 |
CleanupStack::Pop(dllPtr);
|
sl@0
|
1203 |
delete dllPtr;
|
sl@0
|
1204 |
|
sl@0
|
1205 |
// PLUGIN1 test. Try getting and releasing interfaces even though no get and release function pointers exist.
|
sl@0
|
1206 |
dllPtr = CExampleInterface::NewL2(KCExampleImplUid);
|
sl@0
|
1207 |
CleanupStack::PushL(dllPtr);
|
sl@0
|
1208 |
|
sl@0
|
1209 |
test.Printf(_L("Found dll uid %x, required %x.\n"),dllPtr->ImplId(), KCExampleImplUid);
|
sl@0
|
1210 |
test(KCExampleImplUid == dllPtr->ImplId());
|
sl@0
|
1211 |
|
sl@0
|
1212 |
// Call extended interface here.
|
sl@0
|
1213 |
// Try getting and releasing interfaces even though no get and release function pointers exist
|
sl@0
|
1214 |
MExampleInterfaceExtended* ext3 = static_cast<MExampleInterfaceExtended*>(dllPtr->GetExtendedInterfaceL(KExample10InterfaceUid1));
|
sl@0
|
1215 |
test(ext3 == NULL);
|
sl@0
|
1216 |
|
sl@0
|
1217 |
// Nothing should happen when releasing an extended interface for a PLUGIN1 DLL
|
sl@0
|
1218 |
dllPtr->ManuallyReleaseExtendedInterfaceL(KExample10InterfaceUid1);
|
sl@0
|
1219 |
|
sl@0
|
1220 |
test.Printf(_L("Destroying Plugin 3..."));
|
sl@0
|
1221 |
CleanupStack::Pop(dllPtr);
|
sl@0
|
1222 |
delete dllPtr;
|
sl@0
|
1223 |
// Test Ends...
|
sl@0
|
1224 |
}
|
sl@0
|
1225 |
|
sl@0
|
1226 |
/**
|
sl@0
|
1227 |
@SYMTestCaseID SYSLIB-ECOM-CT-4002
|
sl@0
|
1228 |
@SYMTestCaseDesc Tests ManuallyReleaseExtendedInterfaceL with invalid instance keys
|
sl@0
|
1229 |
@SYMTestPriority High
|
sl@0
|
1230 |
@SYMTestActions Manually release extended interface using unknown instance key
|
sl@0
|
1231 |
Manually release extended interface using null instance key
|
sl@0
|
1232 |
@SYMTestExpectedResults Ensure that correct leaves occur.
|
sl@0
|
1233 |
@SYMDEF DEF111553
|
sl@0
|
1234 |
*/
|
sl@0
|
1235 |
LOCAL_C void ReleaseExtendedInterfaceTest2L()
|
sl@0
|
1236 |
{
|
sl@0
|
1237 |
// Test Starts...
|
sl@0
|
1238 |
// get valid instance key by creating implementation
|
sl@0
|
1239 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-4002 "));
|
sl@0
|
1240 |
const TUid KExample10ImplementationUid = {0x10009E3A};
|
sl@0
|
1241 |
TUid instanceKey;
|
sl@0
|
1242 |
TAny* impl = REComSession::CreateImplementationL(KExample10ImplementationUid, instanceKey, 0);
|
sl@0
|
1243 |
|
sl@0
|
1244 |
// remove implementation
|
sl@0
|
1245 |
REComSession::DestroyedImplementation(instanceKey);
|
sl@0
|
1246 |
delete impl;
|
sl@0
|
1247 |
|
sl@0
|
1248 |
// Attempt to manually release extended interface with instance key that is no longer valid but
|
sl@0
|
1249 |
// passes the ASSERT test
|
sl@0
|
1250 |
const TUid KExample10InterfaceUid1 = {0x10009E44};
|
sl@0
|
1251 |
TRAPD(err, REComSession::ManuallyReleaseExtendedInterfaceL(instanceKey,KExample10InterfaceUid1));
|
sl@0
|
1252 |
test(err = KErrNotFound);
|
sl@0
|
1253 |
|
sl@0
|
1254 |
// Attempt to manually release extended interface with null instance key
|
sl@0
|
1255 |
TRAP(err, REComSession::GetExtendedInterfaceL(KNullUid,KExample10InterfaceUid1));
|
sl@0
|
1256 |
test(err = KErrArgument);
|
sl@0
|
1257 |
// Test Ends...
|
sl@0
|
1258 |
}
|
sl@0
|
1259 |
|
sl@0
|
1260 |
/**
|
sl@0
|
1261 |
@SYMTestCaseID SYSLIB-ECOM-CT-3584
|
sl@0
|
1262 |
@SYMTestCaseDesc Tests for GetExtendedInterfaceL, fetching an invalid extended interface
|
sl@0
|
1263 |
@SYMTestPriority High
|
sl@0
|
1264 |
@SYMTestActions Create an implementation. Fetch two extended interfaces (one build in, and one
|
sl@0
|
1265 |
stand alone and requires release). Fetch an invalid extended interface. Destroy implementation.
|
sl@0
|
1266 |
@SYMTestExpectedResults Ensure that the GetExtendedInterfaceL call with the invalid interface returns NULL.
|
sl@0
|
1267 |
@SYMEC EC43
|
sl@0
|
1268 |
*/
|
sl@0
|
1269 |
LOCAL_C void GetExtendedInterfaceTest3L()
|
sl@0
|
1270 |
{
|
sl@0
|
1271 |
//
|
sl@0
|
1272 |
// Testing a overloaded method for CreateImplementationL
|
sl@0
|
1273 |
// ------------------------------------------------------------------
|
sl@0
|
1274 |
//
|
sl@0
|
1275 |
// Test Starts...
|
sl@0
|
1276 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3584 "));
|
sl@0
|
1277 |
test.Printf(_L("Loading Plugin..."));
|
sl@0
|
1278 |
const TUid KExample10ImplementationUid = {0x10009E38};
|
sl@0
|
1279 |
|
sl@0
|
1280 |
CExampleInterface* dllPtr = CExampleInterface::NewL2(KExample10ImplementationUid);
|
sl@0
|
1281 |
CleanupStack::PushL(dllPtr);
|
sl@0
|
1282 |
|
sl@0
|
1283 |
test.Printf(_L("Found dll uid %x, required %x.\n"),dllPtr->ImplId(), KExample10ImplementationUid);
|
sl@0
|
1284 |
test(KExample10ImplementationUid == dllPtr->ImplId());
|
sl@0
|
1285 |
|
sl@0
|
1286 |
// Call extended interface here.
|
sl@0
|
1287 |
const TUid KExample10InterfaceUid1 = {0x10009E44};
|
sl@0
|
1288 |
const TUid KExample10InterfaceUid2 = {0x10009E45};
|
sl@0
|
1289 |
const TUid KExample10InvalidInterfaceUid = {0x10009E49};
|
sl@0
|
1290 |
|
sl@0
|
1291 |
MExampleInterfaceExtended* ext1 = static_cast<MExampleInterfaceExtended*>(dllPtr->GetExtendedInterfaceL(KExample10InterfaceUid1));
|
sl@0
|
1292 |
ext1->DoMethodExtended();
|
sl@0
|
1293 |
|
sl@0
|
1294 |
MExampleInterfaceExtended2* ext2 = static_cast<MExampleInterfaceExtended2*>(dllPtr->GetExtendedInterfaceL(KExample10InterfaceUid2));
|
sl@0
|
1295 |
ext2->DoMethodExtended2();
|
sl@0
|
1296 |
|
sl@0
|
1297 |
// Get an invalid extended interface.
|
sl@0
|
1298 |
MExampleInterfaceExtended2* ext2invalid = static_cast<MExampleInterfaceExtended2*>(dllPtr->GetExtendedInterfaceL(KExample10InvalidInterfaceUid));
|
sl@0
|
1299 |
// No interface should be returned if it is not found.
|
sl@0
|
1300 |
test(ext2invalid == NULL);
|
sl@0
|
1301 |
|
sl@0
|
1302 |
test.Printf(_L("Destroying Plugin..."));
|
sl@0
|
1303 |
CleanupStack::Pop(dllPtr);
|
sl@0
|
1304 |
delete dllPtr;
|
sl@0
|
1305 |
|
sl@0
|
1306 |
// Test Ends...
|
sl@0
|
1307 |
}
|
sl@0
|
1308 |
|
sl@0
|
1309 |
/**
|
sl@0
|
1310 |
@SYMTestCaseID SYSLIB-ECOM-CT-3583
|
sl@0
|
1311 |
@SYMTestCaseDesc Tests for GetExtendedInterfaceL, with an invalid instance key.
|
sl@0
|
1312 |
@SYMTestPriority High
|
sl@0
|
1313 |
@SYMTestActions Call REComSession::GetExtendedInterfaceL() with an invalid instance key.
|
sl@0
|
1314 |
GetExtendedInterfacePanic() and ThreadPanicTest() are used for this test case.
|
sl@0
|
1315 |
@SYMTestExpectedResults Ensure that the GetExtendedInterfaceL panics in debug mode and leaves in release
|
sl@0
|
1316 |
mode.
|
sl@0
|
1317 |
@SYMEC EC43
|
sl@0
|
1318 |
*/
|
sl@0
|
1319 |
LOCAL_C void GetExtendedInterfaceTest2L()
|
sl@0
|
1320 |
{
|
sl@0
|
1321 |
// Test Starts...
|
sl@0
|
1322 |
TUid instanceKey;
|
sl@0
|
1323 |
TBool containInvalidExtIf = EFalse;
|
sl@0
|
1324 |
TBool useDefResolver = EFalse;
|
sl@0
|
1325 |
TBool useInitParam = ETrue;
|
sl@0
|
1326 |
|
sl@0
|
1327 |
CExampleInterface* dllPtr = CreateImplementationTestL(containInvalidExtIf,useDefResolver,useInitParam,instanceKey);
|
sl@0
|
1328 |
CleanupStack::PushL(dllPtr);
|
sl@0
|
1329 |
|
sl@0
|
1330 |
const TUid KExtendedInterfaceUid = {0x10009E44};
|
sl@0
|
1331 |
TUid invalidInstanceKey;
|
sl@0
|
1332 |
invalidInstanceKey.iUid = instanceKey.iUid + 1;
|
sl@0
|
1333 |
|
sl@0
|
1334 |
// Fetches an extended interface with invalid instance key.
|
sl@0
|
1335 |
// When passed an invalid instance key, REComSession::GetExtendedInterfaceL() panics
|
sl@0
|
1336 |
// with KErrArgument in debug mode, but leaves with KErrNotFound in release mode.
|
sl@0
|
1337 |
MExampleInterfaceExtended* ext1 = static_cast<MExampleInterfaceExtended*>(REComSession::GetExtendedInterfaceL(invalidInstanceKey,KExtendedInterfaceUid));
|
sl@0
|
1338 |
|
sl@0
|
1339 |
REComSession::DestroyedImplementation(instanceKey);
|
sl@0
|
1340 |
CleanupStack::PopAndDestroy(dllPtr);
|
sl@0
|
1341 |
|
sl@0
|
1342 |
// Test Ends...
|
sl@0
|
1343 |
}
|
sl@0
|
1344 |
|
sl@0
|
1345 |
/**
|
sl@0
|
1346 |
A thread function.
|
sl@0
|
1347 |
Panics in debug mode.
|
sl@0
|
1348 |
Returns an error code in release mode.
|
sl@0
|
1349 |
*/
|
sl@0
|
1350 |
LOCAL_C TInt GetExtendedInterfacePanic(TAny*)
|
sl@0
|
1351 |
{
|
sl@0
|
1352 |
__UHEAP_MARK;
|
sl@0
|
1353 |
CTrapCleanup* threadcleanup = CTrapCleanup::New();
|
sl@0
|
1354 |
|
sl@0
|
1355 |
// In debug mode, GetExtendedInterfaceTest2L panics with reason KErrArgument.
|
sl@0
|
1356 |
// In release mode, it leaves with KErrNotFound.
|
sl@0
|
1357 |
TRAPD(err, GetExtendedInterfaceTest2L());
|
sl@0
|
1358 |
|
sl@0
|
1359 |
delete threadcleanup;
|
sl@0
|
1360 |
__UHEAP_MARKEND;
|
sl@0
|
1361 |
|
sl@0
|
1362 |
return err;
|
sl@0
|
1363 |
}
|
sl@0
|
1364 |
|
sl@0
|
1365 |
/**
|
sl@0
|
1366 |
The test code is used for capturing the PANIC that occurs as a result of calling GetExtendedInterfaceL
|
sl@0
|
1367 |
with an invalid instance key.
|
sl@0
|
1368 |
*/
|
sl@0
|
1369 |
LOCAL_C void ThreadPanicTest(const TDesC& aName,TThreadFunction aFunction)
|
sl@0
|
1370 |
{
|
sl@0
|
1371 |
test.Next(aName);
|
sl@0
|
1372 |
TRequestStatus threadStatus;
|
sl@0
|
1373 |
RThread thread;
|
sl@0
|
1374 |
TBool jit;
|
sl@0
|
1375 |
jit=User::JustInTime();
|
sl@0
|
1376 |
User::SetJustInTime(EFalse);
|
sl@0
|
1377 |
|
sl@0
|
1378 |
TInt err=thread.Create(aName,aFunction,KDefaultStackSize*8,KMinHeapSize,0x100000,0);
|
sl@0
|
1379 |
test(err==KErrNone);
|
sl@0
|
1380 |
thread.Logon(threadStatus) ;
|
sl@0
|
1381 |
thread.Resume();
|
sl@0
|
1382 |
|
sl@0
|
1383 |
User::WaitForRequest(threadStatus);
|
sl@0
|
1384 |
|
sl@0
|
1385 |
// Different verifications for debug and release mode.
|
sl@0
|
1386 |
#ifdef _DEBUG
|
sl@0
|
1387 |
test(thread.ExitType()==EExitPanic);
|
sl@0
|
1388 |
test(thread.ExitReason()==EEComPanic_InvalidImplementationInstanceKey);
|
sl@0
|
1389 |
#else
|
sl@0
|
1390 |
test(thread.ExitType()==EExitKill);
|
sl@0
|
1391 |
test(thread.ExitReason()==KErrNotFound);
|
sl@0
|
1392 |
#endif
|
sl@0
|
1393 |
|
sl@0
|
1394 |
thread.Close();
|
sl@0
|
1395 |
User::SetJustInTime(jit);
|
sl@0
|
1396 |
}
|
sl@0
|
1397 |
|
sl@0
|
1398 |
/**
|
sl@0
|
1399 |
@SYMTestCaseID SYSLIB-ECOM-CT-3582
|
sl@0
|
1400 |
@SYMTestCaseDesc Tests for GetExtendedInterfaceL, stand alone and built in extended interfaces with
|
sl@0
|
1401 |
valid instance keys.
|
sl@0
|
1402 |
@SYMTestPriority High
|
sl@0
|
1403 |
@SYMTestActions Create an implementation. Fetch two extended interfaces (one build in, and one
|
sl@0
|
1404 |
stand alone and requires release). Call extended interfaces. Destroy implementation.
|
sl@0
|
1405 |
Re-create the same implementation again. Fetch extended interface. Destroy implementation.
|
sl@0
|
1406 |
Re-create again. Fetch two extended interfaces (both being stand alone and
|
sl@0
|
1407 |
require release).
|
sl@0
|
1408 |
@SYMTestExpectedResults Ensure that Extended interfaces can be created, called and cleaned up when
|
sl@0
|
1409 |
implementation is destroyed.
|
sl@0
|
1410 |
@SYMEC EC43
|
sl@0
|
1411 |
*/
|
sl@0
|
1412 |
LOCAL_C void GetExtendedInterfaceTest1L()
|
sl@0
|
1413 |
{
|
sl@0
|
1414 |
// Test Starts...
|
sl@0
|
1415 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3582 "));
|
sl@0
|
1416 |
test.Printf(_L("Loading Plugin..."));
|
sl@0
|
1417 |
const TUid KExample10ImplementationUid = {0x10009E38};
|
sl@0
|
1418 |
|
sl@0
|
1419 |
CExampleInterface* dllPtr = CExampleInterface::NewL2(KExample10ImplementationUid);
|
sl@0
|
1420 |
CleanupStack::PushL(dllPtr);
|
sl@0
|
1421 |
|
sl@0
|
1422 |
test.Printf(_L("Found dll uid %x, required %x.\n"),dllPtr->ImplId(), KExample10ImplementationUid);
|
sl@0
|
1423 |
test(KExample10ImplementationUid == dllPtr->ImplId());
|
sl@0
|
1424 |
|
sl@0
|
1425 |
// Calls extended interface here.
|
sl@0
|
1426 |
const TUid KExample10InterfaceUid1 = {0x10009E44};
|
sl@0
|
1427 |
const TUid KExample10InterfaceUid2 = {0x10009E45};
|
sl@0
|
1428 |
|
sl@0
|
1429 |
// Fetches an extended interface.
|
sl@0
|
1430 |
MExampleInterfaceExtended* ext1 = static_cast<MExampleInterfaceExtended*>(dllPtr->GetExtendedInterfaceL(KExample10InterfaceUid1));
|
sl@0
|
1431 |
// Sanity check by calling extended interface.
|
sl@0
|
1432 |
ext1->DoMethodExtended();
|
sl@0
|
1433 |
|
sl@0
|
1434 |
// Fetches an extended interface. Stand alone interface.
|
sl@0
|
1435 |
MExampleInterfaceExtended2* ext2 = static_cast<MExampleInterfaceExtended2*>(dllPtr->GetExtendedInterfaceL(KExample10InterfaceUid2));
|
sl@0
|
1436 |
// Sanity check by calling extended interface.
|
sl@0
|
1437 |
ext2->DoMethodExtended2();
|
sl@0
|
1438 |
|
sl@0
|
1439 |
// Delete implementation, this will automatically destroy the stand alone interface.
|
sl@0
|
1440 |
test.Printf(_L("Destroying Plugin..."));
|
sl@0
|
1441 |
CleanupStack::Pop(dllPtr);
|
sl@0
|
1442 |
delete dllPtr;
|
sl@0
|
1443 |
|
sl@0
|
1444 |
// Test to ensure that a new interface can be re-created immediately after deletion. This
|
sl@0
|
1445 |
// also tests that no problems occur when no extended interfaces require releasing yet
|
sl@0
|
1446 |
// a release function exists in the plug-in implementation.
|
sl@0
|
1447 |
dllPtr = CExampleInterface::NewL2(KExample10ImplementationUid);
|
sl@0
|
1448 |
CleanupStack::PushL(dllPtr);
|
sl@0
|
1449 |
|
sl@0
|
1450 |
test.Printf(_L("Found dll uid %x, required %x.\n"),dllPtr->ImplId(), KExample10ImplementationUid);
|
sl@0
|
1451 |
test(KExample10ImplementationUid == dllPtr->ImplId());
|
sl@0
|
1452 |
|
sl@0
|
1453 |
// Ensure that the extended interface can also be fetched again
|
sl@0
|
1454 |
MExampleInterfaceExtended* ext = static_cast<MExampleInterfaceExtended*>(dllPtr->GetExtendedInterfaceL(KExample10InterfaceUid1));
|
sl@0
|
1455 |
ext->DoMethodExtended();
|
sl@0
|
1456 |
|
sl@0
|
1457 |
test.Printf(_L("Destroying Plugin..."));
|
sl@0
|
1458 |
CleanupStack::Pop(dllPtr);
|
sl@0
|
1459 |
delete dllPtr;
|
sl@0
|
1460 |
|
sl@0
|
1461 |
// Re-creates implementation. This time create two extended interfaces that require release
|
sl@0
|
1462 |
dllPtr = CExampleInterface::NewL2(KExample10ImplementationUid);
|
sl@0
|
1463 |
CleanupStack::PushL(dllPtr);
|
sl@0
|
1464 |
|
sl@0
|
1465 |
test.Printf(_L("Found dll uid %x, required %x.\n"),dllPtr->ImplId(), KExample10ImplementationUid);
|
sl@0
|
1466 |
test(KExample10ImplementationUid == dllPtr->ImplId());
|
sl@0
|
1467 |
|
sl@0
|
1468 |
MExampleInterfaceExtended2* extension1 = static_cast<MExampleInterfaceExtended2*>(dllPtr->GetExtendedInterfaceL(KExample10InterfaceUid2));
|
sl@0
|
1469 |
extension1->DoMethodExtended2();
|
sl@0
|
1470 |
|
sl@0
|
1471 |
const TUid KExample10InterfaceUid3 = {0x10009E46};
|
sl@0
|
1472 |
|
sl@0
|
1473 |
MExampleInterfaceExtended2* extension2 = static_cast<MExampleInterfaceExtended2*>(dllPtr->GetExtendedInterfaceL(KExample10InterfaceUid3));
|
sl@0
|
1474 |
extension2->DoMethodExtended2();
|
sl@0
|
1475 |
|
sl@0
|
1476 |
// Destroy the implementation. This should automatically delete both extended interfaces above
|
sl@0
|
1477 |
test.Printf(_L("Destroying Plugin..."));
|
sl@0
|
1478 |
CleanupStack::Pop(dllPtr);
|
sl@0
|
1479 |
delete dllPtr;
|
sl@0
|
1480 |
// Test Ends...
|
sl@0
|
1481 |
}
|
sl@0
|
1482 |
|
sl@0
|
1483 |
|
sl@0
|
1484 |
typedef void (*ClassFuncPtrL) (void);
|
sl@0
|
1485 |
|
sl@0
|
1486 |
/**
|
sl@0
|
1487 |
Wrapper function to call all test functions
|
sl@0
|
1488 |
@param testFuncL pointer to test function
|
sl@0
|
1489 |
@param aTestDesc test function name
|
sl@0
|
1490 |
*/
|
sl@0
|
1491 |
LOCAL_C void DoBasicTest(ClassFuncPtrL testFuncL, const TDesC& aTestDesc)
|
sl@0
|
1492 |
{
|
sl@0
|
1493 |
test.Next(aTestDesc);
|
sl@0
|
1494 |
|
sl@0
|
1495 |
__UHEAP_MARK;
|
sl@0
|
1496 |
// find out the number of open handles
|
sl@0
|
1497 |
TInt pHCountStart;
|
sl@0
|
1498 |
TInt tHCountStart;
|
sl@0
|
1499 |
RThread().HandleCount(pHCountStart,tHCountStart);
|
sl@0
|
1500 |
|
sl@0
|
1501 |
TRAPD(err, (*testFuncL)());
|
sl@0
|
1502 |
test(KErrNone == err);
|
sl@0
|
1503 |
|
sl@0
|
1504 |
// release handles
|
sl@0
|
1505 |
REComSession::FinalClose();
|
sl@0
|
1506 |
|
sl@0
|
1507 |
// check that no handles have leaked
|
sl@0
|
1508 |
TInt pHCountEnd;
|
sl@0
|
1509 |
TInt tHCountEnd;
|
sl@0
|
1510 |
RThread().HandleCount(pHCountEnd,tHCountEnd);
|
sl@0
|
1511 |
|
sl@0
|
1512 |
test(pHCountStart == pHCountEnd);
|
sl@0
|
1513 |
test(tHCountStart == tHCountEnd);
|
sl@0
|
1514 |
test.Printf(_L("Great ! No handle mismatch."));
|
sl@0
|
1515 |
|
sl@0
|
1516 |
__UHEAP_MARKEND;
|
sl@0
|
1517 |
}
|
sl@0
|
1518 |
|
sl@0
|
1519 |
/**
|
sl@0
|
1520 |
Wrapper function to call all OOM test functions
|
sl@0
|
1521 |
@param testFuncL pointer to OOM test function
|
sl@0
|
1522 |
@param aTestDesc test function name
|
sl@0
|
1523 |
*/
|
sl@0
|
1524 |
LOCAL_C void DoOOMTest(ClassFuncPtrL testFuncL, const TDesC& aTestDesc)
|
sl@0
|
1525 |
{
|
sl@0
|
1526 |
test.Next(aTestDesc);
|
sl@0
|
1527 |
TInt err;
|
sl@0
|
1528 |
TInt failAt = 1;
|
sl@0
|
1529 |
|
sl@0
|
1530 |
do
|
sl@0
|
1531 |
{
|
sl@0
|
1532 |
__UHEAP_MARK;
|
sl@0
|
1533 |
// find out the number of open handles
|
sl@0
|
1534 |
TInt pHCountStart;
|
sl@0
|
1535 |
TInt tHCountStart;
|
sl@0
|
1536 |
RThread().HandleCount(pHCountStart,tHCountStart);
|
sl@0
|
1537 |
|
sl@0
|
1538 |
// Setting Heap failure for OOM test
|
sl@0
|
1539 |
__UHEAP_SETFAIL(RHeap::EDeterministic, failAt++);
|
sl@0
|
1540 |
|
sl@0
|
1541 |
TRAP(err, (*testFuncL)());
|
sl@0
|
1542 |
|
sl@0
|
1543 |
__UHEAP_SETFAIL(RHeap::ENone, 0);
|
sl@0
|
1544 |
|
sl@0
|
1545 |
// release handles
|
sl@0
|
1546 |
REComSession::FinalClose();
|
sl@0
|
1547 |
|
sl@0
|
1548 |
// check that no handles have leaked
|
sl@0
|
1549 |
TInt pHCountEnd;
|
sl@0
|
1550 |
TInt tHCountEnd;
|
sl@0
|
1551 |
RThread().HandleCount(pHCountEnd,tHCountEnd);
|
sl@0
|
1552 |
|
sl@0
|
1553 |
test(pHCountStart == pHCountEnd);
|
sl@0
|
1554 |
test(tHCountStart == tHCountEnd);
|
sl@0
|
1555 |
test.Printf(_L("Great ! No handle mismatch."));
|
sl@0
|
1556 |
|
sl@0
|
1557 |
__UHEAP_MARKEND;
|
sl@0
|
1558 |
} while(err == KErrNoMemory);
|
sl@0
|
1559 |
|
sl@0
|
1560 |
test(err == KErrNone);
|
sl@0
|
1561 |
test.Printf(_L("- server succeeded at heap failure rate of %i\n"), failAt);
|
sl@0
|
1562 |
}
|
sl@0
|
1563 |
|
sl@0
|
1564 |
|
sl@0
|
1565 |
void DoTests()
|
sl@0
|
1566 |
{
|
sl@0
|
1567 |
//Basic test...
|
sl@0
|
1568 |
test.Printf(_L("Basic tests...\n"));
|
sl@0
|
1569 |
|
sl@0
|
1570 |
DoBasicTest(&GetExtendedInterfaceTest1L,_L("GetExtendedInterfaceTest1L"));
|
sl@0
|
1571 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3583 "));
|
sl@0
|
1572 |
ThreadPanicTest(_L("GetExtendedInterface Panic Testing"),GetExtendedInterfacePanic);
|
sl@0
|
1573 |
DoBasicTest(&GetExtendedInterfaceTest3L,_L("GetExtendedInterfaceTest3L"));
|
sl@0
|
1574 |
DoBasicTest(&GetExtendedInterfaceTest4L,_L("GetExtendedInterfaceTest4L"));
|
sl@0
|
1575 |
DoBasicTest(&GetExtendedInterfaceTest5L,_L("GetExtendedInterfaceTest5L"));
|
sl@0
|
1576 |
DoBasicTest(&ReleaseExtendedInterfaceTest1L,_L("ReleaseExtendedInterfaceTest1L"));
|
sl@0
|
1577 |
DoBasicTest(&ReleaseExtendedInterfaceTest2L,_L("ReleaseExtendedInterfaceTest2L"));
|
sl@0
|
1578 |
DoBasicTest(&ListExtendedInterfaceTestL,_L("ListExtendedInterfaceTestL"));
|
sl@0
|
1579 |
|
sl@0
|
1580 |
DoBasicTest(&CreateImplementationTest1,_L("CreateImplementationTest1"));
|
sl@0
|
1581 |
DoBasicTest(&CreateImplementationTest2L,_L("CreateImplementationTest2L"));
|
sl@0
|
1582 |
DoBasicTest(&CreateImplementationTest3L,_L("CreateImplementationTest3L"));
|
sl@0
|
1583 |
DoBasicTest(&CreateImplementationTest4L,_L("CreateImplementationTest4L"));
|
sl@0
|
1584 |
DoBasicTest(&CreateImplementationTest5L,_L("CreateImplementationTest5L"));
|
sl@0
|
1585 |
DoBasicTest(&CreateImplementationTest6,_L("CreateImplementationTest6"));
|
sl@0
|
1586 |
DoBasicTest(&CreateImplementationTest7L,_L("CreateImplementationTest7L"));
|
sl@0
|
1587 |
DoBasicTest(&DestroyedImplementationTestL,_L("DestroyedImplementationTestL"));
|
sl@0
|
1588 |
|
sl@0
|
1589 |
DoBasicTest(&ListImplementationTest1L,_L("ListImplementationTest1L"));
|
sl@0
|
1590 |
DoBasicTest(&ListImplementationTest2L,_L("ListImplementationTest2L"));
|
sl@0
|
1591 |
DoBasicTest(&ListImplementationTest3L,_L("ListImplementationTest3L"));
|
sl@0
|
1592 |
DoBasicTest(&ListImplementationTest4L,_L("ListImplementationTest4L"));
|
sl@0
|
1593 |
DoBasicTest(&ListImplementationTest5L,_L("ListImplementationTest5L"));
|
sl@0
|
1594 |
|
sl@0
|
1595 |
DoBasicTest(&DummyUidTestL,_L("CreateImplementation and ListImplementation Dummy UID test"));
|
sl@0
|
1596 |
|
sl@0
|
1597 |
// OOM test...
|
sl@0
|
1598 |
test.Printf(_L("OOM tests...\n"));
|
sl@0
|
1599 |
|
sl@0
|
1600 |
DoOOMTest(&GetExtendedInterfaceTest1L,_L("OOM GetExtendedInterfaceTest1L"));
|
sl@0
|
1601 |
// GetExtendedInterfaceTest2L is a special test case, cannot do OOM testing.
|
sl@0
|
1602 |
DoOOMTest(&GetExtendedInterfaceTest3L,_L("OOM GetExtendedInterfaceTest3L"));
|
sl@0
|
1603 |
DoOOMTest(&GetExtendedInterfaceTest4L,_L("OOM GetExtendedInterfaceTest4L"));
|
sl@0
|
1604 |
DoOOMTest(&GetExtendedInterfaceTest5L,_L("OOM GetExtendedInterfaceTest5L"));
|
sl@0
|
1605 |
DoOOMTest(&ReleaseExtendedInterfaceTest1L,_L("OOM ReleaseExtendedInterfaceTest1L"));
|
sl@0
|
1606 |
DoOOMTest(&ReleaseExtendedInterfaceTest2L,_L("OOM ReleaseExtendedInterfaceTest2L"));
|
sl@0
|
1607 |
DoOOMTest(&ListExtendedInterfaceTestL,_L("OOM ListExtendedInterfaceTestL"));
|
sl@0
|
1608 |
|
sl@0
|
1609 |
// CreateImplementationTest1 is a special test case, cannot do OOM testing.
|
sl@0
|
1610 |
DoOOMTest(&CreateImplementationTest2L,_L("OOM CreateImplementationTest2L"));
|
sl@0
|
1611 |
DoOOMTest(&CreateImplementationTest3L,_L("OOM CreateImplementationTest3L"));
|
sl@0
|
1612 |
DoOOMTest(&CreateImplementationTest4L,_L("OOM CreateImplementationTest4L"));
|
sl@0
|
1613 |
DoOOMTest(&CreateImplementationTest5L,_L("OOM CreateImplementationTest5L"));
|
sl@0
|
1614 |
// CreateImplementationTest6 is a special test case, cannot do OOM testing.
|
sl@0
|
1615 |
DoOOMTest(&CreateImplementationTest7L,_L("OOM CreateImplementationTest7L"));
|
sl@0
|
1616 |
DoOOMTest(&DestroyedImplementationTestL,_L("OOM DestroyedImplementationTestL"));
|
sl@0
|
1617 |
|
sl@0
|
1618 |
DoOOMTest(&ListImplementationTest1L,_L("OOM ListImplementationTest1L"));
|
sl@0
|
1619 |
DoOOMTest(&ListImplementationTest2L,_L("OOM ListImplementationTest2L"));
|
sl@0
|
1620 |
DoOOMTest(&ListImplementationTest3L,_L("OOM ListImplementationTest3L"));
|
sl@0
|
1621 |
DoOOMTest(&ListImplementationTest4L,_L("OOM ListImplementationTest4L"));
|
sl@0
|
1622 |
DoOOMTest(&ListImplementationTest5L,_L("OOM ListImplementationTest5L"));
|
sl@0
|
1623 |
}
|
sl@0
|
1624 |
|
sl@0
|
1625 |
|
sl@0
|
1626 |
GLDEF_C TInt E32Main()
|
sl@0
|
1627 |
{
|
sl@0
|
1628 |
__UHEAP_MARK;
|
sl@0
|
1629 |
test.Title();
|
sl@0
|
1630 |
|
sl@0
|
1631 |
test.Start(_L("ExtendedInterfaces tests."));
|
sl@0
|
1632 |
|
sl@0
|
1633 |
// get clean-up stack
|
sl@0
|
1634 |
CTrapCleanup* cleanup = CTrapCleanup::New();
|
sl@0
|
1635 |
|
sl@0
|
1636 |
//The reason for the folowing delay is:
|
sl@0
|
1637 |
//ECOM server could be already started. It means that when we copy some
|
sl@0
|
1638 |
//ECOM plugins from Z: to C: drive - ECOM server should look for and
|
sl@0
|
1639 |
//find the new ECOM plugins. The ECOM server uses for that CDiscoverer::CIdleScanningTimer
|
sl@0
|
1640 |
//which is an active object. So the discovering service is asynchronous. We have to
|
sl@0
|
1641 |
//wait some time until it finishes. Otherwise ListImplementationsL could fail to find
|
sl@0
|
1642 |
//requested implementations.
|
sl@0
|
1643 |
User::After(KOneSecond * 5);
|
sl@0
|
1644 |
|
sl@0
|
1645 |
DoTests();
|
sl@0
|
1646 |
|
sl@0
|
1647 |
delete cleanup;
|
sl@0
|
1648 |
|
sl@0
|
1649 |
test.End();
|
sl@0
|
1650 |
test.Close();
|
sl@0
|
1651 |
__UHEAP_MARKEND;
|
sl@0
|
1652 |
return(0);
|
sl@0
|
1653 |
}
|