os/ossrv/lowlevellibsandfws/pluginfw/Framework/DiscovererTest/DiscovererUnitTest.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// Implementation of the CDiscoverer Unit Test class methods.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include "DiscovererUnitTest.h"
sl@0
    19
sl@0
    20
// ______________________________________________________________________________
sl@0
    21
//
sl@0
    22
sl@0
    23
CDiscoverer_CreateAndDestroy_UnitTest* CDiscoverer_CreateAndDestroy_UnitTest::NewL(CDataLogger& aDataLogger,
sl@0
    24
											MUnitTestObserver& aObserver)
sl@0
    25
	{
sl@0
    26
	CDiscoverer_CreateAndDestroy_UnitTest* self = 
sl@0
    27
					new(ELeave) CDiscoverer_CreateAndDestroy_UnitTest(aDataLogger,
sl@0
    28
																aObserver);
sl@0
    29
	CleanupStack::PushL(self);
sl@0
    30
	// Chain to the base which calls the ConstructL
sl@0
    31
	self->ConstructL();
sl@0
    32
	CleanupStack::Pop();
sl@0
    33
	return self; 
sl@0
    34
	}
sl@0
    35
sl@0
    36
// Now the Individual transitions need to be added.
sl@0
    37
inline void CDiscoverer_CreateAndDestroy_UnitTest::ConstructL()
sl@0
    38
	{
sl@0
    39
	UnitTestConstructL();
sl@0
    40
	// Create the Unit test state accessor
sl@0
    41
	iStateAccessor = new(ELeave) TDiscoverer_StateAccessor;
sl@0
    42
	
sl@0
    43
	// Construct the Unit test context.
sl@0
    44
	iUTContext = new(ELeave) CDiscoverer_UnitTestContext(iDataLogger, *iStateAccessor, *this, iFs);
sl@0
    45
	// Construct, and store the observer stub
sl@0
    46
	iUTContext->iDiscovererObserver = CObserverStub::NewL(*this,*iUTContext);
sl@0
    47
	
sl@0
    48
	// and a validators
sl@0
    49
	iCtorValidator = new(ELeave) TDiscoverer_Ctor_TransitionValidator(*iUTContext);
sl@0
    50
	iDtorValidator = new(ELeave) TDiscoverer_Dtor_TransitionValidator(*iUTContext);
sl@0
    51
sl@0
    52
	// Add the Transitions in the order they are to run
sl@0
    53
	// C'tor first, D'tor last...
sl@0
    54
	//	Examples of C'tor and D'tor transitions on CDiscoverer class. 
sl@0
    55
	AddTransitionL(new(ELeave)CDiscoverer_NewL_Transition(*iUTContext,*iCtorValidator));
sl@0
    56
	AddTransitionL(new(ELeave)CDiscoverer_Dtor_Transition(*iUTContext,*iDtorValidator));
sl@0
    57
	}
sl@0
    58
sl@0
    59
void CDiscoverer_CreateAndDestroy_UnitTest::PrepareUnitTestL()
sl@0
    60
	{
sl@0
    61
	}
sl@0
    62
sl@0
    63
// ______________________________________________________________________________
sl@0
    64
//
sl@0
    65
sl@0
    66
CDiscoverer_MountDrive_UnitTest* CDiscoverer_MountDrive_UnitTest::NewL(CDataLogger& aDataLogger,
sl@0
    67
											MUnitTestObserver& aObserver)
sl@0
    68
	{
sl@0
    69
	CDiscoverer_MountDrive_UnitTest* self = 
sl@0
    70
					new(ELeave) CDiscoverer_MountDrive_UnitTest(aDataLogger,
sl@0
    71
																aObserver);
sl@0
    72
	CleanupStack::PushL(self);
sl@0
    73
	self->ConstructL();
sl@0
    74
	CleanupStack::Pop();
sl@0
    75
	return self; 
sl@0
    76
	}
sl@0
    77
sl@0
    78
// Now the Individual transitions need to be added.
sl@0
    79
