os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TestManagerTest/TestManagerTransitions.inl
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TestManagerTest/TestManagerTransitions.inl	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,150 @@
     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 implementation of the transition classes upon the CTestManager class methods.
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +// ______________________________________________________________________________
    1.22 +//
    1.23 +_LIT(KTestManagerNewLTransition,"CTestManager_NewL_Transition");
    1.24 +
    1.25 +inline CTestManager_NewL_Transition::CTestManager_NewL_Transition(CUnitTestContext& aUTContext,
    1.26 +													TTransitionValidator& aValidator)
    1.27 +: CTransitionType(KTestManagerNewLTransition, aUTContext, aValidator)
    1.28 +	{
    1.29 +	// Do nothing here.
    1.30 +	}
    1.31 +
    1.32 +inline void CTestManager_NewL_Transition::TransitMethodL()
    1.33 +	{
    1.34 +	_LIT(KTestManagerNewLTransitMethod, "CTestManager::NewL transition");
    1.35 +	Context().DataLogger().LogInformation(KTestManagerNewLTransitMethod);
    1.36 +	Context().iTestManager = CTestManager::NewL(Context().iTestListArray, Context().DataLogger(), Context().ManagerObserver());
    1.37 +	}
    1.38 +
    1.39 +inline CTestManager_UnitTestContext& CTestManager_NewL_Transition::Context() const
    1.40 +	{
    1.41 +	return REINTERPRET_CAST(CTestManager_UnitTestContext&,iUTContext);
    1.42 +	}
    1.43 +
    1.44 +// ______________________________________________________________________________
    1.45 +//
    1.46 +_LIT(KTestManagerDtorTransition,"CTestManager_Dtor_Transition");
    1.47 +
    1.48 +inline CTestManager_Dtor_Transition::CTestManager_Dtor_Transition(CUnitTestContext& aUTContext,
    1.49 +													TTransitionValidator& aValidator)
    1.50 +: CTransition(KTestManagerDtorTransition, aUTContext, aValidator)
    1.51 +	{
    1.52 +	// Do nothing here.
    1.53 +	}
    1.54 +
    1.55 +inline void CTestManager_Dtor_Transition::TransitMethodL()
    1.56 +	{
    1.57 +	_LIT(KTestManagerDtorTransitMethod, "CTestManager::Dtor transition");
    1.58 +	Context().DataLogger().LogInformation(KTestManagerDtorTransitMethod);
    1.59 +	delete Context().iTestManager;
    1.60 +	Context().iTestManager = NULL;
    1.61 +	}
    1.62 +
    1.63 +inline CTestManager_UnitTestContext& CTestManager_Dtor_Transition::Context() const
    1.64 +	{
    1.65 +	return REINTERPRET_CAST(CTestManager_UnitTestContext&,iUTContext);
    1.66 +	}
    1.67 +
    1.68 +// ______________________________________________________________________________
    1.69 +//
    1.70 +_LIT(KTestManagerRunTestsTransition,"CTestManager_RunTests_Transition");
    1.71 +
    1.72 +inline CTestManager_RunTests_Transition::CTestManager_RunTests_Transition(CUnitTestContext& aUTContext,
    1.73 +													TTransitionValidator& aValidator)
    1.74 +: CTransition(KTestManagerRunTestsTransition, aUTContext, aValidator)
    1.75 +	{
    1.76 +	// Do nothing here.
    1.77 +	}
    1.78 +
    1.79 +inline void CTestManager_RunTests_Transition::TransitMethodL()
    1.80 +	{
    1.81 +	_LIT(KTestManagerRunTestsTransitMethod, "CTestManager::RunTests transition");
    1.82 +	Context().DataLogger().LogInformation(KTestManagerRunTestsTransitMethod);
    1.83 +	
    1.84 +	_LIT(KComponentInfoCreateAndDestroyUnitTest,"CComponentInfo_CreateAndDestroy_UnitTest_STUB");
    1.85 +	Context().iTests.ResetAndDestroy();
    1.86 +	Context().iTestController = CTestController::NewLC(CActiveScheduler::Current(),NULL);
    1.87 +	// Find the available components and place them in an array
    1.88 +	Context().iComponents = &(Context().iTestController->FindComponents());
    1.89 +	const RPointerArray<CComponentInfo>& components = *(Context().iComponents);
    1.90 +	const TInt ccount = Context().iComponents->Count();
    1.91 +	TBool found = EFalse;
    1.92 +	for(TInt i = 0; i < ccount && !found; ++i)
    1.93 +		{
    1.94 +		// Find the unit tests available for each the previously found components
    1.95 +		const RPointerArray<CUnitTestInfo>& unitTests = components[i]->UnitTestsInfo();
    1.96 +		const TInt ucount = unitTests.Count();
    1.97 +		for(TInt j = 0; j < ucount && !found; ++j)
    1.98 +			{
    1.99 +			// Look for the unit test that matches the one that we wish to find
   1.100 +			found = unitTests[j]->UnitTestId() == KComponentInfoCreateAndDestroyUnitTest;
   1.101 +			if(found)
   1.102 +				{
   1.103 +				TTestInfo* testInfo = new(ELeave) TTestInfo;
   1.104 +				testInfo->iComponentId = i;
   1.105 +				testInfo->iUnitTestId = j;
   1.106 +				testInfo->iRunTime = 0;		// Run immediately
   1.107 +				testInfo->iParameters = NULL;
   1.108 +				User::LeaveIfError(Context().iTests.Append(testInfo));
   1.109 +				}
   1.110 +			}
   1.111 +		}
   1.112 +	if(!found)
   1.113 +		User::Leave(KErrNotFound);
   1.114 +
   1.115 +	CleanupStack::PopAndDestroy(Context().iTestController);
   1.116 +	Context().iTestController = NULL;
   1.117 +	Context().iTestManager->RunTests(&Context().iTests);
   1.118 +	}
   1.119 +
   1.120 +inline CTestManager_UnitTestContext& CTestManager_RunTests_Transition::Context() const
   1.121 +	{
   1.122 +	return REINTERPRET_CAST(CTestManager_UnitTestContext&,iUTContext);
   1.123 +	}
   1.124 +
   1.125 +// ______________________________________________________________________________
   1.126 +//
   1.127 +_LIT(KTestManagerTestComponentLTransition,"CTestManager_TestComponentL_Transition");
   1.128 +
   1.129 +inline CTestManager_TestComponentL_Transition::CTestManager_TestComponentL_Transition(CUnitTestContext& aUTContext,
   1.130 +													TTransitionValidator& aValidator)
   1.131 +: CTransitionType(KTestManagerTestComponentLTransition, aUTContext, aValidator)
   1.132 +	{
   1.133 +	// Do nothing here.
   1.134 +	}
   1.135 +
   1.136 +inline void CTestManager_TestComponentL_Transition::TransitMethodL()
   1.137 +	{
   1.138 +	_LIT(KTestManagerTestComponentLTransitMethod, "CTestManager::TestComponentL transition");
   1.139 +	Context().DataLogger().LogInformation(KTestManagerTestComponentLTransitMethod);
   1.140 +	TTestManager_StateAccessor& accessor = REINTERPRET_CAST(TTestManager_StateAccessor&, Context().StateAccessor());
   1.141 +	accessor.TestComponentL(*(Context().iTestManager), Context().iComponentIndex);
   1.142 +	accessor.ActivateManager(*(Context().iTestManager));
   1.143 +	Context().iTestManagerObserverStub->SetSchedulerStarted(ETrue);
   1.144 +	CActiveScheduler::Start();
   1.145 +	}
   1.146 +
   1.147 +inline CTestManager_UnitTestContext& CTestManager_TestComponentL_Transition::Context() const
   1.148 +	{
   1.149 +	return REINTERPRET_CAST(CTestManager_UnitTestContext&,iUTContext);
   1.150 +	}
   1.151 +
   1.152 +
   1.153 +