os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/DefaultLogOutputTest/DefaultLogOutputUnitTest.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 CDefaultLogOutput class.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include "DefaultLogOutputUnitTest.h"
sl@0
    19
sl@0
    20
// ______________________________________________________________________________
sl@0
    21
//
sl@0
    22
_LIT(KDefaultLogOutputCreateAndDestroyUnitTest,"CDefaultLogOutput_CreateAndDestroy_UnitTest");
sl@0
    23
sl@0
    24
CDefaultLogOutput_CreateAndDestroy_UnitTest* CDefaultLogOutput_CreateAndDestroy_UnitTest::NewL(CDataLogger& aDataLogger,
sl@0
    25
											MUnitTestObserver& aObserver)
sl@0
    26
	{
sl@0
    27
	CDefaultLogOutput_CreateAndDestroy_UnitTest* self = 
sl@0
    28
					new(ELeave) CDefaultLogOutput_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 CDefaultLogOutput_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
sl@0
    50
	return error;
sl@0
    51
	}
sl@0
    52
sl@0
    53
inline CDefaultLogOutput_CreateAndDestroy_UnitTest::~CDefaultLogOutput_CreateAndDestroy_UnitTest()
sl@0
    54
	{
sl@0
    55
	// Simply delete our test class instance
sl@0
    56
	delete iUTContext;
sl@0
    57
	delete iStateAccessor;
sl@0
    58
	/* delete any validators used */
sl@0
    59
	delete iCtorValidator;
sl@0
    60
	delete iDtorValidator;
sl@0
    61
	}
sl@0
    62
sl@0
    63
inline CDefaultLogOutput_CreateAndDestroy_UnitTest::CDefaultLogOutput_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
sl@0
    64
																	MUnitTestObserver& aObserver)
sl@0
    65
: CUnitTest(KDefaultLogOutputCreateAndDestroyUnitTest, aDataLogger, aObserver)
sl@0
    66
	{
sl@0
    67
	//Do nothing
sl@0
    68
	}
sl@0
    69
sl@0
    70
// Now the Individual transitions need to be added.
sl@0
    71
inline void CDefaultLogOutput_CreateAndDestroy_UnitTest::ConstructL()
sl@0
    72
	{
sl@0
    73
	// Perform the base class initialization
sl@0
    74
	UnitTestConstructL();
sl@0
    75
sl@0
    76
	// Create the Unit test state accessor
sl@0
    77
	iStateAccessor = new(ELeave) TDefaultLogOutput_StateAccessor;
sl@0
    78
	// Construct the Unit test context.
sl@0
    79
	iUTContext = new(ELeave) CDefaultLogOutput_UnitTestContext(iDataLogger, *iStateAccessor, *this);
sl@0
    80
sl@0
    81
	// Add the Transitions in the order they are to run
sl@0
    82
	// C'tor first, D'tor last...
sl@0
    83
	iCtorValidator = new(ELeave) TDefaultLogOutput_Ctor_TransitionValidator(*iUTContext);
sl@0
    84
	iDtorValidator = new(ELeave) TDefaultLogOutput_Dtor_TransitionValidator(*iUTContext);
sl@0
    85
sl@0
    86
	AddTransitionL(new(ELeave)CDefaultLogOutput_NewL_Transition(*iUTContext,*iCtorValidator));
sl@0
    87
	AddTransitionL(new(ELeave)CDefaultLogOutput_Dtor_Transition(*iUTContext,*iDtorValidator));
sl@0
    88
	}
sl@0
    89
sl@0
    90
// ______________________________________________________________________________
sl@0
    91
//
sl@0
    92
_LIT(KDefaultLogOutputOpenAndCloseUnitTest,"CDefaultLogOutput_OpenAndClose_UnitTest");
sl@0
    93
sl@0
    94
CDefaultLogOutput_OpenAndClose_UnitTest* CDefaultLogOutput_OpenAndClose_UnitTest::NewL(CDataLogger& aDataLogger,
sl@0
    95
											MUnitTestObserver& aObserver)
sl@0
    96
	{
sl@0
    97
	CDefaultLogOutput_OpenAndClose_UnitTest* self = 
sl@0
    98
					new(ELeave) CDefaultLogOutput_OpenAndClose_UnitTest(aDataLogger,
sl@0
    99
																aObserver);
sl@0
   100
	CleanupStack::PushL(self);
sl@0
   101
	self->ConstructL();
sl@0
   102
	CleanupStack::Pop();
sl@0
   103
	return self; 
sl@0
   104
	}
sl@0
   105
sl@0
   106
