os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TestManagerTest/TestManagerTransitions.inl
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 implementation of the transition classes upon the CTestManager class methods.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
// ______________________________________________________________________________
sl@0
    19
//
sl@0
    20
_LIT(KTestManagerNewLTransition,"CTestManager_NewL_Transition");
sl@0
    21
sl@0
    22
inline CTestManager_NewL_Transition::CTestManager_NewL_Transition(CUnitTestContext& aUTContext,
sl@0
    23
													TTransitionValidator& aValidator)
sl@0
    24
: CTransitionType(KTestManagerNewLTransition, aUTContext, aValidator)
sl@0
    25
	{
sl@0
    26
	// Do nothing here.
sl@0
    27
	}
sl@0
    28
sl@0
    29
inline void CTestManager_NewL_Transition::TransitMethodL()
sl@0
    30
	{
sl@0
    31
	_LIT(KTestManagerNewLTransitMethod, "CTestManager::NewL transition");
sl@0
    32
	Context().DataLogger().LogInformation(KTestManagerNewLTransitMethod);
sl@0
    33
	Context().iTestManager = CTestManager::NewL(Context().iTestListArray, Context().DataLogger(), Context().ManagerObserver());
sl@0
    34
	}
sl@0
    35
sl@0
    36
inline CTestManager_UnitTestContext& CTestManager_NewL_Transition::Context() const
sl@0
    37
	{
sl@0
    38
	return REINTERPRET_CAST(CTestManager_UnitTestContext&,iUTContext);
sl@0
    39
	}
sl@0
    40
sl@0
    41
// ______________________________________________________________________________
sl@0
    42
//
sl@0
    43
_LIT(KTestManagerDtorTransition,"CTestManager_Dtor_Transition");
sl@0
    44
sl@0
    45
inline CTestManager_Dtor_Transition::CTestManager_Dtor_Transition(CUnitTestContext& aUTContext,
sl@0
    46
													TTransitionValidator& aValidator)
sl@0
    47
: CTransition(KTestManagerDtorTransition, aUTContext, aValidator)
sl@0
    48
	{
sl@0
    49
	// Do nothing here.
sl@0
    50
	}
sl@0
    51
sl@0
    52
inline void CTestManager_Dtor_Transition::TransitMethodL()
sl@0
    53
	{
sl@0
    54
	_LIT(KTestManagerDtorTransitMethod, "CTestManager::Dtor transition");
sl@0
    55
	Context().DataLogger().LogInformation(KTestManagerDtorTransitMethod);
sl@0
    56
	delete Context().iTestManager;
sl@0
    57
	Context().iTestManager = NULL;
sl@0
    58
	}
sl@0
    59
sl@0
    60
inline CTestManager_UnitTestContext& CTestManager_Dtor_Transition::Context() const
sl@0
    61
	{
sl@0
    62
	return REINTERPRET_CAST(CTestManager_UnitTestContext&,iUTContext);
sl@0
    63
	}
sl@0
    64
sl@0
    65
// ______________________________________________________________________________
sl@0
    66
//
sl@0
    67
_LIT(KTestManagerRunTestsTransition,"CTestManager_RunTests_Transition");
sl@0
    68
sl@0
    69
inline CTestManager_RunTests_Transition::CTestManager_RunTests_Transition(CUnitTestContext& aUTContext,
sl@0
    70
													TTransitionValidator& aValidator)
sl@0
    71
: CTransition(KTestManagerRunTestsTransition, aUTContext, aValidator)
sl@0
    72
	{
sl@0
    73
	// Do nothing here.
sl@0
    74
	}
sl@0
    75
sl@0
    76
