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