os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/ComponentInfoTest/ComponentInfoUnitTest.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) 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 CComponentInfo class.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include "ComponentInfoUnitTest.h"
sl@0
    19
sl@0
    20
// ______________________________________________________________________________
sl@0
    21
//
sl@0
    22
_LIT(KComponentInfoCreateAndDestroyUnitTest,"CComponentInfo_CreateAndDestroy_UnitTest");
sl@0
    23
sl@0
    24
CComponentInfo_CreateAndDestroy_UnitTest* CComponentInfo_CreateAndDestroy_UnitTest::NewL(CDataLogger& aDataLogger,
sl@0
    25
											MUnitTestObserver& aObserver)
sl@0
    26
	{
sl@0
    27
	CComponentInfo_CreateAndDestroy_UnitTest* self = 
sl@0
    28
					new(ELeave) CComponentInfo_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 CComponentInfo_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 CComponentInfo_CreateAndDestroy_UnitTest::~CComponentInfo_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 CComponentInfo_CreateAndDestroy_UnitTest::CComponentInfo_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
sl@0
    63
																	MUnitTestObserver& aObserver)
sl@0
    64
: CUnitTest(KComponentInfoCreateAndDestroyUnitTest, 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 CComponentInfo_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) TComponentInfo_StateAccessor;
sl@0
    77
	// Construct the Unit test context.
sl@0
    78
	iUTContext = new(ELeave) CComponentInfo_UnitTestContext(iDataLogger, *iStateAccessor, *this);
sl@0
    79
	iUTContext->iOwnParams = ETrue;
sl@0
    80
	//Leave function pointer at 0, assume CBase does this
sl@0
    81
	//iUTContext->iEntryFunc = iUTContext->iEntryFuncPostCheck = 0;
sl@0
    82
	iUTContext->iTestInfoArray = new(ELeave) RPointerArray<CUnitTestInfo>;
sl@0
    83
sl@0
    84
	// Add the Transitions in the order they are to run
sl@0
    85
	// C'tor first, D'tor last...
sl@0
    86
	iCtorValidator = new(ELeave) TComponentInfo_Ctor_TransitionValidator(*iUTContext);
sl@0
    87
	iDtorValidator = new(ELeave) TComponentInfo_Dtor_TransitionValidator(*iUTContext);
sl@0
    88
sl@0
    89
	AddTransitionL(new(ELeave)CComponentInfo_NewL_Transition(*iUTContext,*iCtorValidator));
sl@0
    90
	AddTransitionL(new(ELeave)CComponentInfo_Dtor_Transition(*iUTContext,*iDtorValidator));
sl@0
    91
	}
sl@0
    92
sl@0
    93
// ______________________________________________________________________________
sl@0
    94
//
sl@0
    95
_LIT(KComponentInfoRetrieveTestNamesUnitTest,"CComponentInfo_RetrieveTestNames_UnitTest");
sl@0
    96
sl@0
    97
CComponentInfo_RetrieveTestNames_UnitTest* CComponentInfo_RetrieveTestNames_UnitTest::NewL(CDataLogger& aDataLogger,
sl@0
    98
											MUnitTestObserver& aObserver)
sl@0
    99
	{
sl@0
   100
	CComponentInfo_RetrieveTestNames_UnitTest* self = 
sl@0
   101
					new(ELeave) CComponentInfo_RetrieveTestNames_UnitTest(aDataLogger,
sl@0
   102
																aObserver);
sl@0
   103
	CleanupStack::PushL(self);
sl@0
   104
	self->ConstructL();
sl@0
   105
	CleanupStack::Pop();
sl@0
   106
	return self; 
sl@0
   107
	}
sl@0
   108
sl@0
   109