inline void CDiscoverer_MountDrive_UnitTest::ConstructL()
sl@0
    80
	{
sl@0
    81
	// Perform the base class initialization
sl@0
    82
	UnitTestConstructL();
sl@0
    83
sl@0
    84
	// Create the Unit test state accessor
sl@0
    85
	iStateAccessor = new(ELeave) TDiscoverer_StateAccessor;
sl@0
    86
	// Construct the Unit test context.
sl@0
    87
	iUTContext = new(ELeave) CDiscoverer_UnitTestContext(iDataLogger, *iStateAccessor, *this, iFs);
sl@0
    88
	// Set up the drive letter for the test (C:)
sl@0
    89
	iUTContext->iDriveUnit = TDriveUnit(EDriveC);
sl@0
    90
	// Construct, and store the observer stub
sl@0
    91
	iUTContext->iDiscovererObserver = CObserverStub::NewL(*this,*iUTContext);
sl@0
    92
sl@0
    93
	// Add the Transitions in the order they are to run
sl@0
    94
	// C'tor first, D'tor last...
sl@0
    95
	iCtorValidator = new(ELeave) TDiscoverer_Ctor_TransitionValidator(*iUTContext);
sl@0
    96
	AddTransitionL(new(ELeave)CDiscoverer_NewL_Transition(*iUTContext,*iCtorValidator));
sl@0
    97
	iMountValidator = new(ELeave) TDiscoverer_MountDriveL_TransitionValidator(*iUTContext);
sl@0
    98
	AddTransitionL(new(ELeave)CDiscoverer_MountDriveL_Transition(*iUTContext,*iMountValidator));
sl@0
    99
	iDtorValidator = new(ELeave) TDiscoverer_Dtor_TransitionValidator(*iUTContext);
sl@0
   100
	AddTransitionL(new(ELeave)CDiscoverer_Dtor_Transition(*iUTContext,*iDtorValidator));
sl@0
   101
	}
sl@0
   102
sl@0
   103
// ______________________________________________________________________________
sl@0
   104
//
sl@0
   105
sl@0
   106
CDiscoverer_UnmountDrive_UnitTest* CDiscoverer_UnmountDrive_UnitTest::NewL(CDataLogger& aDataLogger,
sl@0
   107
											MUnitTestObserver& aObserver)
sl@0
   108
	{
sl@0
   109
	CDiscoverer_UnmountDrive_UnitTest* self = 
sl@0
   110
					new(ELeave) CDiscoverer_UnmountDrive_UnitTest(aDataLogger,
sl@0
   111
																aObserver);
sl@0
   112
	CleanupStack::PushL(self);
sl@0
   113
	self->ConstructL();
sl@0
   114
	CleanupStack::Pop();
sl@0
   115
	return self; 
sl@0
   116
	}
sl@0
   117
sl@0
   118
// Now the Individual transitions need to be added.
sl@0
   119
inline void CDiscoverer_UnmountDrive_UnitTest::ConstructL()
sl@0
   120
	{
sl@0
   121
	// Perform the base class initialization
sl@0
   122
	UnitTestConstructL();
sl@0
   123
sl@0
   124
	// Create the Unit test state accessor
sl@0
   125
	iStateAccessor = new(ELeave) TDiscoverer_StateAccessor;
sl@0
   126
	// Construct the Unit test context.
sl@0
   127
	iUTContext = new(ELeave) CDiscoverer_UnitTestContext(iDataLogger, *iStateAccessor, *this, iFs);
sl@0
   128
	// Set up the drive letter for the test (C:)
sl@0
   129
	iUTContext->iDriveUnit = TDriveUnit(EDriveC);
sl@0
   130
	// Construct, and store the observer stub
sl@0
   131
	iUTContext->iDiscovererObserver = CObserverStub::NewL(*this,*iUTContext);
sl@0
   132
	// Add the Transitions in the order they are to run
sl@0
   133
	// C'tor first, D'tor last...
sl@0
   134
	iCtorValidator = new(ELeave) TDiscoverer_Ctor_TransitionValidator(*iUTContext);
sl@0
   135
	AddTransitionL(new(ELeave)CDiscoverer_NewL_Transition(*iUTContext,*iCtorValidator));
sl@0
   136
	iUnmountValidator = new(ELeave) TDiscoverer_UnmountDrive_TransitionValidator(*iUTContext);
sl@0
   137
	AddTransitionL(new(ELeave)CDiscoverer_UnmountDrive_Transition(*iUTContext,*iUnmountValidator));
sl@0
   138
	iDtorValidator = new(ELeave) TDiscoverer_Dtor_TransitionValidator(*iUTContext);
sl@0
   139
	AddTransitionL(new(ELeave)CDiscoverer_Dtor_Transition(*iUTContext,*iDtorValidator));
sl@0
   140
	}
sl@0
   141
sl@0
   142
// ______________________________________________________________________________
sl@0
   143
//
sl@0
   144
sl@0
   145
CDiscoverer_IsValidEntryL_UnitTest* CDiscoverer_IsValidEntryL_UnitTest::NewL(CDataLogger& aDataLogger,
sl@0
   146
											MUnitTestObserver& aObserver)
sl@0
   147
	{
sl@0
   148
	CDiscoverer_IsValidEntryL_UnitTest* self = 
sl@0
   149
					new(ELeave) CDiscoverer_IsValidEntryL_UnitTest(aDataLogger,
sl@0
   150
																aObserver);
sl@0
   151
	CleanupStack::PushL(self);
sl@0
   152
	self->ConstructL();
sl@0
   153
	CleanupStack::Pop();
sl@0
   154
	return self; 
sl@0
   155
	}
sl@0
   156
sl@0
   157
// Now the Individual transitions need to be added.
sl@0
   158
inline void CDiscoverer_IsValidEntryL_UnitTest::ConstructL()
sl@0
   159
	{
sl@0
   160
	_LIT(KDllFileSearchPath,"\\System\\Libs\\Plugins\\*");
sl@0
   161
sl@0
   162
	// Perform the base class initialization
sl@0
   163
	UnitTestConstructL();
sl@0
   164
sl@0
   165
	// Create the Unit test state accessor
sl@0
   166
	iStateAccessor = new(ELeave) TDiscoverer_StateAccessor;
sl@0
   167
	// Construct the Unit test context.
sl@0
   168
	iUTContext = new(ELeave) CDiscoverer_UnitTestContext(iDataLogger, *iStateAccessor, *this, iFs);
sl@0
   169
	// Construct, and store the observer stub
sl@0
   170
	iUTContext->iDiscovererObserver = CObserverStub::NewL(*this,*iUTContext);
sl@0
   171
	// and the path
sl@0
   172
sl@0
   173
	// Set up the drive letter for the test (Z:)
sl@0
   174
	iUTContext->iDriveUnit = TDriveUnit(EDriveZ);
sl@0
   175
	TDriveName driveName(iUTContext->iDriveUnit.Name());
sl@0
   176
	iUTContext->iPath.Set(KDllFileSearchPath(), NULL, &driveName);
sl@0
   177
sl@0
   178
	// Add the Transitions in the order they are to run
sl@0
   179
	// C'tor first, D'tor last...
sl@0
   180
	iCtorValidator = new(ELeave) TDiscoverer_Ctor_TransitionValidator(*iUTContext);
sl@0
   181
	AddTransitionL(new(ELeave)CDiscoverer_NewL_Transition(*iUTContext,*iCtorValidator));
sl@0
   182
	iIsValidEntryValidator = new(ELeave) TDiscoverer_IsValidEntry_TransitionValidator(*iUTContext);
sl@0
   183
	AddTransitionL(new(ELeave)CDiscoverer_IsValidEntryL_Transition(*iUTContext,*iIsValidEntryValidator));
sl@0
   184
	iDtorValidator = new(ELeave) TDiscoverer_Dtor_TransitionValidator(*iUTContext);
sl@0
   185
	AddTransitionL(new(ELeave)CDiscoverer_Dtor_Transition(*iUTContext,*iDtorValidator));
sl@0
   186
	}
sl@0
   187
sl@0
   188
inline void CDiscoverer_IsValidEntryL_UnitTest::PrepareUnitTestL()
sl@0
   189
	{
sl@0
   190
	_LIT(KPathForDiscovery,"Discovery Path = %S");
sl@0
   191
	iDataLogger.LogInformationWithParameters(KPathForDiscovery,&(iUTContext->iPath.FullName()));
sl@0
   192
	User::LeaveIfError(iFs.GetDir(iUTContext->iPath.FullName(), KEntryAttMatchExclude | KEntryAttDir, ESortByUid, iUTContext->iDir));
sl@0
   193
	}
