os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/ComponentTesterTest/ComponentTesterUnitTest.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
// The unit test class implementations for the CComponentTester class.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include "ComponentTesterUnitTest.h"
sl@0
    19
sl@0
    20
// ______________________________________________________________________________
sl@0
    21
//
sl@0
    22
_LIT(KComponentTesterCreateAndDestroyUnitTest,"CComponentTester_CreateAndDestroy_UnitTest");
sl@0
    23
sl@0
    24
CComponentTester_CreateAndDestroy_UnitTest* CComponentTester_CreateAndDestroy_UnitTest::NewL(CDataLogger& aDataLogger,
sl@0
    25
											MUnitTestObserver& aObserver)
sl@0
    26
	{
sl@0
    27
	CComponentTester_CreateAndDestroy_UnitTest* self = 
sl@0
    28
					new(ELeave) CComponentTester_CreateAndDestroy_UnitTest(aDataLogger,
sl@0
    29
																aObserver);
sl@0
    30
	CleanupStack::PushL(self);
sl@0
    31
	self->ConstructL();
sl@0
    32
	CleanupStack::Pop();
sl@0
    33
	return self; 
sl@0
    34
	}
sl@0
    35
sl@0
    36
inline TInt CComponentTester_CreateAndDestroy_UnitTest::RunError(TInt aError)
sl@0
    37
	{
sl@0
    38
	// The RunL left so chain to the base first and then cleanup
sl@0
    39
	TInt error = CUnitTest::RunError(aError);	// Chain to base
sl@0
    40
	delete iUTContext;
sl@0
    41
	iUTContext = NULL;
sl@0
    42
	delete iStateAccessor;
sl@0
    43
	iStateAccessor = NULL;
sl@0
    44
	/* delete any validators used */
sl@0
    45
	delete iCtorValidator;
sl@0
    46
	iCtorValidator = NULL;
sl@0
    47
	delete iDtorValidator;
sl@0
    48
	iDtorValidator = NULL;
sl@0
    49
	return error;
sl@0
    50
	}
sl@0
    51
sl@0
    52
inline CComponentTester_CreateAndDestroy_UnitTest::~CComponentTester_CreateAndDestroy_UnitTest()
sl@0
    53
	{
sl@0
    54
	// Simply delete our test class instance
sl@0
    55
	delete iUTContext;
sl@0
    56
	delete iStateAccessor;
sl@0
    57
	/* delete any validators used */
sl@0
    58
	delete iCtorValidator;
sl@0
    59
	delete iDtorValidator;
sl@0
    60
	}
sl@0
    61
sl@0
    62
inline CComponentTester_CreateAndDestroy_UnitTest::CComponentTester_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
sl@0
    63
																	MUnitTestObserver& aObserver)
sl@0
    64
: CUnitTest(KComponentTesterCreateAndDestroyUnitTest, aDataLogger, aObserver)
sl@0
    65
	{
sl@0
    66
	//Do nothing
sl@0
    67
	}
sl@0
    68
sl@0
    69
// Now the Individual transitions need to be added.
sl@0
    70
inline void CComponentTester_CreateAndDestroy_UnitTest::ConstructL()
sl@0
    71
	{
sl@0
    72
	// Perform the base class initialization
sl@0
    73
	UnitTestConstructL();
sl@0
    74
sl@0
    75
	// Create the Unit test state accessor
sl@0
    76
	iStateAccessor = new(ELeave) TComponentTester_StateAccessor;
sl@0
    77
	// Construct the Unit test context.
sl@0
    78
	iUTContext = new(ELeave) CComponentTester_UnitTestContext(iDataLogger, *iStateAccessor, *this);
sl@0
    79
sl@0
    80
	// Add the Transitions in the order they are to run
sl@0
    81
	// C'tor first, D'tor last...
sl@0
    82
	iCtorValidator = new(ELeave) TComponentTester_Ctor_TransitionValidator(*iUTContext);
sl@0
    83
	iDtorValidator = new(ELeave) TComponentTester_Dtor_TransitionValidator(*iUTContext);
sl@0
    84
sl@0
    85
	AddTransitionL(new(ELeave)CComponentTester_NewL_Transition(*iUTContext,*iCtorValidator));
sl@0
    86
	AddTransitionL(new(ELeave)CComponentTester_Dtor_Transition(*iUTContext,*iDtorValidator));
sl@0
    87
	}