inline TInt CComponentInfo_RetrieveTestNames_UnitTest::RunError(TInt aError)
sl@0
   110
	{
sl@0
   111
	// The RunL left so chain to the base first and then cleanup
sl@0
   112
	TInt error = CUnitTest::RunError(aError);	// Chain to base
sl@0
   113
	delete iUTContext;
sl@0
   114
	iUTContext = NULL;
sl@0
   115
	delete iStateAccessor;
sl@0
   116
	iStateAccessor = NULL;
sl@0
   117
	/* delete any validators used */
sl@0
   118
	delete iCtorValidator;
sl@0
   119
	iCtorValidator = NULL;
sl@0
   120
	delete iEntryValidator;
sl@0
   121
	iEntryValidator = NULL;
sl@0
   122
	delete iUnitTestsInfoValidator;
sl@0
   123
	iUnitTestsInfoValidator = NULL;
sl@0
   124
	delete iDtorValidator;
sl@0
   125
	iDtorValidator = NULL;
sl@0
   126
	return error;
sl@0
   127
	}
sl@0
   128
sl@0
   129
inline CComponentInfo_RetrieveTestNames_UnitTest::~CComponentInfo_RetrieveTestNames_UnitTest()
sl@0
   130
	{
sl@0
   131
	// Simply delete our test class instance
sl@0
   132
	delete iUTContext;
sl@0
   133
	delete iStateAccessor;
sl@0
   134
	/* delete any validators used */
sl@0
   135
	delete iCtorValidator;
sl@0
   136
	delete iEntryValidator;
sl@0
   137
	delete iUnitTestsInfoValidator;
sl@0
   138
	delete iDtorValidator;
sl@0
   139
	}
sl@0
   140
sl@0
   141
inline CComponentInfo_RetrieveTestNames_UnitTest::CComponentInfo_RetrieveTestNames_UnitTest(CDataLogger& aDataLogger,
sl@0
   142
																	MUnitTestObserver& aObserver)
sl@0
   143
: CUnitTest(KComponentInfoRetrieveTestNamesUnitTest, aDataLogger, aObserver)
sl@0
   144
	{
sl@0
   145
	//Do nothing
sl@0
   146
	}
sl@0
   147
sl@0
   148
// Now the Individual transitions need to be added.
sl@0
   149
inline void CComponentInfo_RetrieveTestNames_UnitTest::ConstructL()
sl@0
   150
	{
sl@0
   151
	// Perform the base class initialization
sl@0
   152
	UnitTestConstructL();
sl@0
   153
sl@0
   154
	// Create the Unit test state accessor
sl@0
   155
	iStateAccessor = new(ELeave) TComponentInfo_StateAccessor;
sl@0
   156
	// Construct the Unit test context.
sl@0
   157
	iUTContext = new(ELeave) CComponentInfo_UnitTestContext(iDataLogger, *iStateAccessor, *this);
sl@0
   158
sl@0
   159
	// Add the Transitions in the order they are to run
sl@0
   160
	// C'tor first, D'tor last...
sl@0
   161
	iCtorValidator = new(ELeave) TComponentInfo_Ctor_TransitionValidator(*iUTContext);
sl@0
   162
	iEntryValidator = new(ELeave) TComponentInfo_Entry_TransitionValidator(*iUTContext);
sl@0
   163
	iUnitTestsInfoValidator = new(ELeave) TComponentInfo_UnitTestsInfo_TransitionValidator(*iUTContext);
sl@0
   164
	iDtorValidator = new(ELeave) TComponentInfo_Dtor_TransitionValidator(*iUTContext);
sl@0
   165
	
sl@0
   166
	AddTransitionL(new(ELeave)CComponentInfo_NewL_Transition(*iUTContext,*iCtorValidator));
sl@0
   167
	AddTransitionL(new(ELeave)CComponentInfo_Entry_Transition(*iUTContext,*iEntryValidator));
sl@0
   168
	AddTransitionL(new(ELeave)CComponentInfo_UnitTestsInfo_Transition(*iUTContext,*iUnitTestsInfoValidator));
sl@0
   169
	AddTransitionL(new(ELeave)CComponentInfo_Dtor_Transition(*iUTContext,*iDtorValidator));
sl@0
   170
	}
sl@0
   171