sl@0
   194
sl@0
   195
// ______________________________________________________________________________
sl@0
   196
//
sl@0
   197
sl@0
   198
CDiscoverer_ProcessEntryL_UnitTest* CDiscoverer_ProcessEntryL_UnitTest::NewL(CDataLogger& aDataLogger,
sl@0
   199
											MUnitTestObserver& aObserver)
sl@0
   200
	{
sl@0
   201
	CDiscoverer_ProcessEntryL_UnitTest* self = 
sl@0
   202
					new(ELeave) CDiscoverer_ProcessEntryL_UnitTest(aDataLogger,
sl@0
   203
																aObserver);
sl@0
   204
	CleanupStack::PushL(self);
sl@0
   205
	self->ConstructL();
sl@0
   206
	CleanupStack::Pop();
sl@0
   207
	return self; 
sl@0
   208
	}
sl@0
   209
sl@0
   210
// Now the Individual transitions need to be added.
sl@0
   211
inline void CDiscoverer_ProcessEntryL_UnitTest::ConstructL()
sl@0
   212
	{
sl@0
   213
	// Perform the base class initialization
sl@0
   214
	UnitTestConstructL();
sl@0
   215
sl@0
   216
	// Create the Unit test state accessor
sl@0
   217
	iStateAccessor = new(ELeave) TDiscoverer_StateAccessor;
sl@0
   218
	// Construct the Unit test context.
sl@0
   219
	iUTContext = new(ELeave) CDiscoverer_UnitTestContext(iDataLogger, *iStateAccessor, *this, iFs);
sl@0
   220
	// Set up the drive letter for the test (C:)
sl@0
   221
	iUTContext->iDriveUnit = TDriveUnit(EDriveC);
sl@0
   222
	// Construct, and store the observer stub
sl@0
   223
	iUTContext->iDiscovererObserver = CObserverStub::NewL(*this,*iUTContext);
sl@0
   224
	// Add the Transitions in the order they are to run
sl@0
   225
	// C'tor first, D'tor last...
sl@0
   226
	iCtorValidator = new(ELeave) TDiscoverer_Ctor_TransitionValidator(*iUTContext);
sl@0
   227
	AddTransitionL(new(ELeave)CDiscoverer_NewL_Transition(*iUTContext,*iCtorValidator));
sl@0
   228
	iProcessEntryValidator = new(ELeave) TDiscoverer_ProcessEntryL_TransitionValidator(*iUTContext);
sl@0
   229
	AddTransitionL(new(ELeave)CDiscoverer_ProcessEntryL_Transition(*iUTContext,*iProcessEntryValidator));
sl@0
   230
	iDtorValidator = new(ELeave) TDiscoverer_Dtor_TransitionValidator(*iUTContext);
sl@0
   231
	AddTransitionL(new(ELeave)CDiscoverer_Dtor_Transition(*iUTContext,*iDtorValidator));
sl@0
   232
	}
sl@0
   233
sl@0
   234
// ______________________________________________________________________________
sl@0
   235
//
sl@0
   236
sl@0
   237
CDiscoverer_CompleteNotificationProcessing_UnitTest* CDiscoverer_CompleteNotificationProcessing_UnitTest::NewL(CDataLogger& aDataLogger,
sl@0
   238
											MUnitTestObserver& aObserver)
sl@0
   239
	{
sl@0
   240
	CDiscoverer_CompleteNotificationProcessing_UnitTest* self = 
sl@0
   241
					new(ELeave) CDiscoverer_CompleteNotificationProcessing_UnitTest(aDataLogger,
sl@0
   242
																aObserver);
sl@0
   243
	CleanupStack::PushL(self);
sl@0
   244
	self->ConstructL();
sl@0
   245
	CleanupStack::Pop();
sl@0
   246
	return self; 
sl@0
   247
	}
sl@0
   248
sl@0
   249
// Now the Individual transitions need to be added.
sl@0
   250
