os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TestControllerTest/TestControllerUnitTest.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TestControllerTest/TestControllerUnitTest.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,238 @@
     1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// The unit test class implementations for the CTestController class.
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#include "TestControllerUnitTest.h"
    1.22 +
    1.23 +// ______________________________________________________________________________
    1.24 +//
    1.25 +_LIT(KTestControllerCreateAndDestroyUnitTest,"CTestController_CreateAndDestroy_UnitTest");
    1.26 +
    1.27 +CTestController_CreateAndDestroy_UnitTest* CTestController_CreateAndDestroy_UnitTest::NewL(CDataLogger& aDataLogger,
    1.28 +											MUnitTestObserver& aObserver)
    1.29 +	{
    1.30 +	CTestController_CreateAndDestroy_UnitTest* self = 
    1.31 +					new(ELeave) CTestController_CreateAndDestroy_UnitTest(aDataLogger,
    1.32 +																aObserver);
    1.33 +	CleanupStack::PushL(self);
    1.34 +	self->ConstructL();
    1.35 +	CleanupStack::Pop();
    1.36 +	return self; 
    1.37 +	}
    1.38 +
    1.39 +inline TInt CTestController_CreateAndDestroy_UnitTest::RunError(TInt aError)
    1.40 +	{
    1.41 +	// The RunL left so chain to the base first and then cleanup
    1.42 +	TInt error = CUnitTest::RunError(aError);	// Chain to base
    1.43 +	delete iUTContext;
    1.44 +	iUTContext = NULL;
    1.45 +	delete iStateAccessor;
    1.46 +	iStateAccessor = NULL;
    1.47 +	// delete any validators used
    1.48 +	delete iCtorValidator;
    1.49 +	iCtorValidator = NULL;
    1.50 +	delete iDtorValidator;
    1.51 +	iDtorValidator = NULL;
    1.52 +
    1.53 +	return error;
    1.54 +	}
    1.55 +
    1.56 +inline CTestController_CreateAndDestroy_UnitTest::~CTestController_CreateAndDestroy_UnitTest()
    1.57 +	{
    1.58 +	// Simply delete our test class instance
    1.59 +	delete iUTContext;
    1.60 +	delete iStateAccessor;
    1.61 +	// delete any validators used
    1.62 +	iFs.Close();
    1.63 +	delete iCtorValidator;
    1.64 +	delete iDtorValidator;
    1.65 +	}
    1.66 +
    1.67 +inline CTestController_CreateAndDestroy_UnitTest::CTestController_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
    1.68 +																	MUnitTestObserver& aObserver)
    1.69 +: CUnitTest(KTestControllerCreateAndDestroyUnitTest, aDataLogger, aObserver)
    1.70 +	{
    1.71 +	//Do nothing
    1.72 +	}
    1.73 +
    1.74 +_LIT(KLogTitle,"Dummy Log title");
    1.75 +
    1.76 +// Now the Individual transitions need to be added.
    1.77 +inline void CTestController_CreateAndDestroy_UnitTest::ConstructL()
    1.78 +	{
    1.79 +	// Perform the base class initialization
    1.80 +	UnitTestConstructL();
    1.81 +
    1.82 +	// Create the Unit test state accessor
    1.83 +	iStateAccessor = new(ELeave) TTestController_StateAccessor;
    1.84 +	// Construct the Unit test context.
    1.85 +	iUTContext = new(ELeave) CTestController_UnitTestContext(iDataLogger, *iStateAccessor, *this, iFs);
    1.86 +	iUTContext->iScheduler = new(ELeave) CActiveScheduler;
    1.87 +	iUTContext->iLogInfo = new(ELeave) TLoggingInfo;
    1.88 +	iUTContext->iLogInfo->iTitle = &(KLogTitle);
    1.89 +	iUTContext->iLogInfo->iUseRDebug = ETrue;
    1.90 +	iUTContext->iLogInfo->iLogOutput = 0;
    1.91 +	iUTContext->iLogInfo->iReportOutput = 0;
    1.92 +	iUTContext->iLogInfo->iStyle = EHtml;
    1.93 +
    1.94 +	// Add the Transitions in the order they are to run
    1.95 +	// C'tor first, D'tor last...
    1.96 +	iCtorValidator = new(ELeave) TTestController_Ctor_TransitionValidator(*iUTContext);
    1.97 +	iDtorValidator = new(ELeave) TTestController_Dtor_TransitionValidator(*iUTContext);
    1.98 +
    1.99 +	AddTransitionL(new(ELeave)CTestController_NewL_Transition(*iUTContext,*iCtorValidator));
   1.100 +	AddTransitionL(new(ELeave)CTestController_Dtor_Transition(*iUTContext,*iDtorValidator));
   1.101 +	}
   1.102 +
   1.103 +// ______________________________________________________________________________
   1.104 +//
   1.105 +_LIT(KTestControllerFindTestsUnitTest,"CTestController_FindTests_UnitTest");
   1.106 +
   1.107 +CTestController_FindTests_UnitTest* CTestController_FindTests_UnitTest::NewL(CDataLogger& aDataLogger,
   1.108 +											MUnitTestObserver& aObserver)
   1.109 +	{
   1.110 +	CTestController_FindTests_UnitTest* self = 
   1.111 +					new(ELeave) CTestController_FindTests_UnitTest(aDataLogger,
   1.112 +																aObserver);
   1.113 +	CleanupStack::PushL(self);
   1.114 +	self->ConstructL();
   1.115 +	CleanupStack::Pop();
   1.116 +	return self; 
   1.117 +	}
   1.118 +
   1.119 +inline TInt CTestController_FindTests_UnitTest::RunError(TInt aError)
   1.120 +	{
   1.121 +	// The RunL left so chain to the base first and then cleanup
   1.122 +	TInt error = CUnitTest::RunError(aError);	// Chain to base
   1.123 +	delete iUTContext;
   1.124 +	iUTContext = NULL;
   1.125 +	delete iStateAccessor;
   1.126 +	iStateAccessor = NULL;
   1.127 +	// delete any validators used
   1.128 +	delete iCtorValidator;
   1.129 +	iCtorValidator = NULL;
   1.130 +	delete iFindComponentsValidator;
   1.131 +	iFindComponentsValidator = NULL;
   1.132 +	delete iStartValidator;
   1.133 +	iStartValidator = NULL;
   1.134 +	delete iDtorValidator;
   1.135 +	iDtorValidator = NULL;
   1.136 +
   1.137 +	return error;
   1.138 +	}
   1.139 +
   1.140 +inline CTestController_FindTests_UnitTest::~CTestController_FindTests_UnitTest()
   1.141 +	{
   1.142 +	// Simply delete our test class instance
   1.143 +	delete iUTContext;
   1.144 +	delete iStateAccessor;
   1.145 +	// delete any validators used
   1.146 +	iFs.Close();
   1.147 +	delete iCtorValidator;
   1.148 +	delete iFindComponentsValidator;
   1.149 +	delete iStartValidator;
   1.150 +	delete iDtorValidator;
   1.151 +	}
   1.152 +
   1.153 +inline CTestController_FindTests_UnitTest::CTestController_FindTests_UnitTest(CDataLogger& aDataLogger,
   1.154 +																	MUnitTestObserver& aObserver)
   1.155 +: CUnitTest(KTestControllerFindTestsUnitTest, aDataLogger, aObserver)
   1.156 +	{
   1.157 +	//Do nothing
   1.158 +	}
   1.159 +
   1.160 +// Now the Individual transitions need to be added.
   1.161 +inline void CTestController_FindTests_UnitTest::ConstructL()
   1.162 +	{
   1.163 +	// Perform the base class initialization
   1.164 +	UnitTestConstructL();
   1.165 +
   1.166 +	// Create the Unit test state accessor
   1.167 +	iStateAccessor = new(ELeave) TTestController_StateAccessor;
   1.168 +	// Construct the Unit test context.
   1.169 +
   1.170 +	// Open the required file server connection
   1.171 +	User::LeaveIfError(iFs.Connect());
   1.172 +
   1.173 +	// Construct the Unit test context.
   1.174 +	iUTContext = new(ELeave) CTestController_UnitTestContext(iDataLogger, *iStateAccessor, *this, iFs);
   1.175 +	iUTContext->iScheduler = new(ELeave) CActiveScheduler;
   1.176 +	iUTContext->iLogInfo = new(ELeave) TLoggingInfo;
   1.177 +	iUTContext->iLogInfo->iTitle = &(KLogTitle);
   1.178 +	iUTContext->iLogInfo->iUseRDebug = ETrue;
   1.179 +	iUTContext->iLogInfo->iLogOutput = 0;
   1.180 +	iUTContext->iLogInfo->iReportOutput = 0;
   1.181 +	iUTContext->iLogInfo->iStyle = EHtml;
   1.182 +
   1.183 +	// Add the Transitions in the order they are to run
   1.184 +	// C'tor first, D'tor last...
   1.185 +	iCtorValidator = new(ELeave) TTestController_Ctor_TransitionValidator(*iUTContext);
   1.186 +	iFindComponentsValidator = new(ELeave) TTestController_FindComponents_TransitionValidator(*iUTContext);
   1.187 +	iStartValidator = new(ELeave) TTestController_Start_TransitionValidator(*iUTContext);
   1.188 +	iDtorValidator = new(ELeave) TTestController_Dtor_TransitionValidator(*iUTContext);
   1.189 +
   1.190 +	AddTransitionL(new(ELeave)CTestController_NewL_Transition(*iUTContext,*iCtorValidator));
   1.191 +	AddTransitionL(new(ELeave)CTestController_FindComponents_Transition(*iUTContext, *iFindComponentsValidator));
   1.192 +	AddTransitionL(new(ELeave)CTestController_Start_Transition(*iUTContext, *iStartValidator));
   1.193 +	AddTransitionL(new(ELeave)CTestController_Dtor_Transition(*iUTContext,*iDtorValidator));
   1.194 +	}
   1.195 +
   1.196 +// ______________________________________________________________________________
   1.197 +//
   1.198 +_LIT(KTestControllerCreateAndDestroyUnitTest_STUB,"CTestController_CreateAndDestroy_UnitTest_STUB");
   1.199 +
   1.200 +CTestController_CreateAndDestroy_UnitTest_STUB* CTestController_CreateAndDestroy_UnitTest_STUB::NewL(CDataLogger& aDataLogger,
   1.201 +											MUnitTestObserver& aObserver)
   1.202 +	{
   1.203 +	CTestController_CreateAndDestroy_UnitTest_STUB* self = 
   1.204 +					new(ELeave) CTestController_CreateAndDestroy_UnitTest_STUB(aDataLogger,
   1.205 +																aObserver);
   1.206 +	CleanupStack::PushL(self);
   1.207 +	self->ConstructL();
   1.208 +	CleanupStack::Pop();
   1.209 +	return self; 
   1.210 +	}
   1.211 +
   1.212 +inline TInt CTestController_CreateAndDestroy_UnitTest_STUB::RunError(TInt aError)
   1.213 +	{
   1.214 +	// The RunL left so chain to the base first and then cleanup
   1.215 +	TInt error = CUnitTest::RunError(aError);	// Chain to base
   1.216 +
   1.217 +	//Do nothing else since stub
   1.218 +
   1.219 +	return error;
   1.220 +	}
   1.221 +
   1.222 +inline CTestController_CreateAndDestroy_UnitTest_STUB::~CTestController_CreateAndDestroy_UnitTest_STUB()
   1.223 +	{
   1.224 +	//Do nothing
   1.225 +	}
   1.226 +
   1.227 +inline CTestController_CreateAndDestroy_UnitTest_STUB::CTestController_CreateAndDestroy_UnitTest_STUB(CDataLogger& aDataLogger,
   1.228 +																	MUnitTestObserver& aObserver)
   1.229 +: CUnitTest(KTestControllerCreateAndDestroyUnitTest_STUB, aDataLogger, aObserver)
   1.230 +	{
   1.231 +	//Do nothing
   1.232 +	}
   1.233 +
   1.234 +// Now the Individual transitions need to be added.
   1.235 +inline void CTestController_CreateAndDestroy_UnitTest_STUB::ConstructL()
   1.236 +	{
   1.237 +	// Perform the base class initialization
   1.238 +	UnitTestConstructL();
   1.239 +
   1.240 +	//Do nothing else since stub
   1.241 +	}