inline TInt CDefaultLogOutput_OpenAndClose_UnitTest::RunError(TInt aError)
sl@0
   107
	{
sl@0
   108
	// The RunL left so chain to the base first and then cleanup
sl@0
   109
	TInt error = CUnitTest::RunError(aError);	// Chain to base
sl@0
   110
	delete iUTContext;
sl@0
   111
	iUTContext = NULL;
sl@0
   112
	delete iStateAccessor;
sl@0
   113
	iStateAccessor = NULL;
sl@0
   114
	/* delete any validators used */
sl@0
   115
	delete iCtorValidator;
sl@0
   116
	iCtorValidator = NULL;
sl@0
   117
	delete iOpenValidator;
sl@0
   118
	iOpenValidator = NULL;
sl@0
   119
	delete iCloseValidator;
sl@0
   120
	iCloseValidator = NULL;
sl@0
   121
	delete iDtorValidator;
sl@0
   122
	iDtorValidator = NULL;
sl@0
   123
		
sl@0
   124
	return error;
sl@0
   125
	}
sl@0
   126
sl@0
   127
inline CDefaultLogOutput_OpenAndClose_UnitTest::~CDefaultLogOutput_OpenAndClose_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 iOpenValidator;
sl@0
   135
	delete iCloseValidator;
sl@0
   136
	delete iDtorValidator;
sl@0
   137
	}
sl@0
   138
sl@0
   139
inline CDefaultLogOutput_OpenAndClose_UnitTest::CDefaultLogOutput_OpenAndClose_UnitTest(CDataLogger& aDataLogger,
sl@0
   140
																	MUnitTestObserver& aObserver)
sl@0
   141
: CUnitTest(KDefaultLogOutputOpenAndCloseUnitTest, aDataLogger, aObserver)
sl@0
   142
	{
sl@0
   143
	//Do nothing
sl@0
   144
	}
sl@0
   145
sl@0
   146
// Now the Individual transitions need to be added.
sl@0
   147
inline void CDefaultLogOutput_OpenAndClose_UnitTest::ConstructL()
sl@0
   148
	{
sl@0
   149
	// Perform the base class initialization
sl@0
   150
	UnitTestConstructL();
sl@0
   151
sl@0
   152
	// Create the Unit test state accessor
sl@0
   153
	iStateAccessor = new(ELeave) TDefaultLogOutput_StateAccessor;
sl@0
   154
	// Construct the Unit test context.
sl@0
   155
	iUTContext = new(ELeave) CDefaultLogOutput_UnitTestContext(iDataLogger, *iStateAccessor, *this);
sl@0
   156
	
sl@0
   157
	// Add the Transitions in the order they are to run
sl@0
   158
	// C'tor first, D'tor last...
sl@0
   159
	iCtorValidator = new(ELeave) TDefaultLogOutput_Ctor_TransitionValidator(*iUTContext);
sl@0
   160
	iOpenValidator = new(ELeave) TDefaultLogOutput_Open_TransitionValidator(*iUTContext);
sl@0
   161
	iCloseValidator = new(ELeave) TDefaultLogOutput_Close_TransitionValidator(*iUTContext);
sl@0
   162
	iDtorValidator = new(ELeave) TDefaultLogOutput_Dtor_TransitionValidator(*iUTContext);
sl@0
   163
		
sl@0
   164
	AddTransitionL(new(ELeave)CDefaultLogOutput_NewL_Transition(*iUTContext,*iCtorValidator));
sl@0
   165
	AddTransitionL(new(ELeave)CDefaultLogOutput_OpenL_Transition(*iUTContext,*iOpenValidator));
sl@0
   166
	AddTransitionL(new(ELeave)CDefaultLogOutput_Close_Transition(*iUTContext,*iCloseValidator));
sl@0
   167
	AddTransitionL(new(ELeave)CDefaultLogOutput_Dtor_Transition(*iUTContext,*iDtorValidator));
sl@0
   168
	}
sl@0
   169
sl@0
   170
// ______________________________________________________________________________
sl@0
   171
//
sl@0
   172
_LIT(KDefaultLogOutputOpenWriteCloseUnitTest,"CDefaultLogOutput_OpenWriteClose_UnitTest");
sl@0
   173
sl@0
   174
CDefaultLogOutput_OpenWriteClose_UnitTest* CDefaultLogOutput_OpenWriteClose_UnitTest::NewL(CDataLogger& aDataLogger,
sl@0
   175
											MUnitTestObserver& aObserver)
sl@0
   176
	{
sl@0
   177
	CDefaultLogOutput_OpenWriteClose_UnitTest* self = 
sl@0
   178
					new(ELeave) CDefaultLogOutput_OpenWriteClose_UnitTest(aDataLogger,
sl@0
   179
																aObserver);
sl@0
   180
	CleanupStack::PushL(self);
sl@0
   181
	self->ConstructL();
sl@0
   182
	CleanupStack::Pop();
sl@0
   183
	return self; 
sl@0
   184
	}
sl@0
   185
sl@0
   186