inline void CTestManager_RunTests_Transition::TransitMethodL()
sl@0
    77
	{
sl@0
    78
	_LIT(KTestManagerRunTestsTransitMethod, "CTestManager::RunTests transition");
sl@0
    79
	Context().DataLogger().LogInformation(KTestManagerRunTestsTransitMethod);
sl@0
    80
	
sl@0
    81
	_LIT(KComponentInfoCreateAndDestroyUnitTest,"CComponentInfo_CreateAndDestroy_UnitTest_STUB");
sl@0
    82
	Context().iTests.ResetAndDestroy();
sl@0
    83
	Context().iTestController = CTestController::NewLC(CActiveScheduler::Current(),NULL);
sl@0
    84
	// Find the available components and place them in an array
sl@0
    85
	Context().iComponents = &(Context().iTestController->FindComponents());
sl@0
    86
	const RPointerArray<CComponentInfo>& components = *(Context().iComponents);
sl@0
    87
	const TInt ccount = Context().iComponents->Count();
sl@0
    88
	TBool found = EFalse;
sl@0
    89
	for(TInt i = 0; i < ccount && !found; ++i)
sl@0
    90
		{
sl@0
    91
		// Find the unit tests available for each the previously found components
sl@0
    92
		const RPointerArray<CUnitTestInfo>& unitTests = components[i]->UnitTestsInfo();
sl@0
    93
		const TInt ucount = unitTests.Count();
sl@0
    94
		for(TInt j = 0; j < ucount && !found; ++j)
sl@0
    95
			{
sl@0
    96
			// Look for the unit test that matches the one that we wish to find
sl@0
    97
			found = unitTests[j]->UnitTestId() == KComponentInfoCreateAndDestroyUnitTest;
sl@0
    98
			if(found)
sl@0
    99
				{
sl@0
   100
				TTestInfo* testInfo = new(ELeave) TTestInfo;
sl@0
   101
				testInfo->iComponentId = i;
sl@0
   102
				testInfo->iUnitTestId = j;
sl@0
   103
				testInfo->iRunTime = 0;		// Run immediately
sl@0
   104
				testInfo->iParameters = NULL;
sl@0
   105
				User::LeaveIfError(Context().iTests.Append(testInfo));
sl@0
   106
				}
sl@0
   107
			}
sl@0
   108
		}
sl@0
   109
	if(!found)
sl@0
   110
		User::Leave(KErrNotFound);
sl@0
   111
sl@0
   112
	CleanupStack::PopAndDestroy(Context().iTestController);
sl@0
   113
	Context().iTestController = NULL;
sl@0
   114
	Context().iTestManager->RunTests(&Context().iTests);
sl@0
   115
	}
sl@0
   116
sl@0
   117
inline CTestManager_UnitTestContext& CTestManager_RunTests_Transition::Context() const
sl@0
   118
	{
sl@0
   119
	return REINTERPRET_CAST(CTestManager_UnitTestContext&,iUTContext);
sl@0
   120
	}
sl@0
   121
sl@0
   122
// ______________________________________________________________________________
sl@0
   123
//
sl@0
   124
_LIT(KTestManagerTestComponentLTransition,"CTestManager_TestComponentL_Transition");
sl@0
   125
sl@0
   126
inline CTestManager_TestComponentL_Transition::CTestManager_TestComponentL_Transition(CUnitTestContext& aUTContext,
sl@0
   127
													TTransitionValidator& aValidator)
sl@0
   128
: CTransitionType(KTestManagerTestComponentLTransition, aUTContext, aValidator)
sl@0
   129
	{
sl@0
   130
	// Do nothing here.
sl@0
   131
	}
sl@0
   132
sl@0
   133
inline void CTestManager_TestComponentL_Transition::TransitMethodL()
sl@0
   134
	{
sl@0
   135
	_LIT(KTestManagerTestComponentLTransitMethod, "CTestManager::TestComponentL transition");
sl@0
   136
	Context().DataLogger().LogInformation(KTestManagerTestComponentLTransitMethod);
sl@0
   137
	TTestManager_StateAccessor& accessor = REINTERPRET_CAST(TTestManager_StateAccessor&, Context().StateAccessor());
sl@0
   138
	accessor.TestComponentL(*(Context().iTestManager), Context().iComponentIndex);
sl@0
   139
	accessor.ActivateManager(*(Context().iTestManager));
sl@0
   140
	Context().iTestManagerObserverStub->SetSchedulerStarted(ETrue);
sl@0
   141
	CActiveScheduler::Start();
sl@0
   142
	}
sl@0
   143
sl@0
   144
inline CTestManager_UnitTestContext& CTestManager_TestComponentL_Transition::Context() const
sl@0
   145
	{
sl@0
   146
	return REINTERPRET_CAST(CTestManager_UnitTestContext&,iUTContext);
sl@0
   147
	}
sl@0
   148
sl@0
   149
sl@0
   150