sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // The unit test class implementations for the CComponentInfo class. sl@0: // sl@0: // sl@0: sl@0: #include "ComponentInfoUnitTest.h" sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: _LIT(KComponentInfoCreateAndDestroyUnitTest,"CComponentInfo_CreateAndDestroy_UnitTest"); sl@0: sl@0: CComponentInfo_CreateAndDestroy_UnitTest* CComponentInfo_CreateAndDestroy_UnitTest::NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: { sl@0: CComponentInfo_CreateAndDestroy_UnitTest* self = sl@0: new(ELeave) CComponentInfo_CreateAndDestroy_UnitTest(aDataLogger, sl@0: aObserver); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(); sl@0: CleanupStack::Pop(); sl@0: return self; sl@0: } sl@0: sl@0: inline TInt CComponentInfo_CreateAndDestroy_UnitTest::RunError(TInt aError) sl@0: { sl@0: // The RunL left so chain to the base first and then cleanup sl@0: TInt error = CUnitTest::RunError(aError); // Chain to base sl@0: delete iUTContext; sl@0: iUTContext = NULL; sl@0: delete iStateAccessor; sl@0: iStateAccessor = NULL; sl@0: /* delete any validators used */ sl@0: delete iCtorValidator; sl@0: iCtorValidator = NULL; sl@0: delete iDtorValidator; sl@0: iDtorValidator = NULL; sl@0: return error; sl@0: } sl@0: sl@0: inline CComponentInfo_CreateAndDestroy_UnitTest::~CComponentInfo_CreateAndDestroy_UnitTest() sl@0: { sl@0: // Simply delete our test class instance sl@0: delete iUTContext; sl@0: delete iStateAccessor; sl@0: /* delete any validators used */ sl@0: delete iCtorValidator; sl@0: delete iDtorValidator; sl@0: } sl@0: sl@0: inline CComponentInfo_CreateAndDestroy_UnitTest::CComponentInfo_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: : CUnitTest(KComponentInfoCreateAndDestroyUnitTest, aDataLogger, aObserver) sl@0: { sl@0: //Do nothing sl@0: } sl@0: sl@0: // Now the Individual transitions need to be added. sl@0: inline void CComponentInfo_CreateAndDestroy_UnitTest::ConstructL() sl@0: { sl@0: // Perform the base class initialization sl@0: UnitTestConstructL(); sl@0: sl@0: // Create the Unit test state accessor sl@0: iStateAccessor = new(ELeave) TComponentInfo_StateAccessor; sl@0: // Construct the Unit test context. sl@0: iUTContext = new(ELeave) CComponentInfo_UnitTestContext(iDataLogger, *iStateAccessor, *this); sl@0: iUTContext->iOwnParams = ETrue; sl@0: //Leave function pointer at 0, assume CBase does this sl@0: //iUTContext->iEntryFunc = iUTContext->iEntryFuncPostCheck = 0; sl@0: iUTContext->iTestInfoArray = new(ELeave) RPointerArray; sl@0: sl@0: // Add the Transitions in the order they are to run sl@0: // C'tor first, D'tor last... sl@0: iCtorValidator = new(ELeave) TComponentInfo_Ctor_TransitionValidator(*iUTContext); sl@0: iDtorValidator = new(ELeave) TComponentInfo_Dtor_TransitionValidator(*iUTContext); sl@0: sl@0: AddTransitionL(new(ELeave)CComponentInfo_NewL_Transition(*iUTContext,*iCtorValidator)); sl@0: AddTransitionL(new(ELeave)CComponentInfo_Dtor_Transition(*iUTContext,*iDtorValidator)); sl@0: } sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: _LIT(KComponentInfoRetrieveTestNamesUnitTest,"CComponentInfo_RetrieveTestNames_UnitTest"); sl@0: sl@0: CComponentInfo_RetrieveTestNames_UnitTest* CComponentInfo_RetrieveTestNames_UnitTest::NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: { sl@0: CComponentInfo_RetrieveTestNames_UnitTest* self = sl@0: new(ELeave) CComponentInfo_RetrieveTestNames_UnitTest(aDataLogger, sl@0: aObserver); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(); sl@0: CleanupStack::Pop(); sl@0: return self; sl@0: } sl@0: sl@0: inline TInt CComponentInfo_RetrieveTestNames_UnitTest::RunError(TInt aError) sl@0: { sl@0: // The RunL left so chain to the base first and then cleanup sl@0: TInt error = CUnitTest::RunError(aError); // Chain to base sl@0: delete iUTContext; sl@0: iUTContext = NULL; sl@0: delete iStateAccessor; sl@0: iStateAccessor = NULL; sl@0: /* delete any validators used */ sl@0: delete iCtorValidator; sl@0: iCtorValidator = NULL; sl@0: delete iEntryValidator; sl@0: iEntryValidator = NULL; sl@0: delete iUnitTestsInfoValidator; sl@0: iUnitTestsInfoValidator = NULL; sl@0: delete iDtorValidator; sl@0: iDtorValidator = NULL; sl@0: return error; sl@0: } sl@0: sl@0: inline CComponentInfo_RetrieveTestNames_UnitTest::~CComponentInfo_RetrieveTestNames_UnitTest() sl@0: { sl@0: // Simply delete our test class instance sl@0: delete iUTContext; sl@0: delete iStateAccessor; sl@0: /* delete any validators used */ sl@0: delete iCtorValidator; sl@0: delete iEntryValidator; sl@0: delete iUnitTestsInfoValidator; sl@0: delete iDtorValidator; sl@0: } sl@0: sl@0: inline CComponentInfo_RetrieveTestNames_UnitTest::CComponentInfo_RetrieveTestNames_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: : CUnitTest(KComponentInfoRetrieveTestNamesUnitTest, aDataLogger, aObserver) sl@0: { sl@0: //Do nothing sl@0: } sl@0: sl@0: // Now the Individual transitions need to be added. sl@0: inline void CComponentInfo_RetrieveTestNames_UnitTest::ConstructL() sl@0: { sl@0: // Perform the base class initialization sl@0: UnitTestConstructL(); sl@0: sl@0: // Create the Unit test state accessor sl@0: iStateAccessor = new(ELeave) TComponentInfo_StateAccessor; sl@0: // Construct the Unit test context. sl@0: iUTContext = new(ELeave) CComponentInfo_UnitTestContext(iDataLogger, *iStateAccessor, *this); sl@0: sl@0: // Add the Transitions in the order they are to run sl@0: // C'tor first, D'tor last... sl@0: iCtorValidator = new(ELeave) TComponentInfo_Ctor_TransitionValidator(*iUTContext); sl@0: iEntryValidator = new(ELeave) TComponentInfo_Entry_TransitionValidator(*iUTContext); sl@0: iUnitTestsInfoValidator = new(ELeave) TComponentInfo_UnitTestsInfo_TransitionValidator(*iUTContext); sl@0: iDtorValidator = new(ELeave) TComponentInfo_Dtor_TransitionValidator(*iUTContext); sl@0: sl@0: AddTransitionL(new(ELeave)CComponentInfo_NewL_Transition(*iUTContext,*iCtorValidator)); sl@0: AddTransitionL(new(ELeave)CComponentInfo_Entry_Transition(*iUTContext,*iEntryValidator)); sl@0: AddTransitionL(new(ELeave)CComponentInfo_UnitTestsInfo_Transition(*iUTContext,*iUnitTestsInfoValidator)); sl@0: AddTransitionL(new(ELeave)CComponentInfo_Dtor_Transition(*iUTContext,*iDtorValidator)); sl@0: } sl@0: