os/ossrv/lowlevellibsandfws/pluginfw/Framework/ServerStartupMgrTest/t_ServerStartupMgr.cpp
Update contrib.
1 // Copyright (c) 2005-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.
20 #include <startupdomaindefs.h>
21 #include <ecom/ecompanics.h>
23 #include "EComServer.h"
24 #include "TestHarnessDomainMember.h"
25 #include "StartupStateObserverObject.h"
26 #include "ServerStartupManager.h"
27 #include "EcomTestUtils.h"
28 #include "EcomTestIniFileUtils.h"
29 #include "EcomTestCompTestabilityUtils.h"
32 static RTest TheTest(_L("T_ServerStartupMgr"));
36 //Test macroes and functions
40 static void Check(TInt aValue, TInt aLine)
44 TheTest(EFalse, aLine);
48 static void Check(TInt aValue, TInt aExpected, TInt aLine)
50 if(aValue != aExpected)
52 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
53 TheTest(EFalse, aLine);
56 #define TEST(arg) ::Check((arg), __LINE__)
57 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
61 //TServerStartupManager_StateAccessor class definition and methods
67 Allows access to the protected and private data and operations
70 class TServerStartupManager_StateAccessor
73 static TStartupStateIdentifier GetKnownStartupState(CServerStartupMgr& aServerStartupMgr, TDmDomainState aStartupState);
74 static void SetKnownStartupState(CServerStartupMgr& aServerStartupMgr, TStartupStateIdentifier aState);
75 static void TestStateAwareObjectsForState(CServerStartupMgr& aServerStartupMgr, TInt32 aState);
76 static void SetStateAwareObjectsState(CServerStartupMgr& aServerStartupMgr, TInt32 aState);
77 static void SetStateL(CServerStartupMgr& aServerStartupMgr, TInt aState);
78 static void RunL(CServerStartupMgr& aServerStartupMgr);
79 static TInt RunError(CServerStartupMgr& aServerStartupMgr, TInt aError);
82 void TServerStartupManager_StateAccessor::TestStateAwareObjectsForState
83 (CServerStartupMgr& aServerStartupMgr, TInt32 aState)
86 const RPointerArray<MStartupStateObserver> observerList =
87 aServerStartupMgr.iObserverList;
89 for(i=0; i<observerList.Count(); i++)
91 CStartupStateObserver* observerObject =
92 static_cast<CStartupStateObserver*>(observerList[i]);
94 TEST2((TInt32)observerObject->GetState(), aState);
98 void TServerStartupManager_StateAccessor::SetStateAwareObjectsState
99 (CServerStartupMgr& aServerStartupMgr, TInt32 aState)
102 const RPointerArray<MStartupStateObserver> observerList =
103 aServerStartupMgr.iObserverList;
105 for(i=0; i<observerList.Count(); i++)
107 CStartupStateObserver* observerObject =
108 static_cast<CStartupStateObserver*>(observerList[i]);
110 observerObject->SetState((CStartupStateObserver::TSsoState)aState);
114 TStartupStateIdentifier TServerStartupManager_StateAccessor::GetKnownStartupState
115 (CServerStartupMgr& aServerStartupMgr, TDmDomainState aStartupState)
117 return aServerStartupMgr.GetKnownStartupState(aStartupState);
120 void TServerStartupManager_StateAccessor::SetKnownStartupState(CServerStartupMgr& aServerStartupMgr, TStartupStateIdentifier aState)
122 aServerStartupMgr.iCurrentStartupState = aState;
125 void TServerStartupManager_StateAccessor::SetStateL(CServerStartupMgr& aServerStartupMgr, TInt aState)
127 aServerStartupMgr.ChangeStartupStateL(aState);
130 void TServerStartupManager_StateAccessor::RunL(CServerStartupMgr& aServerStartupMgr)
132 aServerStartupMgr.RunL();
135 TInt TServerStartupManager_StateAccessor::RunError(CServerStartupMgr& aServerStartupMgr,TInt aError)
137 return aServerStartupMgr.RunError(aError);
148 * Function is used for each state change of InitialiseL() testing.
150 * - For each state RequestTransitionNotification() is called
151 * - For EStartupStateUndefined or EStartupStateNonCritical state
152 * Requestion of notification is cancelled .
153 * - Each MStartupServerStateObserver object is set to their
154 * corresponding state
155 * @param aServerStartupMgr the server startup manager being tested
156 * @param aNewState the domain state to be tested
157 * @param aObserverObjCurrentState the current state of all the observer objects
158 * registered to aServerStartupMgr
159 * @param aExpectedRequestTransitionNotification expected result from
160 * IsTransitionNotificationRequestedL() call to check whether RequestTransitionNotification()
162 * @param aExpectedCancelRequestNotification expected result from
163 * IsCancelRequestNotification() call to check whether Request of Notification
165 * @param aObserverObjExpectedState the expected new state for all of the MStartupServerStateObserver
166 * @param aExpectedStartupState the expected new state for the CServerStartupManager
167 * after RunL is called.
169 void CheckForInitialiseStateChangeL(CServerStartupMgr& aServerStartupMgr,
171 CStartupStateObserver::TSsoState aObserverObjCurrentState,
172 TBool aExpectedRequestTransitionNotification,
173 TBool aExpectedCancelRequestNotification,
174 CStartupStateObserver::TSsoState aObserverObjExpectedState,
175 TStartupStateIdentifier aExpectedStartupState,
178 //reset the server startup manager flags
179 aServerStartupMgr.ResetRequestTransitionNotificationL();
181 //set the new/tested state for server startup manager
182 TServerStartupManager_StateAccessor::SetKnownStartupState
183 (aServerStartupMgr, EStartupStateUndefined);
185 //set the new/tested state for the domain
186 TServerStartupManager_StateAccessor::SetStateL
187 (aServerStartupMgr, aNewState);
189 //set the current state for all of the MStartupServerStateObserver objects
190 TServerStartupManager_StateAccessor::SetStateAwareObjectsState
191 (aServerStartupMgr, aObserverObjCurrentState);
194 aServerStartupMgr.InitialiseL(aSsaEnabled);
196 //test if RequestTransitionNotification() is called
197 TEST2(aServerStartupMgr.IsTransitionNotificationRequestedL(), aExpectedRequestTransitionNotification);
199 //test if Request of Notification is cancelled
200 TEST2(aServerStartupMgr.IsRequestNotificationCancelledL(), aExpectedCancelRequestNotification);
202 //test if MStartupStateObserver objects are set to expected state
203 TServerStartupManager_StateAccessor::TestStateAwareObjectsForState
204 (aServerStartupMgr, aObserverObjExpectedState);
206 //test if CServerStartupManager is set to expected state
207 TEST2(aServerStartupMgr.CurrentStartupState(), aExpectedStartupState);
213 * Function is used for each state change of RunL() testing.
215 * - AcknowledgeLastStateL() is called for each state.
216 * - RequestTransitionNotification() is called for all states.
217 * - For EStartupStateUndefined or EStartupStateNonCritical state
218 * Requestion of notification is cancelled.
219 * - Each MStartupServerStateObserver object is set to their
220 * corresponding state
221 * @param aServerStartupMgr the server startup manager being tested
222 * @param aNewState the domain state to be tested
223 * @param aObserverObjCurrentState the current state of all the observer objects
224 * registered to aServerStartupMgr
225 * @param aExpectedRequestTransitionNotification expected result from
226 * IsTransitionNotificationRequestedL() call to check whether RequestTransitionNotification()
228 * @param aExpectedCancelRequestNotification expected result from
229 * IsCancelRequestNotification() call to check whether Request of Notification
231 * @param aExpectedAcknowledgeLastState expected result from IsLastStateAcknowledged()
232 * call to check whether AcknowledgeLastStateL() was called
233 * @param aObserverObjExpectedState the expected new state for all of the MStartupServerStateObserver
234 * after RunL is called.
235 * @param aExpectedStartupState the expected new state for the CServerStartupManager
236 * after RunL is called.
238 void CheckForRunLStateChangeL(CServerStartupMgr& aServerStartupMgr,
240 CStartupStateObserver::TSsoState aObserverObjCurrentState,
241 TBool aExpectedRequestTransitionNotification,
242 TBool aExpectedCancelRequestNotification,
243 TBool aExpectedAcknowledgeLastState,
244 CStartupStateObserver::TSsoState aObserverObjExpectedState,
245 TStartupStateIdentifier aExpectedStartupState)
247 //reset the server startup manager flags
248 aServerStartupMgr.ResetLastStateAcknowledgedL();
249 aServerStartupMgr.ResetRequestTransitionNotificationL();
251 //set the current state for CDmDomain
252 TServerStartupManager_StateAccessor::SetStateL
253 (aServerStartupMgr, aNewState);
255 //set the current state for all of the MStartupServerStateObserver objects
256 TServerStartupManager_StateAccessor::SetStateAwareObjectsState
257 (aServerStartupMgr, aObserverObjCurrentState);
260 TRAPD(err, TServerStartupManager_StateAccessor::
261 RunL(aServerStartupMgr));
262 if(aNewState == EStartupStateUndefined)
264 TEST2(err, KErrBadHandle);
268 TEST2(err, KErrNone);
271 //test if RequestTransitionNotification() is called
272 TEST2(aServerStartupMgr.IsTransitionNotificationRequestedL(), aExpectedRequestTransitionNotification);
274 //test if Request of Notification is cancelled
275 TEST2(aServerStartupMgr.IsRequestNotificationCancelledL(), aExpectedCancelRequestNotification);
277 //test if AcknowledgeLastStateL() is called
278 TEST2(aServerStartupMgr.IsLastStateAcknowledgedL(), aExpectedAcknowledgeLastState);
280 //test if MStartupStateObserver objects are set to expected state
281 TServerStartupManager_StateAccessor::TestStateAwareObjectsForState
282 (aServerStartupMgr, aObserverObjExpectedState);
284 //test if CServerStartupManager is set to expected state
285 TEST2(aServerStartupMgr.CurrentStartupState(), aExpectedStartupState);
295 @SYMTestCaseID SYSLIB-ECOM-CT-0178
296 @SYMTestCaseDesc Check that the CServerStartupMgr::GetKnownStartupState() works correctly.
297 @SYMTestPriority High
298 @SYMTestActions Set knownStartupState to EStartupStateUndefined, EStartupStateCriticalStatic,
299 EStartupStateCriticalDynamic, EStartupStateNonCritical. Call GetKnownStartupState() to see if
300 correct known startup state is returned.
301 @SYMTestExpectedResults The test must not fail.
304 void GetKnownStartupState_TestL()
306 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0178 "));
308 static const TUint32 KTestCount = 11;
309 TInt32 testStates[] = { EStartupStateUndefined, EStartupStateUndefined+1,
310 EStartupStateCriticalStatic-1, EStartupStateCriticalStatic, EStartupStateCriticalStatic+1,
311 EStartupStateCriticalDynamic-1, EStartupStateCriticalDynamic, EStartupStateCriticalDynamic+1,
312 EStartupStateNonCritical-1, EStartupStateNonCritical, EStartupStateNonCritical+1};
314 TInt32 resultStates[] = {EStartupStateUndefined, EStartupStateUndefined,
315 EStartupStateUndefined, EStartupStateCriticalStatic, EStartupStateCriticalStatic,
316 EStartupStateCriticalStatic, EStartupStateCriticalDynamic, EStartupStateCriticalDynamic,
317 EStartupStateCriticalDynamic, EStartupStateNonCritical, EStartupStateNonCritical};
319 EnableSsa(TheTest, TheFs);
321 CServerStartupMgr* serverStartupMgr =
322 new(ELeave) CServerStartupMgr(KDmHierarchyIdStartup, KDmIdRoot, TheFs);
323 CleanupStack::PushL(serverStartupMgr);
325 //check for all the test states
326 for(i=0; i<KTestCount; i++)
328 TEST2(TServerStartupManager_StateAccessor::GetKnownStartupState(*serverStartupMgr, testStates[i]),
332 CleanupStack::Pop(serverStartupMgr);
333 delete serverStartupMgr;
335 ResetSsa(TheTest, TheFs);
339 @SYMTestCaseID SYSLIB-ECOM-CT-0179
340 @SYMTestCaseDesc Check that the CServerStartupMgr::InitialiseL() works for the non SSA case correctly.
341 @SYMTestPriority High
342 @SYMTestActions Set SSA to false. Then check that all the MStartupStateObserver
343 objects registered to server startup manager has switched to the correct known start-up state
344 as a result of InitialiseL()
345 @SYMTestExpectedResults The test must not fail.
348 void InitialiseL_NonSsa_TestL()
350 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0179 "));
351 TestEnableDisableSsaL(TheTest, TheFs);
353 DisableSsa(TheTest, TheFs);
355 //Create some MStartupServerStateObserver objects
356 CStartupStateObserver* dummyObject1 = CStartupStateObserver::NewLC();
357 CStartupStateObserver* dummyObject2 = CStartupStateObserver::NewLC();
358 CStartupStateObserver* dummyObject3 = CStartupStateObserver::NewLC();
360 CServerStartupMgr* serverStartupMgr =
361 new(ELeave) CServerStartupMgr(KDmHierarchyIdStartup, KDmIdRoot, TheFs);
362 CleanupStack::PushL(serverStartupMgr);
364 //Register MStartupServerStateObserver objects
365 serverStartupMgr->RegisterObserverL(dummyObject1);
366 serverStartupMgr->RegisterObserverL(dummyObject2);
367 serverStartupMgr->RegisterObserverL(dummyObject3);
369 TServerStartupManager_StateAccessor::SetKnownStartupState
370 (*serverStartupMgr, EStartupStateUndefined);
372 TServerStartupManager_StateAccessor::SetStateL
373 (*serverStartupMgr, EStartupStateUndefined);
375 serverStartupMgr->InitialiseL(EFalse);
377 //Now that CDmDomain::ConstructL() is called check that each
378 //MStartupServerStateObserver object is set to
379 //TSsoState::SsoAllPluginsInternalized
380 TServerStartupManager_StateAccessor::TestStateAwareObjectsForState
381 (*serverStartupMgr, CStartupStateObserver::SsoAllPluginsInternalized);
383 TEST2(serverStartupMgr->CurrentStartupState(), EStartupStateNonCritical);
385 CleanupStack::Pop(serverStartupMgr);
386 delete serverStartupMgr;
388 CleanupStack::PopAndDestroy(dummyObject3);
389 CleanupStack::PopAndDestroy(dummyObject2);
390 CleanupStack::PopAndDestroy(dummyObject1);
392 ResetSsa(TheTest, TheFs);
397 @SYMTestCaseID SYSLIB-ECOM-CT-0180
398 @SYMTestCaseDesc Check that the CServerStartupMgr::InitialiseL() works for the SSA case correctly.
399 @SYMTestPriority High
400 @SYMTestActions Set SSA to true. Then check that all the MStartupStateObserver
401 objects registered to server startup manager has switched to the correct known start-up
402 state as a result of InitialiseL(). Next check that correct actions have been taken
403 when known startup state for server startup manager is set to all possible values
404 and after InitialiseL() has been called.
405 @SYMTestExpectedResults The test must not fail.
408 void InitialiseL_Ssa_TestL()
410 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0180 "));
411 TestEnableDisableSsaL(TheTest, TheFs);
413 EnableSsa(TheTest, TheFs);
415 //Create some MStartupServerStateObserver objects
416 CStartupStateObserver* dummyObject1 = CStartupStateObserver::NewLC();
417 CStartupStateObserver* dummyObject2 = CStartupStateObserver::NewLC();
418 CStartupStateObserver* dummyObject3 = CStartupStateObserver::NewLC();
420 CServerStartupMgr* serverStartupMgr =
421 new(ELeave) CServerStartupMgr(KDmHierarchyIdStartup, KDmIdRoot, TheFs);
422 CleanupStack::PushL(serverStartupMgr);
424 //Register MStartupServerStateObserver objects
425 serverStartupMgr->RegisterObserverL(dummyObject1);
426 serverStartupMgr->RegisterObserverL(dummyObject2);
427 serverStartupMgr->RegisterObserverL(dummyObject3);
429 //initialise the domain
430 //set the state for CDmDomain
431 TServerStartupManager_StateAccessor::SetStateL
432 (*serverStartupMgr, EStartupStateCriticalStatic);
434 serverStartupMgr->InitialiseL(ETrue);
436 //Now that CDmDomain::ConstructL() is called check that each
437 //MStartupServerStateObserver object is set to
438 //TSsoState::SsoCriticalPlugingsInternalized
439 TServerStartupManager_StateAccessor::TestStateAwareObjectsForState
440 (*serverStartupMgr, CStartupStateObserver::SsoCriticalPlugingsInternalized);
442 // Following tests ensure that
443 // - For each state RequestTransitionNotification() is called
444 // - For EStartupStateUndefined or EStartupStateNonCritical
445 // the request of notification is cancelled.
446 // - Each MStartupServerStateObserver object is set to their
447 // corresponding state
449 //Test for EStartupStateUndefined
450 CheckForInitialiseStateChangeL(*serverStartupMgr, EStartupStateUndefined,
451 CStartupStateObserver::SsoNoPluginsInternalized,
454 CStartupStateObserver::SsoAllPluginsInternalized,
455 EStartupStateNonCritical,ETrue);
457 //Test for a user defined state
458 CheckForInitialiseStateChangeL(*serverStartupMgr, EStartupStateCriticalStatic-1,
459 CStartupStateObserver::SsoNoPluginsInternalized,
462 CStartupStateObserver::SsoNoPluginsInternalized,
463 EStartupStateUndefined,ETrue);
465 //Test for EStartupStateCriticalStatic
466 CheckForInitialiseStateChangeL(*serverStartupMgr, EStartupStateCriticalStatic,
467 CStartupStateObserver::SsoNoPluginsInternalized,
470 CStartupStateObserver::SsoCriticalPlugingsInternalized,
471 EStartupStateCriticalStatic,ETrue);
473 //Test for a user defined state
474 CheckForInitialiseStateChangeL(*serverStartupMgr, EStartupStateCriticalDynamic-1,
475 CStartupStateObserver::SsoNoPluginsInternalized,
478 CStartupStateObserver::SsoCriticalPlugingsInternalized,
479 EStartupStateCriticalStatic,ETrue);
481 //Test for EStartupStateCriticalDynamic
482 CheckForInitialiseStateChangeL(*serverStartupMgr, EStartupStateCriticalDynamic,
483 CStartupStateObserver::SsoNoPluginsInternalized,
486 CStartupStateObserver::SsoCriticalPlugingsInternalized,
487 EStartupStateCriticalDynamic,ETrue);
489 //Test for a user defined state
490 CheckForInitialiseStateChangeL(*serverStartupMgr, EStartupStateNonCritical-1,
491 CStartupStateObserver::SsoNoPluginsInternalized,
494 CStartupStateObserver::SsoCriticalPlugingsInternalized,
495 EStartupStateCriticalDynamic,ETrue);
497 //Test for EStartupStateNonCritical
498 CheckForInitialiseStateChangeL(*serverStartupMgr, EStartupStateNonCritical,
499 CStartupStateObserver::SsoNoPluginsInternalized,
502 CStartupStateObserver::SsoAllPluginsInternalized,
503 EStartupStateNonCritical,ETrue);
505 //Test for a user defined state
506 CheckForInitialiseStateChangeL(*serverStartupMgr, EStartupStateNonCritical+1,
507 CStartupStateObserver::SsoNoPluginsInternalized,
510 CStartupStateObserver::SsoAllPluginsInternalized,
511 EStartupStateNonCritical,ETrue);
513 CleanupStack::Pop(serverStartupMgr);
514 delete serverStartupMgr;
516 CleanupStack::PopAndDestroy(dummyObject3);
517 CleanupStack::PopAndDestroy(dummyObject2);
518 CleanupStack::PopAndDestroy(dummyObject1);
520 ResetSsa(TheTest, TheFs);
525 @SYMTestCaseID SYSLIB-ECOM-CT-0181
526 @SYMTestCaseDesc Check that the CServerStartupMgr::RunL() works correctly.
527 @SYMTestPriority High
528 @SYMTestActions Set SSA to true. Then check that correct actions have
529 been taken when known startup state for server startup manager is set to all
530 possible values and after InitialiseL() has been called.
531 @SYMTestExpectedResults The test must not fail.
536 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0181 "));
537 EnableSsa(TheTest, TheFs);
539 //Create some MStartupServerStateObserver objects
540 CStartupStateObserver* dummyObject1 = CStartupStateObserver::NewLC();
541 CStartupStateObserver* dummyObject2 = CStartupStateObserver::NewLC();
542 CStartupStateObserver* dummyObject3 = CStartupStateObserver::NewLC();
544 CServerStartupMgr* serverStartupMgr =
545 new(ELeave) CServerStartupMgr(KDmHierarchyIdStartup, KDmIdRoot, TheFs);
546 CleanupStack::PushL(serverStartupMgr);
548 //Register MStartupServerStateObserver objects
549 serverStartupMgr->RegisterObserverL(dummyObject1);
550 serverStartupMgr->RegisterObserverL(dummyObject2);
551 serverStartupMgr->RegisterObserverL(dummyObject3);
553 serverStartupMgr->InitialiseL(ETrue);
555 //Following tests ensure that:
556 // - AcknowledgeLastStateL() is called for each state.
557 // - RequestTransitionNotification() is called for all states
558 // - For EStartupStateUndefined or EStartupStateNonCritical
559 // the request of notification is cancelled.
560 // - Each MStartupServerStateObserver object is set to their
561 // corresponding state
562 //Test for EStartupStateUndefined
563 CheckForRunLStateChangeL(*serverStartupMgr, EStartupStateUndefined,
564 CStartupStateObserver::SsoUndefined,
566 CStartupStateObserver::SsoUndefined,
567 EStartupStateUndefined);
569 //Test for a user defined state
570 CheckForRunLStateChangeL(*serverStartupMgr, EStartupStateCriticalStatic-1,
571 CStartupStateObserver::SsoUndefined,
572 ETrue, EFalse, ETrue,
573 CStartupStateObserver::SsoUndefined,
574 EStartupStateUndefined);
576 //Test for EStartupStateCriticalStatic
577 CheckForRunLStateChangeL(*serverStartupMgr, EStartupStateCriticalStatic,
578 CStartupStateObserver::SsoNoPluginsInternalized,
579 ETrue, EFalse, ETrue,
580 CStartupStateObserver::SsoCriticalPlugingsInternalized,
581 EStartupStateCriticalStatic);
583 //Test for EStartupStateCriticalStatic
584 CheckForRunLStateChangeL(*serverStartupMgr, EStartupStateCriticalDynamic-1,
585 CStartupStateObserver::SsoCriticalPlugingsInternalized,
587 CStartupStateObserver::SsoCriticalPlugingsInternalized,
588 EStartupStateCriticalStatic);
590 //Test for EStartupStateCriticalDynamic
591 CheckForRunLStateChangeL(*serverStartupMgr, EStartupStateCriticalDynamic,
592 CStartupStateObserver::SsoCriticalPlugingsInternalized,
593 ETrue, EFalse, ETrue,
594 CStartupStateObserver::SsoCriticalPlugingsInternalized,
595 EStartupStateCriticalDynamic);
597 //Test for EStartupStateCriticalDynamic
598 CheckForRunLStateChangeL(*serverStartupMgr, EStartupStateNonCritical-1,
599 CStartupStateObserver::SsoCriticalPlugingsInternalized,
600 ETrue, EFalse, ETrue,
601 CStartupStateObserver::SsoCriticalPlugingsInternalized,
602 EStartupStateCriticalDynamic);
604 //Test for EStartupStateNonCritical
605 CheckForRunLStateChangeL(*serverStartupMgr, EStartupStateNonCritical,
606 CStartupStateObserver::SsoCriticalPlugingsInternalized,
608 CStartupStateObserver::SsoAllPluginsInternalized,
609 EStartupStateNonCritical);
611 //Test for EStartupStateNonCritical
612 CheckForRunLStateChangeL(*serverStartupMgr, EStartupStateNonCritical+1,
613 CStartupStateObserver::SsoAllPluginsInternalized,
615 CStartupStateObserver::SsoAllPluginsInternalized,
616 EStartupStateNonCritical);
618 CleanupStack::Pop(serverStartupMgr);
619 delete serverStartupMgr;
621 CleanupStack::PopAndDestroy(dummyObject3);
622 CleanupStack::PopAndDestroy(dummyObject2);
623 CleanupStack::PopAndDestroy(dummyObject1);
625 ResetSsa(TheTest, TheFs);
629 Creates and installs active scheduler for this thread,
630 creates a CServerStartupMgr instance and calls
631 TServerStartupManager_StateAccessor::RunError
634 TInt DoRunError_TestL()
636 // create and install the active scheduler we need
637 CActiveScheduler* scheduler=new(ELeave) CActiveScheduler;
638 CleanupStack::PushL(scheduler);
640 CActiveScheduler::Install(scheduler);
642 //create a new ServerStartupMgr
643 CServerStartupMgr* serverStartupMgr =
644 new(ELeave) CServerStartupMgr(KDmHierarchyIdStartup, KDmIdRoot, TheFs);
646 CleanupStack::PushL(serverStartupMgr);
648 //call the RunError method which should panic
649 TInt result = TServerStartupManager_StateAccessor::RunError(*serverStartupMgr,KErrNoMemory);
651 // Cleanup the server and scheduler
652 CleanupStack::PopAndDestroy(2, scheduler);
659 Thread entry point for the test thread. Creates a CTrapCleanup and
660 calls DoRunError_TestL to carry out the test
663 TInt RunErrorThreadEntry(TAny* /*a*/)
666 CTrapCleanup* tc = CTrapCleanup::New();
668 TRAPD(err,DoRunError_TestL());
678 @SYMTestCaseID SYSLIB-ECOM-CT-3164
679 @SYMTestCaseDesc Check that the CServerStartupMgr::RunError() works correctly.
680 @SYMTestPriority High
681 @SYMTestActions Create a new thread which will call RunError. Wait for the
682 thread to exit and check the thread exit type and reason to
684 @SYMTestExpectedResults The test must not fail.
690 _LIT(KStartThreadName,"CServerStartupMgr RunError Thread");
692 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3164 CServerStartupMgr RunError test "));
694 //Disable JIT so that the Panic doesn't bring up a dialog
696 TBool jitEnabled = User::JustInTime();
697 User::SetJustInTime(EFalse);
699 //Create a new thread to run the test
701 testThread.Create(KStartThreadName, RunErrorThreadEntry,
702 KDefaultStackSize,KMinHeapSize,KMinHeapSize,NULL);
703 TRequestStatus status;
704 testThread.Logon(status);
707 //Wait for the thread to exit
708 User::WaitForRequest(status);
710 //Obtain exit type and reason for test thread
711 TExitType exitType = testThread.ExitType();
712 TInt exitReason = testThread.ExitReason();
714 //close the thread handle
717 //Set JIT back to original state
718 User::SetJustInTime(jitEnabled);
720 //Verify the exit reason and exit code
721 TEST(exitType == EExitPanic);
722 TEST(exitReason == EEComPanic_CServerStartupMgr_RunError);
728 LOCAL_C void CreateDelete_TestL()
730 CServerStartupMgr* serverStartupMgr =
731 #ifdef SYMBIAN_SYSTEM_STATE_MANAGEMENT
732 new(ELeave) CServerStartupMgr(KDmHierarchyIdStartup, KSM2OSServicesDomain3, TheFs);
734 new(ELeave) CServerStartupMgr(KDmHierarchyIdStartup, KBaseServicesDomain3, TheFs);
735 #endif //SYMBIAN_SYSTEM_STATE_MANAGEMENT
737 TEST(serverStartupMgr != NULL);
739 delete serverStartupMgr;
743 // Type definition for pointer to member function.
744 // Used in calling t_ServerStartupMgr test functions.
745 typedef void (*ClassFuncPtrL) (void);
748 Wrapper function to call all test functions
749 @param testFunc pointer to test function
750 @param aTestDesc test function name
752 LOCAL_C void DoBasicTestL(ClassFuncPtrL testFuncL, const TDesC& aTestDesc)
754 TheTest.Next(aTestDesc);
757 // find out the number of open handles
758 TInt startProcessHandleCount;
759 TInt startThreadHandleCount;
760 RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
764 // check that no handles have leaked
765 TInt endProcessHandleCount;
766 TInt endThreadHandleCount;
767 RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
769 TEST(startProcessHandleCount == endProcessHandleCount);
770 TEST(startThreadHandleCount == endThreadHandleCount);
776 Wrapper function to call all OOM test functions
777 @param testFuncL pointer to OOM test function
778 @param aTestDesc test function name
780 LOCAL_C void DoOOMTestL(ClassFuncPtrL testFuncL, const TDesC& aTestDesc)
782 TheTest.Next(aTestDesc);
789 // find out the number of open handles
790 TInt startProcessHandleCount;
791 TInt startThreadHandleCount;
792 RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
794 __UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
796 TRAP(err, testFuncL());
798 __UHEAP_SETFAIL(RHeap::ENone, 0);
800 // check that no handles have leaked
801 TInt endProcessHandleCount;
802 TInt endThreadHandleCount;
803 RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
805 TEST(startProcessHandleCount == endProcessHandleCount);
806 TEST(startThreadHandleCount == endThreadHandleCount);
809 } while(err == KErrNoMemory);
811 TEST2(err, KErrNone);
812 TheTest.Printf(_L("- server succeeded at heap failure rate of %i\n"), tryCount);
815 LOCAL_C void DoTestsL()
817 DoBasicTestL(&CreateDelete_TestL, _L("CreateDelete_TestL"));
818 DoBasicTestL(&GetKnownStartupState_TestL, _L("GetKnownStartupState_TestL"));
819 DoBasicTestL(&InitialiseL_NonSsa_TestL, _L("InitialiseL_NonSsa_TestL"));
820 DoBasicTestL(&InitialiseL_Ssa_TestL, _L("InitialiseL_Ssa_TestL"));
821 DoBasicTestL(&RunL_TestL, _L("RunL_TestL"));
823 DoOOMTestL(&CreateDelete_TestL, _L("OOM CreateDelete_TestL"));
824 DoOOMTestL(&GetKnownStartupState_TestL, _L("OOM GetKnownStartupState_TestL"));
825 DoOOMTestL(&InitialiseL_NonSsa_TestL, _L("OOM InitialiseL_NonSsa_TestL"));
826 DoOOMTestL(&InitialiseL_Ssa_TestL, _L("OOM InitialiseL_Ssa_TestL"));
827 DoOOMTestL(&RunL_TestL, _L("OOM RunL_TestL"));
832 GLDEF_C TInt E32Main()
835 TheTest.Printf(_L("\n"));
837 TheTest.Start(_L("ServerStartupMgr Tests."));
839 TEST2(TheFs.Connect(), KErrNone);
841 // get clean-up stack
842 CTrapCleanup* cleanup = CTrapCleanup::New();
843 // Construct and install the Active Scheduler. The Active Scheduler is needed
844 // by components used by this test as they are ActiveObjects.
845 CActiveScheduler* activeScheduler = new(ELeave)CActiveScheduler;
846 CActiveScheduler::Install(activeScheduler);
848 EnableEcomTestBehaviour(TheTest, TheFs);
850 TRAPD(err,DoTestsL());
851 ResetSsa(TheTest, TheFs);
852 TheTest(err==KErrNone);
854 DisableEcomTestBehaviour(TheTest, TheFs);
860 delete activeScheduler;
867 User::Heap().Check();