sl@0: // Copyright (c) 2007-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: // Declarations of Integration test step classes for A3F DevSound Play cases. sl@0: // sl@0: // sl@0: sl@0: #ifndef TSI_A3F_DEVSOUND_PLAY_H sl@0: #define TSI_A3F_DEVSOUND_PLAY_H sl@0: sl@0: // User includes sl@0: #include "tsi_a3f_devsound_teststep.h" sl@0: sl@0: /* sl@0: * sl@0: * RTestStepA3FDevSoundPlayBase sl@0: * sl@0: */ sl@0: class RTestStepA3FDevSoundPlayBase : public RAsyncTestStep, sl@0: public MDevSoundObserver sl@0: { sl@0: public: sl@0: // From RAsyncTestStep sl@0: virtual void KickoffTestL(); sl@0: virtual void CloseTest(); sl@0: sl@0: protected: sl@0: RTestStepA3FDevSoundPlayBase(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: RTestStepA3FDevSoundPlayBase(const TDesC& aTestName, const TDesC& aSectName); sl@0: RTestStepA3FDevSoundPlayBase(const TDesC& aTestName, const TFourCC& aInputDataType); sl@0: RTestStepA3FDevSoundPlayBase(const TDesC& aTestName); sl@0: sl@0: virtual void DoKickoffTestL(); sl@0: sl@0: // Executes the playing events of DevSound using a Finite State Machine sl@0: virtual void Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError); sl@0: sl@0: // From MDevSoundObserver sl@0: virtual void InitializeComplete(TInt aError); sl@0: virtual void ToneFinished(TInt aError); sl@0: virtual void BufferToBeFilled(CMMFBuffer* aBuffer); sl@0: virtual void PlayError(TInt aError); sl@0: virtual void BufferToBeEmptied(CMMFBuffer* aBuffer); sl@0: virtual void RecordError(TInt aError); sl@0: virtual void ConvertError(TInt aError); sl@0: virtual void DeviceMessage(TUid aMessageType, const TDesC8& aMsg); sl@0: sl@0: // Timer Callback sl@0: static TInt TimerCallback(TAny*); sl@0: virtual void DoTimerCallback(); sl@0: sl@0: TUint ConvertDesToTMMFSampleRate(const TDesC& aSampleRateString); sl@0: TUint ConvertDesToTMMFMonoStereo(const TDesC& aMonoStereoString); sl@0: void DisplayCodecInfo(); sl@0: void SetSampleRateAndChannelMode(); sl@0: void CheckConfigAndFourCCUsage(); sl@0: sl@0: protected: sl@0: RFs iFs; sl@0: RFile iFile; sl@0: CMMFDevSound* iMMFDevSound; sl@0: CMMFBuffer* iBuffer; sl@0: CPeriodic* iTimer; sl@0: TCallBack iCallBack; sl@0: TFourCC iInputDataType; // datatype (FourCC) of the Decoder sl@0: TBuf iSectName; sl@0: TPtrC iFilename; sl@0: TPtrC iSampleRate; sl@0: TPtrC iMonoStereo; sl@0: TDevSoundPlayState iPlayState; sl@0: TInt iBufferCount; sl@0: TBool iConfig; sl@0: TBool iInvalidConfig; sl@0: TBool iUseFourCC; sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundPlaySimple sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundPlaySimple : public RTestStepA3FDevSoundPlayBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundPlaySimple* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: static RStepA3FDevSoundPlaySimple* NewL(const TDesC& aTestName, const TDesC& aSectName); sl@0: sl@0: private: sl@0: RStepA3FDevSoundPlaySimple(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: RStepA3FDevSoundPlaySimple(const TDesC& aTestName, const TDesC& aSectName); sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundPlayEmpty sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundPlayEmpty : public RTestStepA3FDevSoundPlayBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundPlayEmpty* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: private: sl@0: RStepA3FDevSoundPlayEmpty(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: // From RTestStepA3FDevSoundPlayBase sl@0: virtual void Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError); sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundPlayInvalidConfig sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundPlayInvalidConfig : public RTestStepA3FDevSoundPlayBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundPlayInvalidConfig* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: private: sl@0: RStepA3FDevSoundPlayInvalidConfig(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: // From RAsyncTestStep sl@0: virtual void KickoffTestL(); sl@0: sl@0: // From MDevSoundObserver sl@0: virtual void PlayError(TInt aError); sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundPlayInvalidFourCC sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundPlayInvalidFourCC : public RTestStepA3FDevSoundPlayBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundPlayInvalidFourCC* NewL(const TDesC& aTestName, const TFourCC& aInputDataType); sl@0: sl@0: private: sl@0: RStepA3FDevSoundPlayInvalidFourCC(const TDesC& aTestName, const TFourCC& aInputDataType); sl@0: sl@0: // From RAsyncTestStep sl@0: virtual void KickoffTestL(); sl@0: sl@0: // From RTestStepA3FDevSoundPlayBase sl@0: virtual void Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError); sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundInitializeWithHwDeviceUID sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundInitializeWithHwDeviceUID : public RTestStepA3FDevSoundPlayBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundInitializeWithHwDeviceUID* NewL(const TDesC& aTestName); sl@0: sl@0: private: sl@0: RStepA3FDevSoundInitializeWithHwDeviceUID(const TDesC& aTestName); sl@0: sl@0: // From RAsyncTestStep sl@0: virtual void KickoffTestL(); sl@0: sl@0: // From RTestStepA3FDevSoundPlayBase sl@0: virtual void Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError); sl@0: sl@0: }; sl@0: sl@0: /** sl@0: * sl@0: * RStepA3FDevSoundReadConfigDuringPlay sl@0: */ sl@0: class RStepA3FDevSoundReadConfigDuringPlay : public RTestStepA3FDevSoundPlayBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundReadConfigDuringPlay* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: private: sl@0: RStepA3FDevSoundReadConfigDuringPlay(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: // From MDevSoundObserver sl@0: virtual void BufferToBeFilled(CMMFBuffer* aBuffer); sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundSetVolPlayStopGetVol sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundSetVolPlayStopGetVol : public RTestStepA3FDevSoundPlayBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundSetVolPlayStopGetVol* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: private: sl@0: RStepA3FDevSoundSetVolPlayStopGetVol(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: // From RTestStepA3FDevSoundPlayBase sl@0: virtual void DoKickoffTestL(); sl@0: virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError); sl@0: virtual void DoTimerCallback(); sl@0: sl@0: private: sl@0: TInt iSetVolume; sl@0: TInt iVolDuringStopped; sl@0: TBool iCheckTimer; sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundFlushBuffersPaused sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundFlushBuffersPaused : public RTestStepA3FDevSoundPlayBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundFlushBuffersPaused* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: private: sl@0: RStepA3FDevSoundFlushBuffersPaused(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: // From RTestStepA3FDevSoundPlayBase sl@0: virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError); sl@0: virtual void DoTimerCallback(); sl@0: sl@0: // From MDevSoundObserver sl@0: void BufferToBeFilled(CMMFBuffer* aBuffer); sl@0: sl@0: private: sl@0: TBool iCheckTimer; sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundInvalidStatePlay sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundInvalidStatePlay : public RTestStepA3FDevSoundPlayBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundInvalidStatePlay* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: private: sl@0: RStepA3FDevSoundInvalidStatePlay(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: // From RAsyncTestStep sl@0: virtual void KickoffTestL(); sl@0: sl@0: // From RTestStepA3FDevSoundPlayBase sl@0: virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError); sl@0: sl@0: // From MDevSoundObserver sl@0: virtual void BufferToBeFilled(CMMFBuffer* aBuffer); sl@0: virtual void PlayError(TInt aError); sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundFlushBuffersPlaying sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundFlushBuffersPlaying : public RTestStepA3FDevSoundPlayBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundFlushBuffersPlaying* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: private: sl@0: RStepA3FDevSoundFlushBuffersPlaying(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: // From RTestStepA3FDevSoundPlayBase sl@0: virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError); sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundInitializeWhilePlaying sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundInitializeWhilePlaying : public RTestStepA3FDevSoundPlayBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundInitializeWhilePlaying* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: private: sl@0: RStepA3FDevSoundInitializeWhilePlaying(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: // From RTestStepA3FDevSoundPlayBase sl@0: void Fsm(TDevSoundPlayEvents aEventCode, TInt aError); sl@0: void DoTimerCallback(); sl@0: sl@0: private: sl@0: TBool iCheckTimer; sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundSetBalanceDuringPlay sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundSetBalanceDuringPlay : public RTestStepA3FDevSoundPlayBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundSetBalanceDuringPlay* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: private: sl@0: RStepA3FDevSoundSetBalanceDuringPlay(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: // From RTestStepA3FDevSoundPlayBase sl@0: virtual void DoKickoffTestL(); sl@0: sl@0: // From MDevSoundObserver sl@0: virtual void BufferToBeFilled(CMMFBuffer* aBuffer); sl@0: sl@0: private: sl@0: TInt iPlaybalanceLeft; sl@0: TInt iPlaybalanceRight; sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundPlayStopMultipleTimes sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundPlayStopMultipleTimes : public RTestStepA3FDevSoundPlayBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundPlayStopMultipleTimes* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: private: sl@0: sl@0: RStepA3FDevSoundPlayStopMultipleTimes(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: // From RTestStepA3FDevSoundPlayBase sl@0: virtual void DoKickoffTestL(); sl@0: virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError); sl@0: virtual void DoTimerCallback(); sl@0: sl@0: private: sl@0: TInt iRepeatCount; sl@0: TInt iRepeatCounter; sl@0: TBool iCheckTimer; sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundPlayEOFPlayMultipleTimes sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundPlayEOFPlayMultipleTimes : public RTestStepA3FDevSoundPlayBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundPlayEOFPlayMultipleTimes* NewL(const TDesC& aTestName, const TDesC& aSectName); sl@0: sl@0: private: sl@0: RStepA3FDevSoundPlayEOFPlayMultipleTimes(const TDesC& aTestName, const TDesC& aSectName); sl@0: sl@0: // From RTestStepA3FDevSoundPlayBase sl@0: virtual void DoKickoffTestL(); sl@0: sl@0: // From MDevSoundObserver sl@0: virtual void PlayError(TInt aError); sl@0: sl@0: private: sl@0: TInt iRepeatCount; sl@0: TInt iRepeatCounter; sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundInititalizeDuringInitialize sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundInititalizeDuringInitialize : public RTestStepA3FDevSoundPlayBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundInititalizeDuringInitialize* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: private: sl@0: RStepA3FDevSoundInititalizeDuringInitialize(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: // From RAsyncTestStep sl@0: virtual void KickoffTestL(); sl@0: sl@0: // From RTestStepA3FDevSoundPlayBase sl@0: virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError); sl@0: sl@0: // From MDevSoundObserver sl@0: virtual void InitializeComplete(TInt aError); sl@0: sl@0: private: sl@0: TInt iSecondInitErr; sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundPlayInitDuringPlayInit sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundPlayInitDuringPlayInit : public RTestStepA3FDevSoundPlayBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundPlayInitDuringPlayInit* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: private: sl@0: RStepA3FDevSoundPlayInitDuringPlayInit(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: // From RASyncTestStep sl@0: virtual void KickoffTestL(); sl@0: sl@0: // From RTestStepA3FDevSoundPlayBase sl@0: virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError); sl@0: sl@0: // From MDevSoundObserver sl@0: virtual void BufferToBeFilled(CMMFBuffer* aBuffer); sl@0: sl@0: private: sl@0: TInt iFirstPlayInitErr; sl@0: TInt iSecondPlayInitErr; sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundVolumeCrop sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundVolumeCrop : public RTestStepA3FDevSoundPlayBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundVolumeCrop* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: private: sl@0: RStepA3FDevSoundVolumeCrop(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: // From RAsyncTestStep sl@0: virtual void KickoffTestL(); sl@0: sl@0: // From RTestStepA3FDevSoundPlayBase sl@0: virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError); sl@0: sl@0: private: sl@0: TInt iIncreaseMaxVolume; sl@0: TInt iMinVolume; sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundInitializeForConverting sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundInitializeForConverting : public RTestStepA3FDevSoundPlayBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundInitializeForConverting* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: private: sl@0: RStepA3FDevSoundInitializeForConverting(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: // From RAsyncTestStep sl@0: virtual void KickoffTestL(); sl@0: sl@0: // From RTestStepA3FDevSoundPlayBase sl@0: virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError); sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundGetSampleNumsDuringPlayStop sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundGetSampleNumsAfterStop : public RTestStepA3FDevSoundPlayBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundGetSampleNumsAfterStop* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: private: sl@0: RStepA3FDevSoundGetSampleNumsAfterStop(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: // From RTestStepA3FDevSoundPlayBase sl@0: virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError); sl@0: virtual void DoTimerCallback(); sl@0: sl@0: private: sl@0: TBool iCheckTimer; sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundCancelInitializePlay sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundCancelInitializePlay : public RTestStepA3FDevSoundPlayBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundCancelInitializePlay* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: private: sl@0: RStepA3FDevSoundCancelInitializePlay(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: // From RTestStepA3FDevSoundPlayBase sl@0: virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError); sl@0: virtual void DoTimerCallback(); sl@0: virtual void KickoffTestL(); sl@0: sl@0: // From MDevSoundObserver sl@0: virtual void InitializeComplete(TInt aError); sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundNegCancelInitializePlay sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundNegCancelInitializePlay : public RTestStepA3FDevSoundPlayBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundNegCancelInitializePlay* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: private: sl@0: RStepA3FDevSoundNegCancelInitializePlay(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: // From RTestStepA3FDevSoundPlayBase sl@0: virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError); sl@0: virtual void KickoffTestL(); sl@0: sl@0: // From MDevSoundObserver sl@0: virtual void InitializeComplete(TInt aError); sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundEmptyBuffersInCreatedState sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundEmptyBuffersInCreatedState : public RTestStepA3FDevSoundPlayBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundEmptyBuffersInCreatedState* NewL(const TDesC& aTestName); sl@0: sl@0: private: sl@0: RStepA3FDevSoundEmptyBuffersInCreatedState(const TDesC& aTestName); sl@0: sl@0: // From RTestStepA3FDevSoundPlayBase sl@0: virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError); sl@0: virtual void KickoffTestL(); sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundEmptyBuffersInInitializedState sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundEmptyBuffersInInitializedState : public RTestStepA3FDevSoundPlayBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundEmptyBuffersInInitializedState* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: private: sl@0: RStepA3FDevSoundEmptyBuffersInInitializedState(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: // From RTestStepA3FDevSoundPlayBase sl@0: virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError); sl@0: virtual void KickoffTestL(); sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundEmptyBuffersInInitializingState sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundEmptyBuffersInInitializingState : public RTestStepA3FDevSoundPlayBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundEmptyBuffersInInitializingState* NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: private: sl@0: RStepA3FDevSoundEmptyBuffersInInitializingState(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType); sl@0: sl@0: // From RTestStepA3FDevSoundPlayBase sl@0: virtual void Fsm(TDevSoundPlayEvents aEventCode, TInt aError); sl@0: virtual void KickoffTestL(); sl@0: sl@0: // From MDevSoundObserver sl@0: virtual void InitializeComplete(TInt aError); sl@0: sl@0: }; sl@0: sl@0: #endif // TSI_A3F_DEVSOUND_PLAY_H