os/ossrv/lowlevellibsandfws/pluginfw/Framework/LoadManagerTest/LoadManagerUnitTest.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/LoadManagerTest/LoadManagerUnitTest.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,182 @@
     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 CLoadManager tests
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#include "LoadManagerUnitTest.h"
    1.22 +#include "RegistryData.h"
    1.23 +
    1.24 +CLoadManager_CreateAndDestroy_UnitTest* CLoadManager_CreateAndDestroy_UnitTest::NewL(CDataLogger& aDataLogger,
    1.25 +											MUnitTestObserver& aObserver)
    1.26 +	{
    1.27 +	CLoadManager_CreateAndDestroy_UnitTest* self = 
    1.28 +					new(ELeave) CLoadManager_CreateAndDestroy_UnitTest(aDataLogger,
    1.29 +																aObserver);
    1.30 +	CleanupStack::PushL(self);
    1.31 +	self->ConstructL();
    1.32 +	CleanupStack::Pop();
    1.33 +	return self; 
    1.34 +	}
    1.35 +
    1.36 +// Now the Individual transitions need to be added.
    1.37 +inline void CLoadManager_CreateAndDestroy_UnitTest::ConstructL()
    1.38 +	{
    1.39 +	// Perform the base class initialization
    1.40 +	UnitTestConstructL();
    1.41 +
    1.42 +	// Create the Unit test state accessor
    1.43 +	iStateAccessor = new(ELeave) TLoadManager_StateAccessor;
    1.44 +	// Construct the Unit test context.
    1.45 +	iUTContext = new(ELeave) CLoadManager_UnitTestContext(iDataLogger, *iStateAccessor, *this);
    1.46 +	// Add the Transitions in the order they are to run
    1.47 +	// C'tor first, D'tor last...
    1.48 +	iCtorValidator = new(ELeave) TLoadManager_Ctor_TransitionValidator(*iUTContext);
    1.49 +	AddTransitionL(new(ELeave)CLoadManager_NewL_Transition(*iUTContext,*iCtorValidator));
    1.50 +	iDtorValidator = new(ELeave) TLoadManager_Dtor_TransitionValidator(*iUTContext);
    1.51 +	AddTransitionL(new(ELeave)CLoadManager_Dtor_Transition(*iUTContext,*iDtorValidator));
    1.52 +	}
    1.53 +
    1.54 +void CLoadManager_CreateAndDestroy_UnitTest::PrepareUnitTestL()
    1.55 +	{
    1.56 +	// Give the context a constructed set of data
    1.57 +	iUTContext->iRegistryData = CRegistryData::NewL(iFs);
    1.58 +	}
    1.59 +
    1.60 +// ______________________________________________________________________________
    1.61 +//
    1.62 +CLoadManager_FindInstantiationAndDestroy_UnitTest* CLoadManager_FindInstantiationAndDestroy_UnitTest::NewL(CDataLogger& aDataLogger,
    1.63 +											MUnitTestObserver& aObserver)
    1.64 +	{
    1.65 +	CLoadManager_FindInstantiationAndDestroy_UnitTest* self = 
    1.66 +					new(ELeave) CLoadManager_FindInstantiationAndDestroy_UnitTest(aDataLogger,
    1.67 +																aObserver);
    1.68 +	CleanupStack::PushL(self);
    1.69 +	self->ConstructL();
    1.70 +	CleanupStack::Pop();
    1.71 +	return self; 
    1.72 +	}
    1.73 +
    1.74 +// Now the Individual transitions need to be added.
    1.75 +inline void CLoadManager_FindInstantiationAndDestroy_UnitTest::ConstructL()
    1.76 +	{
    1.77 +	// Perform the base class initialization
    1.78 +	UnitTestConstructL();
    1.79 +
    1.80 +	// Create the Unit test state accessor
    1.81 +	iStateAccessor = new(ELeave) TLoadManager_StateAccessor;
    1.82 +	// Construct the Unit test context.
    1.83 +	iUTContext = new(ELeave) CLoadManager_UnitTestContext(iDataLogger, *iStateAccessor, *this);
    1.84 +	
    1.85 +	iUTContext->iUniqueImplementationUid = KUniqueImplementationUid_Works;
    1.86 +	// Add the Transitions in the order they are to run
    1.87 +	// C'tor first, D'tor last...
    1.88 +	iCtorValidator = new(ELeave) TLoadManager_Ctor_TransitionValidator(*iUTContext);
    1.89 +	AddTransitionL(new(ELeave)CLoadManager_NewL_Transition(*iUTContext,*iCtorValidator));
    1.90 +	
    1.91 +	iInstantiationMethodValidator = new(ELeave) TLoadManager_InstantiationMethod_TransitionValidator(*iUTContext);
    1.92 +	AddTransitionL(new(ELeave)CLoadManager_InstantiationMethodL_Transition(*iUTContext,*iInstantiationMethodValidator));
    1.93 +	
    1.94 +	iDestroyThisValidator = new(ELeave) TLoadManager_DestroyThis_TransitionValidator(*iUTContext);
    1.95 +	AddTransitionL(new(ELeave)CLoadManager_DestroyedThis_Transition(*iUTContext,*iDestroyThisValidator));
    1.96 +	
    1.97 +	iDtorValidator = new(ELeave) TLoadManager_Dtor_TransitionValidator(*iUTContext);
    1.98 +	AddTransitionL(new(ELeave)CLoadManager_Dtor_Transition(*iUTContext,*iDtorValidator));
    1.99 +	}
   1.100 +
   1.101 +void CLoadManager_FindInstantiationAndDestroy_UnitTest::PrepareUnitTestL()
   1.102 +	{
   1.103 +	iUTContext->iRegistryData = CRegistryData::NewL(iFs);
   1.104 +	}
   1.105 +
   1.106 +// ______________________________________________________________________________
   1.107 +//
   1.108 +CLoadManager_FindInstantiationFailure_UnitTest* CLoadManager_FindInstantiationFailure_UnitTest::NewL(CDataLogger& aDataLogger,
   1.109 +											MUnitTestObserver& aObserver)
   1.110 +	{
   1.111 +	CLoadManager_FindInstantiationFailure_UnitTest* self = 
   1.112 +					new(ELeave) CLoadManager_FindInstantiationFailure_UnitTest(aDataLogger,
   1.113 +																aObserver);
   1.114 +	CleanupStack::PushL(self);
   1.115 +	self->ConstructL();
   1.116 +	CleanupStack::Pop();
   1.117 +	return self; 
   1.118 +	}
   1.119 +
   1.120 +// Now the Individual transitions need to be added.
   1.121 +inline void CLoadManager_FindInstantiationFailure_UnitTest::ConstructL()
   1.122 +	{
   1.123 +	// Perform the base class initialization
   1.124 +	UnitTestConstructL();
   1.125 +
   1.126 +	// Create the Unit test state accessor
   1.127 +	iStateAccessor = new(ELeave) TLoadManager_StateAccessor;
   1.128 +	// Construct the Unit test context.
   1.129 +	iUTContext = new(ELeave) CLoadManager_UnitTestContext(iDataLogger, *iStateAccessor, *this);
   1.130 +	
   1.131 +	iUTContext->iUniqueImplementationUid = KUniqueImplementationUid_Fails;
   1.132 +	iUTContext->iRegistryData = CRegistryData::NewL(iFs);
   1.133 +	// Add the Transitions in the order they are to run
   1.134 +	// C'tor first, D'tor last...
   1.135 +	iCtorValidator = new(ELeave) TLoadManager_Ctor_TransitionValidator(*iUTContext);
   1.136 +	AddTransitionL(new(ELeave)CLoadManager_NewL_Transition(*iUTContext,*iCtorValidator));
   1.137 +	
   1.138 +	iInstantiationMethodValidator = new(ELeave) TLoadManager_InstantiationFailure_TransitionValidator(*iUTContext);
   1.139 +	AddTransitionL(new(ELeave)CLoadManager_InstantiationMethodL_Transition(*iUTContext,*iInstantiationMethodValidator));
   1.140 +	
   1.141 +	iDtorValidator = new(ELeave) TLoadManager_Dtor_TransitionValidator(*iUTContext);
   1.142 +	AddTransitionL(new(ELeave)CLoadManager_Dtor_Transition(*iUTContext,*iDtorValidator));
   1.143 +	}
   1.144 +
   1.145 +// ______________________________________________________________________________
   1.146 +//
   1.147 +CLoadManager_DefectFOT56ULPM_UnitTest* CLoadManager_DefectFOT56ULPM_UnitTest::NewL(CDataLogger& aDataLogger,
   1.148 +											MUnitTestObserver& aObserver)
   1.149 +	{
   1.150 +	CLoadManager_DefectFOT56ULPM_UnitTest* self = 
   1.151 +					new(ELeave) CLoadManager_DefectFOT56ULPM_UnitTest(aDataLogger,
   1.152 +																aObserver);
   1.153 +	CleanupStack::PushL(self);
   1.154 +	self->ConstructL();
   1.155 +	CleanupStack::Pop();
   1.156 +	return self; 
   1.157 +	}
   1.158 +
   1.159 +// Now the Individual transitions need to be added.
   1.160 +inline void CLoadManager_DefectFOT56ULPM_UnitTest::ConstructL()
   1.161 +	{
   1.162 +	// Perform the base class initialization
   1.163 +	UnitTestConstructL();
   1.164 +
   1.165 +	// Create the Unit test state accessor
   1.166 +	iStateAccessor = new(ELeave) TLoadManager_StateAccessor;
   1.167 +	// Construct the Unit test context.
   1.168 +	iUTContext = new(ELeave) CLoadManager_UnitTestContext(iDataLogger, *iStateAccessor, *this);
   1.169 +	
   1.170 +	iUTContext->iUniqueImplementationUid = KUniqueImplementationUid_Works;
   1.171 +	iUTContext->iRegistryData = CRegistryData::NewL(iFs);
   1.172 +	// Add the Transitions in the order they are to run
   1.173 +	// C'tor first, D'tor last...
   1.174 +	iCtorValidator = new(ELeave) TLoadManager_Ctor_TransitionValidator(*iUTContext);
   1.175 +	iInstantiationMethodValidator = new(ELeave) TLoadManager_InstantiationMethod_TransitionValidator(*iUTContext);
   1.176 +	iDestroyThisValidator = new(ELeave) TLoadManager_DestroyThis_TransitionValidator(*iUTContext);
   1.177 +	iDtorValidator = new(ELeave) TLoadManager_Dtor_TransitionValidator(*iUTContext);
   1.178 +
   1.179 +	AddTransitionL(new(ELeave)CLoadManager_NewL_Transition(*iUTContext,*iCtorValidator));
   1.180 +	AddTransitionL(new(ELeave)CLoadManager_InstantiationMethodL_Transition(*iUTContext,*iInstantiationMethodValidator));
   1.181 +	AddTransitionL(new(ELeave)CLoadManager_DestroyCreate_Transition(*iUTContext,*iDestroyThisValidator));
   1.182 +	AddTransitionL(new(ELeave)CLoadManager_DestroyedThis_Transition(*iUTContext,*iDestroyThisValidator));
   1.183 +	AddTransitionL(new(ELeave)CLoadManager_Dtor_Transition(*iUTContext,*iDtorValidator));
   1.184 +	}
   1.185 +