sl@0
|
1 |
// Copyright (c) 1997-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 |
// CEComServer and CEComSession OOM tests
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <e32test.h>
|
sl@0
|
19 |
#include <e32math.h>
|
sl@0
|
20 |
#include <bautils.h>
|
sl@0
|
21 |
#include "EComServerStart.h"
|
sl@0
|
22 |
#include "EComServer.h"
|
sl@0
|
23 |
#include "EComServerSession.h"
|
sl@0
|
24 |
#include "EcomTestUtils.h"
|
sl@0
|
25 |
#include "EcomTestIniFileUtils.h"
|
sl@0
|
26 |
#include "ServerStartupManager.h"
|
sl@0
|
27 |
#include "Discoverer.h"
|
sl@0
|
28 |
#include "DiscovererObserver.h"
|
sl@0
|
29 |
|
sl@0
|
30 |
static RTest TheTest(_L("ECOM Server - OOM test"));
|
sl@0
|
31 |
const TUid KCExampleInterfaceUid = {0x10009DC0};
|
sl@0
|
32 |
static RFs TheFs;
|
sl@0
|
33 |
|
sl@0
|
34 |
static void KillEComServerL()
|
sl@0
|
35 |
{
|
sl@0
|
36 |
//Need to ensure that the EComServer process is killed before even starting this test by using
|
sl@0
|
37 |
//the EComTestUtils library
|
sl@0
|
38 |
_LIT(KEComServerProcessName,"ecomserver");
|
sl@0
|
39 |
TRAPD(error, EComTestUtils::KillProcessL(KEComServerProcessName));
|
sl@0
|
40 |
error=error;
|
sl@0
|
41 |
}
|
sl@0
|
42 |
|
sl@0
|
43 |
//
|
sl@0
|
44 |
//
|
sl@0
|
45 |
//Test macroes and functions
|
sl@0
|
46 |
//
|
sl@0
|
47 |
//
|
sl@0
|
48 |
|
sl@0
|
49 |
static void Check(TInt aValue, TInt aLine)
|
sl@0
|
50 |
{
|
sl@0
|
51 |
if(!aValue)
|
sl@0
|
52 |
{
|
sl@0
|
53 |
TheTest(EFalse, aLine);
|
sl@0
|
54 |
}
|
sl@0
|
55 |
}
|
sl@0
|
56 |
static void Check(TInt aValue, TInt aExpected, TInt aLine)
|
sl@0
|
57 |
{
|
sl@0
|
58 |
if(aValue != aExpected)
|
sl@0
|
59 |
{
|
sl@0
|
60 |
RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
|
sl@0
|
61 |
TheTest(EFalse, aLine);
|
sl@0
|
62 |
}
|
sl@0
|
63 |
}
|
sl@0
|
64 |
#define TEST(arg) ::Check((arg), __LINE__)
|
sl@0
|
65 |
#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
|
sl@0
|
66 |
|
sl@0
|
67 |
//
|
sl@0
|
68 |
//
|
sl@0
|
69 |
|
sl@0
|
70 |
void NewLC_OOMTestL()
|
sl@0
|
71 |
{
|
sl@0
|
72 |
TInt processHandlesS = 0;
|
sl@0
|
73 |
TInt threadHandlesS = 0;
|
sl@0
|
74 |
TInt processHandlesE = 0;
|
sl@0
|
75 |
TInt threadHandlesE = 0;
|
sl@0
|
76 |
RThread().HandleCount(processHandlesS, threadHandlesS);
|
sl@0
|
77 |
for(TInt count=1;;count +=100)
|
sl@0
|
78 |
{
|
sl@0
|
79 |
// Setting Heap failure for OOM test
|
sl@0
|
80 |
__UHEAP_SETFAIL(RHeap::EDeterministic, count);
|
sl@0
|
81 |
__UHEAP_MARK;
|
sl@0
|
82 |
|
sl@0
|
83 |
CEComServer* ecomServer = NULL;
|
sl@0
|
84 |
TRAPD(err, ecomServer = CEComServer::NewLC();
|
sl@0
|
85 |
CleanupStack::PopAndDestroy(ecomServer));
|
sl@0
|
86 |
if(err == KErrNoMemory)
|
sl@0
|
87 |
{
|
sl@0
|
88 |
__UHEAP_MARKEND;
|
sl@0
|
89 |
}
|
sl@0
|
90 |
else if(err == KErrNone)
|
sl@0
|
91 |
{
|
sl@0
|
92 |
__UHEAP_MARKEND;
|
sl@0
|
93 |
RDebug::Print(_L("The test succeeded at heap failure rate=%d.\n"), count);
|
sl@0
|
94 |
break;
|
sl@0
|
95 |
}
|
sl@0
|
96 |
else
|
sl@0
|
97 |
{
|
sl@0
|
98 |
__UHEAP_MARKEND;
|
sl@0
|
99 |
TEST2(err, KErrNone);
|
sl@0
|
100 |
}
|
sl@0
|
101 |
__UHEAP_RESET;
|
sl@0
|
102 |
}
|
sl@0
|
103 |
__UHEAP_RESET;
|
sl@0
|
104 |
RThread().HandleCount(processHandlesE, threadHandlesE);
|
sl@0
|
105 |
TEST(processHandlesS == processHandlesE);
|
sl@0
|
106 |
TEST(threadHandlesS == threadHandlesE);
|
sl@0
|
107 |
}
|
sl@0
|
108 |
|
sl@0
|
109 |
void ListImplementations_OOMTestL()
|
sl@0
|
110 |
{
|
sl@0
|
111 |
TInt processHandlesS = 0;
|
sl@0
|
112 |
TInt threadHandlesS = 0;
|
sl@0
|
113 |
TInt processHandlesE = 0;
|
sl@0
|
114 |
TInt threadHandlesE = 0;
|
sl@0
|
115 |
RThread().HandleCount(processHandlesS, threadHandlesS);
|
sl@0
|
116 |
|
sl@0
|
117 |
|
sl@0
|
118 |
for(TInt count=1;;++count)
|
sl@0
|
119 |
{
|
sl@0
|
120 |
CEComServer* ecomServer = CEComServer::NewLC();
|
sl@0
|
121 |
// Setting Heap failure for OOM test
|
sl@0
|
122 |
__UHEAP_SETFAIL(RHeap::EDeterministic, count);
|
sl@0
|
123 |
__UHEAP_MARK;
|
sl@0
|
124 |
|
sl@0
|
125 |
TClientRequest clientReq;
|
sl@0
|
126 |
RArray<TUid> extendedInterfaces;
|
sl@0
|
127 |
CleanupClosePushL(extendedInterfaces);
|
sl@0
|
128 |
RImplInfoArray* ifArray=NULL;
|
sl@0
|
129 |
TRAPD(err, ifArray = ecomServer->ListImplementationsL(KCExampleInterfaceUid,extendedInterfaces,clientReq));
|
sl@0
|
130 |
CleanupStack::PopAndDestroy(&extendedInterfaces);
|
sl@0
|
131 |
if (ifArray!=NULL)
|
sl@0
|
132 |
{
|
sl@0
|
133 |
ifArray->Close();
|
sl@0
|
134 |
delete ifArray;
|
sl@0
|
135 |
}
|
sl@0
|
136 |
if(err == KErrNoMemory)
|
sl@0
|
137 |
{
|
sl@0
|
138 |
CleanupStack::PopAndDestroy(ecomServer);
|
sl@0
|
139 |
__UHEAP_MARKEND;
|
sl@0
|
140 |
}
|
sl@0
|
141 |
else if(err == KErrNone)
|
sl@0
|
142 |
{
|
sl@0
|
143 |
CleanupStack::PopAndDestroy(ecomServer);
|
sl@0
|
144 |
__UHEAP_MARKEND;
|
sl@0
|
145 |
//implInfoArray should not be deleted! The caller does not take the ownership.
|
sl@0
|
146 |
RDebug::Print(_L("The test succeeded at heap failure rate=%d.\n"), count);
|
sl@0
|
147 |
break;
|
sl@0
|
148 |
}
|
sl@0
|
149 |
else
|
sl@0
|
150 |
{
|
sl@0
|
151 |
CleanupStack::PopAndDestroy(ecomServer);
|
sl@0
|
152 |
__UHEAP_MARKEND;
|
sl@0
|
153 |
TEST2(err, KErrNone);
|
sl@0
|
154 |
}
|
sl@0
|
155 |
__UHEAP_RESET;
|
sl@0
|
156 |
}
|
sl@0
|
157 |
__UHEAP_RESET;
|
sl@0
|
158 |
//CleanupStack::PopAndDestroy(ecomServer);
|
sl@0
|
159 |
RThread().HandleCount(processHandlesE, threadHandlesE);
|
sl@0
|
160 |
TEST(processHandlesS == processHandlesE);
|
sl@0
|
161 |
TEST(threadHandlesS == threadHandlesE);
|
sl@0
|
162 |
}
|
sl@0
|
163 |
|
sl@0
|
164 |
/**
|
sl@0
|
165 |
@SYMTestCaseID SYSLIB-ECOM-CT-3714
|
sl@0
|
166 |
@SYMTestCaseDesc Tests CEComServer::ListImplementationsL with customer resolver.
|
sl@0
|
167 |
@SYMTestPriority High
|
sl@0
|
168 |
@SYMTestActions Calls ListImplementationsL(TUid,TUid,const RExtendedInterfacesArray&,const TClientRequest&)
|
sl@0
|
169 |
with customer resolver.
|
sl@0
|
170 |
@SYMTestExpectedResults No OOM errors.
|
sl@0
|
171 |
@SYMDEF DEF111196
|
sl@0
|
172 |
*/
|
sl@0
|
173 |
void ListImplementations_OOMTest1L()
|
sl@0
|
174 |
{
|
sl@0
|
175 |
TInt processHandlesS = 0;
|
sl@0
|
176 |
TInt threadHandlesS = 0;
|
sl@0
|
177 |
TInt processHandlesE = 0;
|
sl@0
|
178 |
TInt threadHandlesE = 0;
|
sl@0
|
179 |
RThread().HandleCount(processHandlesS, threadHandlesS);
|
sl@0
|
180 |
|
sl@0
|
181 |
|
sl@0
|
182 |
for(TInt count=1;;++count)
|
sl@0
|
183 |
{
|
sl@0
|
184 |
CEComServer* ecomServer = CEComServer::NewLC();
|
sl@0
|
185 |
// Setting Heap failure for OOM test
|
sl@0
|
186 |
__UHEAP_SETFAIL(RHeap::EDeterministic, count);
|
sl@0
|
187 |
__UHEAP_MARK;
|
sl@0
|
188 |
|
sl@0
|
189 |
TUid resolverUid = {0x10009DD0};
|
sl@0
|
190 |
|
sl@0
|
191 |
TClientRequest clientReq;
|
sl@0
|
192 |
RArray<TUid> extendedInterfaces;
|
sl@0
|
193 |
CleanupClosePushL(extendedInterfaces);
|
sl@0
|
194 |
RImplInfoArray* ifArray=NULL;
|
sl@0
|
195 |
|
sl@0
|
196 |
TRAPD(err, ifArray = ecomServer->ListImplementationsL(KCExampleInterfaceUid,resolverUid,extendedInterfaces,clientReq));
|
sl@0
|
197 |
CleanupStack::PopAndDestroy(&extendedInterfaces);
|
sl@0
|
198 |
if (ifArray!=NULL)
|
sl@0
|
199 |
{
|
sl@0
|
200 |
ifArray->Close();
|
sl@0
|
201 |
delete ifArray;
|
sl@0
|
202 |
}
|
sl@0
|
203 |
if(err == KErrNoMemory)
|
sl@0
|
204 |
{
|
sl@0
|
205 |
CleanupStack::PopAndDestroy(ecomServer);
|
sl@0
|
206 |
__UHEAP_MARKEND;
|
sl@0
|
207 |
}
|
sl@0
|
208 |
else if(err == KErrNone)
|
sl@0
|
209 |
{
|
sl@0
|
210 |
CleanupStack::PopAndDestroy(ecomServer);
|
sl@0
|
211 |
__UHEAP_MARKEND;
|
sl@0
|
212 |
//implInfoArray should not be deleted! The caller does not take the ownership.
|
sl@0
|
213 |
RDebug::Print(_L("The test succeeded at heap failure rate=%d.\n"), count);
|
sl@0
|
214 |
break;
|
sl@0
|
215 |
}
|
sl@0
|
216 |
else
|
sl@0
|
217 |
{
|
sl@0
|
218 |
CleanupStack::PopAndDestroy(ecomServer);
|
sl@0
|
219 |
__UHEAP_MARKEND;
|
sl@0
|
220 |
TEST2(err, KErrNone);
|
sl@0
|
221 |
}
|
sl@0
|
222 |
__UHEAP_RESET;
|
sl@0
|
223 |
}
|
sl@0
|
224 |
__UHEAP_RESET;
|
sl@0
|
225 |
//CleanupStack::PopAndDestroy(ecomServer);
|
sl@0
|
226 |
RThread().HandleCount(processHandlesE, threadHandlesE);
|
sl@0
|
227 |
TEST(processHandlesS == processHandlesE);
|
sl@0
|
228 |
TEST(threadHandlesS == threadHandlesE);
|
sl@0
|
229 |
}
|
sl@0
|
230 |
|
sl@0
|
231 |
void GetResolvedDllInfo_OOMTestL()
|
sl@0
|
232 |
{
|
sl@0
|
233 |
TInt processHandlesS = 0;
|
sl@0
|
234 |
TInt threadHandlesS = 0;
|
sl@0
|
235 |
TInt processHandlesE = 0;
|
sl@0
|
236 |
TInt threadHandlesE = 0;
|
sl@0
|
237 |
RThread().HandleCount(processHandlesS, threadHandlesS);
|
sl@0
|
238 |
|
sl@0
|
239 |
CEComServer* ecomServer = CEComServer::NewLC();
|
sl@0
|
240 |
TClientRequest clientReq;
|
sl@0
|
241 |
RArray<TUid> extendedInterfaces;
|
sl@0
|
242 |
CleanupClosePushL(extendedInterfaces);
|
sl@0
|
243 |
RImplInfoArray* implInfoArray = ecomServer->ListImplementationsL(KCExampleInterfaceUid,extendedInterfaces,clientReq);
|
sl@0
|
244 |
CleanupStack::PopAndDestroy(&extendedInterfaces);
|
sl@0
|
245 |
|
sl@0
|
246 |
TEST(implInfoArray->Count() > 0);
|
sl@0
|
247 |
|
sl@0
|
248 |
for(TInt count=1;;++count)
|
sl@0
|
249 |
{
|
sl@0
|
250 |
// Setting Heap failure for OOM test
|
sl@0
|
251 |
__UHEAP_SETFAIL(RHeap::EDeterministic, count);
|
sl@0
|
252 |
__UHEAP_MARK;
|
sl@0
|
253 |
|
sl@0
|
254 |
TEntry dllInfo;
|
sl@0
|
255 |
TUid dtorIdKey;
|
sl@0
|
256 |
TClientRequest clntRq;
|
sl@0
|
257 |
CImplementationInformation* info = (*implInfoArray)[0];
|
sl@0
|
258 |
TRAPD(err, ecomServer->GetResolvedDllInfoL(info->ImplementationUid(),
|
sl@0
|
259 |
dllInfo, dtorIdKey, clntRq));
|
sl@0
|
260 |
if(err == KErrNoMemory)
|
sl@0
|
261 |
{
|
sl@0
|
262 |
__UHEAP_MARKEND;
|
sl@0
|
263 |
}
|
sl@0
|
264 |
else if(err == KErrNone)
|
sl@0
|
265 |
{
|
sl@0
|
266 |
__UHEAP_MARKEND;
|
sl@0
|
267 |
RDebug::Print(_L("The test succeeded at heap failure rate=%d.\n"), count);
|
sl@0
|
268 |
break;
|
sl@0
|
269 |
}
|
sl@0
|
270 |
else
|
sl@0
|
271 |
{
|
sl@0
|
272 |
__UHEAP_MARKEND;
|
sl@0
|
273 |
TEST2(err, KErrNone);
|
sl@0
|
274 |
}
|
sl@0
|
275 |
__UHEAP_RESET;
|
sl@0
|
276 |
}
|
sl@0
|
277 |
__UHEAP_RESET;
|
sl@0
|
278 |
//implInfoArray should be deleted! The caller takes the ownership.
|
sl@0
|
279 |
if (implInfoArray!=NULL)
|
sl@0
|
280 |
{
|
sl@0
|
281 |
implInfoArray->Close();
|
sl@0
|
282 |
delete implInfoArray;
|
sl@0
|
283 |
}
|
sl@0
|
284 |
CleanupStack::PopAndDestroy(ecomServer);
|
sl@0
|
285 |
RThread().HandleCount(processHandlesE, threadHandlesE);
|
sl@0
|
286 |
TEST(processHandlesS == processHandlesE);
|
sl@0
|
287 |
TEST(threadHandlesS == threadHandlesE);
|
sl@0
|
288 |
}
|
sl@0
|
289 |
|
sl@0
|
290 |
/**
|
sl@0
|
291 |
@SYMTestCaseID SYSLIB-ECOM-CT-0177
|
sl@0
|
292 |
@SYMTestCaseDesc Check that IsSSA works when ecomsrvr has different values.
|
sl@0
|
293 |
@SYMTestPriority High
|
sl@0
|
294 |
@SYMTestActions Check that IsSSA returns ETrue when ecomsrvr ini does not exist.
|
sl@0
|
295 |
Check that IsSSA returns the value in the ecomsrvr ini file when
|
sl@0
|
296 |
the file exists.
|
sl@0
|
297 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
298 |
@SYMPREQ PREQ967
|
sl@0
|
299 |
*/
|
sl@0
|
300 |
void IsSsa_TestL()
|
sl@0
|
301 |
{
|
sl@0
|
302 |
TInt processHandlesS = 0;
|
sl@0
|
303 |
TInt threadHandlesS = 0;
|
sl@0
|
304 |
TInt processHandlesE = 0;
|
sl@0
|
305 |
TInt threadHandlesE = 0;
|
sl@0
|
306 |
RThread().HandleCount(processHandlesS, threadHandlesS);
|
sl@0
|
307 |
|
sl@0
|
308 |
TBool res;
|
sl@0
|
309 |
|
sl@0
|
310 |
TestEnableDisableSsaL(TheTest, TheFs);
|
sl@0
|
311 |
|
sl@0
|
312 |
/*****************************************************************/
|
sl@0
|
313 |
//test that IsSSA() returns ETrue when ecomsrvr.ini file does
|
sl@0
|
314 |
//not exist.
|
sl@0
|
315 |
|
sl@0
|
316 |
//enable ssa
|
sl@0
|
317 |
EnableSsa(TheTest, TheFs);
|
sl@0
|
318 |
|
sl@0
|
319 |
//test that IsSSA() returns ETrue
|
sl@0
|
320 |
CEComServer* server=CEComServer::NewLC();
|
sl@0
|
321 |
res = server->IsSSA(TheFs);
|
sl@0
|
322 |
CleanupStack::PopAndDestroy();
|
sl@0
|
323 |
ResetSsa(TheTest, TheFs);
|
sl@0
|
324 |
TEST(res);
|
sl@0
|
325 |
|
sl@0
|
326 |
/*****************************************************************/
|
sl@0
|
327 |
//test that IsSSA() returns EFalse when ecomsrvr.ini file exists.
|
sl@0
|
328 |
|
sl@0
|
329 |
//disable ssa
|
sl@0
|
330 |
DisableSsa(TheTest, TheFs);
|
sl@0
|
331 |
|
sl@0
|
332 |
//test that IsSSA() returns EFalse
|
sl@0
|
333 |
server=CEComServer::NewLC();
|
sl@0
|
334 |
res = server->IsSSA(TheFs);
|
sl@0
|
335 |
CleanupStack::PopAndDestroy();
|
sl@0
|
336 |
ResetSsa(TheTest, TheFs);
|
sl@0
|
337 |
TEST(!res);
|
sl@0
|
338 |
|
sl@0
|
339 |
RThread().HandleCount(processHandlesE, threadHandlesE);
|
sl@0
|
340 |
TEST(processHandlesS == processHandlesE);
|
sl@0
|
341 |
TEST(threadHandlesS == threadHandlesE);
|
sl@0
|
342 |
}
|
sl@0
|
343 |
|
sl@0
|
344 |
|
sl@0
|
345 |
/**
|
sl@0
|
346 |
Thread entry point for test thread.
|
sl@0
|
347 |
Kills the existing ECOM server and launches a new instance
|
sl@0
|
348 |
|
sl@0
|
349 |
*/
|
sl@0
|
350 |
TInt ServerStartThreadEntryL(TAny* /*a*/)
|
sl@0
|
351 |
{
|
sl@0
|
352 |
__UHEAP_MARK;
|
sl@0
|
353 |
|
sl@0
|
354 |
//Threshold set so that a OOM failure occur whilst constructing CEComServer::iRegistryData
|
sl@0
|
355 |
const TInt KFailThreshold = 500;
|
sl@0
|
356 |
|
sl@0
|
357 |
TInt dummy;
|
sl@0
|
358 |
TAny* ptr = NULL;
|
sl@0
|
359 |
|
sl@0
|
360 |
::KillEComServerL();
|
sl@0
|
361 |
|
sl@0
|
362 |
//Invoking OOM failure by allocating most of the heap before running the server
|
sl@0
|
363 |
RHeap heap = User::Heap();
|
sl@0
|
364 |
TInt avail = heap.Available(dummy);
|
sl@0
|
365 |
ptr = User::Alloc(avail-KFailThreshold);
|
sl@0
|
366 |
|
sl@0
|
367 |
TEST(ptr != NULL); //Check that the allocation was sucessful
|
sl@0
|
368 |
|
sl@0
|
369 |
TInt result = ServerStart();
|
sl@0
|
370 |
delete ptr;
|
sl@0
|
371 |
|
sl@0
|
372 |
__UHEAP_MARKEND;
|
sl@0
|
373 |
|
sl@0
|
374 |
return result;
|
sl@0
|
375 |
}
|
sl@0
|
376 |
|
sl@0
|
377 |
/**
|
sl@0
|
378 |
@SYMTestCaseID SYSLIB-ECOM-CT-3163
|
sl@0
|
379 |
@SYMTestCaseDesc Verify the startup behaviour of the ECOM server under OOM conditions
|
sl@0
|
380 |
@SYMTestPriority High
|
sl@0
|
381 |
@SYMTestActions Generate an OOM condition.
|
sl@0
|
382 |
Create a new thread which will launch the ECOM server.
|
sl@0
|
383 |
Wait for the thread to exit and check the thread exit type
|
sl@0
|
384 |
and reason to verify behaviour.
|
sl@0
|
385 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
386 |
@SYMDEF DEF094675
|
sl@0
|
387 |
*/
|
sl@0
|
388 |
void StartServer_OOMTest()
|
sl@0
|
389 |
{
|
sl@0
|
390 |
|
sl@0
|
391 |
_LIT(KStartThreadName,"Server Start Thread");
|
sl@0
|
392 |
|
sl@0
|
393 |
//Create a new thread to launch the ECOM server
|
sl@0
|
394 |
RThread testThread;
|
sl@0
|
395 |
testThread.Create(KStartThreadName, ServerStartThreadEntryL,
|
sl@0
|
396 |
KDefaultStackSize,KMinHeapSize,KMinHeapSize,NULL);
|
sl@0
|
397 |
TRequestStatus status;
|
sl@0
|
398 |
testThread.Logon(status);
|
sl@0
|
399 |
testThread.Resume();
|
sl@0
|
400 |
|
sl@0
|
401 |
//Wait for the thread to exit
|
sl@0
|
402 |
User::WaitForRequest(status);
|
sl@0
|
403 |
|
sl@0
|
404 |
//Obtain exit type and reason for test thread
|
sl@0
|
405 |
TExitType exitType = testThread.ExitType();
|
sl@0
|
406 |
TInt exitReason = testThread.ExitReason();
|
sl@0
|
407 |
|
sl@0
|
408 |
//close the thread handle
|
sl@0
|
409 |
testThread.Close();
|
sl@0
|
410 |
|
sl@0
|
411 |
//Verify the exit reason and exit code
|
sl@0
|
412 |
//Exit type is TExitType::EExitKill when E32Main() exit normally
|
sl@0
|
413 |
TEST(exitType == EExitKill);
|
sl@0
|
414 |
TEST(exitReason == KErrNoMemory);
|
sl@0
|
415 |
|
sl@0
|
416 |
}
|
sl@0
|
417 |
|
sl@0
|
418 |
void DoTestL()
|
sl@0
|
419 |
{
|
sl@0
|
420 |
TheTest.Start(_L("CEComServer::NewLC - OOM test"));
|
sl@0
|
421 |
::NewLC_OOMTestL();
|
sl@0
|
422 |
|
sl@0
|
423 |
TheTest.Next(_L("CEComServer::ListImplementationsL - OOM test"));
|
sl@0
|
424 |
::ListImplementations_OOMTestL();
|
sl@0
|
425 |
|
sl@0
|
426 |
TheTest.Next(_L("CEComServer::GetResolvedDllInfoL - OOM test"));
|
sl@0
|
427 |
::GetResolvedDllInfo_OOMTestL();
|
sl@0
|
428 |
|
sl@0
|
429 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0177 CEComServer::IsSsa test "));
|
sl@0
|
430 |
::IsSsa_TestL();
|
sl@0
|
431 |
|
sl@0
|
432 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3163 Server Startup Panic test "));
|
sl@0
|
433 |
::StartServer_OOMTest();
|
sl@0
|
434 |
|
sl@0
|
435 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3714 CEComServer::ListImplementationsL with customer resolver - OOM test "));
|
sl@0
|
436 |
::ListImplementations_OOMTest1L();
|
sl@0
|
437 |
|
sl@0
|
438 |
}
|
sl@0
|
439 |
|
sl@0
|
440 |
TInt E32Main()
|
sl@0
|
441 |
{
|
sl@0
|
442 |
__UHEAP_MARK;
|
sl@0
|
443 |
|
sl@0
|
444 |
::KillEComServerL();
|
sl@0
|
445 |
|
sl@0
|
446 |
CTrapCleanup* tc = CTrapCleanup::New();
|
sl@0
|
447 |
TEST(tc != NULL);
|
sl@0
|
448 |
|
sl@0
|
449 |
TEST2(TheFs.Connect(), KErrNone);
|
sl@0
|
450 |
|
sl@0
|
451 |
CActiveScheduler* activeSched = new CActiveScheduler;
|
sl@0
|
452 |
TEST(activeSched != NULL);
|
sl@0
|
453 |
CActiveScheduler::Install(activeSched);
|
sl@0
|
454 |
|
sl@0
|
455 |
TheTest.Title();
|
sl@0
|
456 |
TRAPD(err, ::DoTestL());
|
sl@0
|
457 |
TEST2(err, KErrNone);
|
sl@0
|
458 |
|
sl@0
|
459 |
ResetSsa(TheTest, TheFs);
|
sl@0
|
460 |
|
sl@0
|
461 |
TheTest.End();
|
sl@0
|
462 |
TheTest.Close();
|
sl@0
|
463 |
|
sl@0
|
464 |
delete activeSched;
|
sl@0
|
465 |
|
sl@0
|
466 |
TheFs.Close();
|
sl@0
|
467 |
|
sl@0
|
468 |
delete tc;
|
sl@0
|
469 |
|
sl@0
|
470 |
__UHEAP_MARKEND;
|
sl@0
|
471 |
|
sl@0
|
472 |
User::Heap().Check();
|
sl@0
|
473 |
return KErrNone;
|
sl@0
|
474 |
}
|