inline TInt CDefaultLogOutput_OpenWriteClose_UnitTest::RunError(TInt aError)
sl@0
   187
	{
sl@0
   188
	// The RunL left so chain to the base first and then cleanup
sl@0
   189
	TInt error = CUnitTest::RunError(aError);	// Chain to base
sl@0
   190
	delete iUTContext;
sl@0
   191
	iUTContext = NULL;
sl@0
   192
	delete iStateAccessor;
sl@0
   193
	iStateAccessor = NULL;
sl@0
   194
	/* delete any validators used */
sl@0
   195
	delete iCtorValidator;
sl@0
   196
	iCtorValidator = NULL;
sl@0
   197
	delete iOpenValidator;
sl@0
   198
	iOpenValidator = NULL;
sl@0
   199
	delete iWriteValidator;
sl@0
   200
	iWriteValidator = NULL;
sl@0
   201
	delete iCloseValidator;
sl@0
   202
	iCloseValidator = NULL;
sl@0
   203
	delete iDtorValidator;
sl@0
   204
	iDtorValidator = NULL;
sl@0
   205
sl@0
   206
	return error;
sl@0
   207
	}
sl@0
   208
sl@0
   209
inline CDefaultLogOutput_OpenWriteClose_UnitTest::~CDefaultLogOutput_OpenWriteClose_UnitTest()
sl@0
   210
	{
sl@0
   211
	// Simply delete our test class instance
sl@0
   212
	delete iUTContext;
sl@0
   213
	delete iStateAccessor;
sl@0
   214
	/* delete any validators used */
sl@0
   215
	delete iCtorValidator;
sl@0
   216
	delete iOpenValidator;
sl@0
   217
	delete iWriteValidator;
sl@0
   218
	delete iCloseValidator;
sl@0
   219
	delete iDtorValidator;
sl@0
   220
	}
sl@0
   221
sl@0
   222
inline CDefaultLogOutput_OpenWriteClose_UnitTest::CDefaultLogOutput_OpenWriteClose_UnitTest(CDataLogger& aDataLogger,
sl@0
   223
																	MUnitTestObserver& aObserver)
sl@0
   224
: CUnitTest(KDefaultLogOutputOpenWriteCloseUnitTest, aDataLogger, aObserver)
sl@0
   225
	{
sl@0
   226
	//Do nothing
sl@0
   227
	}
sl@0
   228
sl@0
   229
// Now the Individual transitions need to be added.
sl@0
   230
inline void CDefaultLogOutput_OpenWriteClose_UnitTest::ConstructL()
sl@0
   231
	{
sl@0
   232
	// Perform the base class initialization
sl@0
   233
	UnitTestConstructL();
sl@0
   234
sl@0
   235
	// Create the Unit test state accessor
sl@0
   236
	iStateAccessor = new(ELeave) TDefaultLogOutput_StateAccessor;
sl@0
   237
	// Construct the Unit test context.
sl@0
   238
	iUTContext = new(ELeave) CDefaultLogOutput_UnitTestContext(iDataLogger, *iStateAccessor, *this);
sl@0
   239
	
sl@0
   240
	// The text to be inserted into the test log file by the Write transition
sl@0
   241
	_LIT(KText, "This is a test log file entry");
sl@0
   242
	iUTContext->iOutput = &KText();
sl@0
   243
sl@0
   244
	// Add the Transitions in the order they are to run
sl@0
   245
	// C'tor first, D'tor last...
sl@0
   246
	iCtorValidator = new(ELeave) TDefaultLogOutput_Ctor_TransitionValidator(*iUTContext);
sl@0
   247
	iOpenValidator = new(ELeave) TDefaultLogOutput_Open_TransitionValidator(*iUTContext);
sl@0
   248
	iWriteValidator = new(ELeave) TDefaultLogOutput_Write_TransitionValidator(*iUTContext);
sl@0
   249
	iCloseValidator = new(ELeave) TDefaultLogOutput_Close_TransitionValidator(*iUTContext);
sl@0
   250
	iDtorValidator = new(ELeave) TDefaultLogOutput_Dtor_TransitionValidator(*iUTContext);
sl@0
   251
sl@0
   252
	AddTransitionL(new(ELeave)CDefaultLogOutput_NewL_Transition(*iUTContext,*iCtorValidator));
sl@0
   253
	AddTransitionL(new(ELeave)CDefaultLogOutput_OpenL_Transition(*iUTContext,*iOpenValidator));
sl@0
   254
	AddTransitionL(new(ELeave)CDefaultLogOutput_Write_Transition(*iUTContext,*iWriteValidator));
sl@0
   255
	AddTransitionL(new(ELeave)CDefaultLogOutput_Close_Transition(*iUTContext,*iCloseValidator));
sl@0
   256
	AddTransitionL(new(ELeave)CDefaultLogOutput_Dtor_Transition(*iUTContext,*iDtorValidator));
sl@0
   257
	}