sl@0
    88
sl@0
    89
// ______________________________________________________________________________
sl@0
    90
//
sl@0
    91
_LIT(KComponentTesterManageUnitTestsUnitTest,"CComponentTester_ManageUnitTests_UnitTest");
sl@0
    92
sl@0
    93
CComponentTester_ManageUnitTests_UnitTest* CComponentTester_ManageUnitTests_UnitTest::NewL(CDataLogger& aDataLogger,
sl@0
    94
											MUnitTestObserver& aObserver)
sl@0
    95
	{
sl@0
    96
	CComponentTester_ManageUnitTests_UnitTest* self = 
sl@0
    97
					new(ELeave) CComponentTester_ManageUnitTests_UnitTest(aDataLogger,
sl@0
    98
																aObserver);
sl@0
    99
	CleanupStack::PushL(self);
sl@0
   100
	self->ConstructL();
sl@0
   101
	CleanupStack::Pop();
sl@0
   102
	return self; 
sl@0
   103
	}
sl@0
   104
sl@0
   105
inline TInt CComponentTester_ManageUnitTests_UnitTest::RunError(TInt aError)
sl@0
   106
	{
sl@0
   107
	// The RunL left so chain to the base first and then cleanup
sl@0
   108
	TInt error = CUnitTest::RunError(aError);	// Chain to base
sl@0
   109
	delete iUTContext;
sl@0
   110
	iUTContext = NULL;
sl@0
   111
	delete iStateAccessor;
sl@0
   112
	iStateAccessor = NULL;
sl@0
   113
	/* delete any validators used */
sl@0
   114
	delete iCtorValidator;
sl@0
   115
	iCtorValidator = NULL;
sl@0
   116
	delete iTransitionSetsValidator;
sl@0
   117
	iTransitionSetsValidator = NULL;
sl@0
   118
	delete iAddUnitTestValidator;
sl@0
   119
	iAddUnitTestValidator = NULL;
sl@0
   120
	delete iAddParamUnitTestValidator;
sl@0
   121
	iAddParamUnitTestValidator = NULL;
sl@0
   122
	delete iDtorValidator;
sl@0
   123
	iDtorValidator = NULL;
sl@0
   124
	return error;
sl@0
   125
	}
sl@0
   126
sl@0
   127
inline CComponentTester_ManageUnitTests_UnitTest::~CComponentTester_ManageUnitTests_UnitTest()
sl@0
   128
	{
sl@0
   129
	// Simply delete our test class instance
sl@0
   130
	delete iUTContext;
sl@0
   131
	delete iStateAccessor;
sl@0
   132
	/* delete any validators used */
sl@0
   133
	delete iCtorValidator;
sl@0
   134
	delete iTransitionSetsValidator;
sl@0
   135
	delete iAddUnitTestValidator;
sl@0
   136
	delete iAddParamUnitTestValidator;
sl@0
   137
	delete iDtorValidator;
sl@0
   138
	}
sl@0
   139
sl@0
   140
inline CComponentTester_ManageUnitTests_UnitTest::CComponentTester_ManageUnitTests_UnitTest(CDataLogger& aDataLogger,
sl@0
   141
																	MUnitTestObserver& aObserver)
sl@0
   142
: CUnitTest(KComponentTesterManageUnitTestsUnitTest, aDataLogger, aObserver)
sl@0
   143
	{
sl@0
   144
	//Do nothing
sl@0
   145
	}
sl@0
   146
sl@0
   147
// Now the Individual transitions need to be added.
sl@0
   148