inline void CDiscoverer_CompleteNotificationProcessing_UnitTest::ConstructL()
sl@0
   251
	{
sl@0
   252
	// Perform the base class initialization
sl@0
   253
	UnitTestConstructL();
sl@0
   254
sl@0
   255
	// Create the Unit test state accessor
sl@0
   256
	iStateAccessor = new(ELeave) TDiscoverer_StateAccessor;
sl@0
   257
	// Construct the Unit test context.
sl@0
   258
	iUTContext = new(ELeave) CDiscoverer_UnitTestContext(iDataLogger, *iStateAccessor, *this, iFs);
sl@0
   259
	// Set up the drive letter for the test (C:)
sl@0
   260
	iUTContext->iDriveUnit = TDriveUnit(EDriveC);
sl@0
   261
	// Construct, and store the observer stub
sl@0
   262
	iUTContext->iDiscovererObserver = CObserverStub::NewL(*this,*iUTContext);
sl@0
   263
	// Add the Transitions in the order they are to run
sl@0
   264
	// C'tor first, D'tor last...
sl@0
   265
	iCtorValidator = new(ELeave) TDiscoverer_Ctor_TransitionValidator(*iUTContext);
sl@0
   266
	AddTransitionL(new(ELeave)CDiscoverer_NewL_Transition(*iUTContext,*iCtorValidator));
sl@0
   267
sl@0
   268
	iCompleteNotificationProcessingValidator = new(ELeave) TDiscoverer_CompleteNotificationProcessing_TransitionValidator(*iUTContext);
sl@0
   269
	AddTransitionL(new(ELeave)CDiscoverer_CompleteNotificationProcessing_Transition(*iUTContext,*iCompleteNotificationProcessingValidator));
sl@0
   270
	
sl@0
   271
	iDtorValidator = new(ELeave) TDiscoverer_Dtor_TransitionValidator(*iUTContext);
sl@0
   272
	AddTransitionL(new(ELeave)CDiscoverer_Dtor_Transition(*iUTContext,*iDtorValidator));
sl@0
   273
	}
sl@0
   274
sl@0
   275
// ______________________________________________________________________________
sl@0
   276
//
sl@0
   277
sl@0
   278
CDiscoverer_Notification_UnitTest* CDiscoverer_Notification_UnitTest::NewL(CDataLogger& aDataLogger,
sl@0
   279
											MUnitTestObserver& aObserver)
sl@0
   280
	{
sl@0
   281
	CDiscoverer_Notification_UnitTest* self = 
sl@0
   282
					new(ELeave) CDiscoverer_Notification_UnitTest(aDataLogger,
sl@0
   283
																aObserver);
sl@0
   284
	CleanupStack::PushL(self);
sl@0
   285
	self->ConstructL();
sl@0
   286
	CleanupStack::Pop();
sl@0
   287
	return self; 
sl@0
   288
	}
sl@0
   289
sl@0
   290
// Now the Individual transitions need to be added.
sl@0
   291
inline void CDiscoverer_Notification_UnitTest::ConstructL()
sl@0
   292
	{
sl@0
   293
	// Perform the base class initialization
sl@0
   294
	UnitTestConstructL();
sl@0
   295
sl@0
   296
	// Create the Unit test state accessor
sl@0
   297
	iStateAccessor = new(ELeave) TDiscoverer_StateAccessor;
sl@0
   298
	// Construct the Unit test context.
sl@0
   299
	iUTContext = new(ELeave) CDiscoverer_UnitTestContext(iDataLogger, *iStateAccessor, *this, iFs);
sl@0
   300
	// Set up the drive letter for the test (C:)
sl@0
   301
	iUTContext->iDriveUnit = TDriveUnit(EDriveC);
sl@0
   302
	// Construct, and store the observer stub
sl@0
   303
	iUTContext->iDiscovererObserver = CObserverStub::NewL(*this,*iUTContext);
sl@0
   304
	// Add the Transitions in the order they are to run
sl@0
   305
	// C'tor first, D'tor last...
sl@0
   306
	iCtorValidator = new(ELeave) TDiscoverer_Ctor_TransitionValidator(*iUTContext);
sl@0
   307
	AddTransitionL(new(ELeave)CDiscoverer_NewL_Transition(*iUTContext,*iCtorValidator));
sl@0
   308
sl@0
   309
	iNotificationValidator = new(ELeave) TDiscoverer_Notification_TransitionValidator(*iUTContext);
sl@0
   310
	AddTransitionL(new(ELeave)CDiscoverer_Notification_Transition(*iUTContext,*iNotificationValidator));
sl@0
   311
	
sl@0
   312
	iDtorValidator = new(ELeave) TDiscoverer_Dtor_TransitionValidator(*iUTContext);
sl@0
   313
	AddBlockingTransitionL(new(ELeave)CDiscoverer_Dtor_Transition(*iUTContext,*iDtorValidator));
sl@0
   314
	}
