os/ossrv/lowlevellibsandfws/pluginfw/Framework/ServerStartupMgrTest/t_ServerStartupMgr.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include <e32base.h>
    17 #include <e32test.h>
    18 #include <e32debug.h>
    19 #include <f32file.h>
    20 #include <startupdomaindefs.h>
    21 #include <ecom/ecompanics.h>
    22 
    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"
    30 
    31 static RFs TheFs;
    32 static RTest TheTest(_L("T_ServerStartupMgr"));
    33 
    34 //
    35 //
    36 //Test macroes and functions
    37 //
    38 //
    39 
    40 static void Check(TInt aValue, TInt aLine)
    41 	{
    42 	if(!aValue)
    43 		{
    44 		TheTest(EFalse, aLine);
    45 		}
    46 	}
    47 
    48 static  void Check(TInt aValue, TInt aExpected, TInt aLine)
    49 	{
    50 	if(aValue != aExpected)
    51 		{
    52 		RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
    53 		TheTest(EFalse, aLine);
    54 		}
    55 	}
    56 #define TEST(arg) ::Check((arg), __LINE__)
    57 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
    58 
    59 //
    60 //
    61 //TServerStartupManager_StateAccessor class definition and methods
    62 //
    63 //
    64 /**
    65 @internalTechnology
    66 
    67 Allows access to the protected and private data and operations
    68 of CServerStartupMgr
    69 */
    70 class TServerStartupManager_StateAccessor
    71 	{
    72 public:
    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);
    80 	};
    81 
    82 void TServerStartupManager_StateAccessor::TestStateAwareObjectsForState
    83 		(CServerStartupMgr& aServerStartupMgr, TInt32 aState)
    84 	{
    85 	int i;
    86 	const RPointerArray<MStartupStateObserver> observerList =
    87 		aServerStartupMgr.iObserverList;
    88 
    89 	for(i=0; i<observerList.Count(); i++)
    90 		{
    91 		CStartupStateObserver* observerObject =
    92 			static_cast<CStartupStateObserver*>(observerList[i]);
    93 
    94 		TEST2((TInt32)observerObject->GetState(), aState);
    95 		}
    96 	}
    97 
    98 void TServerStartupManager_StateAccessor::SetStateAwareObjectsState
    99 		(CServerStartupMgr& aServerStartupMgr, TInt32 aState)
   100 	{
   101 	int i;
   102 	const RPointerArray<MStartupStateObserver> observerList =
   103 		aServerStartupMgr.iObserverList;
   104 
   105 	for(i=0; i<observerList.Count(); i++)
   106 		{
   107 		CStartupStateObserver* observerObject =
   108 			static_cast<CStartupStateObserver*>(observerList[i]);
   109 
   110 		observerObject->SetState((CStartupStateObserver::TSsoState)aState);
   111 		}
   112 	}
   113 
   114 TStartupStateIdentifier TServerStartupManager_StateAccessor::GetKnownStartupState
   115 		(CServerStartupMgr& aServerStartupMgr, TDmDomainState aStartupState)
   116 	{
   117 	return aServerStartupMgr.GetKnownStartupState(aStartupState);
   118 	}
   119 
   120 void TServerStartupManager_StateAccessor::SetKnownStartupState(CServerStartupMgr& aServerStartupMgr, TStartupStateIdentifier aState)
   121 	{
   122 	aServerStartupMgr.iCurrentStartupState = aState;
   123 	}
   124 
   125 void TServerStartupManager_StateAccessor::SetStateL(CServerStartupMgr& aServerStartupMgr, TInt aState)
   126 	{
   127 	aServerStartupMgr.ChangeStartupStateL(aState);
   128 	}
   129 
   130 void TServerStartupManager_StateAccessor::RunL(CServerStartupMgr& aServerStartupMgr)
   131 	{
   132 	aServerStartupMgr.RunL();
   133 	}
   134 
   135 TInt TServerStartupManager_StateAccessor::RunError(CServerStartupMgr& aServerStartupMgr,TInt aError)
   136 	{
   137 	return aServerStartupMgr.RunError(aError);
   138 	}
   139 
   140 //
   141 //
   142 //Helper functions
   143 //
   144 //
   145 
   146 /**
   147 *
   148 * Function is used for each state change of InitialiseL() testing.
   149 * It checks whether:
   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()
   161 * was called
   162 * @param aExpectedCancelRequestNotification expected result from
   163 * IsCancelRequestNotification() call to check whether Request of Notification
   164 * was cancelled.
   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.
   168 */
   169 void CheckForInitialiseStateChangeL(CServerStartupMgr& aServerStartupMgr,
   170 							  TInt aNewState,
   171 							  CStartupStateObserver::TSsoState aObserverObjCurrentState,
   172 							  TBool aExpectedRequestTransitionNotification,
   173 							  TBool aExpectedCancelRequestNotification,
   174   							  CStartupStateObserver::TSsoState aObserverObjExpectedState,
   175   							  TStartupStateIdentifier aExpectedStartupState,
   176   							  TBool aSsaEnabled)
   177 	{
   178 	//reset the server startup manager flags
   179 	aServerStartupMgr.ResetRequestTransitionNotificationL();
   180 
   181 	//set the new/tested state for server startup manager
   182 	TServerStartupManager_StateAccessor::SetKnownStartupState
   183 		(aServerStartupMgr, EStartupStateUndefined);
   184 
   185 	//set the new/tested state for the domain
   186 	TServerStartupManager_StateAccessor::SetStateL
   187 		(aServerStartupMgr, aNewState);
   188 
   189 	//set the current state for all of the MStartupServerStateObserver objects
   190 	TServerStartupManager_StateAccessor::SetStateAwareObjectsState
   191 		(aServerStartupMgr, aObserverObjCurrentState);
   192 
   193 	//call InitialiseL()
   194 	aServerStartupMgr.InitialiseL(aSsaEnabled);
   195 
   196 	//test if RequestTransitionNotification() is called
   197 	TEST2(aServerStartupMgr.IsTransitionNotificationRequestedL(), aExpectedRequestTransitionNotification);
   198 
   199 	//test if Request of Notification is cancelled
   200 	TEST2(aServerStartupMgr.IsRequestNotificationCancelledL(), aExpectedCancelRequestNotification);
   201 
   202 	//test if MStartupStateObserver objects are set to expected state
   203 	TServerStartupManager_StateAccessor::TestStateAwareObjectsForState
   204 		(aServerStartupMgr, aObserverObjExpectedState);
   205 
   206 	//test if CServerStartupManager is set to expected state
   207 	TEST2(aServerStartupMgr.CurrentStartupState(), aExpectedStartupState);
   208 	}
   209 
   210 
   211 /**
   212 *
   213 * Function is used for each state change of RunL() testing.
   214 * It checks whether:
   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()
   227 * was called
   228 * @param aExpectedCancelRequestNotification expected result from
   229 * IsCancelRequestNotification() call to check whether Request of Notification
   230 * was cancelled.
   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.
   237 */
   238 void CheckForRunLStateChangeL(CServerStartupMgr& aServerStartupMgr,
   239 							  TInt aNewState,
   240 							  CStartupStateObserver::TSsoState aObserverObjCurrentState,
   241 							  TBool aExpectedRequestTransitionNotification,
   242 							  TBool aExpectedCancelRequestNotification,
   243 							  TBool aExpectedAcknowledgeLastState,
   244   							  CStartupStateObserver::TSsoState aObserverObjExpectedState,
   245   							  TStartupStateIdentifier aExpectedStartupState)
   246 	{
   247 	//reset the server startup manager flags
   248 	aServerStartupMgr.ResetLastStateAcknowledgedL();
   249 	aServerStartupMgr.ResetRequestTransitionNotificationL();
   250 
   251 	//set the current state for CDmDomain
   252 	TServerStartupManager_StateAccessor::SetStateL
   253 		(aServerStartupMgr, aNewState);
   254 
   255 	//set the current state for all of the MStartupServerStateObserver objects
   256 	TServerStartupManager_StateAccessor::SetStateAwareObjectsState
   257 		(aServerStartupMgr, aObserverObjCurrentState);
   258 
   259 	//call RunL()
   260 	TRAPD(err, TServerStartupManager_StateAccessor::
   261 				RunL(aServerStartupMgr));
   262 	if(aNewState == EStartupStateUndefined)
   263 		{
   264 		TEST2(err, KErrBadHandle);
   265 		}
   266 	else
   267 		{
   268 		TEST2(err, KErrNone);
   269 		}
   270 
   271 	//test if RequestTransitionNotification() is called
   272 	TEST2(aServerStartupMgr.IsTransitionNotificationRequestedL(), aExpectedRequestTransitionNotification);
   273 
   274 	//test if Request of Notification is cancelled
   275 	TEST2(aServerStartupMgr.IsRequestNotificationCancelledL(), aExpectedCancelRequestNotification);
   276 
   277 	//test if AcknowledgeLastStateL() is called
   278 	TEST2(aServerStartupMgr.IsLastStateAcknowledgedL(), aExpectedAcknowledgeLastState);
   279 
   280 	//test if MStartupStateObserver objects are set to expected state
   281 	TServerStartupManager_StateAccessor::TestStateAwareObjectsForState
   282 		(aServerStartupMgr, aObserverObjExpectedState);
   283 
   284 	//test if CServerStartupManager is set to expected state
   285 	TEST2(aServerStartupMgr.CurrentStartupState(), aExpectedStartupState);
   286 	}
   287 
   288 //
   289 //
   290 //Tests
   291 //
   292 //
   293 
   294 /**
   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.
   302 @SYMPREQ PREQ967
   303 */
   304 void GetKnownStartupState_TestL()
   305 	{
   306 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0178 "));
   307 	TUint32 i;
   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};
   313 	//Test results
   314 	TInt32 resultStates[] = {EStartupStateUndefined, EStartupStateUndefined,
   315 							 EStartupStateUndefined, EStartupStateCriticalStatic, EStartupStateCriticalStatic,
   316 							 EStartupStateCriticalStatic, EStartupStateCriticalDynamic, EStartupStateCriticalDynamic,
   317 							 EStartupStateCriticalDynamic, EStartupStateNonCritical, EStartupStateNonCritical};
   318 
   319 	EnableSsa(TheTest, TheFs);
   320 
   321 	CServerStartupMgr* serverStartupMgr =
   322 		new(ELeave) CServerStartupMgr(KDmHierarchyIdStartup, KDmIdRoot, TheFs);
   323 	CleanupStack::PushL(serverStartupMgr);
   324 
   325 	//check for all the test states
   326 	for(i=0; i<KTestCount; i++)
   327 		{
   328 		TEST2(TServerStartupManager_StateAccessor::GetKnownStartupState(*serverStartupMgr, testStates[i]),
   329 		      resultStates[i]);
   330 		}
   331 
   332 	CleanupStack::Pop(serverStartupMgr);
   333 	delete serverStartupMgr;
   334 
   335 	ResetSsa(TheTest, TheFs);
   336 	}
   337 
   338 /**
   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.
   346 @SYMPREQ PREQ967
   347 */
   348 void InitialiseL_NonSsa_TestL()
   349 	{
   350 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0179 "));
   351 	TestEnableDisableSsaL(TheTest, TheFs);
   352 
   353 	DisableSsa(TheTest, TheFs);
   354 
   355 	//Create some MStartupServerStateObserver objects
   356 	CStartupStateObserver* dummyObject1 = CStartupStateObserver::NewLC();
   357 	CStartupStateObserver* dummyObject2 = CStartupStateObserver::NewLC();
   358 	CStartupStateObserver* dummyObject3 = CStartupStateObserver::NewLC();
   359 
   360 	CServerStartupMgr* serverStartupMgr =
   361 		new(ELeave) CServerStartupMgr(KDmHierarchyIdStartup, KDmIdRoot, TheFs);
   362 	CleanupStack::PushL(serverStartupMgr);
   363 
   364 	//Register MStartupServerStateObserver objects
   365 	serverStartupMgr->RegisterObserverL(dummyObject1);
   366 	serverStartupMgr->RegisterObserverL(dummyObject2);
   367 	serverStartupMgr->RegisterObserverL(dummyObject3);
   368 
   369 	TServerStartupManager_StateAccessor::SetKnownStartupState
   370 		(*serverStartupMgr, EStartupStateUndefined);
   371 
   372 	TServerStartupManager_StateAccessor::SetStateL
   373 		(*serverStartupMgr, EStartupStateUndefined);
   374 
   375 	serverStartupMgr->InitialiseL(EFalse);
   376 
   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);
   382 
   383 	TEST2(serverStartupMgr->CurrentStartupState(), EStartupStateNonCritical);
   384 
   385 	CleanupStack::Pop(serverStartupMgr);
   386 	delete serverStartupMgr;
   387 
   388 	CleanupStack::PopAndDestroy(dummyObject3);
   389 	CleanupStack::PopAndDestroy(dummyObject2);
   390 	CleanupStack::PopAndDestroy(dummyObject1);
   391 
   392 	ResetSsa(TheTest, TheFs);
   393 	}
   394 
   395 
   396 /**
   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.
   406 @SYMPREQ PREQ967
   407 */
   408 void InitialiseL_Ssa_TestL()
   409 	{
   410 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0180 "));
   411 	TestEnableDisableSsaL(TheTest, TheFs);
   412 
   413 	EnableSsa(TheTest, TheFs);
   414 
   415 	//Create some MStartupServerStateObserver objects
   416 	CStartupStateObserver* dummyObject1 = CStartupStateObserver::NewLC();
   417 	CStartupStateObserver* dummyObject2 = CStartupStateObserver::NewLC();
   418 	CStartupStateObserver* dummyObject3 = CStartupStateObserver::NewLC();
   419 
   420 	CServerStartupMgr* serverStartupMgr =
   421 		new(ELeave) CServerStartupMgr(KDmHierarchyIdStartup, KDmIdRoot, TheFs);
   422 	CleanupStack::PushL(serverStartupMgr);
   423 
   424 	//Register MStartupServerStateObserver objects
   425 	serverStartupMgr->RegisterObserverL(dummyObject1);
   426 	serverStartupMgr->RegisterObserverL(dummyObject2);
   427 	serverStartupMgr->RegisterObserverL(dummyObject3);
   428 
   429 	//initialise the domain
   430 	//set the state for CDmDomain
   431 	TServerStartupManager_StateAccessor::SetStateL
   432 		(*serverStartupMgr, EStartupStateCriticalStatic);
   433 
   434 	serverStartupMgr->InitialiseL(ETrue);
   435 
   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);
   441 
   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
   448 
   449 	//Test for EStartupStateUndefined
   450 	CheckForInitialiseStateChangeL(*serverStartupMgr, EStartupStateUndefined,
   451 							CStartupStateObserver::SsoNoPluginsInternalized,
   452 							ETrue,
   453 							ETrue,
   454 							CStartupStateObserver::SsoAllPluginsInternalized,
   455 							EStartupStateNonCritical,ETrue);
   456 
   457 	//Test for a user defined state
   458 	CheckForInitialiseStateChangeL(*serverStartupMgr, EStartupStateCriticalStatic-1,
   459 							CStartupStateObserver::SsoNoPluginsInternalized,
   460 							ETrue,
   461 							EFalse,
   462 							CStartupStateObserver::SsoNoPluginsInternalized,
   463 							EStartupStateUndefined,ETrue);
   464 
   465 	//Test for EStartupStateCriticalStatic
   466 	CheckForInitialiseStateChangeL(*serverStartupMgr, EStartupStateCriticalStatic,
   467 							CStartupStateObserver::SsoNoPluginsInternalized,
   468 							ETrue,
   469 							EFalse,
   470 							CStartupStateObserver::SsoCriticalPlugingsInternalized,
   471 							EStartupStateCriticalStatic,ETrue);
   472 
   473 	//Test for a user defined state
   474 	CheckForInitialiseStateChangeL(*serverStartupMgr, EStartupStateCriticalDynamic-1,
   475 							CStartupStateObserver::SsoNoPluginsInternalized,
   476 							ETrue,
   477 							EFalse,
   478 							CStartupStateObserver::SsoCriticalPlugingsInternalized,
   479 							EStartupStateCriticalStatic,ETrue);
   480 
   481 	//Test for EStartupStateCriticalDynamic
   482 	CheckForInitialiseStateChangeL(*serverStartupMgr, EStartupStateCriticalDynamic,
   483 							CStartupStateObserver::SsoNoPluginsInternalized,
   484 							ETrue,
   485 							EFalse,
   486 							CStartupStateObserver::SsoCriticalPlugingsInternalized,
   487 							EStartupStateCriticalDynamic,ETrue);
   488 
   489 	//Test for a user defined state
   490 	CheckForInitialiseStateChangeL(*serverStartupMgr, EStartupStateNonCritical-1,
   491 							CStartupStateObserver::SsoNoPluginsInternalized,
   492 							ETrue,
   493 							EFalse,
   494 							CStartupStateObserver::SsoCriticalPlugingsInternalized,
   495 							EStartupStateCriticalDynamic,ETrue);
   496 
   497 	//Test for EStartupStateNonCritical
   498 	CheckForInitialiseStateChangeL(*serverStartupMgr, EStartupStateNonCritical,
   499 							CStartupStateObserver::SsoNoPluginsInternalized,
   500 							ETrue,
   501 							ETrue,
   502 							CStartupStateObserver::SsoAllPluginsInternalized,
   503 							EStartupStateNonCritical,ETrue);
   504 
   505 	//Test for a user defined state
   506 	CheckForInitialiseStateChangeL(*serverStartupMgr, EStartupStateNonCritical+1,
   507 							CStartupStateObserver::SsoNoPluginsInternalized,
   508 							ETrue,
   509 							ETrue,
   510 							CStartupStateObserver::SsoAllPluginsInternalized,
   511 							EStartupStateNonCritical,ETrue);
   512 
   513 	CleanupStack::Pop(serverStartupMgr);
   514 	delete serverStartupMgr;
   515 
   516 	CleanupStack::PopAndDestroy(dummyObject3);
   517 	CleanupStack::PopAndDestroy(dummyObject2);
   518 	CleanupStack::PopAndDestroy(dummyObject1);
   519 
   520 	ResetSsa(TheTest, TheFs);
   521 	}
   522 
   523 
   524 /**
   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.
   532 @SYMPREQ PREQ967
   533 */
   534 void RunL_TestL()
   535 	{
   536 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0181 "));
   537 	EnableSsa(TheTest, TheFs);
   538 
   539 	//Create some MStartupServerStateObserver objects
   540 	CStartupStateObserver* dummyObject1 = CStartupStateObserver::NewLC();
   541 	CStartupStateObserver* dummyObject2 = CStartupStateObserver::NewLC();
   542 	CStartupStateObserver* dummyObject3 = CStartupStateObserver::NewLC();
   543 
   544 	CServerStartupMgr* serverStartupMgr =
   545 		new(ELeave) CServerStartupMgr(KDmHierarchyIdStartup, KDmIdRoot, TheFs);
   546 	CleanupStack::PushL(serverStartupMgr);
   547 
   548 	//Register MStartupServerStateObserver objects
   549 	serverStartupMgr->RegisterObserverL(dummyObject1);
   550 	serverStartupMgr->RegisterObserverL(dummyObject2);
   551 	serverStartupMgr->RegisterObserverL(dummyObject3);
   552 
   553 	serverStartupMgr->InitialiseL(ETrue);
   554 
   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,
   565 							ETrue, ETrue, ETrue,
   566 							CStartupStateObserver::SsoUndefined,
   567 							EStartupStateUndefined);
   568 
   569 	//Test for a user defined state
   570 	CheckForRunLStateChangeL(*serverStartupMgr, EStartupStateCriticalStatic-1,
   571 							CStartupStateObserver::SsoUndefined,
   572 							ETrue, EFalse, ETrue,
   573 							CStartupStateObserver::SsoUndefined,
   574 							EStartupStateUndefined);
   575 
   576 	//Test for EStartupStateCriticalStatic
   577 	CheckForRunLStateChangeL(*serverStartupMgr, EStartupStateCriticalStatic,
   578 							CStartupStateObserver::SsoNoPluginsInternalized,
   579 							ETrue, EFalse, ETrue,
   580 							CStartupStateObserver::SsoCriticalPlugingsInternalized,
   581 							EStartupStateCriticalStatic);
   582 
   583 	//Test for EStartupStateCriticalStatic
   584 	CheckForRunLStateChangeL(*serverStartupMgr, EStartupStateCriticalDynamic-1,
   585 							CStartupStateObserver::SsoCriticalPlugingsInternalized,
   586 							ETrue, EFalse,ETrue,
   587 							CStartupStateObserver::SsoCriticalPlugingsInternalized,
   588 							EStartupStateCriticalStatic);
   589 
   590 	//Test for EStartupStateCriticalDynamic
   591 	CheckForRunLStateChangeL(*serverStartupMgr, EStartupStateCriticalDynamic,
   592 							CStartupStateObserver::SsoCriticalPlugingsInternalized,
   593 							ETrue, EFalse, ETrue,
   594 							CStartupStateObserver::SsoCriticalPlugingsInternalized,
   595 							EStartupStateCriticalDynamic);
   596 
   597 	//Test for EStartupStateCriticalDynamic
   598 	CheckForRunLStateChangeL(*serverStartupMgr, EStartupStateNonCritical-1,
   599 							CStartupStateObserver::SsoCriticalPlugingsInternalized,
   600 							ETrue, EFalse, ETrue,
   601 							CStartupStateObserver::SsoCriticalPlugingsInternalized,
   602 							EStartupStateCriticalDynamic);
   603 
   604 	//Test for EStartupStateNonCritical
   605 	CheckForRunLStateChangeL(*serverStartupMgr, EStartupStateNonCritical,
   606 							CStartupStateObserver::SsoCriticalPlugingsInternalized,
   607 							ETrue,ETrue, ETrue,
   608 							CStartupStateObserver::SsoAllPluginsInternalized,
   609 							EStartupStateNonCritical);
   610 
   611 	//Test for EStartupStateNonCritical
   612 	CheckForRunLStateChangeL(*serverStartupMgr, EStartupStateNonCritical+1,
   613 							CStartupStateObserver::SsoAllPluginsInternalized,
   614 							ETrue, ETrue, ETrue,
   615 							CStartupStateObserver::SsoAllPluginsInternalized,
   616 							EStartupStateNonCritical);
   617 
   618 	CleanupStack::Pop(serverStartupMgr);
   619 	delete serverStartupMgr;
   620 
   621 	CleanupStack::PopAndDestroy(dummyObject3);
   622 	CleanupStack::PopAndDestroy(dummyObject2);
   623 	CleanupStack::PopAndDestroy(dummyObject1);
   624 
   625 	ResetSsa(TheTest, TheFs);
   626 	}
   627 
   628 /**
   629 Creates and installs active scheduler for this thread,
   630 creates a CServerStartupMgr instance and calls
   631 TServerStartupManager_StateAccessor::RunError
   632 
   633 */
   634 TInt DoRunError_TestL()
   635 	{
   636 	// create and install the active scheduler we need
   637 	CActiveScheduler* scheduler=new(ELeave) CActiveScheduler;
   638 	CleanupStack::PushL(scheduler);
   639 
   640 	CActiveScheduler::Install(scheduler);
   641 
   642 	//create a new ServerStartupMgr
   643 	CServerStartupMgr* serverStartupMgr =
   644 		new(ELeave) CServerStartupMgr(KDmHierarchyIdStartup, KDmIdRoot, TheFs);
   645 
   646 	CleanupStack::PushL(serverStartupMgr);
   647 
   648 	//call the RunError method which should panic
   649 	TInt result = TServerStartupManager_StateAccessor::RunError(*serverStartupMgr,KErrNoMemory);
   650 
   651 	// Cleanup the server and scheduler
   652 	CleanupStack::PopAndDestroy(2, scheduler);
   653 
   654 	return result;
   655 
   656 	}
   657 
   658 /**
   659 Thread entry point for the test thread.  Creates a CTrapCleanup and
   660 calls  DoRunError_TestL to carry out the test
   661 
   662 */
   663 TInt RunErrorThreadEntry(TAny* /*a*/)
   664 	{
   665 
   666 	CTrapCleanup* tc = CTrapCleanup::New();
   667 
   668 	TRAPD(err,DoRunError_TestL());
   669 
   670 	delete tc;
   671 
   672 	return err;
   673 
   674 	}
   675 
   676 
   677 /**
   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
   683 					verify behaviour
   684 @SYMTestExpectedResults The test must not fail.
   685 @SYMDEF DEF094675
   686 */
   687 void RunError_Test()
   688 	{
   689 	__UHEAP_MARK;
   690 	_LIT(KStartThreadName,"CServerStartupMgr RunError Thread");
   691 
   692 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3164 CServerStartupMgr RunError test "));
   693 
   694 	//Disable JIT so that the Panic doesn't bring up a dialog
   695 	//and stop the test
   696 	TBool jitEnabled = User::JustInTime();
   697 	User::SetJustInTime(EFalse);
   698 
   699 	//Create a new thread to run the test
   700 	RThread testThread;
   701 	testThread.Create(KStartThreadName, RunErrorThreadEntry,
   702 					KDefaultStackSize,KMinHeapSize,KMinHeapSize,NULL);
   703 	TRequestStatus status;
   704 	testThread.Logon(status);
   705 	testThread.Resume();
   706 
   707 	//Wait for the thread to exit
   708 	User::WaitForRequest(status);
   709 
   710 	//Obtain exit type and reason for test thread
   711 	TExitType exitType = testThread.ExitType();
   712 	TInt exitReason = testThread.ExitReason();
   713 
   714 	//close the thread handle
   715 	testThread.Close();
   716 
   717 	//Set JIT back to original state
   718 	User::SetJustInTime(jitEnabled);
   719 
   720 	//Verify the exit reason and exit code
   721 	TEST(exitType == EExitPanic);
   722 	TEST(exitReason == EEComPanic_CServerStartupMgr_RunError);
   723 
   724 	__UHEAP_MARKEND;
   725 
   726 	}
   727 
   728 LOCAL_C void CreateDelete_TestL()
   729 	{
   730 	CServerStartupMgr* serverStartupMgr =
   731 #ifdef SYMBIAN_SYSTEM_STATE_MANAGEMENT
   732 		new(ELeave) CServerStartupMgr(KDmHierarchyIdStartup, KSM2OSServicesDomain3, TheFs);
   733 #else
   734 		new(ELeave) CServerStartupMgr(KDmHierarchyIdStartup, KBaseServicesDomain3, TheFs);
   735 #endif //SYMBIAN_SYSTEM_STATE_MANAGEMENT
   736 
   737 	TEST(serverStartupMgr != NULL);
   738 
   739 	delete serverStartupMgr;
   740 	}
   741 
   742 
   743 // Type definition for pointer to member function.
   744 // Used in calling t_ServerStartupMgr test functions.
   745 typedef void (*ClassFuncPtrL) (void);
   746 
   747 /**
   748 Wrapper function to call all test functions
   749 @param		testFunc pointer to test function
   750 @param		aTestDesc test function name
   751 */
   752 LOCAL_C void DoBasicTestL(ClassFuncPtrL testFuncL, const TDesC& aTestDesc)
   753 	{
   754 	TheTest.Next(aTestDesc);
   755 
   756 	__UHEAP_MARK;
   757   	// find out the number of open handles
   758 	TInt startProcessHandleCount;
   759 	TInt startThreadHandleCount;
   760 	RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
   761 
   762 	testFuncL();
   763 
   764 	// check that no handles have leaked
   765 	TInt endProcessHandleCount;
   766 	TInt endThreadHandleCount;
   767 	RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
   768 
   769 	TEST(startProcessHandleCount == endProcessHandleCount);
   770 	TEST(startThreadHandleCount  == endThreadHandleCount);
   771 
   772 	__UHEAP_MARKEND;
   773 	}
   774 
   775 /**
   776 Wrapper function to call all OOM test functions
   777 @param		testFuncL pointer to OOM test function
   778 @param		aTestDesc test function name
   779 */
   780 LOCAL_C void DoOOMTestL(ClassFuncPtrL testFuncL, const TDesC& aTestDesc)
   781 	{
   782 	TheTest.Next(aTestDesc);
   783 
   784 	TInt err;
   785 	TInt tryCount = 0;
   786 	do
   787 		{
   788 		__UHEAP_MARK;
   789   		// find out the number of open handles
   790 		TInt startProcessHandleCount;
   791 		TInt startThreadHandleCount;
   792 		RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
   793 
   794 		__UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
   795 
   796 		TRAP(err, testFuncL());
   797 
   798 		__UHEAP_SETFAIL(RHeap::ENone, 0);
   799 
   800 		// check that no handles have leaked
   801 		TInt endProcessHandleCount;
   802 		TInt endThreadHandleCount;
   803 		RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
   804 
   805 		TEST(startProcessHandleCount == endProcessHandleCount);
   806 		TEST(startThreadHandleCount  == endThreadHandleCount);
   807 
   808 		__UHEAP_MARKEND;
   809 		} while(err == KErrNoMemory);
   810 
   811  	TEST2(err, KErrNone);
   812 	TheTest.Printf(_L("- server succeeded at heap failure rate of %i\n"), tryCount);
   813 	}
   814 
   815 LOCAL_C void DoTestsL()
   816 	{
   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"));
   822 
   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"));
   828 
   829 	RunError_Test();
   830 	}
   831 
   832 GLDEF_C TInt E32Main()
   833 	{
   834 	__UHEAP_MARK;
   835 	TheTest.Printf(_L("\n"));
   836 	TheTest.Title();
   837 	TheTest.Start(_L("ServerStartupMgr Tests."));
   838 
   839 	TEST2(TheFs.Connect(), KErrNone);
   840 
   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);
   847 
   848 	EnableEcomTestBehaviour(TheTest, TheFs);
   849 
   850 	TRAPD(err,DoTestsL());
   851 	ResetSsa(TheTest, TheFs);
   852 	TheTest(err==KErrNone);
   853 
   854 	DisableEcomTestBehaviour(TheTest, TheFs);
   855 
   856 	TheTest.End();
   857 	TheTest.Close();
   858 
   859 	//delete scheduler;
   860 	delete activeScheduler;
   861 	delete cleanup;
   862 
   863 	TheFs.Close();
   864 
   865 	__UHEAP_MARKEND;
   866 
   867 	User::Heap().Check();
   868 
   869 	return KErrNone;
   870 	}