Update contrib.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Declarations of Integration test step classes for A3F DevSound Tone cases.
18 #ifndef TSI_A3F_DEVSOUND_TONE_H
19 #define TSI_A3F_DEVSOUND_TONE_H
22 #include "tsi_a3f_devsound_teststep.h"
25 enum TDevSoundToneState
28 EStateToneInitializing,
33 enum TDevSoundToneEvents
36 EEventInitCompleteTone,
37 EEventToneTimerComplete
40 class RTestStepA3FDevSoundToneBase : public RAsyncTestStep,
41 public MDevSoundObserver
44 // From RAsyncTestStep
45 virtual void KickoffTestL();
49 RTestStepA3FDevSoundToneBase(const TDesC& aTestName, const TDesC& aSectName);
50 RTestStepA3FDevSoundToneBase(const TDesC& aTestName);
52 virtual void DoKickoffTestL() = 0;
54 // Executes the tone events of DevSound using a Finite State Machine
55 virtual void Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError) = 0;
57 // From MDevSoundObserver
58 virtual void InitializeComplete(TInt aError);
59 virtual void ToneFinished(TInt aError);
60 virtual void BufferToBeFilled(CMMFBuffer* aBuffer);
61 virtual void PlayError(TInt aError);
62 virtual void BufferToBeEmptied(CMMFBuffer* aBuffer);
63 virtual void RecordError(TInt aError);
64 virtual void ConvertError(TInt aError);
65 virtual void DeviceMessage(TUid aMessageType, const TDesC8& aMsg);
68 static TInt TimerCallback(TAny*);
69 virtual void DoTimerCallback();
71 TUint ConvertDesToTMMFSampleRate(const TDesC& aSampleRateString);
75 CMMFDevSound* iMMFDevSound;
76 TBuf<KNameSize> iSectName;
79 TDevSoundToneState iState;
86 * RStepA3FDevSoundDTMFTonePlay
87 * - Set DTMF lengths and play DTMF string
90 class RStepA3FDevSoundDTMFTonePlay : public RTestStepA3FDevSoundToneBase
93 static RStepA3FDevSoundDTMFTonePlay* NewL(const TDesC& aTestName);
96 RStepA3FDevSoundDTMFTonePlay(const TDesC& aTestName);
98 // From RTestStepA3FDevSoundToneBase
99 virtual void DoKickoffTestL();
100 virtual void Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError);
106 * RStepA3FDevSoundNormalAndDualTonePlay
107 * - Set tone repeats and play normal tone
108 * - Set tone repeats and play dual tone
111 class RStepA3FDevSoundNormalAndDualTonePlay : public RTestStepA3FDevSoundToneBase
114 static RStepA3FDevSoundNormalAndDualTonePlay* NewL(const TDesC& aTestName, const TDesC& aSectName);
117 RStepA3FDevSoundNormalAndDualTonePlay(const TDesC& aTestName, const TDesC& aSectName);
119 // From RTestStepA3FDevSoundToneBase
120 virtual void DoKickoffTestL();
121 virtual void Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError);
131 * RStepA3FDevSoundInitializeWhileTonePlaying
134 class RStepA3FDevSoundInitializeWhileTonePlaying : public RTestStepA3FDevSoundToneBase
137 static RStepA3FDevSoundInitializeWhileTonePlaying* NewL(const TDesC& aTestName);
140 RStepA3FDevSoundInitializeWhileTonePlaying(const TDesC& aTestName);
142 // From RTestStepA3FDevSoundToneBase
143 virtual void DoKickoffTestL();
144 virtual void Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError);
150 * RStepA3FDevSoundNotSupportedPlayFixedSeq
153 class RStepA3FDevSoundNotSupportedPlayFixedSeq : public RTestStepA3FDevSoundToneBase
156 static RStepA3FDevSoundNotSupportedPlayFixedSeq* NewL(const TDesC& aTestName);
159 RStepA3FDevSoundNotSupportedPlayFixedSeq(const TDesC& aTestName);
161 // From RTestStepA3FDevSoundToneBase
162 virtual void DoKickoffTestL();
163 virtual void Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError);
169 * RStepA3FDevSoundInvalidInitializeForTone
172 class RStepA3FDevSoundInvalidInitializeForTone : public RTestStepA3FDevSoundToneBase
175 static RStepA3FDevSoundInvalidInitializeForTone* NewL(const TDesC& aTestName);
178 RStepA3FDevSoundInvalidInitializeForTone(const TDesC& aTestName);
180 // From RTestStepA3FDevSoundToneBase
181 virtual void DoKickoffTestL();
182 virtual void Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError);
188 * RStepA3FDevSoundCancelInitializeTone
191 class RStepA3FDevSoundCancelInitializeTone : public RTestStepA3FDevSoundToneBase
194 static RStepA3FDevSoundCancelInitializeTone* NewL(const TDesC& aTestName, const TDesC& aSectName);
197 RStepA3FDevSoundCancelInitializeTone(const TDesC& aTestName, const TDesC& aSectName);
199 // From RTestStepA3FDevSoundToneBase
200 virtual void DoKickoffTestL();
201 virtual void Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError);
203 // From TimerCallback
204 virtual void DoTimerCallback();
206 // From MDevSoundObserver
207 virtual void InitializeComplete(TInt aError);
213 * RStepA3FDevSoundEmptyBuffersInitializedForTone
216 class RStepA3FDevSoundEmptyBuffersInitializedForTone : public RTestStepA3FDevSoundToneBase
219 static RStepA3FDevSoundEmptyBuffersInitializedForTone* NewL(const TDesC& aTestName, const TDesC& aSectName);
222 RStepA3FDevSoundEmptyBuffersInitializedForTone(const TDesC& aTestName, const TDesC& aSectName);
224 // From RTestStepA3FDevSoundToneBase
225 virtual void DoKickoffTestL();
226 virtual void Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError);
232 * RStepA3FDevSoundEmptyBuffersWhileTonePlaying
235 class RStepA3FDevSoundEmptyBuffersWhileTonePlaying : public RTestStepA3FDevSoundToneBase
238 static RStepA3FDevSoundEmptyBuffersWhileTonePlaying* NewL(const TDesC& aTestName);
241 RStepA3FDevSoundEmptyBuffersWhileTonePlaying(const TDesC& aTestName);
243 // From RTestStepA3FDevSoundToneBase
244 virtual void DoKickoffTestL();
245 virtual void Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError);
249 #endif // TSI_A3F_DEVSOUND_TONE_H