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 Tone cases. sl@0: // sl@0: // sl@0: sl@0: #ifndef TSI_A3F_DEVSOUND_TONE_H sl@0: #define TSI_A3F_DEVSOUND_TONE_H sl@0: sl@0: // User includes sl@0: #include "tsi_a3f_devsound_teststep.h" sl@0: sl@0: // Enumerations sl@0: enum TDevSoundToneState sl@0: { sl@0: EStateToneStart = 0, sl@0: EStateToneInitializing, sl@0: EStateTonePlaying, sl@0: EStateTonePaused sl@0: }; sl@0: sl@0: enum TDevSoundToneEvents sl@0: { sl@0: EEventToneStart = 0, sl@0: EEventInitCompleteTone, sl@0: EEventToneTimerComplete sl@0: }; sl@0: sl@0: class RTestStepA3FDevSoundToneBase : public RAsyncTestStep, sl@0: public MDevSoundObserver sl@0: { sl@0: public: sl@0: // From RAsyncTestStep sl@0: virtual void KickoffTestL(); sl@0: void CloseTest(); sl@0: sl@0: protected: sl@0: RTestStepA3FDevSoundToneBase(const TDesC& aTestName, const TDesC& aSectName); sl@0: RTestStepA3FDevSoundToneBase(const TDesC& aTestName); sl@0: sl@0: virtual void DoKickoffTestL() = 0; sl@0: sl@0: // Executes the tone events of DevSound using a Finite State Machine sl@0: virtual void Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError) = 0; 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: sl@0: protected: sl@0: sl@0: CMMFDevSound* iMMFDevSound; sl@0: TBuf iSectName; sl@0: CPeriodic* iTimer; sl@0: TCallBack iCallBack; sl@0: TDevSoundToneState iState; sl@0: TPtrC iSampleRate; sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundDTMFTonePlay sl@0: * - Set DTMF lengths and play DTMF string sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundDTMFTonePlay : public RTestStepA3FDevSoundToneBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundDTMFTonePlay* NewL(const TDesC& aTestName); sl@0: sl@0: private: sl@0: RStepA3FDevSoundDTMFTonePlay(const TDesC& aTestName); sl@0: sl@0: // From RTestStepA3FDevSoundToneBase sl@0: virtual void DoKickoffTestL(); sl@0: virtual void Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError); sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundNormalAndDualTonePlay sl@0: * - Set tone repeats and play normal tone sl@0: * - Set tone repeats and play dual tone sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundNormalAndDualTonePlay : public RTestStepA3FDevSoundToneBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundNormalAndDualTonePlay* NewL(const TDesC& aTestName, const TDesC& aSectName); sl@0: sl@0: private: sl@0: RStepA3FDevSoundNormalAndDualTonePlay(const TDesC& aTestName, const TDesC& aSectName); sl@0: sl@0: // From RTestStepA3FDevSoundToneBase sl@0: virtual void DoKickoffTestL(); sl@0: virtual void Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError); sl@0: sl@0: private: sl@0: TInt iRepeat; sl@0: TBool iDualTone; sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundInitializeWhileTonePlaying sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundInitializeWhileTonePlaying : public RTestStepA3FDevSoundToneBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundInitializeWhileTonePlaying* NewL(const TDesC& aTestName); sl@0: sl@0: private: sl@0: RStepA3FDevSoundInitializeWhileTonePlaying(const TDesC& aTestName); sl@0: sl@0: // From RTestStepA3FDevSoundToneBase sl@0: virtual void DoKickoffTestL(); sl@0: virtual void Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError); sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundNotSupportedPlayFixedSeq sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundNotSupportedPlayFixedSeq : public RTestStepA3FDevSoundToneBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundNotSupportedPlayFixedSeq* NewL(const TDesC& aTestName); sl@0: sl@0: private: sl@0: RStepA3FDevSoundNotSupportedPlayFixedSeq(const TDesC& aTestName); sl@0: sl@0: // From RTestStepA3FDevSoundToneBase sl@0: virtual void DoKickoffTestL(); sl@0: virtual void Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError); sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundInvalidInitializeForTone sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundInvalidInitializeForTone : public RTestStepA3FDevSoundToneBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundInvalidInitializeForTone* NewL(const TDesC& aTestName); sl@0: sl@0: private: sl@0: RStepA3FDevSoundInvalidInitializeForTone(const TDesC& aTestName); sl@0: sl@0: // From RTestStepA3FDevSoundToneBase sl@0: virtual void DoKickoffTestL(); sl@0: virtual void Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError); sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundCancelInitializeTone sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundCancelInitializeTone : public RTestStepA3FDevSoundToneBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundCancelInitializeTone* NewL(const TDesC& aTestName, const TDesC& aSectName); sl@0: sl@0: private: sl@0: RStepA3FDevSoundCancelInitializeTone(const TDesC& aTestName, const TDesC& aSectName); sl@0: sl@0: // From RTestStepA3FDevSoundToneBase sl@0: virtual void DoKickoffTestL(); sl@0: virtual void Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError); sl@0: sl@0: // From TimerCallback sl@0: virtual void DoTimerCallback(); 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: * RStepA3FDevSoundEmptyBuffersInitializedForTone sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundEmptyBuffersInitializedForTone : public RTestStepA3FDevSoundToneBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundEmptyBuffersInitializedForTone* NewL(const TDesC& aTestName, const TDesC& aSectName); sl@0: sl@0: private: sl@0: RStepA3FDevSoundEmptyBuffersInitializedForTone(const TDesC& aTestName, const TDesC& aSectName); sl@0: sl@0: // From RTestStepA3FDevSoundToneBase sl@0: virtual void DoKickoffTestL(); sl@0: virtual void Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError); sl@0: sl@0: }; sl@0: sl@0: /* sl@0: * sl@0: * RStepA3FDevSoundEmptyBuffersWhileTonePlaying sl@0: * sl@0: */ sl@0: class RStepA3FDevSoundEmptyBuffersWhileTonePlaying : public RTestStepA3FDevSoundToneBase sl@0: { sl@0: public: sl@0: static RStepA3FDevSoundEmptyBuffersWhileTonePlaying* NewL(const TDesC& aTestName); sl@0: sl@0: private: sl@0: RStepA3FDevSoundEmptyBuffersWhileTonePlaying(const TDesC& aTestName); sl@0: sl@0: // From RTestStepA3FDevSoundToneBase sl@0: virtual void DoKickoffTestL(); sl@0: virtual void Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError); sl@0: sl@0: }; sl@0: sl@0: #endif // TSI_A3F_DEVSOUND_TONE_H