sl@0
   315
// ______________________________________________________________________________
sl@0
   316
//
sl@0
   317
sl@0
   318
CDiscoverer_SuspendResume_UnitTest* CDiscoverer_SuspendResume_UnitTest::NewL(CDataLogger& aDataLogger,
sl@0
   319
											MUnitTestObserver& aObserver)
sl@0
   320
	{
sl@0
   321
	CDiscoverer_SuspendResume_UnitTest* self = 
sl@0
   322
					new(ELeave) CDiscoverer_SuspendResume_UnitTest(aDataLogger,
sl@0
   323
																aObserver);
sl@0
   324
	CleanupStack::PushL(self);
sl@0
   325
	self->ConstructL();
sl@0
   326
	CleanupStack::Pop();
sl@0
   327
	return self; 
sl@0
   328
	}
sl@0
   329
sl@0
   330
// Now the Individual transitions need to be added.
sl@0
   331
inline void CDiscoverer_SuspendResume_UnitTest::ConstructL()
sl@0
   332
	{
sl@0
   333
	// Perform the base class initialization
sl@0
   334
	UnitTestConstructL();
sl@0
   335
sl@0
   336
	// Create the Unit test state accessor
sl@0
   337
	iStateAccessor = new(ELeave) TDiscoverer_StateAccessor;
sl@0
   338
	// Construct the Unit test context.
sl@0
   339
	iUTContext = new(ELeave) CDiscoverer_UnitTestContext(iDataLogger, *iStateAccessor, *this, iFs);
sl@0
   340
	// Set up the drive letter for the test (C:)
sl@0
   341
	iUTContext->iDriveUnit = TDriveUnit(EDriveC);
sl@0
   342
	// Construct, and store the observer stub
sl@0
   343
	iUTContext->iDiscovererObserver = CObserverStub::NewL(*this,*iUTContext);
sl@0
   344
	// Add the Transitions in the order they are to run
sl@0
   345
	// C'tor first, D'tor last...
sl@0
   346
	iCtorValidator = new(ELeave) TDiscoverer_Ctor_TransitionValidator(*iUTContext);
sl@0
   347
	AddTransitionL(new(ELeave)CDiscoverer_NewL_Transition(*iUTContext,*iCtorValidator));
sl@0
   348
	
sl@0
   349
	iNotificationValidator = new(ELeave) TDiscoverer_Notification_TransitionValidator(*iUTContext);
sl@0
   350
	AddTransitionL(new(ELeave)CDiscoverer_Notification_Transition(*iUTContext,*iNotificationValidator));
sl@0
   351
sl@0
   352
	iSuspendValidator = new(ELeave) TDiscoverer_Suspend_TransitionValidator(*iUTContext);
sl@0
   353
	AddTransitionL(new(ELeave)CDiscoverer_Suspend_Transition(*iUTContext,*iSuspendValidator));
sl@0
   354
	
sl@0
   355
	iResumeValidator = new(ELeave) TDiscoverer_Resume_TransitionValidator(*iUTContext);
sl@0
   356
	AddTransitionL(new(ELeave)CDiscoverer_Resume_Transition(*iUTContext,*iResumeValidator));
sl@0
   357
sl@0
   358
	iDtorValidator = new(ELeave) TDiscoverer_Dtor_TransitionValidator(*iUTContext);
sl@0
   359
	AddBlockingTransitionL(new(ELeave)CDiscoverer_Dtor_Transition(*iUTContext,*iDtorValidator));
sl@0
   360
	}
sl@0
   361
sl@0
   362
// ______________________________________________________________________________
sl@0
   363
//
sl@0
   364
sl@0
   365
CDiscoverer_ScanDirectory_UnitTest* CDiscoverer_ScanDirectory_UnitTest::NewL(CDataLogger& aDataLogger,
sl@0
   366
											MUnitTestObserver& aObserver)
