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 "../EcomTestUtils/EcomTestUtils.h"
|
sl@0
|
21 |
#include "LoadManager.h"
|
sl@0
|
22 |
#include <ecom/ecom.h>
|
sl@0
|
23 |
#include "EComUidCodes.h"
|
sl@0
|
24 |
#include "Interface.h" // interface to Plugins
|
sl@0
|
25 |
|
sl@0
|
26 |
_LIT(KEComExDllOnC, "c:\\sys\\bin\\EComExample5.dll");
|
sl@0
|
27 |
_LIT(KEComRscFileOnZ, "z:\\RAMOnly\\EComExample5.rsc");
|
sl@0
|
28 |
_LIT(KEComRscFileOnC, "c:\\resource\\plugins\\EComExample5.rsc");
|
sl@0
|
29 |
|
sl@0
|
30 |
_LIT(KEComExampleDllOnC, "C:\\sys\\bin\\EComExample.dll");
|
sl@0
|
31 |
_LIT(KEComExample2DllOnC, "C:\\sys\\bin\\EComExample2.dll");
|
sl@0
|
32 |
_LIT(KEComExample3DllOnC, "C:\\sys\\bin\\EComExample3.dll");
|
sl@0
|
33 |
|
sl@0
|
34 |
_LIT(KEComExampleRscOnC, "C:\\resource\\plugins\\EComExample.rsc");
|
sl@0
|
35 |
_LIT(KEComExample2RscOnC, "C:\\resource\\plugins\\EComExample2.rsc");
|
sl@0
|
36 |
_LIT(KEComExample3RscOnC, "C:\\resource\\plugins\\EComExample3.rsc");
|
sl@0
|
37 |
|
sl@0
|
38 |
_LIT(KEComExampleRscOnZ, "Z:\\RAMOnly\\EComExample.rsc");
|
sl@0
|
39 |
_LIT(KEComExample2RscOnZ, "Z:\\RAMOnly\\EComExample2.rsc");
|
sl@0
|
40 |
_LIT(KEComExample3RscOnZ, "Z:\\RAMOnly\\EComExample3.rsc");
|
sl@0
|
41 |
|
sl@0
|
42 |
|
sl@0
|
43 |
_LIT(KEComExDllOnZ, "z:\\RAMOnly\\EComExample5.dll");
|
sl@0
|
44 |
_LIT(KEComExampleDllOnZ, "Z:\\RAMOnly\\EComExample.dll");
|
sl@0
|
45 |
_LIT(KEComExample2DllOnZ, "Z:\\RAMOnly\\EComExample2.dll");
|
sl@0
|
46 |
_LIT(KEComExample3DllOnZ, "Z:\\RAMOnly\\EComExample3.dll");
|
sl@0
|
47 |
|
sl@0
|
48 |
/** Test cases covered in this test code:
|
sl@0
|
49 |
1. Thread create imp destroy then not calling FinalClose() will cause a panic inside the thread( capture this panic)(memory leak)
|
sl@0
|
50 |
|
sl@0
|
51 |
2. Thread list implementation then not calling FinalClose() will cause a panic inside the thread(capture this panic)(memory leak).
|
sl@0
|
52 |
|
sl@0
|
53 |
3. Thread Create Impl1, Create Impl2, Destroy Impl2, Destory Impl1 then FinalClose() no memory leak.
|
sl@0
|
54 |
|
sl@0
|
55 |
4. Thread create Impl1, call FinalClose() 2x, Destroy Impl1 then FinalClose() to show that FinalClose() can be called many times with no unknown consequence.
|
sl@0
|
56 |
|
sl@0
|
57 |
5. REComSession::public constructor (without OpenL), called FinalClose () 2x, then Close(), no problem and memory leak.
|
sl@0
|
58 |
|
sl@0
|
59 |
6. REComSession::OpenL,call Close() then call FinalClose() to show no memory leak problem.
|
sl@0
|
60 |
|
sl@0
|
61 |
7. Test calling REComSession::FinalClose() to show no memory leak, errors, crash problem
|
sl@0
|
62 |
*/
|
sl@0
|
63 |
|
sl@0
|
64 |
LOCAL_D RTest test(_L("Final Close Test"));
|
sl@0
|
65 |
|
sl@0
|
66 |
class RFinalCloseTest
|
sl@0
|
67 |
{
|
sl@0
|
68 |
public:
|
sl@0
|
69 |
//Test case 1
|
sl@0
|
70 |
static TInt Create_Destroy_Without_FinalClose(TAny*);
|
sl@0
|
71 |
static TInt Create_Destroy_With_FinalCloseL();
|
sl@0
|
72 |
static TInt Create_Destroy_TestL();
|
sl@0
|
73 |
|
sl@0
|
74 |
//Test case 2
|
sl@0
|
75 |
static TInt ListImpl_Without_FinalClose(TAny*);
|
sl@0
|
76 |
static TInt ListImpl_With_FinalCloseL();
|
sl@0
|
77 |
static void ListImplementation_TestL();
|
sl@0
|
78 |
|
sl@0
|
79 |
//Test case 3
|
sl@0
|
80 |
static void Create_Destroy2_With_FinalCloseL();
|
sl@0
|
81 |
|
sl@0
|
82 |
//Test case 4
|
sl@0
|
83 |
static void Create_Destroy3_With_FinalCloseL();
|
sl@0
|
84 |
|
sl@0
|
85 |
//Test case 5
|
sl@0
|
86 |
static void Create_Destroy4_With_FinalCloseL();
|
sl@0
|
87 |
|
sl@0
|
88 |
//Test case 6
|
sl@0
|
89 |
static void FinalClose();
|
sl@0
|
90 |
|
sl@0
|
91 |
//Test case 7
|
sl@0
|
92 |
static void NonConstructL_Create_Destroy();
|
sl@0
|
93 |
|
sl@0
|
94 |
static void ThreadPanicTest(const TDesC& aName,TThreadFunction aFunction);
|
sl@0
|
95 |
};
|
sl@0
|
96 |
|
sl@0
|
97 |
/**
|
sl@0
|
98 |
Test creating an implementation, deleting the implementation
|
sl@0
|
99 |
and then call FinalClose(). Check that there is no crash and memory leak
|
sl@0
|
100 |
|
sl@0
|
101 |
@SYMTestCaseID SYSLIB-ECOM-CT-0759
|
sl@0
|
102 |
@SYMTestCaseDesc Tests for creating and destroying an implementation
|
sl@0
|
103 |
@SYMTestPriority High
|
sl@0
|
104 |
@SYMTestActions Create and delete a new implementation with UID and initialisation parameters.
|
sl@0
|
105 |
Call up REComSession::FinalClose
|
sl@0
|
106 |
Check for no crash and memory leaks.
|
sl@0
|
107 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
108 |
@SYMREQ REQ0000
|
sl@0
|
109 |
*/
|
sl@0
|
110 |
TInt RFinalCloseTest::Create_Destroy_With_FinalCloseL()
|
sl@0
|
111 |
{
|
sl@0
|
112 |
__UHEAP_MARK;
|
sl@0
|
113 |
|
sl@0
|
114 |
Create_Destroy_TestL();
|
sl@0
|
115 |
|
sl@0
|
116 |
REComSession::FinalClose();
|
sl@0
|
117 |
|
sl@0
|
118 |
__UHEAP_MARKEND;
|
sl@0
|
119 |
return KErrNone;
|
sl@0
|
120 |
}
|
sl@0
|
121 |
|
sl@0
|
122 |
/**
|
sl@0
|
123 |
Test creating an implementation, deleting the implementation
|
sl@0
|
124 |
Never call FinalClose() to show memory leak panic
|
sl@0
|
125 |
|
sl@0
|
126 |
@SYMTestCaseID SYSLIB-ECOM-CT-0760
|
sl@0
|
127 |
@SYMTestCaseDesc Tests for creating and destroying an implementation
|
sl@0
|
128 |
@SYMTestPriority High
|
sl@0
|
129 |
@SYMTestActions Create and delete a new implementation with UID and initialisation parameters.
|
sl@0
|
130 |
FinalClose is omitted to show memory leak panic
|
sl@0
|
131 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
132 |
@SYMREQ REQ0000
|
sl@0
|
133 |
*/
|
sl@0
|
134 |
TInt RFinalCloseTest::Create_Destroy_Without_FinalClose(TAny*)
|
sl@0
|
135 |
{
|
sl@0
|
136 |
|
sl@0
|
137 |
__UHEAP_MARK;
|
sl@0
|
138 |
CTrapCleanup* threadcleanup = CTrapCleanup::New();
|
sl@0
|
139 |
|
sl@0
|
140 |
TRAPD(err,Create_Destroy_TestL());
|
sl@0
|
141 |
|
sl@0
|
142 |
test(err==KErrNone);
|
sl@0
|
143 |
//This FinalClose() is purposely omitted for testing the PANIC
|
sl@0
|
144 |
//REComSession::FinalClose();
|
sl@0
|
145 |
|
sl@0
|
146 |
delete threadcleanup;
|
sl@0
|
147 |
__UHEAP_MARKEND;
|
sl@0
|
148 |
return KErrNone;
|
sl@0
|
149 |
}
|
sl@0
|
150 |
|
sl@0
|
151 |
//The test code for creating and destroying an implementation
|
sl@0
|
152 |
//To be used in the two test cases above
|
sl@0
|
153 |
TInt RFinalCloseTest::Create_Destroy_TestL()
|
sl@0
|
154 |
{
|
sl@0
|
155 |
TUid dTorKey;
|
sl@0
|
156 |
TUid implUid={0x101F8478};
|
sl@0
|
157 |
|
sl@0
|
158 |
// Set up some empty initialisation parameters
|
sl@0
|
159 |
CExampleInterface::TExampleInterfaceInitParams initParams;
|
sl@0
|
160 |
initParams.integer = 0;
|
sl@0
|
161 |
initParams.descriptor = NULL;
|
sl@0
|
162 |
|
sl@0
|
163 |
CExampleInterface* dllPtr = REINTERPRET_CAST(CExampleInterface*,
|
sl@0
|
164 |
REComSession::CreateImplementationL(implUid,dTorKey,&initParams));
|
sl@0
|
165 |
|
sl@0
|
166 |
//Check the return implementation instantiation has the same implementation uid
|
sl@0
|
167 |
test(dllPtr->ImplId()==implUid);
|
sl@0
|
168 |
//The returned Uid to be used in Destruction should match the implementation uid as well
|
sl@0
|
169 |
CInstanceInfoSimple* instanceInfo = reinterpret_cast <CInstanceInfoSimple*> (dTorKey.iUid);
|
sl@0
|
170 |
test(instanceInfo->ImplementationUid()==implUid);
|
sl@0
|
171 |
|
sl@0
|
172 |
REComSession::DestroyedImplementation(dTorKey);
|
sl@0
|
173 |
|
sl@0
|
174 |
delete dllPtr;
|
sl@0
|
175 |
dllPtr=0;
|
sl@0
|
176 |
|
sl@0
|
177 |
return KErrNone;
|
sl@0
|
178 |
}
|
sl@0
|
179 |
|
sl@0
|
180 |
//The test code for listing implementation of an interface Uid.
|
sl@0
|
181 |
//The test also verify all the implementations in the list by
|
sl@0
|
182 |
//checking all the implementation Uid and their version.
|
sl@0
|
183 |
void RFinalCloseTest::ListImplementation_TestL()
|
sl@0
|
184 |
{
|
sl@0
|
185 |
/**
|
sl@0
|
186 |
Some Plugin in Z that can be used for testing purposes
|
sl@0
|
187 |
Interface UID DLL UID Implementation UID Version DllFile
|
sl@0
|
188 |
-------------------------------------------------------------------
|
sl@0
|
189 |
0x10009DC0 0x10009DB1 0x10009DC3 1 Z:\\..\\EComExample.dll old_version
|
sl@0
|
190 |
0x10009DB1 0x10009DC4 1 Z:\\..\\EComExample.dll old_version
|
sl@0
|
191 |
0x10009DB3 0x10009DC3 2 Z:\\..\\EComExample2.dll =
|
sl@0
|
192 |
0x10009DB3 0x10009DC4 2 Z:\\..\\EComExample2.dll =
|
sl@0
|
193 |
0x101F8477 0x101F8478 1 Z:\\..\\EComExample3.dll =
|
sl@0
|
194 |
0x101F8479 0x101F847A 1 Z:\\..\\EComExample4.dll =
|
sl@0
|
195 |
0x10009DB2 0x10009DC5 1 Z:\\..\\Suidical.dll =
|
sl@0
|
196 |
|
sl@0
|
197 |
*/
|
sl@0
|
198 |
TUid interfaceUid={0x10009DC0};
|
sl@0
|
199 |
RImplInfoPtrArray implArray;
|
sl@0
|
200 |
|
sl@0
|
201 |
//Array of all the expected implementation Uid;
|
sl@0
|
202 |
RArray<TInt> expectedUidArray;
|
sl@0
|
203 |
expectedUidArray.Append(0x10009DC3);
|
sl@0
|
204 |
expectedUidArray.Append(0x10009DC4);
|
sl@0
|
205 |
expectedUidArray.Append(0x101F8478);
|
sl@0
|
206 |
expectedUidArray.Append(0x101F847A);
|
sl@0
|
207 |
expectedUidArray.Append(0x10009DC5);
|
sl@0
|
208 |
|
sl@0
|
209 |
REComSession::ListImplementationsL(interfaceUid,implArray);
|
sl@0
|
210 |
|
sl@0
|
211 |
//Expected number of implementations retured=5
|
sl@0
|
212 |
//This line has been removed as it is not safe to always assume there will be
|
sl@0
|
213 |
//a fixed number of implementations based on an the interface 0x10009DC0.
|
sl@0
|
214 |
//test(implArray.Count()==5);
|
sl@0
|
215 |
|
sl@0
|
216 |
|
sl@0
|
217 |
//Check that the implementation uid returned matched the specs above
|
sl@0
|
218 |
for (TInt i=0;i<implArray.Count();i++)
|
sl@0
|
219 |
{
|
sl@0
|
220 |
TUid implUid=implArray[i]->ImplementationUid();
|
sl@0
|
221 |
if (expectedUidArray.Find(implUid.iUid)!=KErrNotFound)
|
sl@0
|
222 |
{
|
sl@0
|
223 |
//check for the latest version for 10009DC3 & 10009DC4
|
sl@0
|
224 |
if (implUid.iUid==0x10009DC3 || implUid.iUid==0x10009DC4)
|
sl@0
|
225 |
test(implArray[i]->Version()==2);
|
sl@0
|
226 |
//all the other implementations have version 1
|
sl@0
|
227 |
else
|
sl@0
|
228 |
test(implArray[i]->Version()==1);
|
sl@0
|
229 |
}
|
sl@0
|
230 |
}
|
sl@0
|
231 |
expectedUidArray.Reset();
|
sl@0
|
232 |
expectedUidArray.Close();
|
sl@0
|
233 |
implArray.ResetAndDestroy();
|
sl@0
|
234 |
}
|
sl@0
|
235 |
|
sl@0
|
236 |
/**
|
sl@0
|
237 |
The test code for testing the proper use of ListImplementationsL where
|
sl@0
|
238 |
after calling that function we call REComSession::FinalClose()
|
sl@0
|
239 |
|
sl@0
|
240 |
@SYMTestCaseID SYSLIB-ECOM-CT-0761
|
sl@0
|
241 |
@SYMTestCaseDesc Tests for proper listing of implementation of an interface UID
|
sl@0
|
242 |
@SYMTestPriority High
|
sl@0
|
243 |
@SYMTestActions Call up REComSession::FinalClose after ListImplementation_TestL
|
sl@0
|
244 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
245 |
@SYMREQ REQ0000
|
sl@0
|
246 |
*/
|
sl@0
|
247 |
TInt RFinalCloseTest::ListImpl_With_FinalCloseL()
|
sl@0
|
248 |
{
|
sl@0
|
249 |
__UHEAP_MARK;
|
sl@0
|
250 |
|
sl@0
|
251 |
ListImplementation_TestL();
|
sl@0
|
252 |
|
sl@0
|
253 |
REComSession::FinalClose();
|
sl@0
|
254 |
|
sl@0
|
255 |
__UHEAP_MARKEND;
|
sl@0
|
256 |
|
sl@0
|
257 |
return KErrNone;
|
sl@0
|
258 |
}
|
sl@0
|
259 |
|
sl@0
|
260 |
/**
|
sl@0
|
261 |
The test code for testing the improper use of ListImplementationsL where
|
sl@0
|
262 |
after the call, we never invoke REComSession::FinalClose().This will
|
sl@0
|
263 |
result in some memory leak panic.
|
sl@0
|
264 |
|
sl@0
|
265 |
@SYMTestCaseID SYSLIB-ECOM-CT-0762
|
sl@0
|
266 |
@SYMTestCaseDesc Tests for proper listing of implementation of an interface UID
|
sl@0
|
267 |
@SYMTestPriority High
|
sl@0
|
268 |
@SYMTestActions Call to REComSession::FinalClose is omitted to show memory leak panic
|
sl@0
|
269 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
270 |
@SYMREQ REQ0000
|
sl@0
|
271 |
*/
|
sl@0
|
272 |
TInt RFinalCloseTest::ListImpl_Without_FinalClose(TAny*)
|
sl@0
|
273 |
{
|
sl@0
|
274 |
|
sl@0
|
275 |
__UHEAP_MARK;
|
sl@0
|
276 |
|
sl@0
|
277 |
CTrapCleanup* threadcleanup = CTrapCleanup::New();
|
sl@0
|
278 |
TRAPD(err,ListImplementation_TestL());
|
sl@0
|
279 |
test(err==KErrNone);
|
sl@0
|
280 |
|
sl@0
|
281 |
//This FinalClose() is purposely omitted for testing the PANIC
|
sl@0
|
282 |
//REComSession::FinalClose();
|
sl@0
|
283 |
|
sl@0
|
284 |
delete threadcleanup;
|
sl@0
|
285 |
__UHEAP_MARKEND;
|
sl@0
|
286 |
return KErrNone;
|
sl@0
|
287 |
}
|
sl@0
|
288 |
/**
|
sl@0
|
289 |
The test code for testing the implementation creation and deletion
|
sl@0
|
290 |
where we create two different implementation using two different plugins
|
sl@0
|
291 |
destroy them and call FinalClose() to show there is no problem and memory leak
|
sl@0
|
292 |
|
sl@0
|
293 |
@SYMTestCaseID SYSLIB-ECOM-CT-0763
|
sl@0
|
294 |
@SYMTestCaseDesc Tests for proper creation and deletion of implementation using two different plugins
|
sl@0
|
295 |
@SYMTestPriority High
|
sl@0
|
296 |
@SYMTestActions Create the implementation with a call to REComSession::CreateImplementationL twice with different UIDs
|
sl@0
|
297 |
Signal the destruction of an interface implementation to ECOM with a call to REComSession::DestroyedImplementation
|
sl@0
|
298 |
Call up REComSession::FinalClose
|
sl@0
|
299 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
300 |
@SYMREQ REQ0000
|
sl@0
|
301 |
*/
|
sl@0
|
302 |
void RFinalCloseTest::Create_Destroy2_With_FinalCloseL()
|
sl@0
|
303 |
{
|
sl@0
|
304 |
__UHEAP_MARK;
|
sl@0
|
305 |
|
sl@0
|
306 |
TUid implUid1={0x10009DC3};
|
sl@0
|
307 |
TUid implUid2={0x101F847A};
|
sl@0
|
308 |
TUid dTorKey1;
|
sl@0
|
309 |
TUid dTorKey2;
|
sl@0
|
310 |
// Set up some empty initialisation parameters
|
sl@0
|
311 |
CExampleInterface::TExampleInterfaceInitParams initParams;
|
sl@0
|
312 |
initParams.integer = 0;
|
sl@0
|
313 |
initParams.descriptor = NULL;
|
sl@0
|
314 |
|
sl@0
|
315 |
//Creating implementation 1
|
sl@0
|
316 |
CExampleInterface* impl1 = REINTERPRET_CAST(CExampleInterface*,
|
sl@0
|
317 |
REComSession::CreateImplementationL(implUid1,dTorKey1,&initParams));
|
sl@0
|
318 |
test(impl1->ImplId()==implUid1);
|
sl@0
|
319 |
|
sl@0
|
320 |
//Creating implementation 2
|
sl@0
|
321 |
CExampleInterface* impl2 = REINTERPRET_CAST(CExampleInterface*,
|
sl@0
|
322 |
REComSession::CreateImplementationL(implUid2,dTorKey2,&initParams));
|
sl@0
|
323 |
test(impl2->ImplId()==implUid2);
|
sl@0
|
324 |
|
sl@0
|
325 |
//Destroy implementation 2
|
sl@0
|
326 |
REComSession::DestroyedImplementation(dTorKey2);
|
sl@0
|
327 |
|
sl@0
|
328 |
delete impl2;
|
sl@0
|
329 |
impl2=0;
|
sl@0
|
330 |
|
sl@0
|
331 |
//Now Destroy implementation 1
|
sl@0
|
332 |
REComSession::DestroyedImplementation(dTorKey1);
|
sl@0
|
333 |
|
sl@0
|
334 |
delete impl1;
|
sl@0
|
335 |
impl1=0;
|
sl@0
|
336 |
|
sl@0
|
337 |
REComSession::FinalClose();
|
sl@0
|
338 |
|
sl@0
|
339 |
__UHEAP_MARKEND;
|
sl@0
|
340 |
|
sl@0
|
341 |
}
|
sl@0
|
342 |
|
sl@0
|
343 |
/**
|
sl@0
|
344 |
The test code for testing that REComSession::FinalClose() can be called many times
|
sl@0
|
345 |
without introducing any strange behaviour, memory leak and crash problem.
|
sl@0
|
346 |
|
sl@0
|
347 |
@SYMTestCaseID SYSLIB-ECOM-CT-0764
|
sl@0
|
348 |
@SYMTestCaseDesc Tests to show that FinalClose() can be called many times with no unknown consequence.
|
sl@0
|
349 |
@SYMTestPriority High
|
sl@0
|
350 |
@SYMTestActions Create the implementation with some empty initialisation parameters
|
sl@0
|
351 |
Call up REComSession::FinalClose twice before destroying the implementation and once after the deletion
|
sl@0
|
352 |
Check for any strange behaviour, memory leak and crash problem.
|
sl@0
|
353 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
354 |
@SYMREQ REQ0000
|
sl@0
|
355 |
*/
|
sl@0
|
356 |
void RFinalCloseTest::Create_Destroy3_With_FinalCloseL()
|
sl@0
|
357 |
{
|
sl@0
|
358 |
__UHEAP_MARK;
|
sl@0
|
359 |
TUid implUid1={0x10009DC3};
|
sl@0
|
360 |
TUid dTorKey1;
|
sl@0
|
361 |
// Set up some empty initialisation parameters
|
sl@0
|
362 |
CExampleInterface::TExampleInterfaceInitParams initParams;
|
sl@0
|
363 |
initParams.integer = 0;
|
sl@0
|
364 |
initParams.descriptor = NULL;
|
sl@0
|
365 |
|
sl@0
|
366 |
//Creating implementation 1
|
sl@0
|
367 |
CExampleInterface* impl1 = REINTERPRET_CAST(CExampleInterface*,
|
sl@0
|
368 |
REComSession::CreateImplementationL(implUid1,dTorKey1,&initParams));
|
sl@0
|
369 |
test(impl1->ImplId()==implUid1);
|
sl@0
|
370 |
|
sl@0
|
371 |
//Called FinalClose() twice
|
sl@0
|
372 |
REComSession::FinalClose();
|
sl@0
|
373 |
REComSession::FinalClose();
|
sl@0
|
374 |
|
sl@0
|
375 |
REComSession::DestroyedImplementation(dTorKey1);
|
sl@0
|
376 |
delete impl1;
|
sl@0
|
377 |
|
sl@0
|
378 |
REComSession::FinalClose();
|
sl@0
|
379 |
|
sl@0
|
380 |
__UHEAP_MARKEND;
|
sl@0
|
381 |
}
|
sl@0
|
382 |
|
sl@0
|
383 |
/**
|
sl@0
|
384 |
The test code for testing the functionality of REComSession::FinalClose()
|
sl@0
|
385 |
without introducing any strange behaviour,memory leak and crash problem
|
sl@0
|
386 |
|
sl@0
|
387 |
@SYMTestCaseID SYSLIB-ECOM-CT-0765
|
sl@0
|
388 |
@SYMTestCaseDesc Tests for the REComSession::FinalClose() function
|
sl@0
|
389 |
@SYMTestPriority High
|
sl@0
|
390 |
@SYMTestActions Open and close single connection to the the ECom server.
|
sl@0
|
391 |
Call FinalClose, to check for any strange behaviour,memory leak and crash problem
|
sl@0
|
392 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
393 |
@SYMREQ REQ0000
|
sl@0
|
394 |
*/
|
sl@0
|
395 |
void RFinalCloseTest::Create_Destroy4_With_FinalCloseL()
|
sl@0
|
396 |
{
|
sl@0
|
397 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0765 "));
|
sl@0
|
398 |
__UHEAP_MARK;
|
sl@0
|
399 |
|
sl@0
|
400 |
REComSession& ecomsession = ecomsession.OpenL();
|
sl@0
|
401 |
|
sl@0
|
402 |
ecomsession.Close();
|
sl@0
|
403 |
|
sl@0
|
404 |
REComSession::FinalClose();
|
sl@0
|
405 |
|
sl@0
|
406 |
__UHEAP_MARKEND;
|
sl@0
|
407 |
}
|
sl@0
|
408 |
/**
|
sl@0
|
409 |
The test code for testing the functionality of REComSession::FinalClose()
|
sl@0
|
410 |
without introducing any strange behaviour,memory leak and crash problem
|
sl@0
|
411 |
|
sl@0
|
412 |
@SYMTestCaseID SYSLIB-ECOM-CT-0766
|
sl@0
|
413 |
@SYMTestCaseDesc Tests for the REComSession::FinalClose() function
|
sl@0
|
414 |
@SYMTestPriority High
|
sl@0
|
415 |
@SYMTestActions Call FinalClose() function,to check for any memory leak and crash problem
|
sl@0
|
416 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
417 |
@SYMREQ REQ0000
|
sl@0
|
418 |
*/
|
sl@0
|
419 |
void RFinalCloseTest::FinalClose()
|
sl@0
|
420 |
{
|
sl@0
|
421 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0766 "));
|
sl@0
|
422 |
__UHEAP_MARK;
|
sl@0
|
423 |
|
sl@0
|
424 |
REComSession::FinalClose();
|
sl@0
|
425 |
|
sl@0
|
426 |
__UHEAP_MARKEND;
|
sl@0
|
427 |
}
|
sl@0
|
428 |
|
sl@0
|
429 |
LOCAL_C void NonConstructL_Create_Destroy_helper()
|
sl@0
|
430 |
{
|
sl@0
|
431 |
REComSession session;
|
sl@0
|
432 |
}
|
sl@0
|
433 |
|
sl@0
|
434 |
/**
|
sl@0
|
435 |
@SYMTestCaseID SYSLIB-ECOM-CT-0767
|
sl@0
|
436 |
@SYMTestCaseDesc Tests for the REComSession::FinalClose() function
|
sl@0
|
437 |
@SYMTestPriority High
|
sl@0
|
438 |
@SYMTestActions Open and close connection to ECOM server
|
sl@0
|
439 |
Check for any memory leak and crash problem
|
sl@0
|
440 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
441 |
@SYMREQ REQ0000
|
sl@0
|
442 |
*/
|
sl@0
|
443 |
void RFinalCloseTest::NonConstructL_Create_Destroy()
|
sl@0
|
444 |
{
|
sl@0
|
445 |
__UHEAP_MARK;
|
sl@0
|
446 |
|
sl@0
|
447 |
// Test 1
|
sl@0
|
448 |
::NonConstructL_Create_Destroy_helper();
|
sl@0
|
449 |
|
sl@0
|
450 |
// Test 2
|
sl@0
|
451 |
REComSession* ptr = new REComSession;
|
sl@0
|
452 |
delete ptr;
|
sl@0
|
453 |
|
sl@0
|
454 |
__UHEAP_MARKEND;
|
sl@0
|
455 |
}
|
sl@0
|
456 |
|
sl@0
|
457 |
/**
|
sl@0
|
458 |
The test code is used for capturing the PANIC that occurs as a result of not
|
sl@0
|
459 |
calling REComSession::FinalClose() when using ECOM plugins.
|
sl@0
|
460 |
|
sl@0
|
461 |
@SYMTestCaseID SYSLIB-ECOM-CT-0768
|
sl@0
|
462 |
@SYMTestCaseDesc Tests for PANIC when REComSession::FinalClose() is called using ECOM plugins
|
sl@0
|
463 |
@SYMTestPriority High
|
sl@0
|
464 |
@SYMTestActions Check for memory leak panic
|
sl@0
|
465 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
466 |
@SYMREQ REQ0000
|
sl@0
|
467 |
*/
|
sl@0
|
468 |
void RFinalCloseTest::ThreadPanicTest(const TDesC& aName,TThreadFunction aFunction)
|
sl@0
|
469 |
{
|
sl@0
|
470 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0768 "));
|
sl@0
|
471 |
test.Next(aName);
|
sl@0
|
472 |
TRequestStatus threadStatus;
|
sl@0
|
473 |
RThread thread;
|
sl@0
|
474 |
TBool jit;
|
sl@0
|
475 |
jit=User::JustInTime();
|
sl@0
|
476 |
User::SetJustInTime(EFalse);
|
sl@0
|
477 |
|
sl@0
|
478 |
TInt err=thread.Create(aName,aFunction,KDefaultStackSize*8,KMinHeapSize,0x100000,0);
|
sl@0
|
479 |
test(err==KErrNone);
|
sl@0
|
480 |
thread.Logon(threadStatus) ;
|
sl@0
|
481 |
thread.Resume();
|
sl@0
|
482 |
|
sl@0
|
483 |
User::WaitForRequest(threadStatus);
|
sl@0
|
484 |
|
sl@0
|
485 |
//Now check why the thread Exit
|
sl@0
|
486 |
|
sl@0
|
487 |
test(thread.ExitType()==EExitPanic);
|
sl@0
|
488 |
test(thread.ExitReason()==0);
|
sl@0
|
489 |
//A memory leak will have the exit category of form ALLOC:xxxxxx
|
sl@0
|
490 |
//test.Printf(_L("Exit xcat: %S"), thread.ExitCategory().Left(6));
|
sl@0
|
491 |
test(thread.ExitCategory().Left(6).CompareF(_L("ALLOC:"))==0);
|
sl@0
|
492 |
thread.Close();
|
sl@0
|
493 |
User::SetJustInTime(jit);
|
sl@0
|
494 |
}
|
sl@0
|
495 |
|
sl@0
|
496 |
/**
|
sl@0
|
497 |
Copies the Plugins to specific folder for testing purpose
|
sl@0
|
498 |
*/
|
sl@0
|
499 |
LOCAL_C void CopyPlugins()
|
sl@0
|
500 |
{
|
sl@0
|
501 |
// Copy the dlls and .rsc files on to RAM
|
sl@0
|
502 |
TRAPD(err, EComTestUtils::FileManCopyFileL(KEComExDllOnZ, KEComExDllOnC));
|
sl@0
|
503 |
test(err==KErrNone);
|
sl@0
|
504 |
|
sl@0
|
505 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComRscFileOnZ, KEComRscFileOnC));
|
sl@0
|
506 |
test(err==KErrNone);
|
sl@0
|
507 |
|
sl@0
|
508 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComExampleDllOnZ, KEComExampleDllOnC));
|
sl@0
|
509 |
test(err==KErrNone);
|
sl@0
|
510 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComExample2DllOnZ, KEComExample2DllOnC));
|
sl@0
|
511 |
test(err==KErrNone);
|
sl@0
|
512 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComExample3DllOnZ, KEComExample3DllOnC));
|
sl@0
|
513 |
test(err==KErrNone);
|
sl@0
|
514 |
|
sl@0
|
515 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComExampleRscOnZ, KEComExampleRscOnC));
|
sl@0
|
516 |
test(err==KErrNone);
|
sl@0
|
517 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComExample2RscOnZ, KEComExample2RscOnC));
|
sl@0
|
518 |
test(err==KErrNone);
|
sl@0
|
519 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComExample3RscOnZ, KEComExample3RscOnC));
|
sl@0
|
520 |
test(err==KErrNone);
|
sl@0
|
521 |
}
|
sl@0
|
522 |
|
sl@0
|
523 |
// Deleting plugin from the RAM for cleanup purpose
|
sl@0
|
524 |
inline LOCAL_C void DeleteTestPlugin()
|
sl@0
|
525 |
{
|
sl@0
|
526 |
TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComExDllOnC));
|
sl@0
|
527 |
TRAP(err, EComTestUtils::FileManDeleteFileL(KEComRscFileOnC));
|
sl@0
|
528 |
TRAP(err, EComTestUtils::FileManDeleteFileL(KEComExampleDllOnC));
|
sl@0
|
529 |
TRAP(err, EComTestUtils::FileManDeleteFileL(KEComExample2DllOnC));
|
sl@0
|
530 |
TRAP(err, EComTestUtils::FileManDeleteFileL(KEComExample3DllOnC));
|
sl@0
|
531 |
TRAP(err, EComTestUtils::FileManDeleteFileL(KEComExampleRscOnC));
|
sl@0
|
532 |
TRAP(err, EComTestUtils::FileManDeleteFileL(KEComExample2RscOnC));
|
sl@0
|
533 |
TRAP(err, EComTestUtils::FileManDeleteFileL(KEComExample3RscOnC));
|
sl@0
|
534 |
}
|
sl@0
|
535 |
|
sl@0
|
536 |
LOCAL_C void RunTestL()
|
sl@0
|
537 |
{
|
sl@0
|
538 |
__UHEAP_MARK;
|
sl@0
|
539 |
//Basic ECOM test
|
sl@0
|
540 |
test.Next(_L("FinalClose"));
|
sl@0
|
541 |
RFinalCloseTest::FinalClose();
|
sl@0
|
542 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0759 Create_Destroy_With_FinalCloseL "));
|
sl@0
|
543 |
RFinalCloseTest::Create_Destroy_With_FinalCloseL();
|
sl@0
|
544 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0761 ListImpl_With_FinalCloseL "));
|
sl@0
|
545 |
RFinalCloseTest::ListImpl_With_FinalCloseL();
|
sl@0
|
546 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0763 Create_Destroy2_With_FinalCloseL "));
|
sl@0
|
547 |
RFinalCloseTest::Create_Destroy2_With_FinalCloseL();
|
sl@0
|
548 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0764 Create_Destroy3_With_FinalCloseL "));
|
sl@0
|
549 |
RFinalCloseTest::Create_Destroy3_With_FinalCloseL();
|
sl@0
|
550 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0767 NonConstructL_Create_Destroy "));
|
sl@0
|
551 |
RFinalCloseTest::NonConstructL_Create_Destroy();
|
sl@0
|
552 |
|
sl@0
|
553 |
//ECOM FinalClose() Panic Test
|
sl@0
|
554 |
#if defined(_DEBUG)
|
sl@0
|
555 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0760 "));
|
sl@0
|
556 |
RFinalCloseTest::ThreadPanicTest(_L("Create Destroy Panic Testing"),RFinalCloseTest::Create_Destroy_Without_FinalClose);
|
sl@0
|
557 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0762 "));
|
sl@0
|
558 |
RFinalCloseTest::ThreadPanicTest(_L("List Implementation Panic Testing"),RFinalCloseTest::ListImpl_Without_FinalClose);
|
sl@0
|
559 |
#endif
|
sl@0
|
560 |
|
sl@0
|
561 |
__UHEAP_MARKEND;
|
sl@0
|
562 |
}
|
sl@0
|
563 |
|
sl@0
|
564 |
GLDEF_C TInt E32Main()
|
sl@0
|
565 |
{
|
sl@0
|
566 |
__UHEAP_MARK;
|
sl@0
|
567 |
|
sl@0
|
568 |
test.Title();
|
sl@0
|
569 |
test.Start(_L("Final Close tests."));
|
sl@0
|
570 |
|
sl@0
|
571 |
CopyPlugins();
|
sl@0
|
572 |
|
sl@0
|
573 |
CTrapCleanup* cleanup = CTrapCleanup::New();
|
sl@0
|
574 |
CActiveScheduler* scheduler = new(ELeave)CActiveScheduler;
|
sl@0
|
575 |
CActiveScheduler::Install(scheduler);
|
sl@0
|
576 |
|
sl@0
|
577 |
TRAPD(err,RunTestL());
|
sl@0
|
578 |
test(err==KErrNone);
|
sl@0
|
579 |
|
sl@0
|
580 |
// Cleanup files. If the cleanup fails that is no problem,
|
sl@0
|
581 |
// as any subsequent tests will replace them. The only downside
|
sl@0
|
582 |
// would be the disk not being tidied
|
sl@0
|
583 |
DeleteTestPlugin();
|
sl@0
|
584 |
|
sl@0
|
585 |
delete scheduler;
|
sl@0
|
586 |
delete cleanup;
|
sl@0
|
587 |
|
sl@0
|
588 |
test.End();
|
sl@0
|
589 |
test.Close();
|
sl@0
|
590 |
|
sl@0
|
591 |
__UHEAP_MARKEND;
|
sl@0
|
592 |
return(0);
|
sl@0
|
593 |
}
|