os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TestControllerTest/TestControllerTransitions.inl
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TestControllerTest/TestControllerTransitions.inl Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,147 @@
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 CTestController class methods.
1.18 +//
1.19 +//
1.20 +
1.21 +IMPORT_C CComponentTester* NewComponentTestLC_STUB(
1.22 + CDataLogger& aDataLogger,
1.23 + MComponentTestObserver& aComponentTestObserver);
1.24 +
1.25 +// ______________________________________________________________________________
1.26 +//
1.27 +_LIT(KTestControllerNewLTransition,"CTestController_NewL_Transition");
1.28 +
1.29 +inline CTestController_NewL_Transition::CTestController_NewL_Transition(CUnitTestContext& aUTContext,
1.30 + TTransitionValidator& aValidator)
1.31 +: CTransitionType(KTestControllerNewLTransition, aUTContext, aValidator)
1.32 + {
1.33 + // Do nothing here.
1.34 + }
1.35 +
1.36 +inline void CTestController_NewL_Transition::TransitMethodL()
1.37 + {
1.38 + _LIT(KTestControllerNewLTransitMethod, "CTestController::NewL transition");
1.39 + Context().DataLogger().LogInformation(KTestControllerNewLTransitMethod);
1.40 + Context().iTestController = CTestController::NewL(Context().iScheduler, NewComponentTestLC_STUB, NULL, Context().iLogInfo);
1.41 + }
1.42 +
1.43 +inline CTestController_UnitTestContext& CTestController_NewL_Transition::Context() const
1.44 + {
1.45 + return REINTERPRET_CAST(CTestController_UnitTestContext&,iUTContext);
1.46 + }
1.47 +
1.48 +// ______________________________________________________________________________
1.49 +//
1.50 +_LIT(KTestControllerDtorTransition,"CTestController_Dtor_Transition");
1.51 +
1.52 +inline CTestController_Dtor_Transition::CTestController_Dtor_Transition(CUnitTestContext& aUTContext,
1.53 + TTransitionValidator& aValidator)
1.54 +: CTransition(KTestControllerDtorTransition, aUTContext, aValidator)
1.55 + {
1.56 + // Do nothing here.
1.57 + }
1.58 +
1.59 +inline void CTestController_Dtor_Transition::TransitMethodL()
1.60 + {
1.61 + _LIT(KTestControllerDtorTransitMethod, "CTestController::Dtor transition");
1.62 + Context().DataLogger().LogInformation(KTestControllerDtorTransitMethod);
1.63 + delete Context().iTestController;
1.64 + Context().iTestController = NULL;
1.65 + }
1.66 +
1.67 +inline CTestController_UnitTestContext& CTestController_Dtor_Transition::Context() const
1.68 + {
1.69 + return REINTERPRET_CAST(CTestController_UnitTestContext&,iUTContext);
1.70 + }
1.71 +
1.72 +// ______________________________________________________________________________
1.73 +//
1.74 +_LIT(KTestControllerFindComponentsTransition,"CTestController_FindComponents_Transition");
1.75 +
1.76 +inline CTestController_FindComponents_Transition::CTestController_FindComponents_Transition(CUnitTestContext& aUTContext,
1.77 + TTransitionValidator& aValidator)
1.78 +: CTransition(KTestControllerFindComponentsTransition, aUTContext, aValidator)
1.79 + {
1.80 + // Do nothing here.
1.81 + }
1.82 +
1.83 +// This is the name of the test that we wish to find
1.84 +_LIT(KComponentInfoCreateAndDestroyUnitTest,"CTestController_CreateAndDestroy_UnitTest_STUB");
1.85 +
1.86 +inline void CTestController_FindComponents_Transition::TransitMethodL()
1.87 + {
1.88 + _LIT(KTestControllerFindComponentsTransitMethod, "CTestController::FindComponents transition");
1.89 + Context().DataLogger().LogInformation(KTestControllerFindComponentsTransitMethod);
1.90 +
1.91 + Context().iTests.ResetAndDestroy();
1.92 + // Find the available components and place them in an array
1.93 + const RPointerArray<CComponentInfo>& components = Context().iTestController->FindComponents();
1.94 + const TInt ccount = components.Count();
1.95 + TBool found = EFalse;
1.96 + for(TInt i = 0; i < ccount && !found; ++i)
1.97 + {
1.98 + // Find the unit tests available for each the previously found components
1.99 + const RPointerArray<CUnitTestInfo>& unitTests = components[i]->UnitTestsInfo();
1.100 + const TInt ucount = unitTests.Count();
1.101 + for(TInt j = 0; j < ucount && !found; ++j)
1.102 + {
1.103 + // Look for the unit test that matches the one that we wish to find
1.104 + found = unitTests[j]->UnitTestId() == KComponentInfoCreateAndDestroyUnitTest;
1.105 + if(found)
1.106 + {
1.107 + TTestInfo* testInfo = new(ELeave) TTestInfo;
1.108 + testInfo->iComponentId = i;
1.109 + testInfo->iUnitTestId = j;
1.110 + testInfo->iRunTime = 0; // Run immediately
1.111 + testInfo->iParameters = NULL;
1.112 + User::LeaveIfError(Context().iTests.Append(testInfo));
1.113 + }
1.114 + }
1.115 + }
1.116 + if(!found)
1.117 + User::Leave(KErrNotFound);
1.118 + }
1.119 +
1.120 +inline CTestController_UnitTestContext& CTestController_FindComponents_Transition::Context() const
1.121 + {
1.122 + return REINTERPRET_CAST(CTestController_UnitTestContext&,iUTContext);
1.123 + }
1.124 +
1.125 +// ______________________________________________________________________________
1.126 +//
1.127 +_LIT(KTestControllerStartTransition,"CTestController_Start_Transition");
1.128 +
1.129 +inline CTestController_Start_Transition::CTestController_Start_Transition(CUnitTestContext& aUTContext,
1.130 + TTransitionValidator& aValidator)
1.131 +: CTransition(KTestControllerStartTransition, aUTContext, aValidator)
1.132 + {
1.133 + // Do nothing here.
1.134 + }
1.135 +
1.136 +inline void CTestController_Start_Transition::TransitMethodL()
1.137 + {
1.138 + _LIT(KTestControllerStartTransitMethod, "CTestController::Start transition");
1.139 + Context().DataLogger().LogInformation(KTestControllerStartTransitMethod);
1.140 + Context().iTestController->Start(&Context().iTests);
1.141 + }
1.142 +
1.143 +inline CTestController_UnitTestContext& CTestController_Start_Transition::Context() const
1.144 + {
1.145 + return REINTERPRET_CAST(CTestController_UnitTestContext&,iUTContext);
1.146 + }
1.147 +
1.148 +
1.149 +// Add additional Transition class Implementations here...
1.150 +