sl@0
   367
	{
sl@0
   368
	CDiscoverer_ScanDirectory_UnitTest* self = 
sl@0
   369
					new(ELeave) CDiscoverer_ScanDirectory_UnitTest(aDataLogger,
sl@0
   370
																aObserver);
sl@0
   371
	CleanupStack::PushL(self);
sl@0
   372
	self->ConstructL();
sl@0
   373
	CleanupStack::Pop();
sl@0
   374
	return self; 
sl@0
   375
	}
sl@0
   376
sl@0
   377
// Now the Individual transitions need to be added.
sl@0
   378
inline void CDiscoverer_ScanDirectory_UnitTest::ConstructL()
sl@0
   379
	{
sl@0
   380
	// Perform the base class initialization
sl@0
   381
	UnitTestConstructL();
sl@0
   382
sl@0
   383
	// Create the Unit test state accessor
sl@0
   384
	iStateAccessor = new(ELeave) TDiscoverer_StateAccessor;
sl@0
   385
	// Construct the Unit test context.
sl@0
   386
	iUTContext = new(ELeave) CDiscoverer_UnitTestContext(iDataLogger, *iStateAccessor, *this, iFs);
sl@0
   387
	// Set up the drive letter for the test (C:)
sl@0
   388
	iUTContext->iDriveUnit = TDriveUnit(EDriveC);
sl@0
   389
	// Construct, and store the observer stub
sl@0
   390
	iUTContext->iDiscovererObserver = CObserverStub::NewL(*this,*iUTContext);
sl@0
   391
	// Add the Transitions in the order they are to run
sl@0
   392
	// C'tor first, D'tor last...
sl@0
   393
	iCtorValidator = new(ELeave) TDiscoverer_Ctor_TransitionValidator(*iUTContext);
sl@0
   394
	AddTransitionL(new(ELeave)CDiscoverer_NewL_Transition(*iUTContext,*iCtorValidator));
sl@0
   395
	iScanDirectoryValidator = new(ELeave) TDiscoverer_ScanDirectory_TransitionValidator(*iUTContext);
sl@0
   396
	AddTransitionL(new(ELeave)CDiscoverer_ScanDirectoryL_Transition(*iUTContext,*iScanDirectoryValidator));
sl@0
   397
	iDtorValidator = new(ELeave) TDiscoverer_Dtor_TransitionValidator(*iUTContext);
sl@0
   398
	AddTransitionL(new(ELeave)CDiscoverer_Dtor_Transition(*iUTContext,*iDtorValidator));
sl@0
   399
	}
sl@0
   400
sl@0
   401
// ______________________________________________________________________________
sl@0
   402
//
sl@0
   403
sl@0
   404
CDiscoverer_ScanDirectoryCancel_UnitTest* CDiscoverer_ScanDirectoryCancel_UnitTest::NewL(CDataLogger& aDataLogger,
sl@0
   405
											MUnitTestObserver& aObserver)
sl@0
   406
	{
sl@0
   407
	CDiscoverer_ScanDirectoryCancel_UnitTest* self = 
sl@0
   408
					new(ELeave) CDiscoverer_ScanDirectoryCancel_UnitTest(aDataLogger,
sl@0
   409
																aObserver);
sl@0
   410
	CleanupStack::PushL(self);
sl@0
   411
	self->ConstructL();
sl@0
   412
	CleanupStack::Pop();
sl@0
   413
	return self; 
sl@0
   414
	}
sl@0
   415
sl@0
   416
// Now the Individual transitions need to be added.
sl@0
   417
