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: // This file contains the definitions for sl@0: // the transition classes for testing the sl@0: // CExampleInterface interface. sl@0: // sl@0: // sl@0: sl@0: #include sl@0: sl@0: #include "TestUtilities.h" // For __FILE__LINE__ sl@0: #include "Interface.h" sl@0: #include "SuicideTransitions.h" sl@0: sl@0: // __________________________________________________________________________ sl@0: CSuicideInterface_UnitTestContext::CSuicideInterface_UnitTestContext(CDataLogger& aDataLogger, sl@0: MStateAccessor& aAccessor, sl@0: MTransitionObserver& aObserver) sl@0: : CUnitTestContext(aDataLogger, aAccessor, aObserver), iExampleInterface(NULL) sl@0: { sl@0: // Do nothing sl@0: } sl@0: sl@0: CSuicideInterface_UnitTestContext::~CSuicideInterface_UnitTestContext() sl@0: { sl@0: delete iExampleInterface; sl@0: } sl@0: sl@0: sl@0: //Define the transition ids for all the transitions of the CExampleInterface class sl@0: _LIT(KInterfaceNewLTransitionName, "CSuicideInterfaceNewLTransition"); sl@0: _LIT(KInterfaceDtorTransitionName, "CSuicideInterfaceDtorTransition"); sl@0: _LIT(KInterfaceFireAndForgetTransitionName, "CSuicideInterfaceFireAndForgetTransition"); sl@0: sl@0: _LIT8(KInterfaceResolveMatchStr,"suicidal"); sl@0: sl@0: // For each class method implement a transition class... sl@0: // __________________________________________________________________________ sl@0: //Construction sl@0: CSuicideInterfaceNewLTransition::CSuicideInterfaceNewLTransition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: : CTransitionType(KInterfaceNewLTransitionName, aUTContext, aValidator) sl@0: { sl@0: } sl@0: sl@0: void CSuicideInterfaceNewLTransition::TransitMethodL() sl@0: { sl@0: // Call the NewL method sl@0: Context().iExampleInterface = CExampleInterface::NewL(KInterfaceResolveMatchStr()); sl@0: } sl@0: sl@0: // Auto casting sl@0: inline CSuicideInterface_UnitTestContext& CSuicideInterfaceNewLTransition::Context() sl@0: { sl@0: return REINTERPRET_CAST(CSuicideInterface_UnitTestContext&,iUTContext); sl@0: } sl@0: sl@0: // __________________________________________________________________________ sl@0: //Destruction sl@0: inline CSuicideInterfaceDtorTransition::CSuicideInterfaceDtorTransition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: : CTransition(KInterfaceDtorTransitionName, aUTContext, aValidator) sl@0: { sl@0: } sl@0: sl@0: inline void CSuicideInterfaceDtorTransition::TransitMethodL() sl@0: { sl@0: // Call the d'tor method sl@0: delete Context().iExampleInterface; sl@0: Context().iExampleInterface = NULL; sl@0: REComSession::FinalClose(); sl@0: } sl@0: sl@0: // Auto casting sl@0: inline CSuicideInterface_UnitTestContext& CSuicideInterfaceDtorTransition::Context() sl@0: { sl@0: return REINTERPRET_CAST(CSuicideInterface_UnitTestContext&,iUTContext); sl@0: } sl@0: sl@0: // __________________________________________________________________________ sl@0: //FireAndForget method call sl@0: CSuicideInterfaceFireAndForgetTransition::CSuicideInterfaceFireAndForgetTransition(CUnitTestContext& aUTContext, sl@0: TTransitionValidator& aValidator) sl@0: : CTransition(KInterfaceFireAndForgetTransitionName, aUTContext, aValidator) sl@0: { sl@0: } sl@0: sl@0: void CSuicideInterfaceFireAndForgetTransition::TransitMethodL() sl@0: { sl@0: // Execute the creation method, and then remove the references sl@0: // in the context. sl@0: // This technically leaks the class but it is supposed to sl@0: // commit suicide and clean itself up, so its ok. sl@0: User::LeaveIfError(Context().iExampleInterface->FireAndForget()); sl@0: Context().iExampleInterface = NULL; sl@0: } sl@0: sl@0: // Auto casting sl@0: inline CSuicideInterface_UnitTestContext& CSuicideInterfaceFireAndForgetTransition::Context() sl@0: { sl@0: return REINTERPRET_CAST(CSuicideInterface_UnitTestContext&,iUTContext); sl@0: }