inline void CComponentTester_ManageUnitTests_UnitTest::ConstructL()
sl@0
   149
	{
sl@0
   150
	// Perform the base class initialization
sl@0
   151
	UnitTestConstructL();
sl@0
   152
sl@0
   153
	// Create the Unit test state accessor
sl@0
   154
	iStateAccessor = new(ELeave) TComponentTester_StateAccessor;
sl@0
   155
	// Construct the Unit test context.
sl@0
   156
	iUTContext = new(ELeave) CComponentTester_UnitTestContext(iDataLogger, *iStateAccessor, *this);
sl@0
   157
sl@0
   158
	// Add the Transitions in the order they are to run
sl@0
   159
	// C'tor first, D'tor last...
sl@0
   160
	iCtorValidator = new(ELeave) TComponentTester_Ctor_TransitionValidator(*iUTContext);
sl@0
   161
	iTransitionSetsValidator = new(ELeave) TComponentTester_TransitionSets_TransitionValidator(*iUTContext);
sl@0
   162
	iAddUnitTestValidator = new(ELeave) TComponentTester_AddUnitTest_TransitionValidator(*iUTContext);
sl@0
   163
	iAddParamUnitTestValidator = new(ELeave) TComponentTester_AddParamUnitTest_TransitionValidator(*iUTContext);
sl@0
   164
	iDtorValidator = new(ELeave) TComponentTester_Dtor_TransitionValidator(*iUTContext);
sl@0
   165
sl@0
   166
	AddTransitionL(new(ELeave)CComponentTester_NewL_Transition(*iUTContext,*iCtorValidator));
sl@0
   167
	AddTransitionL(new(ELeave)CComponentTester_TransitionSetsL_Transition(*iUTContext,*iTransitionSetsValidator));
sl@0
   168
	AddTransitionL(new(ELeave)CComponentTester_AddUnitTestL_Transition(*iUTContext,*iAddUnitTestValidator));
sl@0
   169
	AddTransitionL(new(ELeave)CComponentTester_AddParamUnitTestL_Transition(*iUTContext,*iAddParamUnitTestValidator));
sl@0
   170
	AddTransitionL(new(ELeave)CComponentTester_Dtor_Transition(*iUTContext,*iDtorValidator));
sl@0
   171
	}
sl@0
   172
sl@0
   173
// ______________________________________________________________________________
sl@0
   174
//
sl@0
   175
_LIT(KComponentTesterRunTestsUnitTest,"CComponentTester_RunTests_UnitTest");
sl@0
   176
sl@0
   177
CComponentTester_RunTests_UnitTest* CComponentTester_RunTests_UnitTest::NewL(CDataLogger& aDataLogger,
sl@0
   178
											MUnitTestObserver& aObserver)
sl@0
   179
	{
sl@0
   180
	CComponentTester_RunTests_UnitTest* self = 
sl@0
   181
					new(ELeave) CComponentTester_RunTests_UnitTest(aDataLogger,
sl@0
   182
																aObserver);
sl@0
   183
	CleanupStack::PushL(self);
sl@0
   184
	self->ConstructL();
sl@0
   185
	CleanupStack::Pop();
sl@0
   186
	return self; 
sl@0
   187
	}
sl@0
   188
sl@0
   189
inline TInt CComponentTester_RunTests_UnitTest::RunError(TInt aError)
sl@0
   190
	{
sl@0
   191
	// The RunL left so chain to the base first and then cleanup
sl@0
   192
	TInt error = CUnitTest::RunError(aError);	// Chain to base
sl@0
   193
	delete iUTContext;
sl@0
   194
	iUTContext = NULL;
sl@0
   195
	delete iStateAccessor;
sl@0
   196
	iStateAccessor = NULL;
sl@0
   197
	/* delete any validators used */
sl@0
   198
	delete iCtorValidator;
sl@0
   199
	iCtorValidator = NULL;
sl@0
   200
	delete iTestComponentValidator;
sl@0
   201
	iTestComponentValidator = NULL;
sl@0
   202
	delete iRunValidator;
sl@0
   203
	iRunValidator = NULL;
sl@0
   204
	delete iCompleteValidator;
sl@0
   205
	iCompleteValidator = NULL;
sl@0
   206
	delete iDtorValidator;
sl@0
   207
	iDtorValidator = NULL;
sl@0
   208
	return error;
sl@0
   209
	}
sl@0
   210
sl@0
   211
inline CComponentTester_RunTests_UnitTest::~CComponentTester_RunTests_UnitTest()
sl@0
   212
	{
sl@0
   213
	// Simply delete our test class instance
sl@0
   214
	delete iUTContext;
sl@0
   215
	delete iStateAccessor;
sl@0
   216
	/* delete any validators used */
sl@0
   217
	delete iCtorValidator;
sl@0
   218
	delete iTestComponentValidator;
sl@0
   219
	delete iRunValidator;
sl@0
   220
	delete iCompleteValidator;
sl@0
   221
	delete iDtorValidator;
sl@0
   222
	}
sl@0
   223
sl@0
   224
inline CComponentTester_RunTests_UnitTest::CComponentTester_RunTests_UnitTest(CDataLogger& aDataLogger,
sl@0
   225
																	MUnitTestObserver& aObserver)
sl@0
   226
: CUnitTest(KComponentTesterRunTestsUnitTest, aDataLogger, aObserver)
sl@0
   227
	{
sl@0
   228
	//Do nothing
sl@0
   229
	}
sl@0
   230
sl@0
   231
// Now the Individual transitions need to be added.
sl@0
   232
inline void CComponentTester_RunTests_UnitTest::ConstructL()
sl@0
   233
	{
sl@0
   234
	// Perform the base class initialization
sl@0
   235
	UnitTestConstructL();
sl@0
   236
sl@0
   237
	// Create the Unit test state accessor
sl@0
   238
	iStateAccessor = new(ELeave) TComponentTester_StateAccessor;
sl@0
   239
	// Construct the Unit test context.
sl@0
   240
	iUTContext = new(ELeave) CComponentTester_UnitTestContext(iDataLogger, *iStateAccessor, *this);
sl@0
   241
sl@0
   242
	// Specify the tests to be run by the TestComponent method. 0 means run all tests
sl@0
   243
//	iUTContext->iTests = 0;
sl@0
   244
	TTestInfo* testInfo = new(ELeave) TTestInfo;
sl@0
   245
	testInfo->iComponentId = 0;		// Run the first component found
sl@0
   246
	testInfo->iUnitTestId = 0;		// Run the first unit test from the the component found
sl@0
   247
	testInfo->iRunTime = 0;			// Run the test immediately
sl@0
   248
	testInfo->iParameters = NULL;
sl@0
   249
	User::LeaveIfError(iUTContext->iTests.Append(testInfo));
sl@0
   250
sl@0
   251
	// Add the Transitions in the order they are to run
sl@0
   252
	// C'tor first, D'tor last...
sl@0
   253
	iCtorValidator = new(ELeave) TComponentTester_Ctor_TransitionValidator(*iUTContext);
sl@0
   254
	iTestComponentValidator = new(ELeave) TComponentTester_TestComponent_TransitionValidator(*iUTContext);
sl@0
   255
	iRunValidator = new(ELeave) TComponentTester_Run_TransitionValidator(*iUTContext);
sl@0
   256
	iCompleteValidator = new(ELeave) TComponentTester_Complete_TransitionValidator(*iUTContext);
sl@0
   257
	iDtorValidator = new(ELeave) TComponentTester_Dtor_TransitionValidator(*iUTContext);
sl@0
   258
sl@0
   259
	AddTransitionL(new(ELeave)CComponentTester_NewL_Transition(*iUTContext,*iCtorValidator));
sl@0
   260
	AddTransitionL(new(ELeave)CComponentTester_TestComponent_Transition(*iUTContext,*iTestComponentValidator));
sl@0
   261
	AddTransitionL(new(ELeave)CComponentTester_RunL_Transition(*iUTContext,*iRunValidator));
sl@0
   262
	AddTransitionL(new(ELeave)CComponentTester_Complete_Transition(*iUTContext,*iCompleteValidator));
sl@0
   263
	AddTransitionL(new(ELeave)CComponentTester_Dtor_Transition(*iUTContext,*iDtorValidator));
sl@0
   264
	}
sl@0
   265
sl@0
   266