sl@0
|
1 |
// Copyright (c) 2004-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 <e32panic.h>
|
sl@0
|
18 |
#include <f32file.h>
|
sl@0
|
19 |
#include <bautils.h>
|
sl@0
|
20 |
#include "LoadManager.h"
|
sl@0
|
21 |
#include <ecom/ecom.h>
|
sl@0
|
22 |
#include "EComUidCodes.h"
|
sl@0
|
23 |
#include "Interface.h" // interface to Plugins
|
sl@0
|
24 |
//Test utils for copying the resolver to C
|
sl@0
|
25 |
#include "../EcomTestUtils/EcomTestUtils.h"
|
sl@0
|
26 |
|
sl@0
|
27 |
LOCAL_D RTest TEST(_L("Ecom Defect Test"));
|
sl@0
|
28 |
|
sl@0
|
29 |
_LIT(KEComExDllOnZ, "Z:\\RAMOnly\\T_PlatSecResolverC.dll");
|
sl@0
|
30 |
|
sl@0
|
31 |
_LIT(KEComExDllOnC, "C:\\sys\\bin\\T_PlatSecResolverC.dll");
|
sl@0
|
32 |
_LIT(KEComRscFileOnC, "C:\\resource\\plugins\\T_PlatSecResolverC.rsc");
|
sl@0
|
33 |
_LIT(KEComRscFileOnZ, "Z:\\RAMOnly\\T_PlatSecResolverC.rsc");
|
sl@0
|
34 |
|
sl@0
|
35 |
#define UNUSED_VAR(a) a = a
|
sl@0
|
36 |
inline LOCAL_C void DeleteTestPlugin()
|
sl@0
|
37 |
{
|
sl@0
|
38 |
TRAPD(ignoreErr, EComTestUtils::FileManDeleteFileL(KEComExDllOnC));
|
sl@0
|
39 |
TRAP(ignoreErr, EComTestUtils::FileManDeleteFileL(KEComRscFileOnC));
|
sl@0
|
40 |
}
|
sl@0
|
41 |
|
sl@0
|
42 |
class REcomDefectTest
|
sl@0
|
43 |
{
|
sl@0
|
44 |
public:
|
sl@0
|
45 |
static void DEF049285_TestCaseL();
|
sl@0
|
46 |
static void DEF049979_TestCaseL();
|
sl@0
|
47 |
static void INC057514_TestCaseL();
|
sl@0
|
48 |
static void DEF065025_TestCase();
|
sl@0
|
49 |
};
|
sl@0
|
50 |
|
sl@0
|
51 |
/**
|
sl@0
|
52 |
Test case for Defect DEF048053 LoadManager Leaks Memory even when FinalClose is called.
|
sl@0
|
53 |
|
sl@0
|
54 |
@SYMTestCaseID SYSLIB-ECOM-CT-0770
|
sl@0
|
55 |
@SYMTestCaseDesc Test case for defect number DEF048053 LoadManager Leaks Memory even when FinalClose is called
|
sl@0
|
56 |
@SYMTestPriority High
|
sl@0
|
57 |
@SYMTestActions Create two simple implementation with different UID and check for memory leak when FinalClose is called.
|
sl@0
|
58 |
Create two complex implementations in Two different DLL check for memory leak when FinalClose is called.
|
sl@0
|
59 |
Create two simple implementation with same UID and check for memory leak when FinalClose is called.
|
sl@0
|
60 |
Create two complex implementations in different DLL check for memory leak when FinalClose is called.
|
sl@0
|
61 |
Test for invalid implementationUid to ensure no leak and proper cleanup
|
sl@0
|
62 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
63 |
@SYMREQ REQ0000
|
sl@0
|
64 |
*/
|
sl@0
|
65 |
void REcomDefectTest::DEF049285_TestCaseL()
|
sl@0
|
66 |
{
|
sl@0
|
67 |
TEST.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0770 "));
|
sl@0
|
68 |
_LIT(KDummyText,"Dummy params");
|
sl@0
|
69 |
|
sl@0
|
70 |
TInt err=KErrNone;
|
sl@0
|
71 |
TInt failAt = 1;
|
sl@0
|
72 |
//TO clear warnings in urel armv5 as failAt++ is only used in __UHEAP_SETFAIL in udeb
|
sl@0
|
73 |
failAt+=0;
|
sl@0
|
74 |
//Dummy instantiation parameters
|
sl@0
|
75 |
CExampleInterface::TExampleInterfaceInitParams iInitParams;
|
sl@0
|
76 |
iInitParams.integer = 5;
|
sl@0
|
77 |
iInitParams.descriptor = &KDummyText;
|
sl@0
|
78 |
|
sl@0
|
79 |
/**
|
sl@0
|
80 |
-------------Part 1: Two Simple Implementations in Two different DLL----------------
|
sl@0
|
81 |
Plugins used: T_PlatSecEcom1.dll with implUid1=0x102026AA
|
sl@0
|
82 |
T_PlatSecEcom2.dll with implUid2=0x102026AC
|
sl@0
|
83 |
*/
|
sl@0
|
84 |
TEST.Next(_L("DEF048053 Part 1\n"));
|
sl@0
|
85 |
__UHEAP_MARK;
|
sl@0
|
86 |
TUid implUid1={0x102026AA};
|
sl@0
|
87 |
TUid implUid2={0x102026AC};
|
sl@0
|
88 |
TUid returnedUid1;
|
sl@0
|
89 |
TUid returnedUid2;
|
sl@0
|
90 |
|
sl@0
|
91 |
//Create the first implementation
|
sl@0
|
92 |
TAny* imp1=REComSession::CreateImplementationL(implUid1,returnedUid1);
|
sl@0
|
93 |
CInstanceInfoSimple* instanceInfo = reinterpret_cast <CInstanceInfoSimple*> (returnedUid1.iUid);
|
sl@0
|
94 |
TEST(implUid1==instanceInfo->ImplementationUid(), __LINE__);
|
sl@0
|
95 |
//Now start the OOM test when creating the second implementation
|
sl@0
|
96 |
__UHEAP_MARK;
|
sl@0
|
97 |
do
|
sl@0
|
98 |
{
|
sl@0
|
99 |
// Setting Heap failure for OOM test
|
sl@0
|
100 |
__UHEAP_SETFAIL(RHeap::EDeterministic, failAt++);
|
sl@0
|
101 |
TAny* imp2=NULL;
|
sl@0
|
102 |
//Create the second implementation
|
sl@0
|
103 |
TRAP(err,imp2=REComSession::CreateImplementationL(implUid2,returnedUid2));
|
sl@0
|
104 |
if (err==KErrNone)
|
sl@0
|
105 |
{
|
sl@0
|
106 |
instanceInfo = reinterpret_cast <CInstanceInfoSimple*> (returnedUid2.iUid);
|
sl@0
|
107 |
TEST(implUid2==instanceInfo->ImplementationUid(), __LINE__);
|
sl@0
|
108 |
REComSession::DestroyedImplementation(returnedUid2);
|
sl@0
|
109 |
delete imp2;
|
sl@0
|
110 |
imp2=NULL;
|
sl@0
|
111 |
}
|
sl@0
|
112 |
__UHEAP_SETFAIL(RHeap::ENone, 0);
|
sl@0
|
113 |
}
|
sl@0
|
114 |
while (err == KErrNoMemory);
|
sl@0
|
115 |
//CALL FinalClose() HERE, do not want to leak memory
|
sl@0
|
116 |
REComSession::FinalClose();
|
sl@0
|
117 |
__UHEAP_MARKEND;
|
sl@0
|
118 |
|
sl@0
|
119 |
REComSession::DestroyedImplementation(returnedUid1);
|
sl@0
|
120 |
delete imp1;
|
sl@0
|
121 |
imp1=NULL;
|
sl@0
|
122 |
//call FinalClose() here, do not want to leak memory
|
sl@0
|
123 |
REComSession::FinalClose();
|
sl@0
|
124 |
__UHEAP_MARKEND;
|
sl@0
|
125 |
|
sl@0
|
126 |
|
sl@0
|
127 |
/**
|
sl@0
|
128 |
---------------Part 2: Two Complex Implementations in Two different DLL-----------------------
|
sl@0
|
129 |
Plugins used: EComExample2.dll with implUid1=0x10009DC4
|
sl@0
|
130 |
EComExample3.dll with implUid2=0x101F8478
|
sl@0
|
131 |
*/
|
sl@0
|
132 |
TEST.Next(_L("DEF048053 Part 2\n"));
|
sl@0
|
133 |
__UHEAP_MARK;
|
sl@0
|
134 |
implUid1=TUid::Uid(0x10009DC4);
|
sl@0
|
135 |
implUid2=TUid::Uid(0x101F8478);
|
sl@0
|
136 |
failAt=1;
|
sl@0
|
137 |
//Set up initialisation parameters
|
sl@0
|
138 |
//This initialisation parameters are required for testing the
|
sl@0
|
139 |
//failure point in a more complex plugin where it is possible
|
sl@0
|
140 |
//to fail in the ConstructL stage of the plugin NewL
|
sl@0
|
141 |
//Create the first plugin
|
sl@0
|
142 |
CExampleInterface* impl1 = REINTERPRET_CAST(CExampleInterface*,
|
sl@0
|
143 |
REComSession::CreateImplementationL(implUid1,
|
sl@0
|
144 |
returnedUid1,
|
sl@0
|
145 |
&iInitParams
|
sl@0
|
146 |
));
|
sl@0
|
147 |
//Now start the OOM test when creating the second implementation
|
sl@0
|
148 |
do
|
sl@0
|
149 |
{
|
sl@0
|
150 |
__UHEAP_MARK;
|
sl@0
|
151 |
// Setting Heap failure for OOM test
|
sl@0
|
152 |
__UHEAP_SETFAIL(RHeap::EDeterministic, failAt++);
|
sl@0
|
153 |
CExampleInterface* impl2=NULL;
|
sl@0
|
154 |
//Create the second implementation
|
sl@0
|
155 |
TRAP(err,impl2 = REINTERPRET_CAST(CExampleInterface*,
|
sl@0
|
156 |
REComSession::CreateImplementationL(implUid2,
|
sl@0
|
157 |
returnedUid2,
|
sl@0
|
158 |
&iInitParams
|
sl@0
|
159 |
)));
|
sl@0
|
160 |
if (err==KErrNone)
|
sl@0
|
161 |
{
|
sl@0
|
162 |
instanceInfo = reinterpret_cast <CInstanceInfoSimple*> (returnedUid2.iUid);
|
sl@0
|
163 |
TEST(implUid2==instanceInfo->ImplementationUid(), __LINE__);
|
sl@0
|
164 |
REComSession::DestroyedImplementation(returnedUid2);
|
sl@0
|
165 |
delete impl2;
|
sl@0
|
166 |
impl2=NULL;
|
sl@0
|
167 |
}
|
sl@0
|
168 |
//CALL FinalClose() HERE!, do not want to leak memory
|
sl@0
|
169 |
REComSession::FinalClose();
|
sl@0
|
170 |
__UHEAP_MARKEND;
|
sl@0
|
171 |
__UHEAP_SETFAIL(RHeap::ENone, 0);
|
sl@0
|
172 |
}
|
sl@0
|
173 |
while (err == KErrNoMemory);
|
sl@0
|
174 |
|
sl@0
|
175 |
REComSession::DestroyedImplementation(returnedUid1);
|
sl@0
|
176 |
delete impl1;
|
sl@0
|
177 |
impl1=NULL;
|
sl@0
|
178 |
//call FinalClose() here, do not want to leak memory
|
sl@0
|
179 |
REComSession::FinalClose();
|
sl@0
|
180 |
__UHEAP_MARKEND;
|
sl@0
|
181 |
|
sl@0
|
182 |
/*
|
sl@0
|
183 |
-----------Part 3, Two Simple Implementations in the Same DLL-------
|
sl@0
|
184 |
Plugins used: EComExample2.dll with implUid1=0x10009DC3
|
sl@0
|
185 |
with implUid2=0x10009DC4
|
sl@0
|
186 |
*/
|
sl@0
|
187 |
TEST.Next(_L("DEF048053 Part 3\n"));
|
sl@0
|
188 |
__UHEAP_MARK;
|
sl@0
|
189 |
implUid1=TUid::Uid(0x10009DC3);
|
sl@0
|
190 |
implUid2=TUid::Uid(0x10009DC4);
|
sl@0
|
191 |
failAt=1;
|
sl@0
|
192 |
//Set up initialisation parameters
|
sl@0
|
193 |
//This initialisation parameters are required for testing the
|
sl@0
|
194 |
//failure point in a more complex plugin where it is possible
|
sl@0
|
195 |
//to fail in the ConstructL stage of the plugin NewL
|
sl@0
|
196 |
//Create the first plugin
|
sl@0
|
197 |
impl1 = REINTERPRET_CAST(CExampleInterface*,
|
sl@0
|
198 |
REComSession::CreateImplementationL(implUid1,
|
sl@0
|
199 |
returnedUid1,
|
sl@0
|
200 |
&iInitParams
|
sl@0
|
201 |
));
|
sl@0
|
202 |
//Now start the OOM test when creating the second implementation
|
sl@0
|
203 |
do
|
sl@0
|
204 |
{
|
sl@0
|
205 |
__UHEAP_MARK;
|
sl@0
|
206 |
// Setting Heap failure for OOM test
|
sl@0
|
207 |
__UHEAP_SETFAIL(RHeap::EDeterministic, failAt++);
|
sl@0
|
208 |
CExampleInterface* impl2=NULL;
|
sl@0
|
209 |
//Create the second implementation
|
sl@0
|
210 |
TRAP(err,impl2 = REINTERPRET_CAST(CExampleInterface*,
|
sl@0
|
211 |
REComSession::CreateImplementationL(implUid2,
|
sl@0
|
212 |
returnedUid2,
|
sl@0
|
213 |
&iInitParams
|
sl@0
|
214 |
)));
|
sl@0
|
215 |
if (err==KErrNone)
|
sl@0
|
216 |
{
|
sl@0
|
217 |
instanceInfo = reinterpret_cast <CInstanceInfoSimple*> (returnedUid2.iUid);
|
sl@0
|
218 |
TEST(implUid2==instanceInfo->ImplementationUid(), __LINE__);
|
sl@0
|
219 |
REComSession::DestroyedImplementation(returnedUid2);
|
sl@0
|
220 |
delete impl2;
|
sl@0
|
221 |
impl2=NULL;
|
sl@0
|
222 |
}
|
sl@0
|
223 |
//CALL FinalClose() HERE!, do not want to leak memory
|
sl@0
|
224 |
REComSession::FinalClose();
|
sl@0
|
225 |
__UHEAP_MARKEND;
|
sl@0
|
226 |
__UHEAP_SETFAIL(RHeap::ENone, 0);
|
sl@0
|
227 |
}
|
sl@0
|
228 |
while (err == KErrNoMemory);
|
sl@0
|
229 |
|
sl@0
|
230 |
REComSession::DestroyedImplementation(returnedUid1);
|
sl@0
|
231 |
delete impl1;
|
sl@0
|
232 |
impl1=NULL;
|
sl@0
|
233 |
//call FinalClose() here, do not want to leak memory
|
sl@0
|
234 |
REComSession::FinalClose();
|
sl@0
|
235 |
__UHEAP_MARKEND;
|
sl@0
|
236 |
|
sl@0
|
237 |
|
sl@0
|
238 |
/*
|
sl@0
|
239 |
------------Part 4. Two complex implementations in different DLL--------
|
sl@0
|
240 |
Plugins used: EComExample2.dll with implUid1=0x10009DC4
|
sl@0
|
241 |
EcomRomRslvrExampleOnZ.dll with implUid2=0x10009DC7
|
sl@0
|
242 |
//Special case
|
sl@0
|
243 |
//Implementation with uid 10009DC7 is registered as the implementation in
|
sl@0
|
244 |
//plugin EComRomRslvrExampleOnZ.DLL however there is no mapping in the
|
sl@0
|
245 |
//implementaton proxy table that matches this implementation to its NewL
|
sl@0
|
246 |
//with KErrNotFound(-1)
|
sl@0
|
247 |
*/
|
sl@0
|
248 |
TEST.Next(_L("DEF048053 Part 4\n"));
|
sl@0
|
249 |
__UHEAP_MARK;
|
sl@0
|
250 |
implUid1=TUid::Uid(0x10009DC4);
|
sl@0
|
251 |
implUid2=TUid::Uid(0x10009DC7);
|
sl@0
|
252 |
failAt=1;
|
sl@0
|
253 |
//Set up initialisation parameters
|
sl@0
|
254 |
//This initialisation parameters are required for testing the
|
sl@0
|
255 |
//failure point in a more complex plugin where it is possible
|
sl@0
|
256 |
//to fail in the ConstructL stage of the plugin NewL
|
sl@0
|
257 |
//Create the first plugin
|
sl@0
|
258 |
impl1 = REINTERPRET_CAST(CExampleInterface*,
|
sl@0
|
259 |
REComSession::CreateImplementationL(implUid1,
|
sl@0
|
260 |
returnedUid1
|
sl@0
|
261 |
));
|
sl@0
|
262 |
//Now start the OOM test when creating the second implementation
|
sl@0
|
263 |
do
|
sl@0
|
264 |
{
|
sl@0
|
265 |
__UHEAP_MARK;
|
sl@0
|
266 |
// Setting Heap failure for OOM test
|
sl@0
|
267 |
__UHEAP_SETFAIL(RHeap::EDeterministic, failAt++);
|
sl@0
|
268 |
CExampleInterface* impl2=NULL;
|
sl@0
|
269 |
//Create the second implementation
|
sl@0
|
270 |
TRAP(err,impl2 = REINTERPRET_CAST(CExampleInterface*,
|
sl@0
|
271 |
REComSession::CreateImplementationL(implUid2,
|
sl@0
|
272 |
returnedUid2,
|
sl@0
|
273 |
&iInitParams
|
sl@0
|
274 |
)));
|
sl@0
|
275 |
if (err==KErrNone)
|
sl@0
|
276 |
{
|
sl@0
|
277 |
instanceInfo = reinterpret_cast <CInstanceInfoSimple*> (returnedUid2.iUid);
|
sl@0
|
278 |
TEST(implUid2==instanceInfo->ImplementationUid(), __LINE__);
|
sl@0
|
279 |
REComSession::DestroyedImplementation(returnedUid2);
|
sl@0
|
280 |
delete impl2;
|
sl@0
|
281 |
impl2=NULL;
|
sl@0
|
282 |
}
|
sl@0
|
283 |
//CALL FinalClose() HERE!, do not want to leak memory
|
sl@0
|
284 |
REComSession::FinalClose();
|
sl@0
|
285 |
__UHEAP_MARKEND;
|
sl@0
|
286 |
__UHEAP_SETFAIL(RHeap::ENone, 0);
|
sl@0
|
287 |
}
|
sl@0
|
288 |
while (err == KErrNoMemory);
|
sl@0
|
289 |
|
sl@0
|
290 |
REComSession::DestroyedImplementation(returnedUid1);
|
sl@0
|
291 |
delete impl1;
|
sl@0
|
292 |
impl1=NULL;
|
sl@0
|
293 |
//call FinalClose() here, do not want to leak memory
|
sl@0
|
294 |
REComSession::FinalClose();
|
sl@0
|
295 |
__UHEAP_MARKEND;
|
sl@0
|
296 |
|
sl@0
|
297 |
/*
|
sl@0
|
298 |
------------Part 5. Invalid argument testing in CreateImplementation
|
sl@0
|
299 |
Test for invalid implementationUid to ensure no leak and proper cleanup
|
sl@0
|
300 |
*/
|
sl@0
|
301 |
__UHEAP_MARK;
|
sl@0
|
302 |
|
sl@0
|
303 |
TUid invalidImplUid={0x1111111};
|
sl@0
|
304 |
TUid returnedUid;
|
sl@0
|
305 |
TAny* invalidimpl=NULL;
|
sl@0
|
306 |
TRAP(err,invalidimpl=REComSession::CreateImplementationL(invalidImplUid,returnedUid));
|
sl@0
|
307 |
TEST(err==KErrNotFound, __LINE__);
|
sl@0
|
308 |
TEST(invalidimpl==NULL, __LINE__);
|
sl@0
|
309 |
TEST(returnedUid==KNullUid, __LINE__);
|
sl@0
|
310 |
REComSession::FinalClose();
|
sl@0
|
311 |
|
sl@0
|
312 |
__UHEAP_MARKEND;
|
sl@0
|
313 |
|
sl@0
|
314 |
}
|
sl@0
|
315 |
|
sl@0
|
316 |
/**
|
sl@0
|
317 |
Test case for Defect ECom Server only loads Resolvers from Z: Drive
|
sl@0
|
318 |
|
sl@0
|
319 |
@SYMTestCaseID SYSLIB-ECOM-CT-0769
|
sl@0
|
320 |
@SYMTestCaseDesc Test case for defect number DEF049979 LoadManager Leaks Memory even when FinalClose is called
|
sl@0
|
321 |
@SYMTestPriority High
|
sl@0
|
322 |
@SYMTestActions List all the implemetations once using a UID which reside on C: drive and another on Z: drive
|
sl@0
|
323 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
324 |
@SYMREQ REQ0000
|
sl@0
|
325 |
*/
|
sl@0
|
326 |
void REcomDefectTest::DEF049979_TestCaseL()
|
sl@0
|
327 |
{
|
sl@0
|
328 |
RImplInfoPtrArray ifArray;
|
sl@0
|
329 |
TEST.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0769 DEF049979_TestCaseL\n "));
|
sl@0
|
330 |
|
sl@0
|
331 |
_LIT8(KImplementationTest,"text/wml");
|
sl@0
|
332 |
// Set up the interface find for the default resolver.
|
sl@0
|
333 |
TEComResolverParams ResolverParams;
|
sl@0
|
334 |
ResolverParams.SetDataType(KImplementationTest());
|
sl@0
|
335 |
ResolverParams.SetGenericMatch(ETrue); // Allow wildcard matching
|
sl@0
|
336 |
TUid ifUid = {0x10009DC0};
|
sl@0
|
337 |
|
sl@0
|
338 |
/*
|
sl@0
|
339 |
-----Test case 1 ListImplementation using a C resolver----------
|
sl@0
|
340 |
*/
|
sl@0
|
341 |
__UHEAP_MARK;
|
sl@0
|
342 |
|
sl@0
|
343 |
//A resolver uid that only resides in C T_PlatSecResolverC.dll
|
sl@0
|
344 |
TUid resolverUidC={0x10244444};
|
sl@0
|
345 |
|
sl@0
|
346 |
|
sl@0
|
347 |
REComSession::ListImplementationsL(
|
sl@0
|
348 |
ifUid,
|
sl@0
|
349 |
ResolverParams,
|
sl@0
|
350 |
resolverUidC,
|
sl@0
|
351 |
ifArray);
|
sl@0
|
352 |
|
sl@0
|
353 |
// There should be 6 implementations found but only 2 returned.
|
sl@0
|
354 |
// These 2, are the only two that match the datatype supplied.
|
sl@0
|
355 |
// These 2, are also 2 of a posible 4, i.e. version 2.
|
sl@0
|
356 |
// The version 1 implementations are not part of the reported 6
|
sl@0
|
357 |
// they are superseeded.
|
sl@0
|
358 |
// So the 2 that match are implementation uids 0x10009DC3 & 0x10009DC4
|
sl@0
|
359 |
TInt availCount = ifArray.Count();
|
sl@0
|
360 |
TEST(availCount == 2, __LINE__);
|
sl@0
|
361 |
|
sl@0
|
362 |
ifArray.ResetAndDestroy();
|
sl@0
|
363 |
|
sl@0
|
364 |
/*
|
sl@0
|
365 |
-----Test case 2 List Implementation using a Z resolver---------
|
sl@0
|
366 |
*/
|
sl@0
|
367 |
//A resolver uid that resides in Z T_PlatSecResolverZ.dll
|
sl@0
|
368 |
TUid resolverUidZ={0x10999999};
|
sl@0
|
369 |
|
sl@0
|
370 |
REComSession::ListImplementationsL(
|
sl@0
|
371 |
ifUid,
|
sl@0
|
372 |
ResolverParams,
|
sl@0
|
373 |
resolverUidZ,
|
sl@0
|
374 |
ifArray);
|
sl@0
|
375 |
|
sl@0
|
376 |
// There should be 6 implementations found but only 2 returned.
|
sl@0
|
377 |
// These 2, are the only two that match the datatype supplied.
|
sl@0
|
378 |
// These 2, are also 2 of a posible 4, i.e. version 2.
|
sl@0
|
379 |
// The version 1 implementations are not part of the reported 6
|
sl@0
|
380 |
// they are superseeded.
|
sl@0
|
381 |
// So the 2 that match are implementation uids 0x10009DC3 & 0x10009DC4
|
sl@0
|
382 |
availCount = ifArray.Count();
|
sl@0
|
383 |
TEST(availCount == 2, __LINE__);
|
sl@0
|
384 |
|
sl@0
|
385 |
ifArray.ResetAndDestroy();
|
sl@0
|
386 |
|
sl@0
|
387 |
REComSession::FinalClose();
|
sl@0
|
388 |
__UHEAP_MARKEND;
|
sl@0
|
389 |
|
sl@0
|
390 |
}
|
sl@0
|
391 |
|
sl@0
|
392 |
|
sl@0
|
393 |
// This class is used for INC057514_TestCaseL.
|
sl@0
|
394 |
// Checks the reference count when constructing and destructing REComSessions.
|
sl@0
|
395 |
//
|
sl@0
|
396 |
class CStuff : public CBase
|
sl@0
|
397 |
{
|
sl@0
|
398 |
public:
|
sl@0
|
399 |
static CStuff* NewL() {
|
sl@0
|
400 |
CStuff* self = new (ELeave) CStuff;
|
sl@0
|
401 |
CleanupStack::PushL (self);
|
sl@0
|
402 |
self->ConstructL();
|
sl@0
|
403 |
CleanupStack::Pop (self);
|
sl@0
|
404 |
return self;
|
sl@0
|
405 |
}
|
sl@0
|
406 |
void ConstructL ();
|
sl@0
|
407 |
~CStuff();
|
sl@0
|
408 |
|
sl@0
|
409 |
REComSession iEcomSession;
|
sl@0
|
410 |
|
sl@0
|
411 |
private:
|
sl@0
|
412 |
CStuff() {/*do nothing*/};
|
sl@0
|
413 |
};
|
sl@0
|
414 |
|
sl@0
|
415 |
void CStuff::ConstructL ()
|
sl@0
|
416 |
{
|
sl@0
|
417 |
iEcomSession = REComSession::OpenL();
|
sl@0
|
418 |
}
|
sl@0
|
419 |
|
sl@0
|
420 |
CStuff::~CStuff()
|
sl@0
|
421 |
{
|
sl@0
|
422 |
iEcomSession.Close();
|
sl@0
|
423 |
}
|
sl@0
|
424 |
|
sl@0
|
425 |
/**
|
sl@0
|
426 |
Test case for Defect ECOM can't (reference) count
|
sl@0
|
427 |
|
sl@0
|
428 |
@SYMTestCaseID SYSLIB-ECOM-CT-01364
|
sl@0
|
429 |
@SYMTestCaseDesc Test case for defect number INC057514 ECOM can't (reference) count
|
sl@0
|
430 |
@SYMTestPriority High
|
sl@0
|
431 |
@SYMTestActions Create 2 implementations
|
sl@0
|
432 |
Open session with REComSession
|
sl@0
|
433 |
Close session with REComSession
|
sl@0
|
434 |
When out of scope destructor for REComSession is called.
|
sl@0
|
435 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
436 |
@SYMDEF INC057514
|
sl@0
|
437 |
*/
|
sl@0
|
438 |
void REcomDefectTest::INC057514_TestCaseL()
|
sl@0
|
439 |
{
|
sl@0
|
440 |
TEST.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1364 INC057514_TestCaseL "));
|
sl@0
|
441 |
|
sl@0
|
442 |
// Set up for heap leak checking
|
sl@0
|
443 |
__UHEAP_MARK;
|
sl@0
|
444 |
|
sl@0
|
445 |
//Check Thread handles leak
|
sl@0
|
446 |
TInt startProcessHandleCount = 0;
|
sl@0
|
447 |
TInt startThreadHandleCount = 0;
|
sl@0
|
448 |
TInt endProcessHandleCount = 0;
|
sl@0
|
449 |
TInt endThreadHandleCount = 0;
|
sl@0
|
450 |
|
sl@0
|
451 |
RThread rThread;
|
sl@0
|
452 |
rThread.HandleCount(startProcessHandleCount, startThreadHandleCount);
|
sl@0
|
453 |
|
sl@0
|
454 |
// START TEST //
|
sl@0
|
455 |
|
sl@0
|
456 |
|
sl@0
|
457 |
__UHEAP_MARK;
|
sl@0
|
458 |
|
sl@0
|
459 |
CStuff* stuff1 = CStuff::NewL();
|
sl@0
|
460 |
CleanupStack::PushL(stuff1);
|
sl@0
|
461 |
|
sl@0
|
462 |
TUid implUid1={0x102026AA};
|
sl@0
|
463 |
TUid returnedUid1;
|
sl@0
|
464 |
TUid returnedUid2;
|
sl@0
|
465 |
|
sl@0
|
466 |
//Create the first implementation
|
sl@0
|
467 |
TAny* imp1=stuff1->iEcomSession.CreateImplementationL(implUid1,returnedUid1);
|
sl@0
|
468 |
CInstanceInfoSimple* instanceInfo = reinterpret_cast <CInstanceInfoSimple*> (returnedUid1.iUid);
|
sl@0
|
469 |
CleanupStack::PushL(imp1);
|
sl@0
|
470 |
TEST(implUid1==instanceInfo->ImplementationUid(), __LINE__);
|
sl@0
|
471 |
|
sl@0
|
472 |
CStuff* stuff2 = CStuff::NewL();
|
sl@0
|
473 |
CleanupStack::PushL(stuff2);
|
sl@0
|
474 |
|
sl@0
|
475 |
//Create the first implementation
|
sl@0
|
476 |
TAny* imp2=stuff2->iEcomSession.CreateImplementationL(implUid1,returnedUid2);
|
sl@0
|
477 |
instanceInfo = reinterpret_cast <CInstanceInfoSimple*> (returnedUid2.iUid);
|
sl@0
|
478 |
CleanupStack::PushL(imp2);
|
sl@0
|
479 |
TEST(implUid1==instanceInfo->ImplementationUid(), __LINE__);
|
sl@0
|
480 |
|
sl@0
|
481 |
{
|
sl@0
|
482 |
REComSession session = stuff1->iEcomSession.OpenL();
|
sl@0
|
483 |
session.Close();
|
sl@0
|
484 |
// When we go out of scope we cause the destructor
|
sl@0
|
485 |
// to be called for REComSession.
|
sl@0
|
486 |
}
|
sl@0
|
487 |
|
sl@0
|
488 |
REComSession::DestroyedImplementation(returnedUid1);
|
sl@0
|
489 |
|
sl@0
|
490 |
CleanupStack::PopAndDestroy(imp2);
|
sl@0
|
491 |
CleanupStack::PopAndDestroy(stuff2);
|
sl@0
|
492 |
|
sl@0
|
493 |
REComSession::FinalClose();
|
sl@0
|
494 |
|
sl@0
|
495 |
REComSession::DestroyedImplementation(returnedUid2);
|
sl@0
|
496 |
|
sl@0
|
497 |
CleanupStack::PopAndDestroy(imp1);
|
sl@0
|
498 |
CleanupStack::PopAndDestroy(stuff1);
|
sl@0
|
499 |
|
sl@0
|
500 |
REComSession::FinalClose();
|
sl@0
|
501 |
|
sl@0
|
502 |
|
sl@0
|
503 |
__UHEAP_MARKEND;
|
sl@0
|
504 |
|
sl@0
|
505 |
|
sl@0
|
506 |
|
sl@0
|
507 |
// END TEST //
|
sl@0
|
508 |
|
sl@0
|
509 |
// Check for open handles
|
sl@0
|
510 |
rThread.HandleCount(endProcessHandleCount, endThreadHandleCount);
|
sl@0
|
511 |
TEST(startThreadHandleCount == endThreadHandleCount, __LINE__);
|
sl@0
|
512 |
|
sl@0
|
513 |
//Test ends
|
sl@0
|
514 |
__UHEAP_MARKEND;
|
sl@0
|
515 |
}
|
sl@0
|
516 |
|
sl@0
|
517 |
static RSemaphore TheLoadEcomServerSemaphore;
|
sl@0
|
518 |
|
sl@0
|
519 |
static TInt LoadEcomServer(void*)
|
sl@0
|
520 |
{
|
sl@0
|
521 |
RThread currThread;
|
sl@0
|
522 |
const TName& threadName = currThread.Name();
|
sl@0
|
523 |
RDebug::Print(_L("Thread %S running\n"), &threadName);
|
sl@0
|
524 |
|
sl@0
|
525 |
//Wait until get a notification from the creating thread that the ECOM server can be loaded.
|
sl@0
|
526 |
TheLoadEcomServerSemaphore.Wait();
|
sl@0
|
527 |
|
sl@0
|
528 |
CTrapCleanup* cleanup = CTrapCleanup::New();
|
sl@0
|
529 |
TEST(cleanup != NULL);
|
sl@0
|
530 |
|
sl@0
|
531 |
//Create ECOM session. This call will try to load the ECOM server.
|
sl@0
|
532 |
REComSession ecomSession;
|
sl@0
|
533 |
TRAPD(err, ecomSession.OpenL());
|
sl@0
|
534 |
TEST(err==KErrNone);
|
sl@0
|
535 |
|
sl@0
|
536 |
//Wait some time. During that time the ECOM server will try to process the ECOM registry.
|
sl@0
|
537 |
User::After(3000000);
|
sl@0
|
538 |
ecomSession.Close();
|
sl@0
|
539 |
|
sl@0
|
540 |
delete cleanup;
|
sl@0
|
541 |
RDebug::Print(_L("Thread %S exits\n"), &threadName);
|
sl@0
|
542 |
return KErrNone;
|
sl@0
|
543 |
}
|
sl@0
|
544 |
|
sl@0
|
545 |
/**
|
sl@0
|
546 |
Test case for Defect Multi-threaded client start-up of ECOM server can causeKErrInUse errors
|
sl@0
|
547 |
|
sl@0
|
548 |
@SYMTestCaseID SYSLIB-ECOM-CT-01365
|
sl@0
|
549 |
@SYMTestCaseDesc Test case for defect number DEF065025 Multi-threaded client
|
sl@0
|
550 |
start-up of ECOM server can causeKErrInUse errors
|
sl@0
|
551 |
@SYMTestPriority High
|
sl@0
|
552 |
@SYMTestActions Create 16 threads and block.
|
sl@0
|
553 |
Unblock each thread causing them all to run simultaneously.
|
sl@0
|
554 |
Each thread opens a session to ECOM Server.
|
sl@0
|
555 |
Close each session to ECOM Server.
|
sl@0
|
556 |
Close each thread.
|
sl@0
|
557 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
558 |
@SYMDEF DEF065025
|
sl@0
|
559 |
*/
|
sl@0
|
560 |
void REcomDefectTest::DEF065025_TestCase()
|
sl@0
|
561 |
{
|
sl@0
|
562 |
TEST.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1365 "));
|
sl@0
|
563 |
TInt err=KErrNone;
|
sl@0
|
564 |
_LIT(KEComServerProcessName,"ecomserver");
|
sl@0
|
565 |
TRAP(err, EComTestUtils::KillProcessL(KEComServerProcessName));
|
sl@0
|
566 |
UNUSED_VAR(err);
|
sl@0
|
567 |
|
sl@0
|
568 |
const TInt KThreadCnt = 16;
|
sl@0
|
569 |
err = TheLoadEcomServerSemaphore.CreateLocal(0);
|
sl@0
|
570 |
TEST(err==KErrNone);
|
sl@0
|
571 |
|
sl@0
|
572 |
RThread loadEcomThread[KThreadCnt];
|
sl@0
|
573 |
TRequestStatus threadStatus[KThreadCnt];
|
sl@0
|
574 |
TInt i;
|
sl@0
|
575 |
|
sl@0
|
576 |
//Create KThreadCnt threads. They will be blocked on TheLoadEcomServerSemaphore after
|
sl@0
|
577 |
//their creation.
|
sl@0
|
578 |
for(i=0;i<KThreadCnt;++i)
|
sl@0
|
579 |
{
|
sl@0
|
580 |
TBuf<32> threadName;
|
sl@0
|
581 |
threadName.Format(_L("Th-%02d"), i + 1);
|
sl@0
|
582 |
TInt err = loadEcomThread[i].Create(threadName, (TThreadFunction)LoadEcomServer,
|
sl@0
|
583 |
KDefaultStackSize, KMinHeapSize, 0x00100000, NULL);
|
sl@0
|
584 |
TEST(err==KErrNone);
|
sl@0
|
585 |
loadEcomThread[i].Logon(threadStatus[i]);
|
sl@0
|
586 |
loadEcomThread[i].Resume();
|
sl@0
|
587 |
}
|
sl@0
|
588 |
User::After(3000000);
|
sl@0
|
589 |
|
sl@0
|
590 |
//Unblock the threads. The threads will run simultaneously and will try to load multiple
|
sl@0
|
591 |
//instances of the ECOM server, which will try to open and process Registry files at the
|
sl@0
|
592 |
//same time.
|
sl@0
|
593 |
TheLoadEcomServerSemaphore.Signal(KThreadCnt);
|
sl@0
|
594 |
|
sl@0
|
595 |
//Wait until all threads die.
|
sl@0
|
596 |
for(i=0;i<KThreadCnt;++i)
|
sl@0
|
597 |
{
|
sl@0
|
598 |
User::WaitForRequest(threadStatus[i]);
|
sl@0
|
599 |
}
|
sl@0
|
600 |
|
sl@0
|
601 |
//Close all threads.
|
sl@0
|
602 |
for(i=0;i<KThreadCnt;++i)
|
sl@0
|
603 |
{
|
sl@0
|
604 |
loadEcomThread[i].Close();
|
sl@0
|
605 |
}
|
sl@0
|
606 |
|
sl@0
|
607 |
TheLoadEcomServerSemaphore.Close();
|
sl@0
|
608 |
//Put a break point there and kill the test
|
sl@0
|
609 |
//Check EPOCWIND.OUT file.
|
sl@0
|
610 |
}
|
sl@0
|
611 |
/**
|
sl@0
|
612 |
Copies the Resolver Plugins to C:\ drive
|
sl@0
|
613 |
*/
|
sl@0
|
614 |
LOCAL_C void CopyPluginsL()
|
sl@0
|
615 |
{
|
sl@0
|
616 |
// Copy the dlls and .rsc files on to RAM
|
sl@0
|
617 |
TRAPD(err, EComTestUtils::FileManCopyFileL(KEComExDllOnZ, KEComExDllOnC));
|
sl@0
|
618 |
TEST(err==KErrNone, __LINE__);
|
sl@0
|
619 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComRscFileOnZ, KEComRscFileOnC));
|
sl@0
|
620 |
TEST(err==KErrNone, __LINE__);
|
sl@0
|
621 |
// Wait, so that ECom server looks for plugins copied from Z: to C drive
|
sl@0
|
622 |
// ECOM server could be already started. It means that when we copy some
|
sl@0
|
623 |
// ECOM plugins from Z: to C: drive - ECOM server should look for and
|
sl@0
|
624 |
// find the new ECOM plugins. The ECOM server uses for that CDiscoverer::CIdleScanningTimer
|
sl@0
|
625 |
// which is an active object. So the discovering service is asynchronous. We have to
|
sl@0
|
626 |
// wait some time until it finishes. Otherwise ListImplementationsL could fail to find
|
sl@0
|
627 |
// requested implementations.
|
sl@0
|
628 |
User::After(5000000);
|
sl@0
|
629 |
}
|
sl@0
|
630 |
|
sl@0
|
631 |
|
sl@0
|
632 |
LOCAL_C void RunTestL()
|
sl@0
|
633 |
{
|
sl@0
|
634 |
__UHEAP_MARK;
|
sl@0
|
635 |
|
sl@0
|
636 |
CopyPluginsL();
|
sl@0
|
637 |
|
sl@0
|
638 |
REcomDefectTest::DEF049285_TestCaseL();
|
sl@0
|
639 |
|
sl@0
|
640 |
REcomDefectTest::DEF049979_TestCaseL();
|
sl@0
|
641 |
|
sl@0
|
642 |
REcomDefectTest::INC057514_TestCaseL();
|
sl@0
|
643 |
|
sl@0
|
644 |
REcomDefectTest::DEF065025_TestCase();
|
sl@0
|
645 |
DeleteTestPlugin();
|
sl@0
|
646 |
|
sl@0
|
647 |
__UHEAP_MARKEND;
|
sl@0
|
648 |
}
|
sl@0
|
649 |
|
sl@0
|
650 |
GLDEF_C TInt E32Main()
|
sl@0
|
651 |
{
|
sl@0
|
652 |
__UHEAP_MARK;
|
sl@0
|
653 |
|
sl@0
|
654 |
TEST.Title();
|
sl@0
|
655 |
TEST.Start(_L("Ecom Defect tests."));
|
sl@0
|
656 |
|
sl@0
|
657 |
CTrapCleanup* cleanup = CTrapCleanup::New();
|
sl@0
|
658 |
CActiveScheduler* scheduler = new(ELeave)CActiveScheduler;
|
sl@0
|
659 |
CActiveScheduler::Install(scheduler);
|
sl@0
|
660 |
|
sl@0
|
661 |
TRAPD(err,RunTestL());
|
sl@0
|
662 |
TEST(err==KErrNone, __LINE__);
|
sl@0
|
663 |
|
sl@0
|
664 |
delete scheduler;
|
sl@0
|
665 |
delete cleanup;
|
sl@0
|
666 |
|
sl@0
|
667 |
TEST.End();
|
sl@0
|
668 |
TEST.Close();
|
sl@0
|
669 |
|
sl@0
|
670 |
__UHEAP_MARKEND;
|
sl@0
|
671 |
return(0);
|
sl@0
|
672 |
}
|