os/ossrv/lowlevellibsandfws/pluginfw/Framework/MagicServerTest/MagicServerTest.cpp
First public contribution.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // CEComServer and CEComSession OOM tests
21 #include "EComServerStart.h"
22 #include "EComServer.h"
23 #include "EComServerSession.h"
24 #include "EcomTestUtils.h"
25 #include "EcomTestIniFileUtils.h"
26 #include "ServerStartupManager.h"
27 #include "Discoverer.h"
28 #include "DiscovererObserver.h"
30 static RTest TheTest(_L("ECOM Server - OOM test"));
31 const TUid KCExampleInterfaceUid = {0x10009DC0};
34 static void KillEComServerL()
36 //Need to ensure that the EComServer process is killed before even starting this test by using
37 //the EComTestUtils library
38 _LIT(KEComServerProcessName,"ecomserver");
39 TRAPD(error, EComTestUtils::KillProcessL(KEComServerProcessName));
45 //Test macroes and functions
49 static void Check(TInt aValue, TInt aLine)
53 TheTest(EFalse, aLine);
56 static void Check(TInt aValue, TInt aExpected, TInt aLine)
58 if(aValue != aExpected)
60 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
61 TheTest(EFalse, aLine);
64 #define TEST(arg) ::Check((arg), __LINE__)
65 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
72 TInt processHandlesS = 0;
73 TInt threadHandlesS = 0;
74 TInt processHandlesE = 0;
75 TInt threadHandlesE = 0;
76 RThread().HandleCount(processHandlesS, threadHandlesS);
77 for(TInt count=1;;count +=100)
79 // Setting Heap failure for OOM test
80 __UHEAP_SETFAIL(RHeap::EDeterministic, count);
83 CEComServer* ecomServer = NULL;
84 TRAPD(err, ecomServer = CEComServer::NewLC();
85 CleanupStack::PopAndDestroy(ecomServer));
86 if(err == KErrNoMemory)
90 else if(err == KErrNone)
93 RDebug::Print(_L("The test succeeded at heap failure rate=%d.\n"), count);
104 RThread().HandleCount(processHandlesE, threadHandlesE);
105 TEST(processHandlesS == processHandlesE);
106 TEST(threadHandlesS == threadHandlesE);
109 void ListImplementations_OOMTestL()
111 TInt processHandlesS = 0;
112 TInt threadHandlesS = 0;
113 TInt processHandlesE = 0;
114 TInt threadHandlesE = 0;
115 RThread().HandleCount(processHandlesS, threadHandlesS);
118 for(TInt count=1;;++count)
120 CEComServer* ecomServer = CEComServer::NewLC();
121 // Setting Heap failure for OOM test
122 __UHEAP_SETFAIL(RHeap::EDeterministic, count);
125 TClientRequest clientReq;
126 RArray<TUid> extendedInterfaces;
127 CleanupClosePushL(extendedInterfaces);
128 RImplInfoArray* ifArray=NULL;
129 TRAPD(err, ifArray = ecomServer->ListImplementationsL(KCExampleInterfaceUid,extendedInterfaces,clientReq));
130 CleanupStack::PopAndDestroy(&extendedInterfaces);
136 if(err == KErrNoMemory)
138 CleanupStack::PopAndDestroy(ecomServer);
141 else if(err == KErrNone)
143 CleanupStack::PopAndDestroy(ecomServer);
145 //implInfoArray should not be deleted! The caller does not take the ownership.
146 RDebug::Print(_L("The test succeeded at heap failure rate=%d.\n"), count);
151 CleanupStack::PopAndDestroy(ecomServer);
153 TEST2(err, KErrNone);
158 //CleanupStack::PopAndDestroy(ecomServer);
159 RThread().HandleCount(processHandlesE, threadHandlesE);
160 TEST(processHandlesS == processHandlesE);
161 TEST(threadHandlesS == threadHandlesE);
165 @SYMTestCaseID SYSLIB-ECOM-CT-3714
166 @SYMTestCaseDesc Tests CEComServer::ListImplementationsL with customer resolver.
167 @SYMTestPriority High
168 @SYMTestActions Calls ListImplementationsL(TUid,TUid,const RExtendedInterfacesArray&,const TClientRequest&)
169 with customer resolver.
170 @SYMTestExpectedResults No OOM errors.
173 void ListImplementations_OOMTest1L()
175 TInt processHandlesS = 0;
176 TInt threadHandlesS = 0;
177 TInt processHandlesE = 0;
178 TInt threadHandlesE = 0;
179 RThread().HandleCount(processHandlesS, threadHandlesS);
182 for(TInt count=1;;++count)
184 CEComServer* ecomServer = CEComServer::NewLC();
185 // Setting Heap failure for OOM test
186 __UHEAP_SETFAIL(RHeap::EDeterministic, count);
189 TUid resolverUid = {0x10009DD0};
191 TClientRequest clientReq;
192 RArray<TUid> extendedInterfaces;
193 CleanupClosePushL(extendedInterfaces);
194 RImplInfoArray* ifArray=NULL;
196 TRAPD(err, ifArray = ecomServer->ListImplementationsL(KCExampleInterfaceUid,resolverUid,extendedInterfaces,clientReq));
197 CleanupStack::PopAndDestroy(&extendedInterfaces);
203 if(err == KErrNoMemory)
205 CleanupStack::PopAndDestroy(ecomServer);
208 else if(err == KErrNone)
210 CleanupStack::PopAndDestroy(ecomServer);
212 //implInfoArray should not be deleted! The caller does not take the ownership.
213 RDebug::Print(_L("The test succeeded at heap failure rate=%d.\n"), count);
218 CleanupStack::PopAndDestroy(ecomServer);
220 TEST2(err, KErrNone);
225 //CleanupStack::PopAndDestroy(ecomServer);
226 RThread().HandleCount(processHandlesE, threadHandlesE);
227 TEST(processHandlesS == processHandlesE);
228 TEST(threadHandlesS == threadHandlesE);
231 void GetResolvedDllInfo_OOMTestL()
233 TInt processHandlesS = 0;
234 TInt threadHandlesS = 0;
235 TInt processHandlesE = 0;
236 TInt threadHandlesE = 0;
237 RThread().HandleCount(processHandlesS, threadHandlesS);
239 CEComServer* ecomServer = CEComServer::NewLC();
240 TClientRequest clientReq;
241 RArray<TUid> extendedInterfaces;
242 CleanupClosePushL(extendedInterfaces);
243 RImplInfoArray* implInfoArray = ecomServer->ListImplementationsL(KCExampleInterfaceUid,extendedInterfaces,clientReq);
244 CleanupStack::PopAndDestroy(&extendedInterfaces);
246 TEST(implInfoArray->Count() > 0);
248 for(TInt count=1;;++count)
250 // Setting Heap failure for OOM test
251 __UHEAP_SETFAIL(RHeap::EDeterministic, count);
256 TClientRequest clntRq;
257 CImplementationInformation* info = (*implInfoArray)[0];
258 TRAPD(err, ecomServer->GetResolvedDllInfoL(info->ImplementationUid(),
259 dllInfo, dtorIdKey, clntRq));
260 if(err == KErrNoMemory)
264 else if(err == KErrNone)
267 RDebug::Print(_L("The test succeeded at heap failure rate=%d.\n"), count);
273 TEST2(err, KErrNone);
278 //implInfoArray should be deleted! The caller takes the ownership.
279 if (implInfoArray!=NULL)
281 implInfoArray->Close();
282 delete implInfoArray;
284 CleanupStack::PopAndDestroy(ecomServer);
285 RThread().HandleCount(processHandlesE, threadHandlesE);
286 TEST(processHandlesS == processHandlesE);
287 TEST(threadHandlesS == threadHandlesE);
291 @SYMTestCaseID SYSLIB-ECOM-CT-0177
292 @SYMTestCaseDesc Check that IsSSA works when ecomsrvr has different values.
293 @SYMTestPriority High
294 @SYMTestActions Check that IsSSA returns ETrue when ecomsrvr ini does not exist.
295 Check that IsSSA returns the value in the ecomsrvr ini file when
297 @SYMTestExpectedResults The test must not fail.
302 TInt processHandlesS = 0;
303 TInt threadHandlesS = 0;
304 TInt processHandlesE = 0;
305 TInt threadHandlesE = 0;
306 RThread().HandleCount(processHandlesS, threadHandlesS);
310 TestEnableDisableSsaL(TheTest, TheFs);
312 /*****************************************************************/
313 //test that IsSSA() returns ETrue when ecomsrvr.ini file does
317 EnableSsa(TheTest, TheFs);
319 //test that IsSSA() returns ETrue
320 CEComServer* server=CEComServer::NewLC();
321 res = server->IsSSA(TheFs);
322 CleanupStack::PopAndDestroy();
323 ResetSsa(TheTest, TheFs);
326 /*****************************************************************/
327 //test that IsSSA() returns EFalse when ecomsrvr.ini file exists.
330 DisableSsa(TheTest, TheFs);
332 //test that IsSSA() returns EFalse
333 server=CEComServer::NewLC();
334 res = server->IsSSA(TheFs);
335 CleanupStack::PopAndDestroy();
336 ResetSsa(TheTest, TheFs);
339 RThread().HandleCount(processHandlesE, threadHandlesE);
340 TEST(processHandlesS == processHandlesE);
341 TEST(threadHandlesS == threadHandlesE);
346 Thread entry point for test thread.
347 Kills the existing ECOM server and launches a new instance
350 TInt ServerStartThreadEntryL(TAny* /*a*/)
354 //Threshold set so that a OOM failure occur whilst constructing CEComServer::iRegistryData
355 const TInt KFailThreshold = 500;
362 //Invoking OOM failure by allocating most of the heap before running the server
363 RHeap heap = User::Heap();
364 TInt avail = heap.Available(dummy);
365 ptr = User::Alloc(avail-KFailThreshold);
367 TEST(ptr != NULL); //Check that the allocation was sucessful
369 TInt result = ServerStart();
378 @SYMTestCaseID SYSLIB-ECOM-CT-3163
379 @SYMTestCaseDesc Verify the startup behaviour of the ECOM server under OOM conditions
380 @SYMTestPriority High
381 @SYMTestActions Generate an OOM condition.
382 Create a new thread which will launch the ECOM server.
383 Wait for the thread to exit and check the thread exit type
384 and reason to verify behaviour.
385 @SYMTestExpectedResults The test must not fail.
388 void StartServer_OOMTest()
391 _LIT(KStartThreadName,"Server Start Thread");
393 //Create a new thread to launch the ECOM server
395 testThread.Create(KStartThreadName, ServerStartThreadEntryL,
396 KDefaultStackSize,KMinHeapSize,KMinHeapSize,NULL);
397 TRequestStatus status;
398 testThread.Logon(status);
401 //Wait for the thread to exit
402 User::WaitForRequest(status);
404 //Obtain exit type and reason for test thread
405 TExitType exitType = testThread.ExitType();
406 TInt exitReason = testThread.ExitReason();
408 //close the thread handle
411 //Verify the exit reason and exit code
412 //Exit type is TExitType::EExitKill when E32Main() exit normally
413 TEST(exitType == EExitKill);
414 TEST(exitReason == KErrNoMemory);
420 TheTest.Start(_L("CEComServer::NewLC - OOM test"));
423 TheTest.Next(_L("CEComServer::ListImplementationsL - OOM test"));
424 ::ListImplementations_OOMTestL();
426 TheTest.Next(_L("CEComServer::GetResolvedDllInfoL - OOM test"));
427 ::GetResolvedDllInfo_OOMTestL();
429 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0177 CEComServer::IsSsa test "));
432 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3163 Server Startup Panic test "));
433 ::StartServer_OOMTest();
435 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3714 CEComServer::ListImplementationsL with customer resolver - OOM test "));
436 ::ListImplementations_OOMTest1L();
446 CTrapCleanup* tc = CTrapCleanup::New();
449 TEST2(TheFs.Connect(), KErrNone);
451 CActiveScheduler* activeSched = new CActiveScheduler;
452 TEST(activeSched != NULL);
453 CActiveScheduler::Install(activeSched);
456 TRAPD(err, ::DoTestL());
457 TEST2(err, KErrNone);
459 ResetSsa(TheTest, TheFs);
472 User::Heap().Check();