inline void CDiscoverer_ScanDirectoryCancel_UnitTest::ConstructL()
sl@0
   418
	{
sl@0
   419
	// Perform the base class initialization
sl@0
   420
	UnitTestConstructL();
sl@0
   421
sl@0
   422
	// Create the Unit test state accessor
sl@0
   423
	iStateAccessor = new(ELeave) TDiscoverer_StateAccessor;
sl@0
   424
	// Construct the Unit test context.
sl@0
   425
	iUTContext = new(ELeave) CDiscoverer_UnitTestContext(iDataLogger, *iStateAccessor, *this, iFs);
sl@0
   426
	// Set up the drive letter for the test (C:)
sl@0
   427
	iUTContext->iDriveUnit = TDriveUnit(EDriveC);
sl@0
   428
	// Construct, and store the observer stub
sl@0
   429
	iUTContext->iDiscovererObserver = CObserverStub::NewL(*this,*iUTContext);
sl@0
   430
	// Add the Transitions in the order they are to run
sl@0
   431
	// C'tor first, D'tor last...
sl@0
   432
	iCtorValidator = new(ELeave) TDiscoverer_Ctor_TransitionValidator(*iUTContext);
sl@0
   433
	AddTransitionL(new(ELeave)CDiscoverer_NewL_Transition(*iUTContext,*iCtorValidator));
sl@0
   434
	iScanDirectoryCancelValidator = new(ELeave) TDiscoverer_ScanDirectoryCancel_TransitionValidator(*iUTContext);
sl@0
   435
	AddTransitionL(new(ELeave)CDiscoverer_ScanDirectoryCancel_Transition(*iUTContext,*iScanDirectoryCancelValidator));
sl@0
   436
	iDtorValidator = new(ELeave) TDiscoverer_Dtor_TransitionValidator(*iUTContext);
sl@0
   437
	AddTransitionL(new(ELeave)CDiscoverer_Dtor_Transition(*iUTContext,*iDtorValidator));
sl@0
   438
	}
sl@0
   439
sl@0
   440
// ______________________________________________________________________________
sl@0
   441
//
sl@0
   442
sl@0
   443
CDiscoverer_ScanDirectoryIncrement_UnitTest* CDiscoverer_ScanDirectoryIncrement_UnitTest::NewL(CDataLogger& aDataLogger,
sl@0
   444
											MUnitTestObserver& aObserver)
sl@0
   445
	{
sl@0
   446
	CDiscoverer_ScanDirectoryIncrement_UnitTest* self = 
sl@0
   447
					new(ELeave) CDiscoverer_ScanDirectoryIncrement_UnitTest(aDataLogger,
sl@0
   448
																aObserver);
sl@0
   449
	CleanupStack::PushL(self);
sl@0
   450
	self->ConstructL();
sl@0
   451
	CleanupStack::Pop();
sl@0
   452
	return self; 
sl@0
   453
	}
sl@0
   454
sl@0
   455
// Now the Individual transitions need to be added.
sl@0
   456
inline void CDiscoverer_ScanDirectoryIncrement_UnitTest::ConstructL()
sl@0
   457
	{
sl@0
   458
	// Perform the base class initialization
sl@0
   459
	UnitTestConstructL();
sl@0
   460
sl@0
   461
	// Create the Unit test state accessor
sl@0
   462
	iStateAccessor = new(ELeave) TDiscoverer_StateAccessor;
sl@0
   463
	// Construct the Unit test context.
sl@0
   464
	iUTContext = new(ELeave) CDiscoverer_UnitTestContext(iDataLogger, *iStateAccessor, *this, iFs);
sl@0
   465
	// Set up the drive letter for the test (C:)
sl@0
   466
	iUTContext->iDriveUnit = TDriveUnit(EDriveC);
sl@0
   467
	// Construct, and store the observer stub
sl@0
   468
	iUTContext->iDiscovererObserver = CObserverStub::NewL(*this,*iUTContext);
sl@0
   469
	// Add the Transitions in the order they are to run
sl@0
   470
	// C'tor first, D'tor last...
sl@0
   471
	iCtorValidator = new(ELeave) TDiscoverer_Ctor_TransitionValidator(*iUTContext);
sl@0
   472
	AddTransitionL(new(ELeave)CDiscoverer_NewL_Transition(*iUTContext,*iCtorValidator));
sl@0
   473
	iScanDirectoryIncrementValidator = new(ELeave) TDiscoverer_ScanDirectoryIncrement_TransitionValidator(*iUTContext);
sl@0
   474
	AddTransitionL(new(ELeave)CDiscoverer_ScanDirectoryIncrementL_Transition(*iUTContext,*iScanDirectoryIncrementValidator));
sl@0
   475
	iDtorValidator = new(ELeave) TDiscoverer_Dtor_TransitionValidator(*iUTContext);
sl@0
   476
	AddTransitionL(new(ELeave)CDiscoverer_Dtor_Transition(*iUTContext,*iDtorValidator));
sl@0
   477
	}