Update contrib.
1 // Copyright (c) 2008-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.
16 #include "char_a3f_devsound_tonetest.h"
20 *========================================================================================================
21 * MM-A3F-DEVSOUND-CHRTZ-TONE-0001
23 RA3FDevSoundToneSetConfigTest::RA3FDevSoundToneSetConfigTest(const TDesC& aTestName)
24 : RA3FDevSoundTestBase(aTestName), iSampleRate(0),
29 RA3FDevSoundToneSetConfigTest* RA3FDevSoundToneSetConfigTest::NewL(const TDesC& aTestName)
31 RA3FDevSoundToneSetConfigTest * self = new(ELeave)RA3FDevSoundToneSetConfigTest(aTestName);
35 void RA3FDevSoundToneSetConfigTest::DoKickoffTestL()
37 if (!GetIntFromConfig(iTestStepName, KSampleRate, iSampleRate))
39 ERR_PRINTF2(KMsgErrorGetParameter, &KSampleRate);
40 StopTest(KErrNotFound);
43 if (!GetIntFromConfig(iTestStepName, KChannel, iChannels))
45 ERR_PRINTF2(KMsgErrorGetParameter, &KChannel);
46 StopTest(KErrNotFound);
52 void RA3FDevSoundToneSetConfigTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
54 switch(iDevSoundState)
58 if(aDevSoundEvent == EEventInitialize)
60 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneSetConfigTest"), EFsmIncorrectErrorPassed));
61 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
62 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
65 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
69 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
70 iDevSoundState = EStateInitializing;
74 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
75 StopTest(aError, EFail);
79 case EStateInitializing:
81 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
83 TMMFCapabilities capabilitiesSet;
84 TBuf<KMaxSampleRateStringLength> stringSampleRateSet;
85 TBuf<KMaxChannelsStringLength> stringChannelsSet;
86 TMMFSampleRate eSampleRate;
87 SampleRateFromTIntToTMMFSampleRate (iSampleRate, eSampleRate);
88 capabilitiesSet.iRate = eSampleRate;
89 capabilitiesSet.iChannels = iChannels;
90 SampleRateFromTUintToString (capabilitiesSet.iRate, stringSampleRateSet);
91 ChannelsFromTUintToString (capabilitiesSet.iChannels, stringChannelsSet);
92 INFO_PRINTF3(_L("Calling CMMFDevSound::SetConfigL using sample rate = %S and channel mode =%S"), &stringSampleRateSet, &stringChannelsSet);
93 TRAPD(err, iMMFDevSound->SetConfigL(capabilitiesSet));
96 ERR_PRINTF2(_L("CMMFDevSound::SetConfigL left with error = %d"), err);
100 TMMFCapabilities capabilitiesGet;
101 TBuf<KMaxSampleRateStringLength> stringSampleRateGet;
102 TBuf<KMaxChannelsStringLength> stringChannelsGet;
103 capabilitiesGet=iMMFDevSound->Config();
104 SampleRateFromTUintToString (capabilitiesGet.iRate, stringSampleRateGet);
105 ChannelsFromTUintToString (capabilitiesGet.iChannels, stringChannelsGet);
106 if (capabilitiesGet.iRate != capabilitiesSet.iRate && capabilitiesGet.iChannels != capabilitiesSet.iChannels)
108 ERR_PRINTF3(_L("Retrieved sample rate and channel %S %S"), &stringSampleRateGet, &stringChannelsGet);
109 ERR_PRINTF3(_L("Expected %S %S"), &stringSampleRateSet, &stringChannelsSet);
110 StopTest(aError, EFail);
113 INFO_PRINTF1(_L("========== Test Case Successfully Completed =========="));
116 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
118 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
123 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
124 StopTest(aError, EFail);
130 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
131 StopTest(aError, EFail);
137 *========================================================================================================
138 * MM-A3F-DEVSOUND-CHRTZ-TONE-0002
140 RA3FDevSoundToneSetPrioritySettingsTest::RA3FDevSoundToneSetPrioritySettingsTest(const TDesC& aTestName)
141 : RA3FDevSoundTestBase(aTestName), iPriority(0)
145 RA3FDevSoundToneSetPrioritySettingsTest* RA3FDevSoundToneSetPrioritySettingsTest::NewL(const TDesC& aTestName)
147 RA3FDevSoundToneSetPrioritySettingsTest * self = new(ELeave)RA3FDevSoundToneSetPrioritySettingsTest(aTestName);
151 void RA3FDevSoundToneSetPrioritySettingsTest::DoKickoffTestL()
153 if (!GetIntFromConfig(iTestStepName, KPriority, iPriority))
155 ERR_PRINTF2(KMsgErrorGetParameter, &KPriority);
156 StopTest(KErrUnknown);
160 void RA3FDevSoundToneSetPrioritySettingsTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
162 switch (iDevSoundState)
166 if (aDevSoundEvent == EEventInitialize)
168 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneSetPrioritySettingsTest"), EFsmIncorrectErrorPassed));
169 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
170 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
173 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
177 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
178 iDevSoundState = EStateInitializing;
182 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
183 StopTest(aError, EFail);
187 case EStateInitializing:
189 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
191 TMMFPrioritySettings priority;
192 priority.iPriority = iPriority;
193 INFO_PRINTF2(_L("Calling CMMFDevSound::SetPrioritySettings using a priority value = %d"), iPriority);
194 iMMFDevSound->SetPrioritySettings (priority);
195 INFO_PRINTF1(_L("========== Test Case Successfully Completed =========="));
198 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
200 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
205 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
206 StopTest(aError, EFail);
212 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
213 StopTest(aError, EFail);
219 *========================================================================================================
220 * MM-A3F-DEVSOUND-CHRTZ-TONE-0003
222 RA3FDevSoundToneSetVolumeTest::RA3FDevSoundToneSetVolumeTest(const TDesC& aTestName)
223 : RA3FDevSoundTestBase(aTestName), iVolume(0)
227 RA3FDevSoundToneSetVolumeTest* RA3FDevSoundToneSetVolumeTest::NewL(const TDesC& aTestName)
229 RA3FDevSoundToneSetVolumeTest * self = new(ELeave)RA3FDevSoundToneSetVolumeTest(aTestName);
233 void RA3FDevSoundToneSetVolumeTest::DoKickoffTestL()
235 if (!GetIntFromConfig(iTestStepName, KVolume, iVolume))
237 ERR_PRINTF2(KMsgErrorGetParameter, &KVolume);
238 StopTest(KErrUnknown);
243 void RA3FDevSoundToneSetVolumeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
245 switch (iDevSoundState)
249 if (aDevSoundEvent == EEventInitialize)
251 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneSetVolumeTest"), EFsmIncorrectErrorPassed));
252 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
253 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
256 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
260 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
261 iDevSoundState = EStateInitializing;
265 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
266 StopTest(aError, EFail);
270 case EStateInitializing:
272 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
274 INFO_PRINTF2(_L("Calling CMMFDevSound::SetVolume with volume value = %d"), iVolume);
275 iMMFDevSound->SetVolume(iVolume);
277 volumeGet=iMMFDevSound->Volume();
278 if (volumeGet == iVolume)
280 INFO_PRINTF2(_L("CMMFDevSound::SetVolume succeeded with value = %d"), volumeGet);
285 ERR_PRINTF2(_L("CMMFDevSound::SetVolume failed with value = %d"), volumeGet);
286 ERR_PRINTF2(_L("Expected value = %d"), iVolume);
287 StopTest(aError, EFail);
290 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
292 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
297 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
298 StopTest(aError, EFail);
304 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
305 StopTest(aError, EFail);
311 *========================================================================================================
312 * MM-A3F-DEVSOUND-CHRTZ-TONE-0004
314 RA3FDevSoundToneVolumeRampTest::RA3FDevSoundToneVolumeRampTest(const TDesC& aTestName)
315 : RA3FDevSoundTestBase(aTestName), iVolumeRamp(0),
316 iDuration(0), iFrequencyTone1(0)
320 RA3FDevSoundToneVolumeRampTest* RA3FDevSoundToneVolumeRampTest::NewL(const TDesC& aTestName)
322 RA3FDevSoundToneVolumeRampTest * self = new(ELeave)RA3FDevSoundToneVolumeRampTest(aTestName);
326 void RA3FDevSoundToneVolumeRampTest::DoKickoffTestL()
328 if (!GetIntFromConfig(iTestStepName, KVolumeRamp, iVolumeRamp))
330 ERR_PRINTF2(KMsgErrorGetParameter, &KVolumeRamp);
331 StopTest(KErrNotFound);
334 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
336 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
337 StopTest(KErrNotFound);
340 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
342 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
343 StopTest(KErrNotFound);
348 void RA3FDevSoundToneVolumeRampTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
350 switch (iDevSoundState)
354 if (aDevSoundEvent == EEventInitialize)
356 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneVolumeRampTest"), EFsmIncorrectErrorPassed));
357 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
358 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
361 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
365 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
366 iDevSoundState = EStateInitializing;
370 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
371 StopTest(aError, EFail);
375 case EStateInitializing:
377 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
379 INFO_PRINTF2(_L("Calling CMMFDevSound::SetVolumeRamp using volume ramp time = %d"), iVolumeRamp);
380 iMMFDevSound->SetVolumeRamp(iVolumeRamp);
381 iStartTime.HomeTime();
382 INFO_PRINTF3(_L("Calling CMMFDevSound::PlayToneL %d Hz during %d secs "), iFrequencyTone1, iDuration);
383 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
386 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error : %d!"), err);
391 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
393 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
398 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
399 StopTest(aError, EFail);
405 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
406 StopTest(aError, EFail);
411 void RA3FDevSoundToneVolumeRampTest::ToneFinished(TInt aError)
413 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
414 if (aError == KErrUnderflow)
417 iPlayToneTime = iEndTime.MicroSecondsFrom(iStartTime);
418 TInt totalExpectedReproductionTime = iDuration * KMicroSecsInOneSec;
419 if(iPlayToneTime < totalExpectedReproductionTime + KPlayVarianceTime && iPlayToneTime > totalExpectedReproductionTime - KPlayVarianceTime)
421 INFO_PRINTF2(_L("Play time is %Ld microseconds"), iPlayToneTime.Int64());
426 ERR_PRINTF3(_L("Play time is %Ld microseconds and it should have been %d microseconds"), iPlayToneTime.Int64(), totalExpectedReproductionTime);
427 StopTest(KErrNone, EFail);
432 ERR_PRINTF2(_L("DevSound called ToneFinished with error = %d"), aError);
433 ERR_PRINTF2(_L("Expected error = %d"), KErrUnderflow);
434 StopTest(aError, EFail);
439 *========================================================================================================
440 * MM-A3F-DEVSOUND-CHRTZ-TONE-0005
442 RA3FDevSoundToneSetToneRepeatsTest::RA3FDevSoundToneSetToneRepeatsTest(const TDesC& aTestName)
443 : RA3FDevSoundTestBase(aTestName),
446 iRepeatTrailingSilence(0),
451 RA3FDevSoundToneSetToneRepeatsTest* RA3FDevSoundToneSetToneRepeatsTest::NewL(const TDesC& aTestName)
453 RA3FDevSoundToneSetToneRepeatsTest * self = new(ELeave)RA3FDevSoundToneSetToneRepeatsTest(aTestName);
457 void RA3FDevSoundToneSetToneRepeatsTest::DoKickoffTestL()
459 if (!GetIntFromConfig(iTestStepName, KRepeatCount, iRepeatCount))
461 ERR_PRINTF2(KMsgErrorGetParameter, &KRepeatCount);
462 StopTest(KErrNotFound);
465 if (!GetIntFromConfig(iTestStepName, KRepeatTrailingSilence, iRepeatTrailingSilence))
467 ERR_PRINTF2(KMsgErrorGetParameter, &KRepeatTrailingSilence);
468 StopTest(KErrNotFound);
471 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
473 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
474 StopTest(KErrNotFound);
477 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
479 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
480 StopTest(KErrNotFound);
485 void RA3FDevSoundToneSetToneRepeatsTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
487 switch (iDevSoundState)
491 if (aDevSoundEvent == EEventInitialize)
493 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneSetToneRepeatsTest"), EFsmIncorrectErrorPassed));
494 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
495 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
498 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
502 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
503 iDevSoundState = EStateInitializing;
507 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
508 StopTest(aError, EFail);
512 case EStateInitializing:
514 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
516 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
517 iStartTime.HomeTime();
518 INFO_PRINTF3(_L("Calling CMMFDevSound::SetToneRepeats using repeatCount = %d and trailingSilence = %d"), iRepeatCount, iRepeatTrailingSilence);
519 iMMFDevSound->SetToneRepeats(iRepeatCount, iRepeatTrailingSilence);
520 INFO_PRINTF3(_L("Calling CMMFDevSound::PlayToneL %d Hz during %d secs "), iFrequencyTone1, iDuration);
521 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
524 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error : %d!"), err);
529 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
531 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
536 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
537 StopTest(aError, EFail);
543 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
544 StopTest(aError, EFail);
549 void RA3FDevSoundToneSetToneRepeatsTest::ToneFinished(TInt aError)
551 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
552 if (aError == KErrUnderflow)
555 iPlayToneTime = iEndTime.MicroSecondsFrom(iStartTime);
556 TInt repeatTrailingSilenceToSecs = iRepeatTrailingSilence/KMicroSecsInOneSec;
557 TInt totalExpectedReproductionTime = (iRepeatCount * iDuration + iDuration + (repeatTrailingSilenceToSecs*iRepeatCount))*KMicroSecsInOneSec;
558 if(iPlayToneTime < totalExpectedReproductionTime + KPlayVarianceTime && iPlayToneTime > totalExpectedReproductionTime - KPlayVarianceTime)
560 INFO_PRINTF1(_L("Play tone repeats succeded."));
561 INFO_PRINTF2(_L("Play time is %Ld microseconds"), iPlayToneTime.Int64());
566 ERR_PRINTF1(_L("Play tone repeats did not work as planned."));
567 ERR_PRINTF3(_L("Play time is %Ld microseconds and it should have been %d microseconds"), iPlayToneTime.Int64(), totalExpectedReproductionTime);
568 StopTest(KErrNone, EFail);
573 ERR_PRINTF2(_L("DevSound called ToneFinished with error = %d"), aError);
574 ERR_PRINTF2(_L("Expected error = %d"), KErrUnderflow);
575 StopTest(aError, EFail);
580 *========================================================================================================
581 * MM-A3F-DEVSOUND-CHRTZ-TONE-0006
583 RA3FDevSoundToneSetDTMFLengthsTest::RA3FDevSoundToneSetDTMFLengthsTest(const TDesC& aTestName)
584 : RA3FDevSoundTestBase(aTestName), iToneOnLength(0),
585 iToneOffLength(0), iPauseLength(0), iDTMFPauses(0),
590 RA3FDevSoundToneSetDTMFLengthsTest* RA3FDevSoundToneSetDTMFLengthsTest::NewL(const TDesC& aTestName)
592 RA3FDevSoundToneSetDTMFLengthsTest * self = new(ELeave)RA3FDevSoundToneSetDTMFLengthsTest(aTestName);
596 void RA3FDevSoundToneSetDTMFLengthsTest::DoKickoffTestL()
598 if (!GetIntFromConfig(iTestStepName, KToneOnLength, iToneOnLength))
600 ERR_PRINTF2(KMsgErrorGetParameter, &KToneOnLength);
601 StopTest(KErrNotFound);
604 if (!GetIntFromConfig(iTestStepName, KToneOffLength, iToneOffLength))
606 ERR_PRINTF2(KMsgErrorGetParameter, &KToneOffLength);
607 StopTest(KErrNotFound);
610 if (!GetIntFromConfig(iTestStepName, KPauseLength, iPauseLength))
612 ERR_PRINTF2(KMsgErrorGetParameter, &KPauseLength);
613 StopTest(KErrNotFound);
617 if (!GetStringFromConfig(iTestStepName, KDTMFString, DTMF))
619 ERR_PRINTF2(KMsgErrorGetParameter, &KDTMFString);
620 StopTest(KErrNotFound);
623 iDTMFString.Copy(DTMF);
624 for(TInt i =0 ; i< iDTMFString.Length() ; i++)
626 if (iDTMFString[i] == ',')
637 void RA3FDevSoundToneSetDTMFLengthsTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
639 switch (iDevSoundState)
643 if (aDevSoundEvent == EEventInitialize)
645 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneSetDTMFLengthsTest"), EFsmIncorrectErrorPassed));
646 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
647 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
650 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
654 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
655 iDevSoundState = EStateInitializing;
659 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
660 StopTest(aError, EFail);
664 case EStateInitializing:
666 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
668 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
669 TTimeIntervalMicroSeconds32 ToneOnLength(iToneOnLength);
670 TTimeIntervalMicroSeconds32 ToneOffLength(iToneOffLength);
671 TTimeIntervalMicroSeconds32 PauseLength(iPauseLength);
672 INFO_PRINTF4(_L("Calling CMMFDevSound::SetDTMFLengths. ToneOnLength = %d, ToneOffLength = %d and PauseLength = %d"), ToneOnLength.Int(), ToneOffLength.Int(), PauseLength.Int());
673 iMMFDevSound->SetDTMFLengths(ToneOnLength, ToneOffLength, PauseLength);
674 iStartTime.HomeTime();
675 INFO_PRINTF2(_L("Calling CMMFDevSound::PlayDTMFStringL %S"), &iDTMFString);
676 TRAPD(err, iMMFDevSound->PlayDTMFStringL(iDTMFString));
679 ERR_PRINTF2(_L("CMMFDevSound::PlayDTMFStringL left with error : %d!"), err);
684 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
686 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
691 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
692 StopTest(aError, EFail);
698 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
699 StopTest(aError, EFail);
704 void RA3FDevSoundToneSetDTMFLengthsTest::ToneFinished(TInt aError)
706 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
707 if (aError == KErrUnderflow)
710 iPlayToneTime = iEndTime.MicroSecondsFrom(iStartTime);
711 TInt totalExpectedReproductionTime = iToneOnLength*iDTMFTones + iToneOffLength * iDTMFTones + iDTMFPauses * iPauseLength;
712 if (iPlayToneTime.Int64() < totalExpectedReproductionTime + KPlayVarianceTime && iPlayToneTime.Int64() > totalExpectedReproductionTime - KPlayVarianceTime)
714 INFO_PRINTF1(_L("Calling CMMFDevSound::SetDTMFLengths succeded."));
715 INFO_PRINTF2(_L("Play time is %Ld microseconds"), iPlayToneTime.Int64());
720 ERR_PRINTF2(_L("Calling CMMFDevSound::SetDTMFLengths failed with %Ld"), iPlayToneTime.Int64());
721 ERR_PRINTF2(_L("Expected time %d"), totalExpectedReproductionTime);
722 StopTest(KErrNone, EFail);
727 ERR_PRINTF2(_L("DevSound called ToneFinished with error = %d"), aError);
728 ERR_PRINTF2(_L("Expected error = %d"), KErrUnderflow);
729 StopTest(aError, EFail);
734 *========================================================================================================
735 * MM-A3F-DEVSOUND-CHRTZ-TONE-0007
737 RA3FDevSoundToneSetVolumeWhilePlayingTest::RA3FDevSoundToneSetVolumeWhilePlayingTest(const TDesC& aTestName)
738 : RA3FDevSoundTestBase(aTestName), iDuration(0),
739 iVolume(0), iFrequencyTone1(0)
743 RA3FDevSoundToneSetVolumeWhilePlayingTest* RA3FDevSoundToneSetVolumeWhilePlayingTest::NewL(const TDesC& aTestName)
745 RA3FDevSoundToneSetVolumeWhilePlayingTest * self = new(ELeave)RA3FDevSoundToneSetVolumeWhilePlayingTest(aTestName);
749 void RA3FDevSoundToneSetVolumeWhilePlayingTest::DoKickoffTestL()
751 if (!GetIntFromConfig(iTestStepName, KVolume, iVolume))
753 ERR_PRINTF2(KMsgErrorGetParameter, &KVolume);
754 StopTest(KErrNotFound);
757 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
759 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
760 StopTest(KErrNotFound);
763 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
765 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
766 StopTest(KErrNotFound);
769 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
772 void RA3FDevSoundToneSetVolumeWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
774 switch (iDevSoundState)
778 if (aDevSoundEvent == EEventInitialize)
780 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneSetVolumeWhilePlayingTest"), EFsmIncorrectErrorPassed));
781 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
782 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
785 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
789 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
790 iDevSoundState = EStateInitializing;
794 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
795 StopTest(aError, EFail);
799 case EStateInitializing:
801 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
803 iStartTime.HomeTime();
804 INFO_PRINTF3(_L("Calling CMMFDevSound::PlayToneL using frequency = %d Hz and duration = %d secs "), iFrequencyTone1, iDuration);
805 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
808 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error : %d!"), err);
812 StartTimer(KMicroSecsTwoSec);
813 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
814 iDevSoundState = EStatePlaying;
816 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
818 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
823 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
824 StopTest(aError, EFail);
830 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
831 StopTest(aError, EFail);
836 void RA3FDevSoundToneSetVolumeWhilePlayingTest::DoTimerCallback()
839 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
840 INFO_PRINTF2(_L("Calling CMMFDevSound::SetVolume with volume value = %d"), iVolume);
841 iMMFDevSound->SetVolume(iVolume);
843 volumeGet=iMMFDevSound->Volume();
844 if (volumeGet == iVolume)
846 INFO_PRINTF2(_L("CMMFDevSound::SetVolume succeeded with value = %d"), volumeGet);
850 ERR_PRINTF2(_L("CMMFDevSound::SetVolume failed with value = %d"), volumeGet);
851 ERR_PRINTF2(_L("Expected value = %d"), iVolume);
852 StopTest(KErrNone, EFail);
856 void RA3FDevSoundToneSetVolumeWhilePlayingTest::ToneFinished(TInt aError)
858 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
859 if (aError == KErrUnderflow)
862 iPlayToneTime = iEndTime.MicroSecondsFrom(iStartTime);
863 TInt totalExpectedReproductionTime = iDuration * KMicroSecsInOneSec;
864 if(iPlayToneTime < totalExpectedReproductionTime + KPlayVarianceTime && iPlayToneTime > totalExpectedReproductionTime - KPlayVarianceTime)
866 INFO_PRINTF2(_L("Play time is %Ld microseconds"), iPlayToneTime.Int64());
871 ERR_PRINTF3(_L("Play time is %Ld microseconds and it should have been %d microseconds"), iPlayToneTime.Int64(), totalExpectedReproductionTime);
872 StopTest(KErrNone, EFail);
877 ERR_PRINTF2(_L("DevSound called ToneFinished with error = %d"), aError);
878 ERR_PRINTF2(_L("Expected error = %d"), KErrUnderflow);
879 StopTest(aError, EFail);
884 *========================================================================================================
885 * MM-A3F-DEVSOUND-CHRTZ-TONE-0008
887 RA3FDevSoundToneSetPlayBalanceWhilePlayingTest::RA3FDevSoundToneSetPlayBalanceWhilePlayingTest(const TDesC& aTestName)
888 : RA3FDevSoundTestBase(aTestName), iDuration(0),
889 iVolume(0), iFrequencyTone1(0), iLSpeakerBalance(0),
895 RA3FDevSoundToneSetPlayBalanceWhilePlayingTest* RA3FDevSoundToneSetPlayBalanceWhilePlayingTest::NewL(const TDesC& aTestName)
897 RA3FDevSoundToneSetPlayBalanceWhilePlayingTest * self = new(ELeave)RA3FDevSoundToneSetPlayBalanceWhilePlayingTest(aTestName);
901 void RA3FDevSoundToneSetPlayBalanceWhilePlayingTest::DoKickoffTestL()
903 if (!GetIntFromConfig(iTestStepName, KVolume, iVolume))
905 ERR_PRINTF2(KMsgErrorGetParameter, &KVolume);
906 StopTest(KErrNotFound);
909 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
911 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
912 StopTest(KErrNotFound);
915 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
917 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
918 StopTest(KErrNotFound);
921 if (!GetIntFromConfig(iTestStepName, KLSpeakerBalance, iLSpeakerBalance))
923 ERR_PRINTF2(KMsgErrorGetParameter, &KLSpeakerBalance);
924 StopTest(KErrNotFound);
927 if (!GetIntFromConfig(iTestStepName, KRSpeakerBalance, iRSpeakerBalance))
929 ERR_PRINTF2(KMsgErrorGetParameter, &KRSpeakerBalance);
930 StopTest(KErrNotFound);
933 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
936 void RA3FDevSoundToneSetPlayBalanceWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
938 switch (iDevSoundState)
942 if (aDevSoundEvent == EEventInitialize)
944 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneSetPlayBalanceWhilePlayingTest"), EFsmIncorrectErrorPassed));
945 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
946 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
949 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
953 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
954 iDevSoundState = EStateInitializing;
958 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
959 StopTest(aError, EFail);
963 case EStateInitializing:
965 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
967 iStartTime.HomeTime();
968 INFO_PRINTF3(_L("Calling CMMFDevSound::PlayToneL using frequency = %d Hz and duration = %d secs "), iFrequencyTone1, iDuration);
969 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
972 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error : %d!"), err);
976 StartTimer(KMicroSecsTwoSec);
977 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
978 iDevSoundState = EStatePlaying;
980 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
982 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
987 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
988 StopTest(aError, EFail);
994 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
995 StopTest(aError, EFail);
1000 void RA3FDevSoundToneSetPlayBalanceWhilePlayingTest::DoTimerCallback()
1003 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
1004 INFO_PRINTF3(_L("Calling CMMFDevSound::SetPlayBalanceL using left = %d right = %d"), iLSpeakerBalance, iRSpeakerBalance);
1005 TRAPD(err, iMMFDevSound->SetPlayBalanceL(iLSpeakerBalance, iRSpeakerBalance));
1006 if (err == KErrNone)
1008 TInt getBalanceL, getBalanceR;
1009 TRAPD(err, iMMFDevSound->GetPlayBalanceL(getBalanceL, getBalanceR));
1010 if (err == KErrNone)
1012 if(iLSpeakerBalance == getBalanceL && iRSpeakerBalance == getBalanceR)
1014 INFO_PRINTF3(_L("Calling CMMFDevSound::SetPlayBalanceL to set balance values succeeded, left = %d right = %d"), getBalanceL, getBalanceR);
1018 ERR_PRINTF3(_L("Calling CMMFDevSound::SetPlayBalanceL to set balance values failed, left = %d right = %d"), getBalanceL, getBalanceR);
1019 ERR_PRINTF3(_L("Expected balances values for right and left respectively %d, %d"),iLSpeakerBalance, iRSpeakerBalance);
1020 StopTest(err,EFail);
1026 ERR_PRINTF1(_L("Error in setting left and right play balance."));
1027 StopTest (err, EFail);
1031 void RA3FDevSoundToneSetPlayBalanceWhilePlayingTest::ToneFinished(TInt aError)
1033 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
1034 if (aError == KErrUnderflow)
1036 iEndTime.HomeTime();
1037 iPlayToneTime = iEndTime.MicroSecondsFrom(iStartTime);
1038 TInt totalExpectedReproductionTime = iDuration * KMicroSecsInOneSec;
1039 if(iPlayToneTime < totalExpectedReproductionTime + KPlayVarianceTime && iPlayToneTime > totalExpectedReproductionTime - KPlayVarianceTime)
1041 INFO_PRINTF2(_L("Play time is %Ld microseconds"), iPlayToneTime.Int64());
1046 ERR_PRINTF3(_L("Play time is %Ld microseconds and it should have been %d microseconds"), iPlayToneTime.Int64(), totalExpectedReproductionTime);
1047 StopTest(KErrNone, EFail);
1052 ERR_PRINTF2(_L("DevSound called ToneFinished with error = %d"), aError);
1053 ERR_PRINTF2(_L("Expected error = %d"), KErrUnderflow);
1054 StopTest(aError, EFail);
1059 * **========================================================================================================
1060 * MM-A3F-DEVSOUND-CHRTZ-TONE-0009
1062 RA3FDevSoundToneSetVolumeWhilePausePlayingTest::RA3FDevSoundToneSetVolumeWhilePausePlayingTest(const TDesC& aTestName)
1063 : RA3FDevSoundTestBase(aTestName),
1064 iDuration(0), iVolume(0),
1066 iTimeToEnterPauseElapsed(EFalse)
1070 RA3FDevSoundToneSetVolumeWhilePausePlayingTest* RA3FDevSoundToneSetVolumeWhilePausePlayingTest::NewL(const TDesC& aTestName)
1072 RA3FDevSoundToneSetVolumeWhilePausePlayingTest * self = new(ELeave)RA3FDevSoundToneSetVolumeWhilePausePlayingTest(aTestName);
1076 void RA3FDevSoundToneSetVolumeWhilePausePlayingTest::DoKickoffTestL()
1078 if (!GetIntFromConfig(iTestStepName, KVolume, iVolume))
1080 ERR_PRINTF2(KMsgErrorGetParameter, &KVolume);
1081 StopTest(KErrNotFound);
1084 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
1086 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
1087 StopTest(KErrNotFound);
1090 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
1092 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
1093 StopTest(KErrNotFound);
1096 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
1099 void RA3FDevSoundToneSetVolumeWhilePausePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
1101 switch (iDevSoundState)
1105 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneSetVolumeWhilePausePlayingTest"), EFsmIncorrectErrorPassed));
1106 if (aDevSoundEvent == EEventInitialize)
1108 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1109 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
1110 if (err != KErrNone)
1112 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1116 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
1117 iDevSoundState = EStateInitializing;
1121 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
1122 StopTest(aError, EFail);
1126 case EStateInitializing:
1128 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
1130 INFO_PRINTF3(_L("CMMFDevSound::PlayToneL %d Hz during %d secs "), iFrequencyTone1, iDuration);
1131 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
1132 if (err != KErrNone)
1134 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error : %d!"), err);
1138 StartTimer(KMicroSecsTwoSec);
1139 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
1140 iDevSoundState = EStatePlaying;
1142 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
1144 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
1149 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
1150 StopTest(aError, EFail);
1156 if(aDevSoundEvent == EEventTimerComplete)
1158 INFO_PRINTF1(_L("Calling CMMFDevSound::Pause"));
1159 iMMFDevSound->Pause();
1160 INFO_PRINTF1(_L("DevSound State: EStatePause"));
1161 iDevSoundState = EStatePause;
1165 ERR_PRINTF2(_L("DevSound EEventTimerComplete not received as expected. Received event: %d"), aDevSoundEvent);
1166 StopTest(aError, EFail);
1172 if(aDevSoundEvent == EEventTimerComplete)
1174 INFO_PRINTF2(_L("Calling CMMFDevSound::SetVolume with volume value = %d"), iVolume);
1175 iMMFDevSound->SetVolume(iVolume);
1177 volumeGet=iMMFDevSound->Volume();
1178 if (volumeGet == iVolume)
1180 INFO_PRINTF2(_L("CMMFDevSound::SetVolume succeeded with value = %d"), volumeGet);
1185 ERR_PRINTF2(_L("CMMFDevSound::SetVolume failed with value = %d"), volumeGet);
1186 ERR_PRINTF2(_L("Expected value = %d"), iVolume);
1187 StopTest(aError, EFail);
1192 ERR_PRINTF2(_L("DevSound EEventTimerComplete not received as expected. Received event: %d"), aDevSoundEvent);
1193 StopTest(aError, EFail);
1199 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
1200 StopTest(aError, EFail);
1205 void RA3FDevSoundToneSetVolumeWhilePausePlayingTest::DoTimerCallback()
1207 INFO_PRINTF1(_L("TimerEvent called"));
1208 if(!iTimeToEnterPauseElapsed)
1210 iTimeToEnterPauseElapsed = ETrue;
1211 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
1212 Fsm(EEventTimerComplete, KErrNone);
1213 iTimeToEnterPauseElapsed = ETrue;
1218 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
1219 Fsm(EEventTimerComplete, KErrNone);
1223 void RA3FDevSoundToneSetVolumeWhilePausePlayingTest::ToneFinished(TInt aError)
1225 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
1226 ERR_PRINTF1(_L("DevSound should not have called ToneFinished because it is supposed to be paused"));
1227 StopTest(aError, EFail);
1230 *========================================================================================================
1231 * MM-A3F-DEVSOUND-CHRTZ-TONE-0010
1233 RA3FDevSoundToneSetVolumeThenInitializeToPlayAudioTest::RA3FDevSoundToneSetVolumeThenInitializeToPlayAudioTest(const TDesC& aTestName)
1234 : RA3FDevSoundTestBase(aTestName), iVolume(0),
1235 iReinitialized(EFalse)
1239 RA3FDevSoundToneSetVolumeThenInitializeToPlayAudioTest* RA3FDevSoundToneSetVolumeThenInitializeToPlayAudioTest::NewL(const TDesC& aTestName)
1241 RA3FDevSoundToneSetVolumeThenInitializeToPlayAudioTest * self = new(ELeave)RA3FDevSoundToneSetVolumeThenInitializeToPlayAudioTest(aTestName);
1245 void RA3FDevSoundToneSetVolumeThenInitializeToPlayAudioTest::DoKickoffTestL()
1247 if (!GetIntFromConfig(iTestStepName, KVolume, iVolume))
1249 ERR_PRINTF2(KMsgErrorGetParameter, &KVolume);
1250 StopTest(KErrNotFound);
1255 void RA3FDevSoundToneSetVolumeThenInitializeToPlayAudioTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
1257 switch (iDevSoundState)
1261 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneSetVolumeThenInitializeToPlayAudioTest"), EFsmIncorrectErrorPassed));
1262 if (aDevSoundEvent == EEventInitialize)
1264 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1265 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
1266 if (err != KErrNone)
1268 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1272 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
1273 iDevSoundState = EStateInitializing;
1277 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
1278 StopTest(aError, EFail);
1282 case EStateInitializing:
1284 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
1288 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1289 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
1290 if (err != KErrNone)
1292 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1296 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
1297 iDevSoundState = EStateInitializing;
1298 iReinitialized = ETrue;
1299 INFO_PRINTF2(_L("Calling CMMFDevSound::SetVolume with volume value = %d"), iVolume);
1300 iMMFDevSound->SetVolume(iVolume);
1301 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
1302 iDevSoundState = EStateInitializing;
1307 volumeGet=iMMFDevSound->Volume();
1308 if (volumeGet == iVolume)
1310 INFO_PRINTF1(_L("After calling CMMFDevSound::InitializeL for playing audio, "));
1311 INFO_PRINTF2(_L("the volume which was set when calling CMMFDevSound::InitializeL for playing tones is kept. Volume = %d"), volumeGet);
1316 INFO_PRINTF1(_L("After calling CMMFDevSound::InitializeL for playing audio, "));
1317 INFO_PRINTF2(_L("the volume which was set when calling CMMFDevSound::InitializeL for playing tones is NOT kept. Volume = %d"), volumeGet);
1318 ERR_PRINTF2(_L("Expected value = %d"), iVolume);
1319 StopTest(aError, EFail);
1323 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
1325 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
1330 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
1331 StopTest(aError, EFail);
1337 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
1338 StopTest(aError, EFail);
1344 *========================================================================================================
1345 * MM-A3F-DEVSOUND-CHRTZ-TONE-0011
1347 RA3FDevSoundToneSetVolumeRampWhilePlayingTest::RA3FDevSoundToneSetVolumeRampWhilePlayingTest(const TDesC& aTestName)
1348 : RA3FDevSoundTestBase(aTestName), iDuration(0),
1349 iVolume(0), iFrequencyTone1(0),iTonePlayedTwice(EFalse),
1350 iTimesToneFinishedCalled(0)
1354 RA3FDevSoundToneSetVolumeRampWhilePlayingTest* RA3FDevSoundToneSetVolumeRampWhilePlayingTest::NewL(const TDesC& aTestName)
1356 RA3FDevSoundToneSetVolumeRampWhilePlayingTest * self = new(ELeave)RA3FDevSoundToneSetVolumeRampWhilePlayingTest(aTestName);
1360 void RA3FDevSoundToneSetVolumeRampWhilePlayingTest::DoKickoffTestL()
1362 if (!GetIntFromConfig(iTestStepName, KVolume, iVolume))
1364 ERR_PRINTF2(KMsgErrorGetParameter, &KVolume);
1365 StopTest(KErrNotFound);
1368 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
1370 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
1371 StopTest(KErrNotFound);
1374 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
1376 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
1377 StopTest(KErrNotFound);
1380 if (!GetIntFromConfig(iTestStepName, KVolumeRamp, iVolumeRamp))
1382 ERR_PRINTF2(KMsgErrorGetParameter, &KVolumeRamp);
1383 StopTest(KErrNotFound);
1386 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
1389 void RA3FDevSoundToneSetVolumeRampWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
1391 switch (iDevSoundState)
1395 if (aDevSoundEvent == EEventInitialize)
1397 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneSetVolumeRampWhilePlayingTest"), EFsmIncorrectErrorPassed));
1398 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1399 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
1400 if (err != KErrNone)
1402 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1406 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
1407 iDevSoundState = EStateInitializing;
1411 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
1412 StopTest(aError, EFail);
1416 case EStateInitializing:
1418 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
1420 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
1421 iStartTime.HomeTime();
1422 INFO_PRINTF3(_L("Calling CMMFDevSound::PlayToneL using frequency = %d Hz and duration = %d secs "), iFrequencyTone1, iDuration);
1423 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
1424 if (err != KErrNone)
1426 ERR_PRINTF2(_L("Play tone left with error : %d!"), err);
1430 StartTimer(KMicroSecsTwoSec);
1431 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
1432 iDevSoundState = EStatePlaying;
1434 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
1436 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
1441 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
1442 StopTest(aError, EFail);
1448 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
1449 StopTest(aError, EFail);
1454 void RA3FDevSoundToneSetVolumeRampWhilePlayingTest::DoTimerCallback()
1457 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
1458 INFO_PRINTF2(_L("Calling CMMFDevSound::SetVolumeRamp using volume ramp time = %d"), iVolumeRamp);
1459 iMMFDevSound->SetVolumeRamp(iVolumeRamp);
1462 void RA3FDevSoundToneSetVolumeRampWhilePlayingTest::ToneFinished(TInt aError)
1464 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
1465 if (aError == KErrUnderflow)
1467 TInt totalExpectedReproductionTime;
1468 iTimesToneFinishedCalled++;
1469 totalExpectedReproductionTime = iDuration * iTimesToneFinishedCalled * KMicroSecsInOneSec;
1470 iEndTime.HomeTime();
1471 iPlayToneTime = iEndTime.MicroSecondsFrom(iStartTime);
1472 if(!iTonePlayedTwice)
1474 INFO_PRINTF2(_L("DevSound called ToneFinished with error = %d"), aError);
1475 INFO_PRINTF3(_L("Calling CMMFDevSound::PlayToneL using frequency = %d Hz and duration = %d secs "), iFrequencyTone1, iDuration);
1476 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
1477 if (err != KErrNone)
1479 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL with error : %d!"), err);
1482 iTonePlayedTwice = ETrue;
1484 else if (iPlayToneTime < totalExpectedReproductionTime + (2*KPlayVarianceTime) && iPlayToneTime > totalExpectedReproductionTime - (2*KPlayVarianceTime))
1486 INFO_PRINTF2(_L("DevSound called ToneFinished twice with error = %d"), aError);
1487 INFO_PRINTF2(_L("Play time is %Ld microseconds"), iPlayToneTime.Int64());
1492 ERR_PRINTF3(_L("Play time is %Ld microseconds and it should have been %d microseconds"), iPlayToneTime.Int64(), totalExpectedReproductionTime);
1493 StopTest(KErrNone, EFail);
1498 ERR_PRINTF2(_L("DevSound called ToneFinished with error = %d"), aError);
1499 ERR_PRINTF2(_L("Expected error = %d"), KErrUnderflow);
1500 StopTest(aError, EFail);
1505 *========================================================================================================
1506 * MM-A3F-DEVSOUND-CHRTZ-TONE-0012
1508 RA3FDevSoundToneSetToneRepetitionsWhilePlayingTest::RA3FDevSoundToneSetToneRepetitionsWhilePlayingTest(const TDesC& aTestName)
1509 : RA3FDevSoundTestBase(aTestName),
1512 iRepeatTrailingSilence(0),
1517 RA3FDevSoundToneSetToneRepetitionsWhilePlayingTest* RA3FDevSoundToneSetToneRepetitionsWhilePlayingTest::NewL(const TDesC& aTestName)
1519 RA3FDevSoundToneSetToneRepetitionsWhilePlayingTest * self = new(ELeave)RA3FDevSoundToneSetToneRepetitionsWhilePlayingTest(aTestName);
1523 void RA3FDevSoundToneSetToneRepetitionsWhilePlayingTest::DoKickoffTestL()
1525 if (!GetIntFromConfig(iTestStepName, KRepeatCount, iRepeatCount))
1527 ERR_PRINTF2(KMsgErrorGetParameter, &KRepeatCount);
1528 StopTest(KErrNotFound);
1531 if (!GetIntFromConfig(iTestStepName, KRepeatTrailingSilence, iRepeatTrailingSilence))
1533 ERR_PRINTF2(KMsgErrorGetParameter, &KRepeatTrailingSilence);
1534 StopTest(KErrNotFound);
1537 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
1539 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
1540 StopTest(KErrNotFound);
1543 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
1545 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
1546 StopTest(KErrNotFound);
1549 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
1552 void RA3FDevSoundToneSetToneRepetitionsWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
1554 switch (iDevSoundState)
1558 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneSetToneRepetitionsWhilePlayingConfigurationTest"), EFsmIncorrectErrorPassed));
1559 if(aDevSoundEvent == EEventInitialize)
1561 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1562 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
1563 if (err != KErrNone)
1565 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1569 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
1570 iDevSoundState = EStateInitializing;
1574 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
1575 StopTest(aError, EFail);
1579 case EStateInitializing:
1581 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
1583 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
1584 iStartTime.HomeTime();
1585 INFO_PRINTF3(_L("Calling CMMFDevSound::PlayToneL %d Hz during %d secs "), iFrequencyTone1, iDuration);
1586 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
1587 if (err != KErrNone)
1589 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error : %d!"), err);
1593 StartTimer(KMicroSecsTwoSec);
1594 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
1595 iDevSoundState = EStatePlaying;
1597 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
1599 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
1604 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
1605 StopTest(aError, EFail);
1611 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
1612 StopTest(aError, EFail);
1617 void RA3FDevSoundToneSetToneRepetitionsWhilePlayingTest::DoTimerCallback()
1620 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
1621 INFO_PRINTF3(_L("Calling CMMFDevSound::SetToneRepeats using RepeatCount = %d and RepeatTrailingSilence = %d microsecs"), iRepeatCount, iRepeatTrailingSilence);
1622 iMMFDevSound->SetToneRepeats(iRepeatCount, iRepeatTrailingSilence);
1625 void RA3FDevSoundToneSetToneRepetitionsWhilePlayingTest::ToneFinished(TInt aError)
1627 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
1628 const TInt KtimesPlayToneIsCalled = 2;
1629 if (aError == KErrUnderflow)
1631 iEndTime.HomeTime();
1632 iPlayToneTime = iEndTime.MicroSecondsFrom(iStartTime);
1633 TInt repeatTrailingSilenceToSecs = iRepeatTrailingSilence/KMicroSecsInOneSec;
1634 TInt totalExpectedReproductionTime = (KtimesPlayToneIsCalled*iDuration+iRepeatCount*iDuration + (repeatTrailingSilenceToSecs*iRepeatCount))*KMicroSecsInOneSec;
1635 if(iPlayToneTime < ((iDuration*KMicroSecsInOneSec) + KPlayVarianceTime)&& iPlayToneTime > (iDuration*KMicroSecsInOneSec) - KPlayVarianceTime)
1637 INFO_PRINTF1(_L("First play tone succeded."));
1638 INFO_PRINTF2(_L("Play time is %Ld microseconds"), iPlayToneTime.Int64());
1639 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
1640 if (err != KErrNone)
1642 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL failed with error : %d!"), err);
1646 else if(iPlayToneTime < totalExpectedReproductionTime + KPlayVarianceTime && iPlayToneTime > totalExpectedReproductionTime - KPlayVarianceTime)
1648 INFO_PRINTF1(_L("Play tone repeats succeded."));
1649 INFO_PRINTF2(_L("Play time is %Ld microseconds"), iPlayToneTime.Int64());
1654 ERR_PRINTF1(_L("Play tone repeats did not work as planned."));
1655 ERR_PRINTF3(_L("Play time is %Ld microseconds and it should have been %d microseconds"), iPlayToneTime.Int64(), totalExpectedReproductionTime);
1656 StopTest(KErrNone, EFail);
1661 ERR_PRINTF2(_L("DevSound called ToneFinished with error = %d"), aError);
1662 ERR_PRINTF2(_L("Expected error = %d"), KErrUnderflow);
1663 StopTest(aError, EFail);
1668 *========================================================================================================
1669 * MM-A3F-DEVSOUND-CHRTZ-TONE-0013
1671 RA3FDevSoundToneSetDTMFLengthsWhilePlayingTest::RA3FDevSoundToneSetDTMFLengthsWhilePlayingTest(const TDesC& aTestName)
1672 : RA3FDevSoundTestBase(aTestName),
1673 iFirstToneFinishedCall(EFalse),
1674 iToneOnLength(0), iToneOffLength(0),
1675 iPauseLength(0), iDTMFString(KNullDesC),
1676 iDTMFPauses(0), iDTMFTones(0),
1677 iTotalExpectedPlayToneTime(0)
1680 RA3FDevSoundToneSetDTMFLengthsWhilePlayingTest* RA3FDevSoundToneSetDTMFLengthsWhilePlayingTest::NewL(const TDesC& aTestName)
1682 RA3FDevSoundToneSetDTMFLengthsWhilePlayingTest * self = new(ELeave)RA3FDevSoundToneSetDTMFLengthsWhilePlayingTest(aTestName);
1686 void RA3FDevSoundToneSetDTMFLengthsWhilePlayingTest::DoKickoffTestL()
1688 if (!GetIntFromConfig(iTestStepName, KToneOnLength, iToneOnLength))
1690 ERR_PRINTF2(KMsgErrorGetParameter, &KToneOnLength);
1691 StopTest(KErrNotFound);
1694 if (!GetIntFromConfig(iTestStepName, KToneOffLength, iToneOffLength))
1696 ERR_PRINTF2(KMsgErrorGetParameter, &KToneOffLength);
1697 StopTest(KErrNotFound);
1700 if (!GetIntFromConfig(iTestStepName, KPauseLength, iPauseLength))
1702 ERR_PRINTF2(KMsgErrorGetParameter, &KPauseLength);
1703 StopTest(KErrNotFound);
1707 if (!GetStringFromConfig(iTestStepName, KDTMFString, DTMF))
1709 ERR_PRINTF2(KMsgErrorGetParameter, &KDTMFString);
1710 StopTest(KErrNotFound);
1713 iDTMFString.Copy(DTMF);
1714 for(TInt i =0 ; i< iDTMFString.Length() ; i++)
1716 if (iDTMFString[i] == ',')
1725 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
1728 void RA3FDevSoundToneSetDTMFLengthsWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
1730 switch (iDevSoundState)
1734 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneSetDTMFToneRepetitionsWhilePlayingConfigurationTest"), EFsmIncorrectErrorPassed));
1735 if(aDevSoundEvent == EEventInitialize)
1737 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1738 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
1739 if (err != KErrNone)
1741 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1745 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
1746 iDevSoundState = EStateInitializing;
1750 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
1751 StopTest(aError, EFail);
1755 case EStateInitializing:
1757 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
1759 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
1760 iStartTime.HomeTime();
1761 INFO_PRINTF2(_L("Calling CMMFDevSound::L %S"), &iDTMFString);
1762 TRAPD(err, iMMFDevSound->PlayDTMFStringL(iDTMFString));
1763 if (err != KErrNone)
1765 ERR_PRINTF2(_L("CMMFDevSound::PlayDTMFStringL left with error : %d!"), err);
1769 StartTimer(KMicroSecsTwoSec);
1770 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
1771 iDevSoundState=EStatePlaying;
1773 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
1775 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
1780 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
1781 StopTest(aError, EFail);
1787 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
1788 StopTest(aError, EFail);
1793 void RA3FDevSoundToneSetDTMFLengthsWhilePlayingTest::DoTimerCallback()
1796 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
1797 TTimeIntervalMicroSeconds32 ToneOnLength(iToneOnLength);
1798 TTimeIntervalMicroSeconds32 ToneOffLength(iToneOffLength);
1799 TTimeIntervalMicroSeconds32 PauseLength(iPauseLength);
1800 INFO_PRINTF4(_L("Calling CMMFDevSound::SetDTMFLengths. ToneOnLength = %d, ToneOffLength = %d and PauseLength = %d"), ToneOnLength.Int(), ToneOffLength.Int(), PauseLength.Int());
1801 iMMFDevSound->SetDTMFLengths(ToneOnLength, ToneOffLength, PauseLength);
1804 void RA3FDevSoundToneSetDTMFLengthsWhilePlayingTest::ToneFinished(TInt aError)
1806 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
1807 if (aError == KErrUnderflow)
1809 iEndTime.HomeTime();
1810 iPlayToneTime = iEndTime.MicroSecondsFrom(iStartTime);
1811 if (!iFirstToneFinishedCall)
1813 INFO_PRINTF1(_L("First play tone succeded"));
1814 INFO_PRINTF2(_L("Play time is %Ld microseconds"), iPlayToneTime.Int64());
1815 iFirstToneFinishedCall = ETrue;
1816 INFO_PRINTF2(_L("Calling CMMFDevSound::PlayDTMFStringL %S"), &iDTMFString);
1817 TRAPD(err, iMMFDevSound->PlayDTMFStringL(iDTMFString));
1818 if (err != KErrNone)
1820 ERR_PRINTF2(_L("CMMFDevSound::PlayDTMFStringL left with error = %d"), err);
1823 iTotalExpectedPlayToneTime = iToneOnLength*iDTMFTones + iToneOffLength * iDTMFTones + iDTMFPauses * iPauseLength + iPlayToneTime.Int64();
1826 if (iPlayToneTime.Int64() < iTotalExpectedPlayToneTime + KPlayVarianceTime && iPlayToneTime.Int64() > iTotalExpectedPlayToneTime - KPlayVarianceTime)
1828 INFO_PRINTF1(_L("Calling CMMFDevSound::SetDTMFLengths succeded."));
1829 INFO_PRINTF2(_L("Play time is %Ld microseconds"), iPlayToneTime.Int64());
1834 ERR_PRINTF2(_L("Calling CMMFDevSound::SetDTMFLengths failed with %Ld"), iPlayToneTime.Int64());
1835 ERR_PRINTF2(_L("Expected time %d"), iTotalExpectedPlayToneTime);
1836 StopTest(KErrNone, EFail);
1841 ERR_PRINTF2(_L("DevSound called ToneFinished with error = %d"), aError);
1842 ERR_PRINTF2(_L("Expected error = %Ld"), KErrUnderflow);
1843 StopTest(aError, EFail);
1848 *========================================================================================================
1849 * MM-A3F-DEVSOUND-CHRTZ-TONE-0014
1851 RA3FDevSoundToneSetToneRepetitionsNotPlayingTonesModeTest::RA3FDevSoundToneSetToneRepetitionsNotPlayingTonesModeTest(const TDesC& aTestName)
1852 : RA3FDevSoundTestBase(aTestName), iDuration(0),
1854 iRepeatTrailingSilence(0), iRepeatCount(0),
1855 iInitializedToPlayTones(EFalse)
1859 RA3FDevSoundToneSetToneRepetitionsNotPlayingTonesModeTest* RA3FDevSoundToneSetToneRepetitionsNotPlayingTonesModeTest::NewL(const TDesC& aTestName)
1861 RA3FDevSoundToneSetToneRepetitionsNotPlayingTonesModeTest * self = new(ELeave)RA3FDevSoundToneSetToneRepetitionsNotPlayingTonesModeTest(aTestName);
1865 void RA3FDevSoundToneSetToneRepetitionsNotPlayingTonesModeTest::DoKickoffTestL()
1867 if (!GetIntFromConfig(iTestStepName, KRepeatCount, iRepeatCount))
1869 ERR_PRINTF2(KMsgErrorGetParameter, &KRepeatCount);
1870 StopTest(KErrNotFound);
1873 if (!GetIntFromConfig(iTestStepName, KRepeatTrailingSilence, iRepeatTrailingSilence))
1875 ERR_PRINTF2(KMsgErrorGetParameter, &KRepeatTrailingSilence);
1876 StopTest(KErrNotFound);
1879 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
1881 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
1882 StopTest(KErrNotFound);
1885 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
1887 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
1888 StopTest(KErrNotFound);
1893 void RA3FDevSoundToneSetToneRepetitionsNotPlayingTonesModeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
1895 switch (iDevSoundState)
1899 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneSetToneRepetitionsNotPlayingTonesModeConfigurationTest"), EFsmIncorrectErrorPassed));
1900 if(aDevSoundEvent == EEventInitialize)
1902 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1903 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
1904 if (err != KErrNone)
1906 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1910 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
1911 iDevSoundState = EStateInitializing;
1915 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
1916 StopTest(aError, EFail);
1920 case EStateInitializing:
1922 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
1924 if(!iInitializedToPlayTones)
1926 INFO_PRINTF3(_L("Calling CMMFDevSound::SetToneRepeats using RepeatCount = %d and RepeatTrailingSilence = %d microsecs"), iRepeatCount, iRepeatTrailingSilence);
1927 iMMFDevSound->SetToneRepeats(iRepeatCount, iRepeatTrailingSilence);
1928 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL for playing tones"));
1929 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
1930 if (err != KErrNone)
1932 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1936 iInitializedToPlayTones = ETrue;
1940 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
1941 iStartTime.HomeTime();
1942 INFO_PRINTF3(_L("Calling CMMFDevSound::PlayToneL %d Hz during %d secs "), iFrequencyTone1, iDuration);
1943 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
1944 if (err != KErrNone)
1946 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error : %d!"), err);
1950 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
1951 iDevSoundState = EStatePlaying;
1954 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
1956 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
1961 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
1962 StopTest(aError, EFail);
1968 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
1969 StopTest(aError, EFail);
1975 void RA3FDevSoundToneSetToneRepetitionsNotPlayingTonesModeTest::ToneFinished(TInt aError)
1977 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
1978 if (aError == KErrUnderflow)
1980 iEndTime.HomeTime();
1981 iPlayToneTime = iEndTime.MicroSecondsFrom(iStartTime);
1982 TInt repeatTrailingSilenceToSecs = iRepeatTrailingSilence/KMicroSecsInOneSec;
1983 TInt totalExpectedReproductionTime = (iDuration + iRepeatCount * iDuration+ (repeatTrailingSilenceToSecs*iRepeatCount)) * KMicroSecsInOneSec;
1984 if(iPlayToneTime < (totalExpectedReproductionTime + KPlayVarianceTime) && iPlayToneTime > (totalExpectedReproductionTime - KPlayVarianceTime))
1986 INFO_PRINTF1(_L("Play tone repeats succeded."));
1987 INFO_PRINTF2(_L("Play time is %Ld microseconds"), iPlayToneTime.Int64());
1992 ERR_PRINTF1(_L("Play tone repeats did not work as planned."));
1993 ERR_PRINTF3(_L("Play time is %Ld microseconds and it should have been %d microseconds"), iPlayToneTime.Int64(), totalExpectedReproductionTime);
1994 StopTest(KErrNone, EFail);
1999 ERR_PRINTF2(_L("DevSound called ToneFinished with error = %d"), aError);
2000 ERR_PRINTF2(_L("Expected error = %d"), KErrUnderflow);
2001 StopTest(aError, EFail);
2006 *========================================================================================================
2007 * MM-A3F-DEVSOUND-CHRTZ-TONE-0015
2009 RA3FDevSoundToneSetDTMFLengthsNotPlayingTonesModeTest::RA3FDevSoundToneSetDTMFLengthsNotPlayingTonesModeTest(const TDesC& aTestName)
2010 : RA3FDevSoundTestBase(aTestName), iInitializedToPlayTones(EFalse),
2011 iDTMFString(KNullDesC), iToneOnLength(0),
2012 iToneOffLength(0), iPauseLength(0),
2013 iDTMFPauses(0), iDTMFTones(0)
2018 RA3FDevSoundToneSetDTMFLengthsNotPlayingTonesModeTest* RA3FDevSoundToneSetDTMFLengthsNotPlayingTonesModeTest::NewL(const TDesC& aTestName)
2020 RA3FDevSoundToneSetDTMFLengthsNotPlayingTonesModeTest * self = new(ELeave)RA3FDevSoundToneSetDTMFLengthsNotPlayingTonesModeTest(aTestName);
2024 void RA3FDevSoundToneSetDTMFLengthsNotPlayingTonesModeTest::DoKickoffTestL()
2026 if (!GetIntFromConfig(iTestStepName, KToneOnLength, iToneOnLength))
2028 ERR_PRINTF2(KMsgErrorGetParameter, &KToneOnLength);
2029 StopTest(KErrNotFound);
2032 if (!GetIntFromConfig(iTestStepName, KToneOffLength, iToneOffLength))
2034 ERR_PRINTF2(KMsgErrorGetParameter, &KToneOffLength);
2035 StopTest(KErrNotFound);
2038 if (!GetIntFromConfig(iTestStepName, KPauseLength, iPauseLength))
2040 ERR_PRINTF2(KMsgErrorGetParameter, &KPauseLength);
2041 StopTest(KErrNotFound);
2045 if (!GetStringFromConfig(iTestStepName, KDTMFString, DTMF))
2047 ERR_PRINTF2(KMsgErrorGetParameter, &KDTMFString);
2048 StopTest(KErrNotFound);
2051 iDTMFString.Copy(DTMF);
2052 for(TInt i =0 ; i< iDTMFString.Length() ; i++)
2054 if (iDTMFString[i] == ',')
2065 void RA3FDevSoundToneSetDTMFLengthsNotPlayingTonesModeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
2067 switch (iDevSoundState)
2071 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneSetDTMFLengthsNotPlayingTonesModeConfigurationTest"), EFsmIncorrectErrorPassed));
2072 if(aDevSoundEvent == EEventInitialize)
2074 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
2075 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateRecording));
2076 if (err != KErrNone)
2078 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
2082 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
2083 iDevSoundState = EStateInitializing;
2087 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
2088 StopTest(aError, EFail);
2092 case EStateInitializing:
2094 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
2096 if(!iInitializedToPlayTones)
2098 TTimeIntervalMicroSeconds32 ToneOnLength(iToneOnLength);
2099 TTimeIntervalMicroSeconds32 ToneOffLength(iToneOffLength);
2100 TTimeIntervalMicroSeconds32 PauseLength(iPauseLength);
2101 INFO_PRINTF4(_L("Calling CMMFDevSound::SetDTMFLengths. ToneOnLength = %d, ToneOffLength = %d and PauseLength = %d"), ToneOnLength.Int(), ToneOffLength.Int(), PauseLength.Int());
2102 iMMFDevSound->SetDTMFLengths(ToneOnLength, ToneOffLength, PauseLength);
2103 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
2104 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
2105 if (err != KErrNone)
2107 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
2111 iInitializedToPlayTones = ETrue;
2115 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
2116 iStartTime.HomeTime();
2117 INFO_PRINTF2(_L("Calling CMMFDevSound::PlayDTMFStringL %S"), &iDTMFString);
2118 TRAPD(err, iMMFDevSound->PlayDTMFStringL(iDTMFString));
2119 if (err != KErrNone)
2121 ERR_PRINTF2(_L("Play DTMF string failed with error : %d!"), err);
2125 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
2126 iDevSoundState = EStatePlaying;
2129 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
2131 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
2136 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
2137 StopTest(aError, EFail);
2143 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
2144 StopTest(aError, EFail);
2149 void RA3FDevSoundToneSetDTMFLengthsNotPlayingTonesModeTest::ToneFinished(TInt aError)
2151 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
2152 if (aError == KErrUnderflow)
2154 iEndTime.HomeTime();
2155 iPlayToneTime = iEndTime.MicroSecondsFrom(iStartTime);
2156 TInt totalExpectedReproductionTime = iToneOnLength*iDTMFTones + iToneOffLength * iDTMFTones + iDTMFPauses * iPauseLength;
2157 if (iPlayToneTime.Int64() < totalExpectedReproductionTime + KPlayVarianceTime && iPlayToneTime.Int64() > totalExpectedReproductionTime - KPlayVarianceTime)
2159 INFO_PRINTF1(_L("CMMFDevSound::SetDTMFLengths settings were remembered after re-initialization."));
2160 INFO_PRINTF2(_L("Play time is %Ld microseconds"), iPlayToneTime.Int64());
2165 ERR_PRINTF1(_L("CMMFDevSound::SetDTMFLengths settings were not remembered after re-initialization."));
2166 ERR_PRINTF2(_L("Expected time %d"), totalExpectedReproductionTime);
2167 StopTest(KErrNone, EFail);
2172 ERR_PRINTF2(_L("DevSound called ToneFinished with error = %d"), aError);
2173 ERR_PRINTF2(_L("Expected error = %d"), KErrUnderflow);
2174 StopTest(aError, EFail);
2179 *========================================================================================================
2180 * MM-A3F-DEVSOUND-CHRTZ-TONE-0016
2182 RA3FDevSoundToneSetConfigWhilePlayingTest::RA3FDevSoundToneSetConfigWhilePlayingTest(const TDesC& aTestName)
2183 : RA3FDevSoundTestBase(aTestName), iDuration(0),
2184 iVolume(0), iFrequencyTone1(0),
2185 iSampleRate(0), iChannels(0)
2189 RA3FDevSoundToneSetConfigWhilePlayingTest* RA3FDevSoundToneSetConfigWhilePlayingTest::NewL(const TDesC& aTestName)
2191 RA3FDevSoundToneSetConfigWhilePlayingTest * self = new(ELeave)RA3FDevSoundToneSetConfigWhilePlayingTest(aTestName);
2195 void RA3FDevSoundToneSetConfigWhilePlayingTest::DoKickoffTestL()
2197 if (!GetIntFromConfig(iTestStepName, KSampleRate, iSampleRate))
2199 ERR_PRINTF2(KMsgErrorGetParameter, &KSampleRate);
2200 StopTest(KErrNotFound);
2203 if (!GetIntFromConfig(iTestStepName, KChannel, iChannels))
2205 ERR_PRINTF2(KMsgErrorGetParameter, &KChannel);
2206 StopTest(KErrNotFound);
2209 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
2211 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
2212 StopTest(KErrNotFound);
2215 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
2217 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
2218 StopTest(KErrNotFound);
2221 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
2224 void RA3FDevSoundToneSetConfigWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
2226 switch (iDevSoundState)
2230 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneSetConfigWhilePlayingTest"), EFsmIncorrectErrorPassed));
2231 if (aDevSoundEvent == EEventInitialize)
2233 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
2234 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
2235 if (err != KErrNone)
2237 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
2241 StartTimer(KMicroSecsTwoSec);
2242 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
2243 iDevSoundState = EStateInitializing;
2247 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
2248 StopTest(aError, EFail);
2252 case EStateInitializing:
2254 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
2256 INFO_PRINTF1(_L("CMMFDevSound::PlayToneL"));
2257 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
2258 if (err != KErrNone)
2260 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error : %d"), err);
2264 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
2265 iDevSoundState = EStatePlaying;
2267 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
2269 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
2274 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
2275 StopTest(aError, EFail);
2281 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
2282 StopTest(aError, EFail);
2287 void RA3FDevSoundToneSetConfigWhilePlayingTest::DoTimerCallback()
2290 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
2291 TMMFCapabilities capabilitiesSet;
2292 TBuf<KMaxSampleRateStringLength> stringSampleRateSet;
2293 TBuf<KMaxChannelsStringLength> stringChannelsSet;
2294 TMMFSampleRate eSampleRate;
2295 SampleRateFromTIntToTMMFSampleRate (iSampleRate, eSampleRate);
2296 capabilitiesSet.iRate = eSampleRate;
2297 capabilitiesSet.iChannels = iChannels;
2298 SampleRateFromTUintToString (capabilitiesSet.iRate, stringSampleRateSet);
2299 ChannelsFromTUintToString (capabilitiesSet.iChannels, stringChannelsSet);
2300 INFO_PRINTF3(_L("Calling CMMFDevSound::SetConfigL using sample rate = %S and channel mode = %S"), &stringSampleRateSet, &stringChannelsSet);
2301 TRAPD(err, iMMFDevSound->SetConfigL(capabilitiesSet));
2302 if (err == KErrNotReady)
2304 INFO_PRINTF2(_L("CMMFDevSound::SetConfigL succeeded with error = %d"), err);
2305 StopTest(err, EPass);
2309 ERR_PRINTF2(_L("CMMFDevSound::SetConfigL failed with error = %d"), err);
2310 ERR_PRINTF2(_L("Expected error = %d"), KErrNotReady);
2311 StopTest(err, EFail);
2316 *========================================================================================================
2317 * MM-A3F-DEVSOUND-CHRTZ-TONE-0017
2319 RA3FDevSoundToneSetPriorityWhilePlayingTest::RA3FDevSoundToneSetPriorityWhilePlayingTest(const TDesC& aTestName)
2320 : RA3FDevSoundTestBase(aTestName),
2321 iDuration(0), iFrequencyTone1(0)
2325 RA3FDevSoundToneSetPriorityWhilePlayingTest* RA3FDevSoundToneSetPriorityWhilePlayingTest::NewL(const TDesC& aTestName)
2327 RA3FDevSoundToneSetPriorityWhilePlayingTest * self = new(ELeave)RA3FDevSoundToneSetPriorityWhilePlayingTest(aTestName);
2331 void RA3FDevSoundToneSetPriorityWhilePlayingTest::DoKickoffTestL()
2333 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
2335 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
2336 StopTest(KErrNotFound);
2339 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
2341 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
2342 StopTest(KErrNotFound);
2345 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
2346 iDevsoundToneClient = CA3FDevSoundToneClient::NewL(*this);
2349 void RA3FDevSoundToneSetPriorityWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
2351 switch(iDevSoundState)
2355 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneSetPriorityWhilePlayingConfigurationTest"), EFsmIncorrectErrorPassed));
2356 if(aDevSoundEvent == EEventInitialize)
2358 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
2359 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
2360 if (err != KErrNone)
2362 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
2366 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
2367 iDevSoundState = EStateInitializing;
2371 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
2372 StopTest(aError, EFail);
2376 case EStateInitializing:
2378 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
2380 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume ());
2381 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayToneL"));
2382 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
2383 if (err != KErrNone)
2385 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error : %d!"), err);
2389 StartTimer(KMicroSecsTwoSec);
2390 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
2391 iDevSoundState = EStatePlaying;
2392 INFO_PRINTF2(_L("Calling CMMFDevSound::SetPrioritySettings using a priority(highest) value = %d"), KMaximumPriority);
2393 TMMFPrioritySettings priority;
2394 priority.iPriority = KMaximumPriority;
2395 iMMFDevSound->SetPrioritySettings(priority);
2397 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
2399 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
2404 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
2405 StopTest(aError, EFail);
2411 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
2412 StopTest(aError, EFail);
2417 void RA3FDevSoundToneSetPriorityWhilePlayingTest::ClientInitializeCompleteCallback(TInt aError)
2419 INFO_PRINTF1(_L("==========Second DevSound client called InitializeComplete()=========="));
2420 if (aError == KErrNone)
2422 TInt err = iDevsoundToneClient->PlayTone ();
2423 if (err != KErrNone)
2425 ERR_PRINTF2(_L("Second Devsound client called PlayTone and failed with error = %d"), err);
2431 ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError);
2436 void RA3FDevSoundToneSetPriorityWhilePlayingTest::ClientToneFinishedCallback(TInt aError)
2438 INFO_PRINTF1(_L("========== Second DevSound client called ToneFinished()=========="));
2439 if (aError == KErrUnderflow)
2441 INFO_PRINTF2(_L("Second DevSound client called ToneFinished and succeeded with error = %d"), aError);
2442 StopTest(aError, EPass);
2446 ERR_PRINTF2(_L("Second DevSound client called ToneFinished and failed with error = %d"), aError);
2447 StopTest(aError, EFail);
2451 void RA3FDevSoundToneSetPriorityWhilePlayingTest::DoTimerCallback()
2453 INFO_PRINTF1(_L("TimerEvent called"));
2455 INFO_PRINTF1(_L("Starting another devsound client using the highest priority"));
2456 iDevsoundToneClient->SetPriority(KMaximumPriority);
2457 TInt err = iDevsoundToneClient->InitTonePlay(iFrequencyTone1, iDuration*KMicroSecsInOneSec);
2460 ERR_PRINTF1(_L("Initialization to play tone thru second devsound client failed"));
2465 void RA3FDevSoundToneSetPriorityWhilePlayingTest::ToneFinished(TInt aError)
2467 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
2468 if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied)
2470 INFO_PRINTF1(_L("========== Preempting 1st DevSound Instance=========="));
2474 ERR_PRINTF2(_L("DevSound called ToneFinished and failed with error = %d"), aError);
2475 ERR_PRINTF4(_L("Expected errors posibilities %d %d %d"), KErrInUse, KErrDied, KErrAccessDenied);
2476 StopTest(aError, EFail);
2481 *========================================================================================================
2482 * MM-A3F-DEVSOUND-CHRTZ-TONE-0018
2484 RA3FDevSoundToneSetConfigTestToInvalidSampleRateValue::RA3FDevSoundToneSetConfigTestToInvalidSampleRateValue(const TDesC& aTestName)
2485 : RA3FDevSoundTestBase(aTestName), iSampleRate(0),
2490 RA3FDevSoundToneSetConfigTestToInvalidSampleRateValue* RA3FDevSoundToneSetConfigTestToInvalidSampleRateValue::NewL(const TDesC& aTestName)
2492 RA3FDevSoundToneSetConfigTestToInvalidSampleRateValue * self = new(ELeave)RA3FDevSoundToneSetConfigTestToInvalidSampleRateValue(aTestName);
2496 void RA3FDevSoundToneSetConfigTestToInvalidSampleRateValue::DoKickoffTestL()
2498 if (!GetIntFromConfig(iTestStepName, KSampleRate, iSampleRate))
2500 ERR_PRINTF2(KMsgErrorGetParameter, &KSampleRate);
2501 StopTest(KErrNotFound);
2504 if (!GetIntFromConfig(iTestStepName, KChannel, iChannels))
2506 ERR_PRINTF2(KMsgErrorGetParameter, &KChannel);
2507 StopTest(KErrNotFound);
2512 void RA3FDevSoundToneSetConfigTestToInvalidSampleRateValue::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
2515 //Reason: Check remains since this is a valid test case, but we need to know why we are not testing invalid rates.
2516 INFO_PRINTF1(_L("MM_TB101_L defined: All sample rates are valid for MM_TB101_L (HW), therefore no invalid rates can be tested."));
2517 StopTest(KErrNotSupported, EPass);
2519 switch(iDevSoundState)
2523 if(aDevSoundEvent == EEventInitialize)
2525 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneSetConfigTestToInvalidSampleRateValue"), EFsmIncorrectErrorPassed));
2526 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
2527 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
2528 if (err != KErrNone)
2530 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
2534 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
2535 iDevSoundState = EStateInitializing;
2539 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
2540 StopTest(aError, EFail);
2544 case EStateInitializing:
2546 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
2548 TMMFCapabilities capabilitiesSet;
2549 TBuf<KMaxSampleRateStringLength> stringSampleRateSet;
2550 TBuf<KMaxChannelsStringLength> stringChannelsSet;
2551 TMMFSampleRate eSampleRate;
2552 SampleRateFromTIntToTMMFSampleRate (iSampleRate, eSampleRate);
2553 capabilitiesSet.iRate = eSampleRate;
2554 capabilitiesSet.iChannels = iChannels;
2555 SampleRateFromTUintToString (capabilitiesSet.iRate, stringSampleRateSet);
2556 ChannelsFromTUintToString (capabilitiesSet.iChannels, stringChannelsSet);
2557 INFO_PRINTF3(_L("Calling CMMFDevSound::SetConfigL using an invalid sample rate = %S and channel mode = %S"), &stringSampleRateSet, &stringChannelsSet);
2558 TRAPD(err, iMMFDevSound->SetConfigL(capabilitiesSet));
2559 if (err == KErrNotSupported || err == KErrArgument)
2561 INFO_PRINTF2(_L("CMMFDevSound::SetConfigL succeeded with error = %d"), err);
2562 StopTest(err, EPass);
2566 ERR_PRINTF2(_L("CMMFDevSound::SetConfigL failed with error = %d"), err);
2567 ERR_PRINTF3(_L("Expected error posibilities %d %d"), KErrArgument, KErrNotSupported);
2568 StopTest(err, EFail);
2571 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
2573 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
2578 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
2579 StopTest(aError, EFail);
2585 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
2586 StopTest(aError, EFail);
2593 *========================================================================================================
2594 * MM-A3F-DEVSOUND-CHRTZ-TONE-0019
2596 RA3FDevSoundToneSetConfigTestToInvalidChannelValueTest::RA3FDevSoundToneSetConfigTestToInvalidChannelValueTest(const TDesC& aTestName)
2597 : RA3FDevSoundTestBase(aTestName), iSampleRate(0),
2602 RA3FDevSoundToneSetConfigTestToInvalidChannelValueTest* RA3FDevSoundToneSetConfigTestToInvalidChannelValueTest::NewL(const TDesC& aTestName)
2604 RA3FDevSoundToneSetConfigTestToInvalidChannelValueTest * self = new(ELeave)RA3FDevSoundToneSetConfigTestToInvalidChannelValueTest(aTestName);
2608 void RA3FDevSoundToneSetConfigTestToInvalidChannelValueTest::DoKickoffTestL()
2610 if (!GetIntFromConfig(iTestStepName, KSampleRate, iSampleRate))
2612 ERR_PRINTF2(KMsgErrorGetParameter, &KSampleRate);
2613 StopTest(KErrNotFound);
2616 if (!GetIntFromConfig(iTestStepName, KChannel, iChannels))
2618 ERR_PRINTF2(KMsgErrorGetParameter, &KChannel);
2619 StopTest(KErrNotFound);
2624 void RA3FDevSoundToneSetConfigTestToInvalidChannelValueTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
2626 switch(iDevSoundState)
2630 if(aDevSoundEvent == EEventInitialize)
2632 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneSetConfigTestToInvalidChannelValueTest"), EFsmIncorrectErrorPassed));
2633 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
2634 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
2635 if (err != KErrNone)
2637 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
2641 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
2642 iDevSoundState = EStateInitializing;
2646 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
2647 StopTest(aError, EFail);
2651 case EStateInitializing:
2653 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
2655 TMMFCapabilities capabilitiesSet;
2656 TBuf<KMaxSampleRateStringLength> stringSampleRateSet;
2657 TBuf<KMaxChannelsStringLength> stringChannelsSet;
2658 TMMFSampleRate eSampleRate;
2659 SampleRateFromTIntToTMMFSampleRate (iSampleRate, eSampleRate);
2660 capabilitiesSet.iRate = eSampleRate;
2661 capabilitiesSet.iChannels = iChannels;
2662 SampleRateFromTUintToString (capabilitiesSet.iRate, stringSampleRateSet);
2663 INFO_PRINTF3(_L("Calling CMMFDevSound::SetConfigL using a sample rate = %S and an invalid channel mode = %d"), &stringSampleRateSet, iChannels);
2664 TRAPD(err, iMMFDevSound->SetConfigL(capabilitiesSet));
2665 if (err == KErrNotSupported || err == KErrArgument)
2667 INFO_PRINTF2(_L("CMMFDevSound::SetConfigL succeeded with error = %d"), err);
2668 StopTest(err, EPass);
2672 ERR_PRINTF2(_L("CMMFDevSound::SetConfigL failed with error = %d"), err);
2673 ERR_PRINTF3(_L("Expected error posibilities %d %d"), KErrArgument, KErrNotSupported);
2674 StopTest(err, EFail);
2677 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
2679 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
2684 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
2685 StopTest(aError, EFail);
2691 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
2692 StopTest(aError, EFail);
2698 *========================================================================================================
2699 * MM-A3F-DEVSOUND-CHRTZ-TONE-0020
2701 RA3FDevSoundToneSetDTMFLengthsToNegativeTest::RA3FDevSoundToneSetDTMFLengthsToNegativeTest(const TDesC& aTestName)
2702 : RA3FDevSoundTestBase(aTestName), iToneOnLength(0),
2703 iToneOffLength(0), iPauseLength(0),
2704 iDTMFString(KNullDesC)
2708 RA3FDevSoundToneSetDTMFLengthsToNegativeTest* RA3FDevSoundToneSetDTMFLengthsToNegativeTest::NewL(const TDesC& aTestName)
2710 RA3FDevSoundToneSetDTMFLengthsToNegativeTest * self = new(ELeave)RA3FDevSoundToneSetDTMFLengthsToNegativeTest(aTestName);
2714 void RA3FDevSoundToneSetDTMFLengthsToNegativeTest::DoKickoffTestL()
2716 if ( !GetIntFromConfig(iTestStepName, KToneOnLength, iToneOnLength) )
2718 ERR_PRINTF2(KMsgErrorGetParameter, &KToneOnLength);
2719 StopTest(KErrNotFound);
2722 if ( !GetIntFromConfig(iTestStepName, KToneOffLength, iToneOffLength) )
2724 ERR_PRINTF2(KMsgErrorGetParameter, &KToneOffLength);
2725 StopTest(KErrNotFound);
2728 if ( !GetIntFromConfig(iTestStepName, KPauseLength, iPauseLength) )
2730 ERR_PRINTF2(KMsgErrorGetParameter, &KPauseLength);
2731 StopTest(KErrNotFound);
2735 if ( !GetStringFromConfig(iTestStepName, KDTMFString, DTMF) )
2737 ERR_PRINTF2(KMsgErrorGetParameter, &KDTMFString);
2738 StopTest(KErrNotFound);
2741 iDTMFString.Copy(DTMF);
2744 void RA3FDevSoundToneSetDTMFLengthsToNegativeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
2746 switch (iDevSoundState)
2750 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneSetDTMFLengthsToNegativeConfigurationTest"), EFsmIncorrectErrorPassed));
2751 if (aDevSoundEvent == EEventInitialize)
2753 INFO_PRINTF1(_L("Calling iMMFDevSound::InitializeL"));
2754 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
2755 if (err != KErrNone)
2757 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
2761 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
2762 iDevSoundState = EStateInitializing;
2766 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
2767 StopTest(aError, EFail);
2771 case EStateInitializing:
2773 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
2775 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
2776 TTimeIntervalMicroSeconds32 ToneOnLength(iToneOnLength);
2777 TTimeIntervalMicroSeconds32 ToneOffLength(iToneOffLength);
2778 TTimeIntervalMicroSeconds32 PauseLength(iPauseLength);
2779 INFO_PRINTF4(_L("Setting DTMF tone to negative lengths. ToneOnLength %d, ToneOffLength %d and PauseLength %d"), iToneOnLength, iToneOffLength, iPauseLength);
2780 iMMFDevSound->SetDTMFLengths(ToneOnLength, ToneOffLength, PauseLength);
2781 iStartTime.HomeTime();
2782 INFO_PRINTF2(_L("Calling CMMFDevSound::PlayDTMFStringL %S"), &iDTMFString);
2783 TRAPD(err, iMMFDevSound->PlayDTMFStringL(iDTMFString));
2784 if (err != KErrNone)
2786 ERR_PRINTF2(_L("CMMFDevSound::PlayDTMFStringL left with error : %d!"), err);
2790 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
2791 iDevSoundState = EStatePlaying;
2793 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
2795 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
2800 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
2801 StopTest(aError, EFail);
2807 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
2808 StopTest(aError, EFail);
2813 void RA3FDevSoundToneSetDTMFLengthsToNegativeTest::ToneFinished(TInt aError)
2815 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
2816 INFO_PRINTF3(KMsgErrorDevSoundCallback, &KToneFinishedText, aError);
2818 if (aError == KErrUnderflow)
2820 iEndTime.HomeTime();
2821 iPlayToneTime = iEndTime.MicroSecondsFrom(iStartTime);
2822 if(iPlayToneTime <= KPlayVarianceTime)
2824 INFO_PRINTF2(_L("Setting DTMF tone lengths to negative gives a reproduction time of %Ld microseconds which is the expected result"), iPlayToneTime.Int64());
2825 StopTest(aError, EPass);
2830 INFO_PRINTF2(_L("DevSound called ToneFinished with error = %d that was NOT expected"), aError);
2831 StopTest(aError, EFail);
2836 *========================================================================================================
2837 * MM-A3F-DEVSOUND-CHRTZ-TONE-0021
2839 RA3FDevSoundToneSetDTMFToneOnLengthToMinusOneTest::RA3FDevSoundToneSetDTMFToneOnLengthToMinusOneTest(const TDesC& aTestName)
2840 : RA3FDevSoundTestBase(aTestName),
2841 iFirstToneFinishedCall(EFalse),
2842 iToneOnLength(0), iToneOffLength(0),
2843 iPauseLength(0), iDTMFString(KNullDesC)
2846 RA3FDevSoundToneSetDTMFToneOnLengthToMinusOneTest* RA3FDevSoundToneSetDTMFToneOnLengthToMinusOneTest::NewL(const TDesC& aTestName)
2848 RA3FDevSoundToneSetDTMFToneOnLengthToMinusOneTest * self = new(ELeave)RA3FDevSoundToneSetDTMFToneOnLengthToMinusOneTest(aTestName);
2852 void RA3FDevSoundToneSetDTMFToneOnLengthToMinusOneTest::DoKickoffTestL()
2854 if (!GetIntFromConfig(iTestStepName, KToneOnLength, iToneOnLength))
2856 ERR_PRINTF2(KMsgErrorGetParameter, &KToneOnLength);
2857 StopTest(KErrNotFound);
2860 if (!GetIntFromConfig(iTestStepName, KToneOffLength, iToneOffLength))
2862 ERR_PRINTF2(KMsgErrorGetParameter, &KToneOffLength);
2863 StopTest(KErrNotFound);
2866 if (!GetIntFromConfig(iTestStepName, KPauseLength, iPauseLength))
2868 ERR_PRINTF2(KMsgErrorGetParameter, &KPauseLength);
2869 StopTest(KErrNotFound);
2873 if (!GetStringFromConfig(iTestStepName, KDTMFString, DTMF))
2875 ERR_PRINTF2(KMsgErrorGetParameter, &KDTMFString);
2876 StopTest(KErrNotFound);
2879 iDTMFString.Copy(DTMF);
2880 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
2883 void RA3FDevSoundToneSetDTMFToneOnLengthToMinusOneTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
2885 switch (iDevSoundState)
2889 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneSetDTMFToneOnLengthToMinusOneTest"), EFsmIncorrectErrorPassed));
2890 if(aDevSoundEvent == EEventInitialize)
2892 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
2893 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
2894 if (err != KErrNone)
2896 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
2900 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
2901 iDevSoundState = EStateInitializing;
2905 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
2906 StopTest(aError, EFail);
2910 case EStateInitializing:
2912 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
2914 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
2915 iStartTime.HomeTime();
2916 TTimeIntervalMicroSeconds32 ToneOnLength(iToneOnLength);
2917 TTimeIntervalMicroSeconds32 ToneOffLength(iToneOffLength);
2918 TTimeIntervalMicroSeconds32 PauseLength(iPauseLength);
2919 INFO_PRINTF4(_L("Calling CMMFDevSound::SetDTMFLengths. ToneOnLength = %Ld, ToneOffLength = %Ld and PauseLength = %Ld"), iToneOnLength, iToneOffLength, iPauseLength);
2920 iMMFDevSound->SetDTMFLengths(ToneOnLength, ToneOffLength, PauseLength);
2921 INFO_PRINTF2(_L("Calling CMMFDevSound::PlayDTMFStringL %S"), &iDTMFString);
2922 TRAPD(err, iMMFDevSound->PlayDTMFStringL(iDTMFString));
2923 if (err != KErrNone)
2925 ERR_PRINTF2(_L("CMMFDevSound::PlayDTMFStringL left with error : %d!"), err);
2929 StartTimer(KMicrosecsInTenSec);
2930 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
2931 iDevSoundState=EStatePlaying;
2933 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
2935 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
2940 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
2941 StopTest(aError, EFail);
2947 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
2948 StopTest(aError, EFail);
2953 void RA3FDevSoundToneSetDTMFToneOnLengthToMinusOneTest::DoTimerCallback()
2956 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
2957 iEndTime.HomeTime();
2958 iPlayToneTime = iEndTime.MicroSecondsFrom(iStartTime);
2959 INFO_PRINTF1(_L("SetDTMF lengths succeded."));
2960 INFO_PRINTF2(_L("Play time is %Ld microseconds"), iPlayToneTime.Int64());
2964 void RA3FDevSoundToneSetDTMFToneOnLengthToMinusOneTest::ToneFinished(TInt aError)
2966 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
2967 if (aError == KErrUnderflow)
2969 INFO_PRINTF1(_L("ToneFinished was called before the timer event."));
2974 ERR_PRINTF2(_L("DevSound called ToneFinished with error = %d"), aError);
2975 ERR_PRINTF2(_L("Expected error = %d"), KErrUnderflow);
2976 StopTest(aError, EFail);
2981 *========================================================================================================
2982 * MM-A3F-DEVSOUND-CHRTZ-TONE-0022
2984 RA3FDevSoundToneSetToneRepetitionsRepeatTrailingSilenceToNegativeTest::RA3FDevSoundToneSetToneRepetitionsRepeatTrailingSilenceToNegativeTest(const TDesC& aTestName)
2985 : RA3FDevSoundTestBase(aTestName), iDuration(0),
2987 iRepeatTrailingSilence(0), iRepeatCount(0),
2988 iInitializedToPlayTones(EFalse)
2992 RA3FDevSoundToneSetToneRepetitionsRepeatTrailingSilenceToNegativeTest* RA3FDevSoundToneSetToneRepetitionsRepeatTrailingSilenceToNegativeTest::NewL(const TDesC& aTestName)
2994 RA3FDevSoundToneSetToneRepetitionsRepeatTrailingSilenceToNegativeTest * self = new(ELeave)RA3FDevSoundToneSetToneRepetitionsRepeatTrailingSilenceToNegativeTest(aTestName);
2998 void RA3FDevSoundToneSetToneRepetitionsRepeatTrailingSilenceToNegativeTest::DoKickoffTestL()
3000 if (!GetIntFromConfig(iTestStepName, KRepeatCount, iRepeatCount))
3002 ERR_PRINTF2(KMsgErrorGetParameter, &KRepeatCount);
3003 StopTest(KErrNotFound);
3006 if (!GetIntFromConfig(iTestStepName, KRepeatTrailingSilence, iRepeatTrailingSilence))
3008 ERR_PRINTF2(KMsgErrorGetParameter, &KRepeatTrailingSilence);
3009 StopTest(KErrNotFound);
3012 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
3014 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
3015 StopTest(KErrNotFound);
3018 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
3020 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
3021 StopTest(KErrNotFound);
3026 void RA3FDevSoundToneSetToneRepetitionsRepeatTrailingSilenceToNegativeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
3028 switch (iDevSoundState)
3032 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneSetToneRepetitionsRepeatTrailingSilenceToNegativeTest"), EFsmIncorrectErrorPassed));
3033 if(aDevSoundEvent == EEventInitialize)
3035 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
3036 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
3037 if (err != KErrNone)
3039 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
3043 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
3044 iDevSoundState = EStateInitializing;
3048 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
3049 StopTest(aError, EFail);
3053 case EStateInitializing:
3055 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
3057 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
3058 INFO_PRINTF3(_L("Calling CMMFDevSound::SetToneRepeats using RepeatCount = %d and RepeatTrailingSilence = %d microsecs"), iRepeatCount, iRepeatTrailingSilence);
3059 iMMFDevSound->SetToneRepeats(iRepeatCount, iRepeatTrailingSilence);
3060 iStartTime.HomeTime();
3061 INFO_PRINTF3(_L("Calling CMMFDevSound::PlayToneL %d Hz during %d secs "), iFrequencyTone1, iDuration);
3062 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
3063 if (err != KErrNone)
3065 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error : %d!"), err);
3069 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
3070 iDevSoundState = EStatePlaying;
3072 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
3074 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
3079 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
3080 StopTest(aError, EFail);
3086 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
3087 StopTest(aError, EFail);
3093 void RA3FDevSoundToneSetToneRepetitionsRepeatTrailingSilenceToNegativeTest::ToneFinished(TInt aError)
3095 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
3096 if (aError == KErrUnderflow)
3098 iEndTime.HomeTime();
3099 iPlayToneTime = iEndTime.MicroSecondsFrom(iStartTime);
3100 TInt repeatTrailingSilenceToSecs = iRepeatTrailingSilence/KMicroSecsInOneSec;
3101 TInt totalExpectedReproductionTime = (iRepeatCount * iDuration + iDuration + (repeatTrailingSilenceToSecs*iRepeatCount))*KMicroSecsInOneSec;
3102 if(iPlayToneTime < totalExpectedReproductionTime + KPlayVarianceTime && iPlayToneTime > totalExpectedReproductionTime - KPlayVarianceTime)
3104 INFO_PRINTF1(_L("Play tone repeats succeded."));
3105 INFO_PRINTF2(_L("Play time is %Ld microseconds"), iPlayToneTime.Int64());
3110 ERR_PRINTF1(_L("Play tone repeats did not work as planned."));
3111 ERR_PRINTF3(_L("Play time is %Ld microseconds and it should have been %d microseconds"), iPlayToneTime.Int64(), totalExpectedReproductionTime);
3112 StopTest(KErrNone, EFail);
3117 ERR_PRINTF2(_L("DevSound called ToneFinished with error = %d"), aError);
3118 ERR_PRINTF2(_L("Expected error = %d"), KErrUnderflow);
3124 *========================================================================================================
3125 * MM-A3F-DEVSOUND-CHRTZ-TONE-0023
3127 RA3FDevSoundToneSetToneRepetitionsRepeatCountToKMdaRepeatForeverTest::RA3FDevSoundToneSetToneRepetitionsRepeatCountToKMdaRepeatForeverTest(const TDesC& aTestName)
3128 : RA3FDevSoundTestBase(aTestName), iDuration(0),
3130 iRepeatTrailingSilence(0), iRepeatCount(0),
3131 iInitializedToPlayTones(EFalse)
3135 RA3FDevSoundToneSetToneRepetitionsRepeatCountToKMdaRepeatForeverTest* RA3FDevSoundToneSetToneRepetitionsRepeatCountToKMdaRepeatForeverTest::NewL(const TDesC& aTestName)
3137 RA3FDevSoundToneSetToneRepetitionsRepeatCountToKMdaRepeatForeverTest * self = new(ELeave)RA3FDevSoundToneSetToneRepetitionsRepeatCountToKMdaRepeatForeverTest(aTestName);
3141 void RA3FDevSoundToneSetToneRepetitionsRepeatCountToKMdaRepeatForeverTest::DoKickoffTestL()
3143 if (!GetIntFromConfig(iTestStepName, KRepeatCount, iRepeatCount))
3145 ERR_PRINTF2(KMsgErrorGetParameter, &KRepeatCount);
3146 StopTest(KErrNotFound);
3149 if (!GetIntFromConfig(iTestStepName, KRepeatTrailingSilence, iRepeatTrailingSilence))
3151 ERR_PRINTF2(KMsgErrorGetParameter, &KRepeatTrailingSilence);
3152 StopTest(KErrNotFound);
3155 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
3157 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
3158 StopTest(KErrNotFound);
3161 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
3163 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
3164 StopTest(KErrNotFound);
3167 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
3170 void RA3FDevSoundToneSetToneRepetitionsRepeatCountToKMdaRepeatForeverTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
3172 switch (iDevSoundState)
3176 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneSetToneRepetitionsRepeatCountToKMdaRepeatForeverTest"), EFsmIncorrectErrorPassed));
3177 if(aDevSoundEvent == EEventInitialize)
3179 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
3180 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
3181 if (err != KErrNone)
3183 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
3187 StartTimer(KMicrosecsInTenSec);
3188 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
3189 iDevSoundState = EStateInitializing;
3193 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
3194 StopTest(aError, EFail);
3198 case EStateInitializing:
3200 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
3202 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
3203 INFO_PRINTF3(_L("Calling CMMFDevSound::SetToneRepeats using RepeatCount = %d and RepeatTrailingSilence = %d microsecs"), iRepeatCount, iRepeatTrailingSilence);
3204 iMMFDevSound->SetToneRepeats(iRepeatCount, iRepeatTrailingSilence);
3205 iStartTime.HomeTime();
3206 INFO_PRINTF3(_L("Calling CMMFDevSound::PlayToneL %d Hz during %d secs "), iFrequencyTone1, iDuration);
3207 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
3208 if (err != KErrNone)
3210 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error : %d!"), err);
3214 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
3215 iDevSoundState = EStatePlaying;
3217 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
3219 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
3224 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
3225 StopTest(aError, EFail);
3231 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
3232 StopTest(aError, EFail);
3238 void RA3FDevSoundToneSetToneRepetitionsRepeatCountToKMdaRepeatForeverTest::DoTimerCallback()
3241 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
3242 iEndTime.HomeTime();
3243 iPlayToneTime = iEndTime.MicroSecondsFrom(iStartTime);
3244 INFO_PRINTF1(_L("Setting repeatCount value to KMdaRepeatForeverTest succeded."));
3245 INFO_PRINTF2(_L("Play time is %Ld microseconds"), iPlayToneTime.Int64());
3246 iMMFDevSound->Stop();
3250 void RA3FDevSoundToneSetToneRepetitionsRepeatCountToKMdaRepeatForeverTest::ToneFinished(TInt aError)
3252 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
3253 if (aError == KErrUnderflow)
3255 INFO_PRINTF1(_L("ToneFinished was called before the timer event."));
3260 ERR_PRINTF2(_L("DevSound called ToneFinished with error = %d"), aError);
3261 ERR_PRINTF2(_L("Expected error = %d"), KErrUnderflow);
3262 StopTest(aError, EFail);
3267 *========================================================================================================
3268 * MM-A3F-DEVSOUND-CHRTZ-TONE-0024
3270 RA3FDevSoundToneCapsTest::RA3FDevSoundToneCapsTest(const TDesC& aTestName)
3271 : RA3FDevSoundTestBase(aTestName), iExCapRate(0), iExCapChannels(0)
3275 RA3FDevSoundToneCapsTest* RA3FDevSoundToneCapsTest::NewL(const TDesC& aTestName)
3277 RA3FDevSoundToneCapsTest * self = new(ELeave)RA3FDevSoundToneCapsTest(aTestName);
3281 void RA3FDevSoundToneCapsTest::DoKickoffTestL()
3283 if (!GetIntFromConfig(iTestStepName, KExCapRate, iExCapRate))
3285 ERR_PRINTF2(KMsgErrorGetParameter, &KSampleRate);
3286 StopTest(KErrNotFound);
3289 if (!GetIntFromConfig(iTestStepName, KExCapChannels, iExCapChannels))
3291 ERR_PRINTF2(KMsgErrorGetParameter, &KChannel);
3292 StopTest(KErrNotFound);
3297 void RA3FDevSoundToneCapsTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
3299 switch(iDevSoundState)
3303 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneCapsTest"), EFsmIncorrectErrorPassed));
3304 if (aDevSoundEvent == EEventInitialize)
3306 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
3307 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
3308 if (err != KErrNone)
3310 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
3314 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
3315 iDevSoundState = EStateInitializing;
3319 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
3320 StopTest(aError, EFail);
3324 case EStateInitializing:
3326 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
3328 TMMFCapabilities capabilities;
3329 INFO_PRINTF1(_L("Calling CMMFDevSound::Capabilities"));
3330 capabilities = iMMFDevSound->Capabilities();
3331 PrintSupportedCapabilities(capabilities.iRate, capabilities.iChannels);
3332 if(capabilities.iRate == iExCapRate)
3334 INFO_PRINTF2(_L("The total of possible sample rate values is 0x%08x"), capabilities.iRate);
3338 ERR_PRINTF2(_L("The total of possible sample rate values failed with 0x%08x"), capabilities.iRate);
3339 ERR_PRINTF2(_L("Expected value = %d"), iExCapRate);
3340 StopTest(aError, EFail);
3342 if(capabilities.iChannels == iExCapChannels)
3344 INFO_PRINTF2(_L("The total of possible channel values is 0x%08x"),capabilities.iChannels );
3349 ERR_PRINTF2(_L("The total of possible channel values failed with 0x%08x"), capabilities.iChannels );
3350 ERR_PRINTF2(_L("Expected value = %d"), iExCapChannels);
3351 StopTest(aError, EFail);
3354 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
3356 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
3361 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
3362 StopTest(aError, EFail);
3368 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
3369 StopTest(aError, EFail);
3375 *========================================================================================================
3376 * MM-A3F-DEVSOUND-CHRTZ-TONE-0025
3378 RA3FDevSoundToneConfigDefaultTest::RA3FDevSoundToneConfigDefaultTest(const TDesC& aTestName)
3379 : RA3FDevSoundTestBase(aTestName), iExCapRate(0),
3384 RA3FDevSoundToneConfigDefaultTest* RA3FDevSoundToneConfigDefaultTest::NewL(const TDesC& aTestName)
3386 RA3FDevSoundToneConfigDefaultTest * self = new(ELeave)RA3FDevSoundToneConfigDefaultTest(aTestName);
3390 void RA3FDevSoundToneConfigDefaultTest::DoKickoffTestL()
3392 if (!GetIntFromConfig(iTestStepName, KExCapRate, iExCapRate))
3394 ERR_PRINTF2(KMsgErrorGetParameter, &KExCapRate);
3395 StopTest(KErrNotFound);
3398 if (!GetIntFromConfig(iTestStepName, KExCapChannels, iExCapChannels))
3400 ERR_PRINTF2(KMsgErrorGetParameter, &KExCapChannels);
3401 StopTest(KErrNotFound);
3406 void RA3FDevSoundToneConfigDefaultTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
3408 switch(iDevSoundState)
3412 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneConfigDefaultTest"), EFsmIncorrectErrorPassed));
3413 if (aDevSoundEvent == EEventInitialize)
3415 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
3416 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
3417 if (err != KErrNone)
3419 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
3422 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
3423 iDevSoundState=EStateInitializing;
3427 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
3428 StopTest(aError, EFail);
3432 case EStateInitializing:
3434 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
3436 TMMFCapabilities capabilitiesGet;
3437 TBuf<KMaxSampleRateStringLength> stringSampleRateGet;
3438 TBuf<KMaxChannelsStringLength> stringChannelsGet;
3439 TBuf<KMaxSampleRateStringLength> stringSampleRateExpected;
3440 TBuf<KMaxChannelsStringLength> stringChannelsExpected;
3441 INFO_PRINTF1(_L("Calling CMMFDevSound::Config"));
3442 capabilitiesGet=iMMFDevSound->Config();
3443 SampleRateFromTUintToString (capabilitiesGet.iRate, stringSampleRateGet);
3444 ChannelsFromTUintToString (capabilitiesGet.iChannels, stringChannelsGet);
3445 SampleRateFromTIntToTMMFSampleRate (iExCapRate, iExSampleRate);
3446 SampleRateFromTUintToString (iExSampleRate, stringSampleRateExpected);
3447 ChannelsFromTUintToString (iExCapChannels, stringChannelsExpected);
3448 if (stringSampleRateExpected.Compare(stringSampleRateGet) == 0)
3450 INFO_PRINTF2(_L("Sample rate value match default as expected with %S"), &stringSampleRateGet);
3451 if (stringChannelsExpected.Compare(stringChannelsGet) == 0)
3453 INFO_PRINTF2(_L("Channel mode value match default as expected with %S"), &stringChannelsGet);
3458 INFO_PRINTF2(_L("Channel mode value failed with %S"), &stringChannelsGet);
3459 ERR_PRINTF2(_L("Expected channel mode %S"), &stringChannelsExpected);
3460 StopTest(aError, EFail);
3465 ERR_PRINTF2(_L("Sample rate value failed with %S"), &stringSampleRateGet);
3466 ERR_PRINTF2(_L("Expected sample rate %S"), &stringSampleRateExpected);
3467 StopTest(aError, EFail);
3470 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
3472 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
3477 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
3478 StopTest(aError, EFail);
3484 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
3485 StopTest(aError, EFail);
3491 *========================================================================================================
3492 * MM-A3F-DEVSOUND-CHRTZ-TONE-0026
3494 RA3FDevSoundToneMaxVolumeTest::RA3FDevSoundToneMaxVolumeTest(const TDesC& aTestName)
3495 : RA3FDevSoundTestBase(aTestName), iExVolume(0)
3499 RA3FDevSoundToneMaxVolumeTest* RA3FDevSoundToneMaxVolumeTest::NewL(const TDesC& aTestName)
3501 RA3FDevSoundToneMaxVolumeTest * self = new(ELeave)RA3FDevSoundToneMaxVolumeTest(aTestName);
3505 void RA3FDevSoundToneMaxVolumeTest::DoKickoffTestL()
3507 if (!GetIntFromConfig(iTestStepName, KExVolume, iExVolume))
3509 ERR_PRINTF2(KMsgErrorGetParameter, &KExVolume);
3510 StopTest(KErrNotFound);
3515 void RA3FDevSoundToneMaxVolumeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
3517 switch(iDevSoundState)
3521 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneMaxVolumeTest"), EFsmIncorrectErrorPassed));
3522 if (aDevSoundEvent == EEventInitialize)
3524 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
3525 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
3526 if (err != KErrNone)
3528 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
3532 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
3533 iDevSoundState = EStateInitializing;
3537 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
3538 StopTest(aError, EFail);
3542 case EStateInitializing:
3544 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
3546 INFO_PRINTF1(_L("Calling CMMFDevSound::MaxVolume"));
3547 TInt maxVolumeGet = iMMFDevSound->MaxVolume();
3548 if (maxVolumeGet == iExVolume)
3550 INFO_PRINTF2(_L("The max device supported volume is %d."), maxVolumeGet);
3555 INFO_PRINTF2(_L("The max device supported volume failed with %d."), maxVolumeGet);
3556 ERR_PRINTF2(_L("Expected value = %d."), iExVolume);
3557 StopTest(aError, EFail);
3560 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
3562 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
3567 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
3568 StopTest(aError, EFail);
3574 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
3575 StopTest(aError, EFail);
3581 *========================================================================================================
3582 * MM-A3F-DEVSOUND-CHRTZ-TONE-0027
3584 RA3FDevSoundToneVolumeTest::RA3FDevSoundToneVolumeTest(const TDesC& aTestName)
3585 : RA3FDevSoundTestBase(aTestName), iExVolume(0)
3589 RA3FDevSoundToneVolumeTest* RA3FDevSoundToneVolumeTest::NewL(const TDesC& aTestName)
3591 RA3FDevSoundToneVolumeTest * self = new(ELeave)RA3FDevSoundToneVolumeTest(aTestName);
3595 void RA3FDevSoundToneVolumeTest::DoKickoffTestL()
3597 if (!GetIntFromConfig(iTestStepName, KExVolume, iExVolume))
3599 ERR_PRINTF2(KMsgErrorGetParameter, &KExVolume);
3600 StopTest(KErrNotFound);
3605 void RA3FDevSoundToneVolumeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
3607 switch (iDevSoundState)
3611 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneVolumeTest"), EFsmIncorrectErrorPassed));
3612 if (aDevSoundEvent == EEventInitialize)
3614 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
3615 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
3616 if (err != KErrNone)
3618 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
3622 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
3623 iDevSoundState = EStateInitializing;
3627 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
3628 StopTest(aError, EFail);
3632 case EStateInitializing:
3634 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
3636 INFO_PRINTF1(_L("Calling CMMFDevSound::Volume"));
3637 TInt volumeGet = iMMFDevSound->Volume();
3638 if(volumeGet == iExVolume)
3640 INFO_PRINTF2(_L("Default device volume succeeded with = %d"), volumeGet);
3645 ERR_PRINTF2(_L("Default device volume failed with = %d"), volumeGet);
3646 ERR_PRINTF2(_L("Expected value % d"), iExVolume);
3647 StopTest(aError , EFail);
3650 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
3652 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
3657 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
3658 StopTest(aError, EFail);
3664 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
3665 StopTest(aError, EFail);
3672 *========================================================================================================
3673 * MM-A3F-DEVSOUND-CHRTZ-TONE-0028
3675 RA3FDevSoundToneQueryCapsWhilePlayingTest::RA3FDevSoundToneQueryCapsWhilePlayingTest(const TDesC& aTestName)
3676 : RA3FDevSoundTestBase(aTestName), iDuration(0),
3677 iFrequencyTone1(0), iExCapRate(0), iExCapChannels(0)
3681 RA3FDevSoundToneQueryCapsWhilePlayingTest* RA3FDevSoundToneQueryCapsWhilePlayingTest::NewL(const TDesC& aTestName)
3683 RA3FDevSoundToneQueryCapsWhilePlayingTest * self = new(ELeave)RA3FDevSoundToneQueryCapsWhilePlayingTest(aTestName);
3687 void RA3FDevSoundToneQueryCapsWhilePlayingTest::DoKickoffTestL()
3689 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
3691 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
3692 StopTest(KErrNotFound);
3695 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
3697 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
3698 StopTest(KErrNotFound);
3701 if (!GetIntFromConfig(iTestStepName, KExCapRate, iExCapRate))
3703 ERR_PRINTF2(KMsgErrorGetParameter, &KSampleRate);
3704 StopTest(KErrNotFound);
3707 if (!GetIntFromConfig(iTestStepName, KExCapChannels, iExCapChannels))
3709 ERR_PRINTF2(KMsgErrorGetParameter, &KChannel);
3710 StopTest(KErrNotFound);
3713 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
3716 void RA3FDevSoundToneQueryCapsWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
3718 switch (iDevSoundState)
3722 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneQueryCapsWhilePlayingTest"), EFsmIncorrectErrorPassed));
3723 if (aDevSoundEvent == EEventInitialize)
3725 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
3726 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
3727 if (err != KErrNone)
3729 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
3733 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
3734 iDevSoundState = EStateInitializing;
3738 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
3739 StopTest(aError, EFail);
3743 case EStateInitializing:
3745 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
3747 INFO_PRINTF3(_L("Calling CMMFDevSound::PlayToneL using %d Hz during %d secs "), iFrequencyTone1, iDuration);
3748 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
3749 if (err != KErrNone)
3751 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error : %d!"), err);
3755 StartTimer(KMicroSecsTwoSec);
3756 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
3757 iDevSoundState = EStatePlaying;
3759 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
3761 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
3766 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
3767 StopTest(aError, EFail);
3773 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
3774 StopTest(aError, EFail);
3779 void RA3FDevSoundToneQueryCapsWhilePlayingTest::DoTimerCallback()
3782 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
3783 TMMFCapabilities capabilities;
3784 INFO_PRINTF1(_L("Calling CMMFDevSound::Capabilities"));
3785 capabilities = iMMFDevSound->Capabilities();
3786 PrintSupportedCapabilities(capabilities.iRate, capabilities.iChannels);
3787 if(capabilities.iRate == iExCapRate)
3789 INFO_PRINTF2(_L("The total of possible sample rate values is 0x%08x"), capabilities.iRate);
3793 ERR_PRINTF2(_L("The total of possible sample rate values failed with 0x%08x"), capabilities.iRate);
3794 ERR_PRINTF2(_L("Expected value = %d"), iExCapRate);
3795 StopTest(KErrNone, EFail);
3797 if(capabilities.iChannels == iExCapChannels)
3799 INFO_PRINTF2(_L("The total of possible channel values is 0x%08x"),capabilities.iChannels );
3803 ERR_PRINTF2(_L("The total of possible channel values failed with 0x%08x"), capabilities.iChannels );
3804 ERR_PRINTF2(_L("Expected value = %d"), iExCapChannels);
3805 StopTest(KErrNone, EFail);
3810 *========================================================================================================
3811 * MM-A3F-DEVSOUND-CHRTZ-TONE-0029
3813 RA3FDevSoundToneConfigWhilePlayingTest::RA3FDevSoundToneConfigWhilePlayingTest(const TDesC& aTestName)
3814 : RA3FDevSoundTestBase(aTestName), iDuration(0),
3818 RA3FDevSoundToneConfigWhilePlayingTest* RA3FDevSoundToneConfigWhilePlayingTest::NewL(const TDesC& aTestName)
3820 RA3FDevSoundToneConfigWhilePlayingTest * self = new(ELeave)RA3FDevSoundToneConfigWhilePlayingTest(aTestName);
3824 void RA3FDevSoundToneConfigWhilePlayingTest::DoKickoffTestL()
3826 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
3828 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
3829 StopTest(KErrNotFound);
3832 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
3834 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
3835 StopTest(KErrNotFound);
3838 if (!GetIntFromConfig(iTestStepName, KExCapRate, iExCapRate))
3840 ERR_PRINTF2(KMsgErrorGetParameter, &KExCapRate);
3841 StopTest(KErrNotFound);
3844 if (!GetIntFromConfig(iTestStepName, KExCapChannels, iExCapChannels))
3846 ERR_PRINTF2(KMsgErrorGetParameter, &KExCapChannels);
3847 StopTest(KErrNotFound);
3850 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
3853 void RA3FDevSoundToneConfigWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
3855 switch(iDevSoundState)
3859 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneConfigWhilePlayingTest"), EFsmIncorrectErrorPassed));
3860 if (aDevSoundEvent == EEventInitialize)
3862 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
3863 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
3864 if (err != KErrNone)
3866 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
3870 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
3871 iDevSoundState = EStateInitializing;
3875 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
3876 StopTest(aError, EFail);
3880 case EStateInitializing:
3882 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
3884 iStartTime.HomeTime();
3885 INFO_PRINTF3(_L("Calling CMMFDevSound::PlayToneL using %d Hz during %d secs "), iFrequencyTone1, iDuration);
3886 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
3887 if (err != KErrNone)
3889 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error : %d!"), err);
3893 StartTimer(KMicroSecsTwoSec);
3894 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
3895 iDevSoundState = EStatePlaying;
3897 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
3899 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
3904 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
3905 StopTest(aError, EFail);
3911 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
3912 StopTest(aError, EFail);
3917 void RA3FDevSoundToneConfigWhilePlayingTest::DoTimerCallback()
3920 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
3921 TMMFCapabilities capabilitiesGet;
3922 TBuf<KMaxSampleRateStringLength> stringSampleRateGet;
3923 TBuf<KMaxChannelsStringLength> stringChannelsGet;
3924 TBuf<KMaxSampleRateStringLength> stringSampleRateExpected;
3925 TBuf<KMaxChannelsStringLength> stringChannelsExpected;
3926 INFO_PRINTF1(_L("Calling CMMFDevSound::Config while playing"));
3927 capabilitiesGet=iMMFDevSound->Config();
3928 SampleRateFromTUintToString (capabilitiesGet.iRate, stringSampleRateGet);
3929 ChannelsFromTUintToString (capabilitiesGet.iChannels, stringChannelsGet);
3930 SampleRateFromTIntToTMMFSampleRate (iExCapRate, iExSampleRate);
3931 SampleRateFromTUintToString (iExSampleRate, stringSampleRateExpected);
3932 ChannelsFromTUintToString (iExCapChannels, stringChannelsExpected);
3933 if (stringSampleRateExpected.Compare(stringSampleRateGet) == 0)
3935 INFO_PRINTF2(_L("Sample rate value match default as expected with %S"), &stringSampleRateGet);
3936 if (stringChannelsExpected.Compare(stringChannelsGet) == 0)
3938 INFO_PRINTF2(_L("Channel mode value match default as expected with %S"), &stringChannelsGet);
3943 INFO_PRINTF2(_L("Channel mode value failed with %S"), &stringChannelsGet);
3944 ERR_PRINTF2(_L("Expected channel mode %S"), &stringChannelsExpected);
3945 StopTest(KErrNone, EFail);
3950 ERR_PRINTF2(_L("Sample rate value failed with %S"), &stringSampleRateGet);
3951 ERR_PRINTF2(_L("Expected sample rate %S"), &stringSampleRateExpected);
3952 StopTest(KErrNone, EFail);
3956 void RA3FDevSoundToneConfigWhilePlayingTest::ToneFinished(TInt aError)
3958 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
3959 if (aError == KErrUnderflow)
3961 iEndTime.HomeTime();
3962 iPlayToneTime = iEndTime.MicroSecondsFrom(iStartTime);
3963 TInt totalExpectedReproductionTime = iDuration * KMicroSecsInOneSec;
3964 if(iPlayToneTime < totalExpectedReproductionTime + KPlayVarianceTime && iPlayToneTime > totalExpectedReproductionTime - KPlayVarianceTime)
3966 INFO_PRINTF2(_L("Play time is %Ld microseconds"), iPlayToneTime.Int64());
3971 ERR_PRINTF3(_L("Play time is %Ld microseconds and it should have been %d microseconds"), iPlayToneTime.Int64(), totalExpectedReproductionTime);
3972 StopTest(KErrNone, EFail);
3977 ERR_PRINTF2(_L("DevSound called ToneFinished with error = %d"), aError);
3978 ERR_PRINTF2(_L("Expected error = %d"), KErrUnderflow);
3979 StopTest(aError, EFail);
3984 *========================================================================================================
3985 * MM-A3F-DEVSOUND-CHRTZ-TONE-0030
3987 RA3FDevSoundToneMaxVolumeWhilePlayingTest::RA3FDevSoundToneMaxVolumeWhilePlayingTest(const TDesC& aTestName)
3988 : RA3FDevSoundTestBase(aTestName), iDuration(0),
3989 iFrequencyTone1(0), iExVolume(0)
3993 RA3FDevSoundToneMaxVolumeWhilePlayingTest* RA3FDevSoundToneMaxVolumeWhilePlayingTest::NewL(const TDesC& aTestName)
3995 RA3FDevSoundToneMaxVolumeWhilePlayingTest * self = new(ELeave)RA3FDevSoundToneMaxVolumeWhilePlayingTest(aTestName);
3999 void RA3FDevSoundToneMaxVolumeWhilePlayingTest::DoKickoffTestL()
4001 if (!GetIntFromConfig(iTestStepName, KExVolume, iExVolume))
4003 ERR_PRINTF2(KMsgErrorGetParameter, &KExVolume);
4004 StopTest(KErrNotFound);
4007 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
4009 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
4010 StopTest(KErrNotFound);
4013 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
4015 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
4016 StopTest(KErrNotFound);
4019 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
4022 void RA3FDevSoundToneMaxVolumeWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
4024 switch (iDevSoundState)
4028 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneMaxVolumeWhilePlayingTest"), EFsmIncorrectErrorPassed));
4029 if (aDevSoundEvent == EEventInitialize)
4031 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
4032 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
4033 if (err != KErrNone)
4035 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
4039 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
4040 iDevSoundState = EStateInitializing;
4044 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
4045 StopTest(aError, EFail);
4049 case EStateInitializing:
4051 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
4053 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
4054 iStartTime.HomeTime();
4055 INFO_PRINTF3(_L("Calling CMMFDevSound::PlayToneL using %d Hz during %d secs "), iFrequencyTone1, iDuration);
4056 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
4057 if (err != KErrNone)
4059 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error : %d!"), err);
4063 StartTimer(KMicroSecsTwoSec);
4064 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
4065 iDevSoundState = EStatePlaying;
4067 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
4069 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
4074 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
4075 StopTest(aError, EFail);
4081 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
4082 StopTest(aError, EFail);
4087 void RA3FDevSoundToneMaxVolumeWhilePlayingTest::DoTimerCallback()
4090 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
4091 INFO_PRINTF1(_L("Calling CMMFDevSound::MaxVolume"));
4092 TInt maxVolumeGet = iMMFDevSound->MaxVolume();
4093 if (maxVolumeGet == iExVolume)
4095 INFO_PRINTF2(_L("The max device supported volume is %d."), maxVolumeGet);
4099 INFO_PRINTF2(_L("The max device supported volume failed with %d."), maxVolumeGet);
4100 ERR_PRINTF2(_L("Expected value = %d."), iExVolume);
4101 StopTest(KErrNone, EFail);
4105 void RA3FDevSoundToneMaxVolumeWhilePlayingTest::ToneFinished(TInt aError)
4107 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
4108 if (aError == KErrUnderflow)
4110 iEndTime.HomeTime();
4111 iPlayToneTime = iEndTime.MicroSecondsFrom(iStartTime);
4112 TInt totalExpectedReproductionTime = iDuration * KMicroSecsInOneSec;
4113 if(iPlayToneTime < totalExpectedReproductionTime + KPlayVarianceTime && iPlayToneTime > totalExpectedReproductionTime - KPlayVarianceTime)
4115 INFO_PRINTF2(_L("Play time is %Ld microseconds"), iPlayToneTime.Int64());
4120 ERR_PRINTF3(_L("Play time is %Ld microseconds and it should have been %d microseconds"), iPlayToneTime.Int64(), totalExpectedReproductionTime);
4121 StopTest(KErrNone, EFail);
4126 ERR_PRINTF2(_L("DevSound called ToneFinished with error = %d"), aError);
4127 ERR_PRINTF2(_L("Expected error = %d"), KErrUnderflow);
4128 StopTest(aError, EFail);
4133 *========================================================================================================
4134 * MM-A3F-DEVSOUND-CHRTZ-TONE-0031
4136 RA3FDevSoundToneVolumeWhilePlayingTest::RA3FDevSoundToneVolumeWhilePlayingTest(const TDesC& aTestName)
4137 : RA3FDevSoundTestBase(aTestName), iDuration(0),
4138 iFrequencyTone1(0), iExVolume(0)
4142 RA3FDevSoundToneVolumeWhilePlayingTest* RA3FDevSoundToneVolumeWhilePlayingTest::NewL(const TDesC& aTestName)
4144 RA3FDevSoundToneVolumeWhilePlayingTest * self = new(ELeave)RA3FDevSoundToneVolumeWhilePlayingTest(aTestName);
4148 void RA3FDevSoundToneVolumeWhilePlayingTest::DoKickoffTestL()
4150 if (!GetIntFromConfig(iTestStepName, KExVolume, iExVolume))
4152 ERR_PRINTF2(KMsgErrorGetParameter, &KExVolume);
4153 StopTest(KErrNotFound);
4156 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
4158 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
4159 StopTest(KErrNotFound);
4162 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
4164 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
4165 StopTest(KErrNotFound);
4168 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
4171 void RA3FDevSoundToneVolumeWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
4173 switch (iDevSoundState)
4177 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneVolumeWhilePlayingTest"), EFsmIncorrectErrorPassed));
4178 if (aDevSoundEvent == EEventInitialize)
4180 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
4181 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
4182 if (err != KErrNone)
4184 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
4188 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
4189 iDevSoundState = EStateInitializing;
4193 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
4194 StopTest(aError, EFail);
4198 case EStateInitializing:
4200 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
4202 iStartTime.HomeTime();
4203 INFO_PRINTF3(_L("Calling CMMFDevSound::PlayToneL using %d Hz during %d secs "), iFrequencyTone1, iDuration);
4204 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
4205 if (err != KErrNone)
4207 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error : %d!"), err);
4211 StartTimer(KMicroSecsTwoSec);
4212 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
4213 iDevSoundState = EStatePlaying;
4215 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
4217 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
4222 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
4223 StopTest(aError, EFail);
4229 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
4230 StopTest(aError, EFail);
4235 void RA3FDevSoundToneVolumeWhilePlayingTest::DoTimerCallback()
4238 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
4239 INFO_PRINTF1(_L("Calling CMMFDevSound::Volume"));
4240 TInt maxVolumeGet = iMMFDevSound->Volume();
4241 if (maxVolumeGet == iExVolume)
4243 INFO_PRINTF2(_L("The device default supported volume value is %d."), maxVolumeGet);
4247 INFO_PRINTF2(_L("The device default supported volume value failed with %d."), maxVolumeGet);
4248 ERR_PRINTF2(_L("Expected value = %d."), iExVolume);
4249 StopTest(KErrNone, EFail);
4253 void RA3FDevSoundToneVolumeWhilePlayingTest::ToneFinished(TInt aError)
4255 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
4256 if (aError == KErrUnderflow)
4258 iEndTime.HomeTime();
4259 iPlayToneTime = iEndTime.MicroSecondsFrom(iStartTime);
4260 TInt totalExpectedReproductionTime = iDuration * KMicroSecsInOneSec;
4261 if(iPlayToneTime < totalExpectedReproductionTime + KPlayVarianceTime && iPlayToneTime > totalExpectedReproductionTime - KPlayVarianceTime)
4263 INFO_PRINTF2(_L("Play time is %Ld microseconds"), iPlayToneTime.Int64());
4268 ERR_PRINTF3(_L("Play time is %Ld microseconds and it should have been %d microseconds"), iPlayToneTime.Int64(), totalExpectedReproductionTime);
4269 StopTest(KErrNone, EFail);
4274 ERR_PRINTF2(_L("DevSound called ToneFinished with error = %d"), aError);
4275 ERR_PRINTF2(_L("Expected error = %d"), KErrUnderflow);
4276 StopTest(aError, EFail);
4281 *========================================================================================================
4282 * MM-A3F-DEVSOUND-CHRTZ-TONE-0032
4284 RA3FDevSoundToneQueryCapsWhilePausePlayingTest::RA3FDevSoundToneQueryCapsWhilePausePlayingTest(const TDesC& aTestName)
4285 : RA3FDevSoundTestBase(aTestName), iDuration(0),
4286 iFrequencyTone1(0), iExCapRate(0), iExCapChannels(0),
4287 iTimeToEnterPauseElapsed(EFalse)
4291 RA3FDevSoundToneQueryCapsWhilePausePlayingTest* RA3FDevSoundToneQueryCapsWhilePausePlayingTest::NewL(const TDesC& aTestName)
4293 RA3FDevSoundToneQueryCapsWhilePausePlayingTest * self = new(ELeave)RA3FDevSoundToneQueryCapsWhilePausePlayingTest(aTestName);
4297 void RA3FDevSoundToneQueryCapsWhilePausePlayingTest::DoKickoffTestL()
4299 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
4301 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
4302 StopTest(KErrNotFound);
4305 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
4307 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
4308 StopTest(KErrNotFound);
4311 if (!GetIntFromConfig(iTestStepName, KExCapRate, iExCapRate))
4313 ERR_PRINTF2(KMsgErrorGetParameter, &KSampleRate);
4314 StopTest(KErrNotFound);
4317 if (!GetIntFromConfig(iTestStepName, KExCapChannels, iExCapChannels))
4319 ERR_PRINTF2(KMsgErrorGetParameter, &KChannel);
4320 StopTest(KErrNotFound);
4323 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
4326 void RA3FDevSoundToneQueryCapsWhilePausePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
4328 switch (iDevSoundState)
4332 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneQueryCapsWhilePausePlayingTest"), EFsmIncorrectErrorPassed));
4333 if (aDevSoundEvent == EEventInitialize)
4335 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
4336 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
4337 if (err != KErrNone)
4339 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
4343 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
4344 iDevSoundState = EStateInitializing;
4348 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
4349 StopTest(aError, EFail);
4353 case EStateInitializing:
4355 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
4357 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
4358 INFO_PRINTF3(_L("Calling CMMFDevSound::PlayToneL using %d Hz during %d secs "), iFrequencyTone1, iDuration);
4359 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
4360 if (err != KErrNone)
4362 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error : %d!"), err);
4366 StartTimer(KMicroSecsTwoSec);
4367 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
4368 iDevSoundState = EStatePlaying;
4370 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
4372 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
4377 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
4378 StopTest(aError, EFail);
4384 if(aDevSoundEvent == EEventTimerComplete)
4386 INFO_PRINTF1(_L("Calling CMMFDevSound::Pause"));
4387 iMMFDevSound->Pause();
4388 INFO_PRINTF1(_L("DevSound State: EStatePause"));
4389 iDevSoundState = EStatePause;
4393 ERR_PRINTF2(_L("DevSound EEventTimerComplete not received as expected. Received event: %d"), aDevSoundEvent);
4394 StopTest(aError, EFail);
4400 if(aDevSoundEvent == EEventTimerComplete)
4402 TMMFCapabilities capabilities;
4403 INFO_PRINTF1(_L("Calling CMMFDevSound::Capabilities"));
4404 capabilities = iMMFDevSound->Capabilities();
4405 PrintSupportedCapabilities(capabilities.iRate, capabilities.iChannels);
4406 if(capabilities.iRate == iExCapRate)
4408 INFO_PRINTF2(_L("The total of possible sample rate values is 0x%08x"), capabilities.iRate);
4409 if(capabilities.iChannels == iExCapChannels)
4411 INFO_PRINTF2(_L("The total of possible channel values is 0x%08x"),capabilities.iChannels );
4416 ERR_PRINTF2(_L("The total of possible channel values failed with 0x%08x"), capabilities.iChannels );
4417 ERR_PRINTF2(_L("Expected value = %d"), iExCapChannels);
4418 StopTest(aError, EFail);
4423 ERR_PRINTF2(_L("The total of possible sample rate values failed with 0x%08x"), capabilities.iRate);
4424 ERR_PRINTF2(_L("Expected value = %d"), iExCapRate);
4425 StopTest(aError, EFail);
4430 ERR_PRINTF2(_L("DevSound EEventTimerComplete not received as expected. Received event: %d"), aDevSoundEvent);
4431 StopTest(aError, EFail);
4437 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
4438 StopTest(aError, EFail);
4443 void RA3FDevSoundToneQueryCapsWhilePausePlayingTest::DoTimerCallback()
4445 INFO_PRINTF1(_L("TimerEvent called"));
4446 if(!iTimeToEnterPauseElapsed)
4448 iTimeToEnterPauseElapsed = ETrue;
4449 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
4450 Fsm(EEventTimerComplete, KErrNone);
4451 iTimeToEnterPauseElapsed = ETrue;
4456 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
4457 Fsm(EEventTimerComplete, KErrNone);
4461 void RA3FDevSoundToneQueryCapsWhilePausePlayingTest::ToneFinished(TInt aError)
4463 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
4464 ERR_PRINTF1(_L("DevSound should not have called ToneFinished because it is supposed to be paused then stopped"));
4465 StopTest(aError, EFail);
4470 *========================================================================================================
4471 * MM-A3F-DEVSOUND-CHRTZ-TONE-0033
4473 RA3FDevSoundToneConfigWhilePausePlayingTest::RA3FDevSoundToneConfigWhilePausePlayingTest(const TDesC& aTestName)
4474 : RA3FDevSoundTestBase(aTestName), iDuration(0),
4475 iFrequencyTone1(0), iTimeToEnterPauseElapsed(EFalse),
4476 iExCapRate(0), iExCapChannels(0)
4480 RA3FDevSoundToneConfigWhilePausePlayingTest* RA3FDevSoundToneConfigWhilePausePlayingTest::NewL(const TDesC& aTestName)
4482 RA3FDevSoundToneConfigWhilePausePlayingTest * self = new(ELeave)RA3FDevSoundToneConfigWhilePausePlayingTest(aTestName);
4486 void RA3FDevSoundToneConfigWhilePausePlayingTest::DoKickoffTestL()
4488 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
4490 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
4491 StopTest(KErrNotFound);
4494 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
4496 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
4497 StopTest(KErrNotFound);
4500 if (!GetIntFromConfig(iTestStepName, KExCapRate, iExCapRate))
4502 ERR_PRINTF2(KMsgErrorGetParameter, &KExCapRate);
4503 StopTest(KErrNotFound);
4506 if (!GetIntFromConfig(iTestStepName, KExCapChannels, iExCapChannels))
4508 ERR_PRINTF2(KMsgErrorGetParameter, &KExCapChannels);
4509 StopTest(KErrNotFound);
4512 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
4515 void RA3FDevSoundToneConfigWhilePausePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
4517 switch (iDevSoundState)
4521 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneConfigWhilePausePlayingTest"), EFsmIncorrectErrorPassed));
4522 if (aDevSoundEvent == EEventInitialize)
4524 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
4525 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
4526 if (err != KErrNone)
4528 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
4532 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
4533 iDevSoundState = EStateInitializing;
4537 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
4538 StopTest(aError, EFail);
4542 case EStateInitializing:
4544 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
4546 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
4547 INFO_PRINTF3(_L("Calling CMMFDevSound::PlayToneL using %d Hz during %d secs "), iFrequencyTone1, iDuration);
4548 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
4549 if (err != KErrNone)
4551 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error : %d!"), err);
4555 StartTimer(KMicroSecsTwoSec);
4556 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
4557 iDevSoundState = EStatePlaying;
4559 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
4561 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
4566 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
4567 StopTest(aError, EFail);
4573 if(aDevSoundEvent == EEventTimerComplete)
4575 INFO_PRINTF1(_L("Calling CMMFDevSound::Pause"));
4576 iMMFDevSound->Pause();
4577 INFO_PRINTF1(_L("DevSound State: EStatePause"));
4578 iDevSoundState = EStatePause;
4582 ERR_PRINTF2(_L("DevSound EEventTimerComplete not received as expected. Received event: %d"), aDevSoundEvent);
4583 StopTest(aError, EFail);
4589 if(aDevSoundEvent == EEventTimerComplete)
4591 TMMFCapabilities capabilitiesGet;
4592 TBuf<KMaxSampleRateStringLength> stringSampleRateGet;
4593 TBuf<KMaxChannelsStringLength> stringChannelsGet;
4594 TBuf<KMaxSampleRateStringLength> stringSampleRateExpected;
4595 TBuf<KMaxChannelsStringLength> stringChannelsExpected;
4596 INFO_PRINTF1(_L("Calling CMMFDevSound::Config while playing"));
4597 capabilitiesGet=iMMFDevSound->Config();
4598 SampleRateFromTUintToString (capabilitiesGet.iRate, stringSampleRateGet);
4599 ChannelsFromTUintToString (capabilitiesGet.iChannels, stringChannelsGet);
4600 SampleRateFromTIntToTMMFSampleRate (iExCapRate, iExSampleRate);
4601 SampleRateFromTUintToString (iExSampleRate, stringSampleRateExpected);
4602 ChannelsFromTUintToString (iExCapChannels, stringChannelsExpected);
4603 if (stringSampleRateExpected.Compare(stringSampleRateGet) == 0)
4605 INFO_PRINTF2(_L("Sample rate value match default as expected with %S"), &stringSampleRateGet);
4606 if (stringChannelsExpected.Compare(stringChannelsGet) == 0)
4608 INFO_PRINTF2(_L("Channel mode value match default as expected with %S"), &stringChannelsGet);
4613 INFO_PRINTF2(_L("Channel mode value failed with %S"), &stringChannelsGet);
4614 ERR_PRINTF2(_L("Expected channel mode %S"), &stringChannelsExpected);
4615 StopTest(aError, EFail);
4620 ERR_PRINTF2(_L("Sample rate value failed with %S"), &stringSampleRateGet);
4621 ERR_PRINTF2(_L("Expected sample rate %S"), &stringSampleRateExpected);
4622 StopTest(aError, EFail);
4627 ERR_PRINTF2(_L("DevSound EEventTimerComplete not received as expected. Received event: %d"), aDevSoundEvent);
4628 StopTest(aError, EFail);
4634 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
4635 StopTest(aError, EFail);
4640 void RA3FDevSoundToneConfigWhilePausePlayingTest::DoTimerCallback()
4642 INFO_PRINTF1(_L("TimerEvent called"));
4643 if(!iTimeToEnterPauseElapsed)
4645 iTimeToEnterPauseElapsed = ETrue;
4646 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
4647 Fsm(EEventTimerComplete, KErrNone);
4648 iTimeToEnterPauseElapsed = ETrue;
4653 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
4654 Fsm(EEventTimerComplete, KErrNone);
4658 void RA3FDevSoundToneConfigWhilePausePlayingTest::ToneFinished(TInt aError)
4660 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
4661 ERR_PRINTF1(_L("DevSound should not have called ToneFinished because it is supposed to be paused then stopped"));
4662 StopTest(aError, EFail);
4667 *========================================================================================================
4668 * MM-A3F-DEVSOUND-CHRTZ-TONE-0034
4670 RA3FDevSoundToneMaxVolumeWhilePausePlayingTest::RA3FDevSoundToneMaxVolumeWhilePausePlayingTest(const TDesC& aTestName)
4671 : RA3FDevSoundTestBase(aTestName), iDuration(0),
4672 iFrequencyTone1(0), iExVolume(0),
4673 iTimeToEnterPauseElapsed(EFalse)
4677 RA3FDevSoundToneMaxVolumeWhilePausePlayingTest* RA3FDevSoundToneMaxVolumeWhilePausePlayingTest::NewL(const TDesC& aTestName)
4679 RA3FDevSoundToneMaxVolumeWhilePausePlayingTest * self = new(ELeave)RA3FDevSoundToneMaxVolumeWhilePausePlayingTest(aTestName);
4683 void RA3FDevSoundToneMaxVolumeWhilePausePlayingTest::DoKickoffTestL()
4685 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
4687 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
4688 StopTest(KErrNotFound);
4691 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
4693 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
4694 StopTest(KErrNotFound);
4697 if (!GetIntFromConfig(iTestStepName, KExVolume, iExVolume))
4699 ERR_PRINTF2(KMsgErrorGetParameter, &KExVolume);
4700 StopTest(KErrNotFound);
4703 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
4706 void RA3FDevSoundToneMaxVolumeWhilePausePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
4708 switch (iDevSoundState)
4712 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneMaxVolumeWhilePausePlayingTest"), EFsmIncorrectErrorPassed));
4713 if (aDevSoundEvent == EEventInitialize)
4715 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
4716 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
4717 if (err != KErrNone)
4719 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
4723 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
4724 iDevSoundState = EStateInitializing;
4728 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
4729 StopTest(aError, EFail);
4733 case EStateInitializing:
4735 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
4737 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
4738 INFO_PRINTF3(_L("Calling CMMFDevSound::PlayToneL using %d Hz during %d secs "), iFrequencyTone1, iDuration);
4739 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
4740 if (err != KErrNone)
4742 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error : %d!"), err);
4746 StartTimer(KMicroSecsTwoSec);
4747 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
4748 iDevSoundState = EStatePlaying;
4750 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
4752 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
4757 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
4758 StopTest(aError, EFail);
4764 if(aDevSoundEvent == EEventTimerComplete)
4766 INFO_PRINTF1(_L("Calling CMMFDevSound::Pause"));
4767 iMMFDevSound->Pause();
4768 INFO_PRINTF1(_L("DevSound State: EStatePause"));
4769 iDevSoundState = EStatePause;
4773 ERR_PRINTF2(_L("DevSound EEventTimerComplete not received as expected. Received event: %d"), aDevSoundEvent);
4774 StopTest(aError, EFail);
4780 if(aDevSoundEvent == EEventTimerComplete)
4782 INFO_PRINTF1(_L("Calling CMMFDevSound::MaxVolume"));
4783 TInt maxVolumeGet = iMMFDevSound->MaxVolume();
4784 if (maxVolumeGet == iExVolume)
4786 INFO_PRINTF2(_L("The max device supported volume is %d."), maxVolumeGet);
4791 INFO_PRINTF2(_L("The max device supported volume failed with %d."), maxVolumeGet);
4792 ERR_PRINTF2(_L("Expected value = %d."), iExVolume);
4793 StopTest(aError, EFail);
4798 ERR_PRINTF2(_L("DevSound EEventTimerComplete not received as expected. Received event: %d"), aDevSoundEvent);
4799 StopTest(aError, EFail);
4805 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
4806 StopTest(aError, EFail);
4811 void RA3FDevSoundToneMaxVolumeWhilePausePlayingTest::DoTimerCallback()
4813 INFO_PRINTF1(_L("TimerEvent called"));
4814 if(!iTimeToEnterPauseElapsed)
4816 iTimeToEnterPauseElapsed = ETrue;
4817 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
4818 Fsm(EEventTimerComplete, KErrNone);
4819 iTimeToEnterPauseElapsed = ETrue;
4824 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
4825 Fsm(EEventTimerComplete, KErrNone);
4829 void RA3FDevSoundToneMaxVolumeWhilePausePlayingTest::ToneFinished(TInt aError)
4831 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
4832 ERR_PRINTF1(_L("DevSound should not have called ToneFinished because it is supposed to be paused then stopped"));
4833 StopTest(aError, EFail);
4837 *========================================================================================================
4838 * MM-A3F-DEVSOUND-CHRTZ-TONE-0035
4840 RA3FDevSoundToneVolumeWhilePausePlayingTest::RA3FDevSoundToneVolumeWhilePausePlayingTest(const TDesC& aTestName)
4841 : RA3FDevSoundTestBase(aTestName), iDuration(0),
4842 iFrequencyTone1(0), iExVolume(0),
4843 iTimeToEnterPauseElapsed(EFalse)
4847 RA3FDevSoundToneVolumeWhilePausePlayingTest* RA3FDevSoundToneVolumeWhilePausePlayingTest::NewL(const TDesC& aTestName)
4849 RA3FDevSoundToneVolumeWhilePausePlayingTest * self = new(ELeave)RA3FDevSoundToneVolumeWhilePausePlayingTest(aTestName);
4853 void RA3FDevSoundToneVolumeWhilePausePlayingTest::DoKickoffTestL()
4855 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
4857 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
4858 StopTest(KErrNotFound);
4861 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
4863 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
4864 StopTest(KErrNotFound);
4867 if (!GetIntFromConfig(iTestStepName, KExVolume, iExVolume))
4869 ERR_PRINTF2(KMsgErrorGetParameter, &KExVolume);
4870 StopTest(KErrNotFound);
4873 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
4876 void RA3FDevSoundToneVolumeWhilePausePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
4878 switch (iDevSoundState)
4882 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneVolumeWhilePausePlayingTest"), EFsmIncorrectErrorPassed));
4883 if (aDevSoundEvent == EEventInitialize)
4885 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
4886 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
4887 if (err != KErrNone)
4889 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
4893 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
4894 iDevSoundState = EStateInitializing;
4898 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
4899 StopTest(aError, EFail);
4903 case EStateInitializing:
4905 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
4907 INFO_PRINTF3(_L("Calling CMMFDevSound::PlayToneL using %d Hz during %d secs "), iFrequencyTone1, iDuration);
4908 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
4909 if (err != KErrNone)
4911 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error : %d!"), err);
4915 StartTimer(KMicroSecsTwoSec);
4916 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
4917 iDevSoundState = EStatePlaying;
4919 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
4921 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
4926 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
4927 StopTest(aError, EFail);
4933 if(aDevSoundEvent == EEventTimerComplete)
4935 INFO_PRINTF1(_L("Calling CMMFDevSound::Pause"));
4936 iMMFDevSound->Pause();
4937 INFO_PRINTF1(_L("DevSound State: EStatePause"));
4938 iDevSoundState = EStatePause;
4942 ERR_PRINTF2(_L("DevSound EEventTimerComplete not received as expected. Received event: %d"), aDevSoundEvent);
4943 StopTest(aError, EFail);
4949 if(aDevSoundEvent == EEventTimerComplete)
4951 INFO_PRINTF1(_L("Calling CMMFDevSound::Volume"));
4952 TInt maxVolumeGet = iMMFDevSound->Volume();
4953 if (maxVolumeGet == iExVolume)
4955 INFO_PRINTF2(_L("The device default supported volume value is %d."), maxVolumeGet);
4960 INFO_PRINTF2(_L("The device default supported volume value failed with %d."), maxVolumeGet);
4961 ERR_PRINTF2(_L("Expected value = %d."), iExVolume);
4962 StopTest(aError, EFail);
4967 ERR_PRINTF2(_L("DevSound EEventTimerComplete not received as expected. Received event: %d"), aDevSoundEvent);
4968 StopTest(aError, EFail);
4974 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
4975 StopTest(aError, EFail);
4980 void RA3FDevSoundToneVolumeWhilePausePlayingTest::DoTimerCallback()
4982 INFO_PRINTF1(_L("TimerEvent called"));
4983 if(!iTimeToEnterPauseElapsed)
4985 iTimeToEnterPauseElapsed = ETrue;
4986 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
4987 Fsm(EEventTimerComplete, KErrNone);
4988 iTimeToEnterPauseElapsed = ETrue;
4993 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
4994 Fsm(EEventTimerComplete, KErrNone);
4998 void RA3FDevSoundToneVolumeWhilePausePlayingTest::ToneFinished(TInt aError)
5000 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
5001 ERR_PRINTF1(_L("DevSound should not have called ToneFinished because it is supposed to be paused then stopped"));
5002 StopTest(aError, EFail);
5006 *========================================================================================================
5007 * MM-A3F-DEVSOUND-CHRTZ-TONE-0036
5009 RA3FDevSoundTonePlayToneOnceTest::RA3FDevSoundTonePlayToneOnceTest(const TDesC& aTestName)
5010 : RA3FDevSoundTestBase(aTestName),
5011 iDuration(0), iFrequencyTone1(0)
5015 RA3FDevSoundTonePlayToneOnceTest* RA3FDevSoundTonePlayToneOnceTest::NewL(const TDesC& aTestName)
5017 RA3FDevSoundTonePlayToneOnceTest * self = new(ELeave)RA3FDevSoundTonePlayToneOnceTest(aTestName);
5021 void RA3FDevSoundTonePlayToneOnceTest::DoKickoffTestL()
5023 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
5025 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
5026 StopTest(KErrNotFound);
5029 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
5031 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
5032 StopTest(KErrNotFound);
5037 void RA3FDevSoundTonePlayToneOnceTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
5039 switch (iDevSoundState)
5043 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundTonePlayToneOnceTest"), EFsmIncorrectErrorPassed));
5044 if (aDevSoundEvent == EEventInitialize)
5046 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
5047 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
5048 if (err != KErrNone)
5050 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
5054 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
5055 iDevSoundState = EStateInitializing;
5059 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
5060 StopTest(aError, EFail);
5064 case EStateInitializing:
5066 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
5068 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
5069 INFO_PRINTF3(_L("Calling CMMFDevSound::PlayToneL using %d Hz during %d secs "), iFrequencyTone1, iDuration);
5070 iStartTime.HomeTime();
5071 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
5072 if (err != KErrNone)
5074 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL failed with error : %d!"), err);
5077 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
5078 iDevSoundState = EStatePlaying;
5080 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
5082 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
5087 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
5088 StopTest(aError, EFail);
5094 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
5095 StopTest(aError, EFail);
5100 void RA3FDevSoundTonePlayToneOnceTest::ToneFinished(TInt aError)
5102 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
5103 if (aError == KErrUnderflow)
5105 iEndTime.HomeTime();
5106 iPlayToneTime = iEndTime.MicroSecondsFrom(iStartTime);
5107 TInt totalExpectedReproductionTime = iDuration * KMicroSecsInOneSec;
5108 if(iPlayToneTime < totalExpectedReproductionTime + KPlayVarianceTime && iPlayToneTime > totalExpectedReproductionTime - KPlayVarianceTime)
5110 INFO_PRINTF2(_L("Play time is %Ld microseconds"), iPlayToneTime.Int64());
5115 ERR_PRINTF3(_L("Play time is %Ld microseconds and it should have been %d microseconds"), iPlayToneTime.Int64(), totalExpectedReproductionTime);
5116 StopTest(KErrNone, EFail);
5121 ERR_PRINTF2(_L("DevSound called ToneFinished with error = %d"), aError);
5122 ERR_PRINTF2(_L("Expected error = %d"), KErrUnderflow);
5123 StopTest(aError, EFail);
5128 *========================================================================================================
5129 * MM-A3F-DEVSOUND-CHRTZ-TONE-0037
5131 RA3FDevSoundTonePlayDualToneTest::RA3FDevSoundTonePlayDualToneTest(const TDesC& aTestName)
5132 : RA3FDevSoundTestBase(aTestName),
5133 iDuration(0), iFrequencyTone1(0),
5137 RA3FDevSoundTonePlayDualToneTest* RA3FDevSoundTonePlayDualToneTest::NewL(const TDesC& aTestName)
5139 RA3FDevSoundTonePlayDualToneTest * self = new(ELeave)RA3FDevSoundTonePlayDualToneTest(aTestName);
5142 void RA3FDevSoundTonePlayDualToneTest::DoKickoffTestL()
5144 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
5146 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
5147 StopTest(KErrNotFound);
5150 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
5152 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
5153 StopTest(KErrNotFound);
5156 if (!GetIntFromConfig(iTestStepName, KFrequencyTone2, iFrequencyTone2))
5158 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone2);
5159 StopTest(KErrNotFound);
5164 void RA3FDevSoundTonePlayDualToneTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
5166 switch (iDevSoundState)
5170 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundTonePlayDualToneTest"), EFsmIncorrectErrorPassed));
5171 if (aDevSoundEvent == EEventInitialize)
5173 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
5174 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
5175 if (err != KErrNone)
5177 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
5181 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
5182 iDevSoundState = EStateInitializing;
5186 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
5187 StopTest(aError, EFail);
5191 case EStateInitializing:
5193 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
5195 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
5196 iStartTime.HomeTime();
5197 INFO_PRINTF4(_L("Calling CMMFDevSound::PlayDualToneL using %d Hz %d Hz during %d secs "), iFrequencyTone1, iFrequencyTone2, iDuration);
5198 TRAPD(err, iMMFDevSound->PlayDualToneL(iFrequencyTone1, iFrequencyTone2, iDuration*KMicroSecsInOneSec));
5199 if (err != KErrNone)
5201 ERR_PRINTF2(_L("CMMFDevSound::PlayDualToneL left with error : %d!"), err);
5205 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
5206 iDevSoundState = EStatePlaying;
5208 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
5210 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
5215 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
5216 StopTest(aError, EFail);
5222 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
5223 StopTest(aError, EFail);
5228 void RA3FDevSoundTonePlayDualToneTest::ToneFinished(TInt aError)
5230 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
5231 if (aError == KErrUnderflow)
5233 iEndTime.HomeTime();
5234 iPlayToneTime = iEndTime.MicroSecondsFrom(iStartTime);
5235 TInt totalExpectedReproductionTime = iDuration * KMicroSecsInOneSec;
5236 if(iPlayToneTime < totalExpectedReproductionTime + KPlayVarianceTime && iPlayToneTime > totalExpectedReproductionTime - KPlayVarianceTime)
5238 INFO_PRINTF2(_L("Play time is %Ld microseconds"), iPlayToneTime.Int64());
5243 ERR_PRINTF3(_L("Play time is %Ld microseconds and it should have been %d microseconds"), iPlayToneTime.Int64(), totalExpectedReproductionTime);
5244 StopTest(KErrNone, EFail);
5249 ERR_PRINTF2(_L("DevSound called ToneFinished with error = %d"), aError);
5250 ERR_PRINTF2(_L("Expected error = %d"), KErrUnderflow);
5251 StopTest(aError, EFail);
5256 *========================================================================================================
5257 * MM-A3F-DEVSOUND-CHRTZ-TONE-0038
5259 RA3FDevSoundTonePlayDTMFToneTest::RA3FDevSoundTonePlayDTMFToneTest(const TDesC& aTestName)
5260 : RA3FDevSoundTestBase(aTestName),iDTMFString(KNullDesC),
5261 iDTMFPauses(0), iDTMFTones(0)
5266 RA3FDevSoundTonePlayDTMFToneTest* RA3FDevSoundTonePlayDTMFToneTest::NewL(const TDesC& aTestName)
5268 RA3FDevSoundTonePlayDTMFToneTest * self = new(ELeave)RA3FDevSoundTonePlayDTMFToneTest(aTestName);
5272 void RA3FDevSoundTonePlayDTMFToneTest::DoKickoffTestL()
5275 if (!GetStringFromConfig(iTestStepName, KDTMFString, DTMF))
5277 ERR_PRINTF2(KMsgErrorGetParameter, &KDTMFString);
5278 StopTest(KErrNotFound);
5281 iDTMFString.Copy(DTMF);
5282 for(TInt i =0 ; i< iDTMFString.Length() ; i++)
5284 if (iDTMFString[i] == ',')
5295 void RA3FDevSoundTonePlayDTMFToneTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
5297 switch (iDevSoundState)
5301 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundTonePlayDTMFToneTest"), EFsmIncorrectErrorPassed));
5302 if (aDevSoundEvent == EEventInitialize)
5304 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
5305 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
5306 if (err != KErrNone)
5308 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
5312 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
5313 iDevSoundState = EStateInitializing;
5317 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
5318 StopTest(aError, EFail);
5322 case EStateInitializing:
5324 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
5326 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
5327 iStartTime.HomeTime();
5328 INFO_PRINTF2(_L("Calling CMMFDevSound::PlayDTMFStringL %S"), &iDTMFString);
5329 TRAPD(err, iMMFDevSound->PlayDTMFStringL(iDTMFString));
5330 if (err != KErrNone)
5332 ERR_PRINTF2(_L("CMMFDevSound::PlayDTMFStringL left with error : %d!"), err);
5336 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
5337 iDevSoundState = EStatePlaying;
5339 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
5341 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
5346 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
5347 StopTest(aError, EFail);
5353 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
5354 StopTest(aError, EFail);
5359 void RA3FDevSoundTonePlayDTMFToneTest::ToneFinished(TInt aError)
5361 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
5362 if (aError == KErrUnderflow)
5364 iEndTime.HomeTime();
5365 iPlayToneTime = iEndTime.MicroSecondsFrom(iStartTime);
5366 TInt defaultToneOn = 250000;
5367 TInt defaultToneOff = 50000;
5368 TInt defaultPauseLength = 250000;
5369 TInt totalExpectedReproductionTime = defaultToneOn*iDTMFTones + defaultToneOff * iDTMFTones + iDTMFPauses * defaultPauseLength;
5370 if (iPlayToneTime < totalExpectedReproductionTime + KPlayVarianceTime && iPlayToneTime > totalExpectedReproductionTime - KPlayVarianceTime)
5372 INFO_PRINTF2(_L("Play time is %Ld microseconds"), iPlayToneTime.Int64());
5377 ERR_PRINTF2(_L("Calling CMMFDevSound::PlayDTMFStringL failed with %Ld"), iPlayToneTime.Int64());
5378 ERR_PRINTF2(_L("Expected time %d"), totalExpectedReproductionTime);
5379 StopTest(KErrNone, EFail);
5384 ERR_PRINTF2(_L("DevSound called ToneFinished with error = %d"), aError);
5385 ERR_PRINTF2(_L("Expected error = %d"), KErrUnderflow);
5386 StopTest(aError, EFail);
5391 *========================================================================================================
5392 * MM-A3F-DEVSOUND-CHRTZ-TONE-0039
5394 RA3FDevSoundTonePlayToneSequenceTest::RA3FDevSoundTonePlayToneSequenceTest(const TDesC& aTestName)
5395 : RA3FDevSoundTestBase(aTestName)
5399 RA3FDevSoundTonePlayToneSequenceTest* RA3FDevSoundTonePlayToneSequenceTest::NewL(const TDesC& aTestName)
5401 RA3FDevSoundTonePlayToneSequenceTest * self = new(ELeave)RA3FDevSoundTonePlayToneSequenceTest(aTestName);
5405 void RA3FDevSoundTonePlayToneSequenceTest::DoKickoffTestL()
5409 void RA3FDevSoundTonePlayToneSequenceTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
5411 switch(iDevSoundState)
5415 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundTonePlayToneSequenceTest"), EFsmIncorrectErrorPassed));
5416 if (aDevSoundEvent == EEventInitialize)
5418 INFO_PRINTF1(_L("Calling MMFDevSound::InitializeL"));
5419 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
5420 if (err != KErrNone)
5422 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
5426 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
5427 iDevSoundState = EStateInitializing;
5431 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
5432 StopTest(aError, EFail);
5436 case EStateInitializing:
5438 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
5440 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
5441 TUint8* tablePointer = const_cast<TUint8*>(&(KFixedSequenceTestSequenceDataX[0]));
5442 TPtrC8 KFixedSequenceData(tablePointer, sizeof(KFixedSequenceTestSequenceDataX));
5443 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayToneSequenceL"));
5444 TRAPD(err, iMMFDevSound->PlayToneSequenceL(KFixedSequenceData));
5445 if (err != KErrNone)
5447 ERR_PRINTF2(_L("Play tone sequence failed with error = %d!"), err);
5451 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
5452 iDevSoundState = EStatePlaying;
5454 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
5456 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
5461 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
5462 StopTest(aError, EFail);
5468 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
5469 StopTest(aError, EFail);
5475 *========================================================================================================
5476 * MM-A3F-DEVSOUND-CHRTZ-TONE-0040
5478 RA3FDevSoundToneNewToneRequestWhilePlayingTest::RA3FDevSoundToneNewToneRequestWhilePlayingTest(const TDesC& aTestName)
5479 : RA3FDevSoundTestBase(aTestName),
5480 iDuration(0), iFrequencyTone1(0)
5484 RA3FDevSoundToneNewToneRequestWhilePlayingTest* RA3FDevSoundToneNewToneRequestWhilePlayingTest::NewL(const TDesC& aTestName)
5486 RA3FDevSoundToneNewToneRequestWhilePlayingTest * self = new(ELeave)RA3FDevSoundToneNewToneRequestWhilePlayingTest(aTestName);
5490 void RA3FDevSoundToneNewToneRequestWhilePlayingTest::DoKickoffTestL()
5492 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
5494 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
5495 StopTest(KErrNotFound);
5498 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
5500 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
5501 StopTest(KErrNotFound);
5504 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
5507 void RA3FDevSoundToneNewToneRequestWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
5509 switch (iDevSoundState)
5513 if (aDevSoundEvent == EEventInitialize)
5515 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneNewToneRequestWhilePlayingTest"), EFsmIncorrectErrorPassed));
5516 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
5517 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
5518 if (err != KErrNone)
5520 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
5524 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
5525 iDevSoundState = EStateInitializing;
5529 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
5530 StopTest(aError, EFail);
5534 case EStateInitializing:
5536 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
5538 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
5539 iStartTime.HomeTime();
5540 INFO_PRINTF3(_L("Calling CMMFDevSound::PlayToneL using %d Hz during %d secs "), iFrequencyTone1, iDuration);
5541 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
5542 if (err != KErrNone)
5544 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error : %d!"), err);
5548 StartTimer(KMicroSecsTwoSec);
5549 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
5550 iDevSoundState = EStatePlaying;
5552 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
5554 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
5559 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
5560 StopTest(aError, EFail);
5566 if(aDevSoundEvent == EEventTimerComplete)
5568 INFO_PRINTF3(_L("Calling CMMFDevSound::PlayToneL using %d Hz during %d secs "), iFrequencyTone1, iDuration);
5569 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
5570 if (err == KErrNone)
5572 INFO_PRINTF2(_L("CMMFDevSound::PlayToneL left with the expected error = %d"), err);
5576 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error = %d"), err);
5577 ERR_PRINTF2(_L("Expected error value = %d!"), KErrNotReady);
5586 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
5587 StopTest(aError, EFail);
5592 void RA3FDevSoundToneNewToneRequestWhilePlayingTest::DoTimerCallback()
5594 INFO_PRINTF1(_L("TimerEvent called"));
5596 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
5597 Fsm(EEventTimerComplete, KErrNone);
5600 void RA3FDevSoundToneNewToneRequestWhilePlayingTest::ToneFinished(TInt aError)
5602 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
5603 if (aError == KErrUnderflow)
5605 iEndTime.HomeTime();
5606 iPlayToneTime = iEndTime.MicroSecondsFrom(iStartTime);
5607 TInt totalExpectedReproductionTime = iDuration * KMicroSecsInOneSec;
5608 if(iPlayToneTime < totalExpectedReproductionTime + KPlayVarianceTime && iPlayToneTime > totalExpectedReproductionTime - KPlayVarianceTime)
5610 INFO_PRINTF2(_L("Play time is %Ld microseconds"), iPlayToneTime.Int64());
5615 ERR_PRINTF3(_L("Play time is %Ld microseconds and it should have been %d microseconds"), iPlayToneTime.Int64(), totalExpectedReproductionTime);
5616 StopTest(KErrNone, EFail);
5621 ERR_PRINTF2(_L("DevSound called ToneFinished with error = %d"), aError);
5622 ERR_PRINTF2(_L("Expected error = %d"), KErrUnderflow);
5623 StopTest(aError, EFail);
5628 *========================================================================================================
5629 * MM-A3F-DEVSOUND-CHRTZ-TONE-0041
5631 RA3FDevSoundTonePreemptionTest::RA3FDevSoundTonePreemptionTest(const TDesC& aTestName)
5632 : RA3FDevSoundTestBase(aTestName),
5633 iDuration(0), iFrequencyTone1(0)
5637 RA3FDevSoundTonePreemptionTest* RA3FDevSoundTonePreemptionTest::NewL(const TDesC& aTestName)
5639 RA3FDevSoundTonePreemptionTest * self = new(ELeave)RA3FDevSoundTonePreemptionTest(aTestName);
5643 void RA3FDevSoundTonePreemptionTest::DoKickoffTestL()
5645 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
5647 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
5648 StopTest(KErrNotFound);
5651 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
5653 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
5654 StopTest(KErrNotFound);
5657 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
5658 iDevsoundToneClient = CA3FDevSoundToneClient::NewL(*this);
5661 void RA3FDevSoundTonePreemptionTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
5663 switch (iDevSoundState)
5667 if (aDevSoundEvent == EEventInitialize)
5669 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundTonePreemptionTest"), EFsmIncorrectErrorPassed));
5670 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
5671 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
5672 if (err != KErrNone)
5674 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
5678 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
5679 iDevSoundState = EStateInitializing;
5683 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
5684 StopTest(aError, EFail);
5688 case EStateInitializing:
5690 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
5692 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
5693 TMMFPrioritySettings prioritySettings;
5694 prioritySettings.iPriority = KMinimumPriority;
5695 prioritySettings.iPref = EMdaPriorityPreferenceTime;
5696 prioritySettings.iState = EMMFStateIdle;
5697 iMMFDevSound->SetPrioritySettings(prioritySettings);
5698 INFO_PRINTF3(_L("Calling CMMFDevSound::PlayToneL using %d Hz during %d secs "), iFrequencyTone1, iDuration);
5699 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
5700 if (err != KErrNone)
5702 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error : %d!"), err);
5706 StartTimer(KMicroSecsTwoSec);
5707 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
5708 iDevSoundState = EStatePlaying;
5710 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
5712 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
5717 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
5718 StopTest(aError, EFail);
5724 if(aDevSoundEvent == EEventTimerComplete)
5726 INFO_PRINTF1(_L("Starting lower priority devsound client"));
5727 iDevsoundToneClient->SetPriority(KMaximumPriority);
5728 TInt err = iDevsoundToneClient->InitTonePlay(iFrequencyTone1, iDuration*KMicroSecsInOneSec);
5731 ERR_PRINTF1(_L("Initialization to play tone thru second devsound client failed"));
5739 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
5740 StopTest(aError, EFail);
5745 void RA3FDevSoundTonePreemptionTest::DoTimerCallback()
5747 INFO_PRINTF1(_L("TimerEvent called"));
5749 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
5750 Fsm(EEventTimerComplete, KErrNone);
5753 void RA3FDevSoundTonePreemptionTest::ToneFinished(TInt aError)
5755 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
5756 if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied)
5758 INFO_PRINTF1(_L("========== Preempting 1st DevSound Instance=========="));
5762 ERR_PRINTF2(_L("First DevSound client called ToneFinished() and failed with error = %d "), aError);
5763 ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied);
5764 StopTest(aError, EFail);
5769 void RA3FDevSoundTonePreemptionTest::ClientInitializeCompleteCallback(TInt aError)
5771 INFO_PRINTF1(_L("========== Second Client DevSound InitializeComplete() callback =========="));
5772 if (aError != KErrNone)
5774 ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError);
5779 INFO_PRINTF1(_L("Starting to play audio thru second devsound client"));
5780 TInt err = iDevsoundToneClient->PlayTone();
5781 if (err != KErrNone)
5783 ERR_PRINTF2(_L("Starting to play tones thru second devsound client left with error = %d"), err);
5789 void RA3FDevSoundTonePreemptionTest::ClientToneFinishedCallback(TInt aError)
5791 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
5792 if (aError == KErrUnderflow)
5794 INFO_PRINTF2(_L("Second DevSound instance called ToneFinished with error = %d"), aError);
5795 StopTest(aError,EPass);
5799 ERR_PRINTF2(_L("Second DevSound instance called ToneFinished with error = %d that was NOT expected"), aError);
5800 ERR_PRINTF2(_L("Expected error = %d"), aError);
5806 *========================================================================================================
5807 * MM-A3F-DEVSOUND-CHRTZ-TONE-0042
5809 RA3FDevSoundToneRejectionTest::RA3FDevSoundToneRejectionTest(const TDesC& aTestName)
5810 : RA3FDevSoundTestBase(aTestName),
5811 iDuration(0), iFrequencyTone1(0)
5815 RA3FDevSoundToneRejectionTest* RA3FDevSoundToneRejectionTest::NewL(const TDesC& aTestName)
5817 RA3FDevSoundToneRejectionTest * self = new(ELeave)RA3FDevSoundToneRejectionTest(aTestName);
5821 void RA3FDevSoundToneRejectionTest::DoKickoffTestL()
5823 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
5825 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
5826 StopTest(KErrNotFound);
5829 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
5831 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
5832 StopTest(KErrNotFound);
5835 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
5836 iDevsoundToneClient = CA3FDevSoundToneClient::NewL(*this);
5839 void RA3FDevSoundToneRejectionTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
5841 switch (iDevSoundState)
5845 if (aDevSoundEvent == EEventInitialize)
5847 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundToneRejectionTest"), EFsmIncorrectErrorPassed));
5848 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
5849 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
5850 if (err != KErrNone)
5852 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
5856 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
5857 iDevSoundState = EStateInitializing;
5861 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
5862 StopTest(aError, EFail);
5866 case EStateInitializing:
5868 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
5870 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
5871 TMMFPrioritySettings prioritySettings;
5872 prioritySettings.iPriority = KMinimumPriority;
5873 prioritySettings.iPref = EMdaPriorityPreferenceTime;
5874 prioritySettings.iState = EMMFStateIdle;
5875 iMMFDevSound->SetPrioritySettings(prioritySettings);
5876 INFO_PRINTF3(_L("Calling CMMFDevSound::PlayToneL using %d Hz during %d secs "), iFrequencyTone1, iDuration);
5877 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
5878 if (err != KErrNone)
5880 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error : %d!"), err);
5884 StartTimer(KMicroSecsTwoSec);
5885 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
5886 iDevSoundState = EStatePlaying;
5888 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
5890 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
5895 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
5896 StopTest(aError, EFail);
5902 if(aDevSoundEvent == EEventTimerComplete)
5904 INFO_PRINTF1(_L("Starting lower priority devsound client"));
5905 iDevsoundToneClient->SetPriority(KMinimumPriority);
5906 TInt err = iDevsoundToneClient->InitTonePlay(iFrequencyTone1, iDuration*KMicroSecsInOneSec);
5909 ERR_PRINTF1(_L("Initialization to play tone thru second devsound client failed"));
5917 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
5918 StopTest(aError, EFail);
5923 void RA3FDevSoundToneRejectionTest::DoTimerCallback()
5925 INFO_PRINTF1(_L("TimerEvent called"));
5927 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
5928 Fsm(EEventTimerComplete, KErrNone);
5931 void RA3FDevSoundToneRejectionTest::ToneFinished(TInt aError)
5933 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
5934 if (aError == KErrUnderflow)
5936 INFO_PRINTF2(_L("First DevSound instance called ToneFinished with error = %d"), aError);
5937 StopTest(aError,EPass);
5941 ERR_PRINTF2(_L("First DevSound instance called ToneFinished with error = %d that was NOT expected"), aError);
5942 ERR_PRINTF2(_L("Expected error = %d"), aError);
5943 StopTest(aError, EFail);
5948 void RA3FDevSoundToneRejectionTest::ClientInitializeCompleteCallback(TInt aError)
5950 INFO_PRINTF1(_L("========== Second Client DevSound InitializeComplete() callback =========="));
5951 if (aError != KErrNone)
5953 ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError);
5958 INFO_PRINTF1(_L("Starting to play audio thru second devsound client"));
5959 TInt err = iDevsoundToneClient->PlayTone();
5960 if (err != KErrNone)
5962 ERR_PRINTF2(_L("Starting to play tones thru second devsound client left with error = %d"), err);
5968 void RA3FDevSoundToneRejectionTest::ClientToneFinishedCallback(TInt aError)
5970 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
5971 if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied)
5973 INFO_PRINTF1(_L("========== Rejection 2nd DevSound Instance=========="));
5977 ERR_PRINTF2(_L("Second DevSound client called ToneFinished() and failed with error = %d "), aError);
5978 ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied);
5979 StopTest(aError, EFail);
5984 *========================================================================================================
5985 * MM-A3F-DEVSOUND-CHRTZ-TONE-0043
5987 RA3FDevSoundTonePlayToneOnceAndStopTest::RA3FDevSoundTonePlayToneOnceAndStopTest(const TDesC& aTestName)
5988 : RA3FDevSoundTestBase(aTestName),
5989 iDuration(0), iFrequencyTone1(0),
5990 iToneStopped(EFalse)
5994 RA3FDevSoundTonePlayToneOnceAndStopTest* RA3FDevSoundTonePlayToneOnceAndStopTest::NewL(const TDesC& aTestName)
5996 RA3FDevSoundTonePlayToneOnceAndStopTest * self = new(ELeave)RA3FDevSoundTonePlayToneOnceAndStopTest(aTestName);
6000 void RA3FDevSoundTonePlayToneOnceAndStopTest::DoKickoffTestL()
6002 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
6004 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
6005 StopTest(KErrNotFound);
6008 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
6010 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
6011 StopTest(KErrNotFound);
6014 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
6017 void RA3FDevSoundTonePlayToneOnceAndStopTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
6019 switch (iDevSoundState)
6023 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundTonePlayToneOnceAndStopTest"), EFsmIncorrectErrorPassed));
6024 if (aDevSoundEvent == EEventInitialize)
6026 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
6027 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
6028 if (err != KErrNone)
6030 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
6034 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
6035 iDevSoundState = EStateInitializing;
6039 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
6040 StopTest(aError, EFail);
6044 case EStateInitializing:
6046 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
6050 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
6051 INFO_PRINTF3(_L("Calling CMMFDevSound::PlayToneL using %d Hz during %d secs "), iFrequencyTone1, iDuration);
6052 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
6053 if (err != KErrNone)
6055 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error : %d!"), err);
6059 StartTimer(KMicroSecsTwoSec);
6060 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
6061 iDevSoundState = EStatePlaying;
6065 INFO_PRINTF1(_L("Calling CMMFDevSound::Stop succeeded"));
6069 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
6071 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
6076 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
6077 StopTest(aError, EFail);
6083 if(aDevSoundEvent == EEventTimerComplete)
6085 INFO_PRINTF1(_L("Calling CMMFDevSound::Stop"));
6086 iMMFDevSound->Stop();
6090 ERR_PRINTF2(_L("DevSound EEventTimerComplete not received as expected. Received event: %d"), aDevSoundEvent);
6091 StopTest(aError, EFail);
6097 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
6098 StopTest(aError, EFail);
6104 void RA3FDevSoundTonePlayToneOnceAndStopTest::DoTimerCallback()
6106 INFO_PRINTF1(_L("TimerEvent called"));
6107 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
6110 Fsm(EEventTimerComplete, KErrNone);
6111 iToneStopped = ETrue;
6116 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
6117 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
6118 if (err != KErrNone)
6120 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
6121 ERR_PRINTF2(_L("Expected error = %d"), KErrNone);
6124 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
6125 iDevSoundState = EStateInitializing;
6129 void RA3FDevSoundTonePlayToneOnceAndStopTest::ToneFinished(TInt aError)
6131 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
6132 ERR_PRINTF1(_L("DevSound should not have called ToneFinished because it is supposed to have been stopped"));
6133 StopTest(aError, EFail);
6138 *========================================================================================================
6139 * MM-A3F-DEVSOUND-CHRTZ-TONE-0044
6141 RA3FDevSoundTonePlayDualToneOnceAndStopTest::RA3FDevSoundTonePlayDualToneOnceAndStopTest(const TDesC& aTestName)
6142 : RA3FDevSoundTestBase(aTestName),
6143 iDuration(0), iFrequencyTone1(0),
6144 iFrequencyTone2(0), iToneStopped(EFalse)
6148 RA3FDevSoundTonePlayDualToneOnceAndStopTest* RA3FDevSoundTonePlayDualToneOnceAndStopTest::NewL(const TDesC& aTestName)
6150 RA3FDevSoundTonePlayDualToneOnceAndStopTest * self = new(ELeave)RA3FDevSoundTonePlayDualToneOnceAndStopTest(aTestName);
6154 void RA3FDevSoundTonePlayDualToneOnceAndStopTest::DoKickoffTestL()
6156 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
6158 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
6159 StopTest(KErrNotFound);
6162 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
6164 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
6165 StopTest(KErrNotFound);
6168 if (!GetIntFromConfig(iTestStepName, KFrequencyTone2, iFrequencyTone2))
6170 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone2);
6171 StopTest(KErrNotFound);
6174 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
6177 void RA3FDevSoundTonePlayDualToneOnceAndStopTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
6179 switch (iDevSoundState)
6183 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundTonePlayDualToneOnceAndStopTest"), EFsmIncorrectErrorPassed));
6184 if (aDevSoundEvent == EEventInitialize)
6186 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
6187 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
6188 if (err != KErrNone)
6190 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
6194 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
6195 iDevSoundState = EStateInitializing;
6199 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
6200 StopTest(aError, EFail);
6204 case EStateInitializing:
6206 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
6210 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
6211 INFO_PRINTF4(_L("Calling CMMFDevSound::PlayDualToneL using %d Hz %d Hz during %d secs "), iFrequencyTone1, iFrequencyTone2, iDuration);
6212 TRAPD(err, iMMFDevSound->PlayDualToneL(iFrequencyTone1, iFrequencyTone2, iDuration*KMicroSecsInOneSec));
6213 if (err != KErrNone)
6215 ERR_PRINTF2(_L("CMMFDevSound::PlayDualToneL left with error = %d!"), err);
6219 StartTimer(KMicroSecsTwoSec);
6220 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
6221 iDevSoundState = EStatePlaying;
6225 INFO_PRINTF1(_L("Calling CMMFDevSound::Stop succeeded"));
6229 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
6231 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
6236 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
6237 StopTest(aError, EFail);
6243 if(aDevSoundEvent == EEventTimerComplete)
6245 INFO_PRINTF1(_L("Calling CMMFDevSound::Stop"));
6246 iMMFDevSound->Stop();
6250 ERR_PRINTF2(_L("DevSound EEventTimerComplete not received as expected. Received event: %d"), aDevSoundEvent);
6251 StopTest(aError, EFail);
6257 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
6258 StopTest(aError, EFail);
6263 void RA3FDevSoundTonePlayDualToneOnceAndStopTest::DoTimerCallback()
6265 INFO_PRINTF1(_L("TimerEvent called"));
6266 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
6269 Fsm(EEventTimerComplete, KErrNone);
6270 iToneStopped = ETrue;
6275 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
6276 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
6277 if (err != KErrNone)
6279 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
6280 ERR_PRINTF2(_L("Expected error = %d"), KErrNone);
6283 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
6284 iDevSoundState = EStateInitializing;
6288 void RA3FDevSoundTonePlayDualToneOnceAndStopTest::ToneFinished(TInt aError)
6290 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
6291 ERR_PRINTF1(_L("DevSound should not have called ToneFinished because it is supposed to have been stopped"));
6292 StopTest(aError, EFail);
6296 *========================================================================================================
6297 * MM-A3F-DEVSOUND-CHRTZ-TONE-0045
6299 RA3FDevSoundTonePlayDTMFStringOnceAndStopTest::RA3FDevSoundTonePlayDTMFStringOnceAndStopTest(const TDesC& aTestName)
6300 : RA3FDevSoundTestBase(aTestName),iDTMFString(KNullDesC),
6301 iToneStopped(EFalse)
6305 RA3FDevSoundTonePlayDTMFStringOnceAndStopTest* RA3FDevSoundTonePlayDTMFStringOnceAndStopTest::NewL(const TDesC& aTestName)
6307 RA3FDevSoundTonePlayDTMFStringOnceAndStopTest * self = new(ELeave)RA3FDevSoundTonePlayDTMFStringOnceAndStopTest(aTestName);
6311 void RA3FDevSoundTonePlayDTMFStringOnceAndStopTest::DoKickoffTestL()
6314 if ( !GetStringFromConfig(iTestStepName, KDTMFString, DTMF) )
6316 ERR_PRINTF2(KMsgErrorGetParameter, &KDTMFString);
6317 StopTest(KErrNotFound);
6320 iDTMFString.Copy(DTMF);
6321 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
6324 void RA3FDevSoundTonePlayDTMFStringOnceAndStopTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
6326 switch(iDevSoundState)
6330 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundTonePlayDTMFStringOnceAndStopTest"), EFsmIncorrectErrorPassed));
6331 if (aDevSoundEvent == EEventInitialize)
6333 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
6334 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
6335 if (err != KErrNone)
6337 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
6341 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
6342 iDevSoundState = EStateInitializing;
6346 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
6347 StopTest(aError, EFail);
6351 case EStateInitializing:
6353 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
6357 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
6358 INFO_PRINTF2(_L("Calling CMMFDevSound::PlayDTMFStringL %S"), &iDTMFString);
6359 TRAPD(err, iMMFDevSound->PlayDTMFStringL(iDTMFString));
6360 if (err != KErrNone)
6362 ERR_PRINTF2(_L("CMMFDevSound::PlayDTMFStringL left with error = %d"), err);
6366 StartTimer(KMicroSecsTwoSec);
6367 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
6368 iDevSoundState = EStatePlaying;
6372 INFO_PRINTF1(_L("Calling CMMFDevSound::Stop succeeded"));
6376 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
6378 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
6383 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
6384 StopTest(aError, EFail);
6390 if(aDevSoundEvent == EEventTimerComplete)
6392 INFO_PRINTF1(_L("Calling CMMFDevSound::Stop"));
6393 iMMFDevSound->Stop();
6397 ERR_PRINTF2(_L("DevSound EEventTimerComplete not received as expected. Received event: %d"), aDevSoundEvent);
6398 StopTest(aError, EFail);
6404 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
6405 StopTest(aError, EFail);
6410 void RA3FDevSoundTonePlayDTMFStringOnceAndStopTest::DoTimerCallback()
6412 INFO_PRINTF1(_L("TimerEvent called"));
6413 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
6416 Fsm(EEventTimerComplete, KErrNone);
6417 iToneStopped = ETrue;
6422 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
6423 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
6424 if (err != KErrNone)
6426 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
6427 ERR_PRINTF2(_L("Expected error = %d"), KErrNone);
6430 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
6431 iDevSoundState = EStateInitializing;
6435 void RA3FDevSoundTonePlayDTMFStringOnceAndStopTest::ToneFinished(TInt aError)
6437 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
6438 ERR_PRINTF1(_L("DevSound should not have called ToneFinished because it is supposed to have been stopped"));
6439 StopTest(aError, EFail);
6442 *========================================================================================================
6443 * MM-A3F-DEVSOUND-CHRTZ-TONE-0046
6445 RA3FDevSoundTonePlayToneSequenceOnceAndStopTest::RA3FDevSoundTonePlayToneSequenceOnceAndStopTest(const TDesC& aTestName)
6446 : RA3FDevSoundTestBase(aTestName), iToneStopped(EFalse)
6450 RA3FDevSoundTonePlayToneSequenceOnceAndStopTest* RA3FDevSoundTonePlayToneSequenceOnceAndStopTest::NewL(const TDesC& aTestName)
6452 RA3FDevSoundTonePlayToneSequenceOnceAndStopTest * self = new(ELeave)RA3FDevSoundTonePlayToneSequenceOnceAndStopTest(aTestName);
6456 void RA3FDevSoundTonePlayToneSequenceOnceAndStopTest::DoKickoffTestL()
6458 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
6461 void RA3FDevSoundTonePlayToneSequenceOnceAndStopTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
6463 switch (iDevSoundState)
6467 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundTonePlayToneSequenceOnceAndStopTest"), EFsmIncorrectErrorPassed));
6468 if (aDevSoundEvent == EEventInitialize)
6470 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
6471 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
6472 if (err != KErrNone)
6474 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
6478 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
6479 iDevSoundState = EStateInitializing;
6483 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
6484 StopTest(aError, EFail);
6488 case EStateInitializing:
6490 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
6494 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
6495 TUint8* tablePointer = const_cast<TUint8*>( &(KFixedSequenceTestSequenceDataX[0]));
6496 TPtrC8 KFixedSequenceData(tablePointer, sizeof(KFixedSequenceTestSequenceDataX));
6497 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayToneSequenceL"));
6498 TRAPD(err, iMMFDevSound->PlayToneSequenceL(KFixedSequenceData));
6499 if (err != KErrNone)
6501 ERR_PRINTF2(_L("CMMFDevSound::PlayToneSequenceL left with error = %d!"), err);
6505 StartTimer(KMicroSecsTwoSec);
6506 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
6507 iDevSoundState = EStatePlaying;
6511 INFO_PRINTF1(_L("Calling CMMFDevSound::Stop succeeded"));
6516 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
6518 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
6523 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
6524 StopTest(aError, EFail);
6530 if(aDevSoundEvent == EEventTimerComplete)
6532 INFO_PRINTF1(_L("Calling CMMFDevSound::Stop"));
6533 iMMFDevSound->Stop();
6537 ERR_PRINTF2(_L("DevSound EEventTimerComplete not received as expected. Received event: %d"), aDevSoundEvent);
6538 StopTest(aError, EFail);
6544 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
6545 StopTest(aError, EFail);
6550 void RA3FDevSoundTonePlayToneSequenceOnceAndStopTest::DoTimerCallback()
6552 INFO_PRINTF1(_L("TimerEvent called"));
6553 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
6556 Fsm(EEventTimerComplete, KErrNone);
6557 iToneStopped = ETrue;
6562 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
6563 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
6564 if (err != KErrNone)
6566 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
6567 ERR_PRINTF2(_L("Expected error = %d"), KErrNone);
6570 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
6571 iDevSoundState = EStateInitializing;
6575 void RA3FDevSoundTonePlayToneSequenceOnceAndStopTest::ToneFinished(TInt aError)
6577 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
6578 ERR_PRINTF1(_L("DevSound should not have called ToneFinished because it is supposed to have been stopped"));
6579 StopTest(aError, EFail);
6583 *========================================================================================================
6584 * MM-A3F-DEVSOUND-CHRTZ-TONE-0047
6586 RA3FDevSoundTonePlayToneOncePauseTest::RA3FDevSoundTonePlayToneOncePauseTest(const TDesC& aTestName)
6587 : RA3FDevSoundTestBase(aTestName),iDuration(0),
6588 iFrequencyTone1(0), iPaused(EFalse),
6589 iSamplesPlayedPaused(0)
6593 RA3FDevSoundTonePlayToneOncePauseTest* RA3FDevSoundTonePlayToneOncePauseTest::NewL(const TDesC& aTestName)
6595 RA3FDevSoundTonePlayToneOncePauseTest * self = new(ELeave)RA3FDevSoundTonePlayToneOncePauseTest(aTestName);
6599 void RA3FDevSoundTonePlayToneOncePauseTest::DoKickoffTestL()
6601 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
6603 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
6604 StopTest(KErrNotFound);
6607 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
6609 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
6610 StopTest(KErrNotFound);
6613 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
6616 void RA3FDevSoundTonePlayToneOncePauseTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
6618 switch (iDevSoundState)
6622 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundTonePlayToneOncePauseTest"), EFsmIncorrectErrorPassed));
6623 if (aDevSoundEvent == EEventInitialize)
6625 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
6626 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
6627 if (err != KErrNone)
6629 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
6633 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
6634 iDevSoundState = EStateInitializing;
6638 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
6639 StopTest(aError, EFail);
6643 case EStateInitializing:
6645 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
6647 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
6648 INFO_PRINTF3(_L("Calling CMMFDevSound::PlayToneL using %d Hz during %d secs "), iFrequencyTone1, iDuration);
6649 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
6650 if (err != KErrNone)
6652 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error = %d!"), err);
6656 StartTimer(KMicroSecsTwoSec);
6657 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
6658 iDevSoundState = EStatePlaying;
6660 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
6662 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
6667 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
6668 StopTest(aError, EFail);
6674 if(aDevSoundEvent == EEventTimerComplete)
6676 INFO_PRINTF1(_L("Calling CMMFDevSound::Pause"));
6677 iMMFDevSound->Pause();
6678 INFO_PRINTF1(_L("DevSound State: EStatePause"));
6679 iDevSoundState = EStatePause;
6680 INFO_PRINTF1(_L("Calling CMMFDevSound::SamplesPlayed"));
6681 iSamplesPlayedPaused = iMMFDevSound->SamplesPlayed();
6682 INFO_PRINTF2(_L("The number of samples played is %d"), iSamplesPlayedPaused);
6686 ERR_PRINTF2(_L("DevSound EEventTimerComplete not received as expected. Received event: %d"), aDevSoundEvent);
6687 StopTest(aError, EFail);
6693 if (aDevSoundEvent == EEventTimerComplete)
6695 TInt samplesPlayed = iMMFDevSound->SamplesPlayed();
6696 if(iSamplesPlayedPaused == samplesPlayed)
6698 INFO_PRINTF2(_L("After waiting a couple of seconds, the samples played are still being the same %d"), iSamplesPlayedPaused);
6703 ERR_PRINTF2(_L("After waiting a couple of seconds, the samples played are not the same %d"), samplesPlayed);
6704 ERR_PRINTF2(_L("Expected samples played = %d"), iSamplesPlayedPaused);
6705 StopTest(aError,EFail);
6710 ERR_PRINTF2(_L("EEventTimerComplete not received as expected. Received event: %d"), aDevSoundEvent);
6711 StopTest(aError, EFail);
6717 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
6718 StopTest(aError, EFail);
6723 void RA3FDevSoundTonePlayToneOncePauseTest::DoTimerCallback()
6725 INFO_PRINTF1(_L("TimerEvent called"));
6728 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
6729 Fsm(EEventTimerComplete, KErrNone);
6735 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
6736 Fsm(EEventTimerComplete, KErrNone);
6740 void RA3FDevSoundTonePlayToneOncePauseTest::ToneFinished(TInt aError)
6742 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
6743 ERR_PRINTF1(_L("DevSound should not have called ToneFinished because it is supposed to be paused"));
6744 StopTest(aError, EFail);
6748 *========================================================================================================
6749 * MM-A3F-DEVSOUND-CHRTZ-TONE-0048
6751 RA3FDevSoundTonePlayDualToneOncePauseTest::RA3FDevSoundTonePlayDualToneOncePauseTest(const TDesC& aTestName)
6752 : RA3FDevSoundTestBase(aTestName),
6753 iDuration(0),iFrequencyTone1(0),
6754 iFrequencyTone2(0), iPaused(EFalse),
6755 iSamplesPlayedPaused(0)
6759 RA3FDevSoundTonePlayDualToneOncePauseTest* RA3FDevSoundTonePlayDualToneOncePauseTest::NewL(const TDesC& aTestName)
6761 RA3FDevSoundTonePlayDualToneOncePauseTest * self = new(ELeave)RA3FDevSoundTonePlayDualToneOncePauseTest(aTestName);
6765 void RA3FDevSoundTonePlayDualToneOncePauseTest::DoKickoffTestL()
6767 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
6769 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
6770 StopTest(KErrNotFound);
6773 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
6775 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
6776 StopTest(KErrNotFound);
6779 if (!GetIntFromConfig(iTestStepName, KFrequencyTone2, iFrequencyTone2))
6781 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone2);
6782 StopTest(KErrNotFound);
6785 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
6788 void RA3FDevSoundTonePlayDualToneOncePauseTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
6790 switch (iDevSoundState)
6794 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundTonePlayDualToneOncePauseTest"), EFsmIncorrectErrorPassed));
6795 if (aDevSoundEvent == EEventInitialize)
6797 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
6798 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
6799 if (err != KErrNone)
6801 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
6805 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
6806 iDevSoundState = EStateInitializing;
6810 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
6811 StopTest(aError, EFail);
6815 case EStateInitializing:
6817 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
6819 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
6820 INFO_PRINTF4(_L("Calling CMMFDevSound::PlayDualToneL using %d Hz %d Hz during %d secs "), iFrequencyTone1, iFrequencyTone2, iDuration);
6821 TRAPD(err, iMMFDevSound->PlayDualToneL(iFrequencyTone1, iFrequencyTone2, iDuration*KMicroSecsInOneSec));
6822 if (err != KErrNone)
6824 ERR_PRINTF2(_L("CMMFDevSound::PlayDualToneL left with error : %d!"), err);
6828 StartTimer(KMicroSecsTwoSec);
6829 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
6830 iDevSoundState = EStatePlaying;
6832 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
6834 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
6839 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
6840 StopTest(aError, EFail);
6846 if(aDevSoundEvent == EEventTimerComplete)
6848 INFO_PRINTF1(_L("Calling CMMFDevSound::Pause"));
6849 iMMFDevSound->Pause();
6850 INFO_PRINTF1(_L("DevSound State: EStatePause"));
6851 iDevSoundState = EStatePause;
6852 INFO_PRINTF1(_L("Calling CMMFDevSound::SamplesPlayed"));
6853 iSamplesPlayedPaused = iMMFDevSound->SamplesPlayed();
6854 INFO_PRINTF2(_L("The number of samples played is %d"), iSamplesPlayedPaused);
6859 ERR_PRINTF2(_L("DevSound EEventTimerComplete not received as expected. Received event: %d"), aDevSoundEvent);
6860 StopTest(aError, EFail);
6866 if (aDevSoundEvent == EEventTimerComplete)
6868 TInt samplesPlayed = iMMFDevSound->SamplesPlayed();
6869 if(iSamplesPlayedPaused == samplesPlayed)
6871 INFO_PRINTF2(_L("After waiting a couple of seconds, the samples played are still being the same %d"), iSamplesPlayedPaused);
6876 ERR_PRINTF2(_L("After waiting a couple of seconds, the samples played are not the same %d"), samplesPlayed);
6877 ERR_PRINTF2(_L("Expected samples played = %d"), iSamplesPlayedPaused);
6878 StopTest(aError,EFail);
6883 ERR_PRINTF2(_L("EEventTimerComplete not received as expected. Received event: %d"), aDevSoundEvent);
6884 StopTest(aError, EFail);
6890 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
6891 StopTest(aError, EFail);
6896 void RA3FDevSoundTonePlayDualToneOncePauseTest::DoTimerCallback()
6898 INFO_PRINTF1(_L("TimerEvent called"));
6901 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
6902 Fsm(EEventTimerComplete, KErrNone);
6908 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
6909 Fsm(EEventTimerComplete, KErrNone);
6913 void RA3FDevSoundTonePlayDualToneOncePauseTest::ToneFinished(TInt aError)
6915 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
6916 ERR_PRINTF1(_L("DevSound should not have called ToneFinished because it is supposed to be paused"));
6917 StopTest(aError, EFail);
6921 *========================================================================================================
6922 * MM-A3F-DEVSOUND-CHRTZ-TONE-0049
6924 RA3FDevSoundTonePlayDTMFStringOncePauseTest::RA3FDevSoundTonePlayDTMFStringOncePauseTest(const TDesC& aTestName)
6925 : RA3FDevSoundTestBase(aTestName),
6926 iDTMFString(KNullDesC),iPaused(EFalse),
6927 iSamplesPlayedPaused(0),iDTMFPauses(0),
6932 RA3FDevSoundTonePlayDTMFStringOncePauseTest* RA3FDevSoundTonePlayDTMFStringOncePauseTest::NewL(const TDesC& aTestName)
6934 RA3FDevSoundTonePlayDTMFStringOncePauseTest * self = new(ELeave)RA3FDevSoundTonePlayDTMFStringOncePauseTest(aTestName);
6938 void RA3FDevSoundTonePlayDTMFStringOncePauseTest::DoKickoffTestL()
6941 if ( !GetStringFromConfig(iTestStepName, KDTMFString, DTMF) )
6943 ERR_PRINTF2(KMsgErrorGetParameter, &KDTMFString);
6944 StopTest(KErrNotFound);
6947 iDTMFString.Copy(DTMF);
6948 for(TInt i =0 ; i< iDTMFString.Length() ; i++)
6950 if (iDTMFString[i] == ',')
6959 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
6962 void RA3FDevSoundTonePlayDTMFStringOncePauseTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
6964 switch (iDevSoundState)
6968 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundTonePlayDTMFStringOncePauseTest"), EFsmIncorrectErrorPassed));
6969 if (aDevSoundEvent == EEventInitialize)
6971 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
6972 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
6973 if (err != KErrNone)
6975 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
6979 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
6980 iDevSoundState = EStateInitializing;
6984 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
6985 StopTest(aError, EFail);
6989 case EStateInitializing:
6991 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
6993 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
6994 INFO_PRINTF2(_L("Calling CMMFDevSound::PlayDTMFStringL %S"), &iDTMFString);
6995 TRAPD(err, iMMFDevSound->PlayDTMFStringL(iDTMFString));
6996 if (err != KErrNone)
6998 ERR_PRINTF2(_L("CMMFDevSound::PlayDTMFStringL left with error : %d!"), err);
7001 StartTimer(KMicroSecsTwoSec);
7002 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
7003 iDevSoundState = EStatePlaying;
7005 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
7007 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
7012 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
7013 StopTest(aError, EFail);
7019 if(aDevSoundEvent == EEventTimerComplete)
7021 INFO_PRINTF1(_L("Calling CMMFDevSound::Pause"));
7022 iMMFDevSound->Pause();
7023 INFO_PRINTF1(_L("DevSound State: EStatePause"));
7024 iDevSoundState = EStatePause;
7025 INFO_PRINTF1(_L("Calling CMMFDevSound::SamplesPlayed"));
7026 iSamplesPlayedPaused = iMMFDevSound->SamplesPlayed();
7027 INFO_PRINTF2(_L("The number of samples played is %d"), iSamplesPlayedPaused);
7031 ERR_PRINTF2(_L("DevSound EEventTimerComplete not received as expected. Received event: %d"), aDevSoundEvent);
7032 StopTest(aError, EFail);
7038 if (aDevSoundEvent == EEventTimerComplete)
7040 TInt samplesPlayed = iMMFDevSound->SamplesPlayed();
7041 if(iSamplesPlayedPaused == samplesPlayed)
7043 INFO_PRINTF2(_L("After waiting a couple of seconds, the samples played are still being the same %d"), iSamplesPlayedPaused);
7048 ERR_PRINTF2(_L("After waiting a couple of seconds, the samples played are not the same %d"), samplesPlayed);
7049 ERR_PRINTF2(_L("Expected samples played = %d"), iSamplesPlayedPaused);
7050 StopTest(aError,EFail);
7055 ERR_PRINTF2(_L("EEventTimerComplete not received as expected. Received event: %d"), aDevSoundEvent);
7056 StopTest(aError, EFail);
7062 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
7063 StopTest(aError, EFail);
7068 void RA3FDevSoundTonePlayDTMFStringOncePauseTest::DoTimerCallback()
7070 INFO_PRINTF1(_L("TimerEvent called"));
7073 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
7074 Fsm(EEventTimerComplete, KErrNone);
7080 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
7081 Fsm(EEventTimerComplete, KErrNone);
7085 void RA3FDevSoundTonePlayDTMFStringOncePauseTest::ToneFinished(TInt aError)
7087 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
7088 ERR_PRINTF1(_L("DevSound should not have called ToneFinished because it is supposed to be paused"));
7089 StopTest(aError, EFail);
7093 *========================================================================================================
7094 * MM-A3F-DEVSOUND-CHRTZ-TONE-0050
7096 RA3FDevSoundTonePlayToneSequenceOncePauseTest::RA3FDevSoundTonePlayToneSequenceOncePauseTest(const TDesC& aTestName)
7097 : RA3FDevSoundTestBase(aTestName), iPaused(EFalse),
7098 iSamplesPlayedPaused(0)
7102 RA3FDevSoundTonePlayToneSequenceOncePauseTest* RA3FDevSoundTonePlayToneSequenceOncePauseTest::NewL(const TDesC& aTestName)
7104 RA3FDevSoundTonePlayToneSequenceOncePauseTest * self = new(ELeave)RA3FDevSoundTonePlayToneSequenceOncePauseTest(aTestName);
7108 void RA3FDevSoundTonePlayToneSequenceOncePauseTest::DoKickoffTestL()
7110 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
7113 void RA3FDevSoundTonePlayToneSequenceOncePauseTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
7115 switch(iDevSoundState)
7119 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundTonePlayToneSequenceOncePauseTest"), EFsmIncorrectErrorPassed));
7120 if (aDevSoundEvent == EEventInitialize)
7122 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
7123 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
7124 if (err != KErrNone)
7126 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
7130 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
7131 iDevSoundState = EStateInitializing;
7135 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
7136 StopTest(aError, EFail);
7140 case EStateInitializing:
7142 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
7144 TUint8* tablePointer = const_cast<TUint8*>( &(KFixedSequenceTestSequenceDataX[0] ) );
7145 TPtrC8 KFixedSequenceData(tablePointer, sizeof(KFixedSequenceTestSequenceDataX));
7146 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayToneSequenceL"));
7147 TRAPD(err, iMMFDevSound->PlayToneSequenceL(KFixedSequenceData));
7148 if (err != KErrNone)
7150 ERR_PRINTF2(_L("CMMFDevSound::PlayToneSequenceL left with error : %d!"), err);
7154 StartTimer(KMicroSecsTwoSec);
7155 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
7156 iDevSoundState = EStatePlaying;
7158 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
7160 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
7165 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
7166 StopTest(aError, EFail);
7172 if(aDevSoundEvent == EEventTimerComplete)
7174 INFO_PRINTF1(_L("Calling CMMFDevSound::Pause"));
7175 iMMFDevSound->Pause();
7176 INFO_PRINTF1(_L("DevSound State: EStatePause"));
7177 iDevSoundState = EStatePause;
7178 INFO_PRINTF1(_L("Calling CMMFDevSound::SamplesPlayed"));
7179 iSamplesPlayedPaused = iMMFDevSound->SamplesPlayed();
7180 INFO_PRINTF2(_L("The number of samples played is %d"), iSamplesPlayedPaused);
7184 ERR_PRINTF2(_L("DevSound EEventTimerComplete not received as expected. Received event: %d"), aDevSoundEvent);
7185 StopTest(aError, EFail);
7191 if (aDevSoundEvent == EEventTimerComplete)
7193 TInt samplesPlayed = iMMFDevSound->SamplesPlayed();
7194 if(iSamplesPlayedPaused == samplesPlayed)
7196 INFO_PRINTF2(_L("After waiting a couple of seconds, the samples played are still being the same %d"), iSamplesPlayedPaused);
7201 ERR_PRINTF2(_L("After waiting a couple of seconds, the samples played are not the same %d"), samplesPlayed);
7202 ERR_PRINTF2(_L("Expected samples played = %d"), iSamplesPlayedPaused);
7203 StopTest(aError,EFail);
7208 ERR_PRINTF2(_L("EEventTimerComplete not received as expected. Received event: %d"), aDevSoundEvent);
7209 StopTest(aError, EFail);
7215 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
7216 StopTest(aError, EFail);
7221 void RA3FDevSoundTonePlayToneSequenceOncePauseTest::DoTimerCallback()
7223 INFO_PRINTF1(_L("TimerEvent called"));
7226 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
7227 Fsm(EEventTimerComplete, KErrNone);
7233 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
7234 Fsm(EEventTimerComplete, KErrNone);
7238 void RA3FDevSoundTonePlayToneSequenceOncePauseTest::ToneFinished(TInt aError)
7240 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
7241 ERR_PRINTF1(_L("DevSound should not have called ToneFinished because it is supposed to be paused"));
7242 StopTest(aError, EFail);
7246 *========================================================================================================
7247 * MM-A3F-DEVSOUND-CHRTZ-TONE-0051
7249 RA3FDevSoundTonePlayToneOnceInitializedToPlayAudioTest::RA3FDevSoundTonePlayToneOnceInitializedToPlayAudioTest(const TDesC& aTestName)
7250 : RA3FDevSoundTestBase(aTestName), iDuration(0),
7255 RA3FDevSoundTonePlayToneOnceInitializedToPlayAudioTest* RA3FDevSoundTonePlayToneOnceInitializedToPlayAudioTest::NewL(const TDesC& aTestName)
7257 RA3FDevSoundTonePlayToneOnceInitializedToPlayAudioTest * self = new(ELeave)RA3FDevSoundTonePlayToneOnceInitializedToPlayAudioTest(aTestName);
7261 void RA3FDevSoundTonePlayToneOnceInitializedToPlayAudioTest::DoKickoffTestL()
7263 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
7265 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
7266 StopTest(KErrNotFound);
7269 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
7271 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
7272 StopTest(KErrNotFound);
7277 void RA3FDevSoundTonePlayToneOnceInitializedToPlayAudioTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
7279 switch (iDevSoundState)
7283 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundTonePlayToneOnceInitializedToPlayAudioTest"), EFsmIncorrectErrorPassed));
7284 if (aDevSoundEvent == EEventInitialize)
7286 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL for playing audio files"));
7287 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
7288 if (err != KErrNone)
7290 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
7294 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
7295 iDevSoundState = EStateInitializing;
7299 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
7300 StopTest(aError, EFail);
7304 case EStateInitializing:
7306 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
7308 INFO_PRINTF3(_L("Calling CMMFDevSound::PlayToneL using %d Hz during %d secs"), iFrequencyTone1, iDuration);
7309 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
7310 if (err == KErrNotSupported)
7312 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with KErrNotSupported %d which is the expected error"), err);
7317 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error = %d"), err);
7318 ERR_PRINTF2(_L("Expected error = %d"), KErrNotSupported);
7319 StopTest(err, EFail);
7322 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
7324 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
7329 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
7330 StopTest(aError, EFail);
7336 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
7337 StopTest(aError, EFail);
7343 *========================================================================================================
7344 * MM-A3F-DEVSOUND-CHRTZ-TONE-0052
7346 RA3FDevSoundTonePlayDualToneOnceInitializedToPlayAudioTest::RA3FDevSoundTonePlayDualToneOnceInitializedToPlayAudioTest(const TDesC& aTestName)
7347 : RA3FDevSoundTestBase(aTestName), iDuration(0),
7348 iFrequencyTone1(0), iFrequencyTone2(0)
7352 RA3FDevSoundTonePlayDualToneOnceInitializedToPlayAudioTest* RA3FDevSoundTonePlayDualToneOnceInitializedToPlayAudioTest::NewL(const TDesC& aTestName)
7354 RA3FDevSoundTonePlayDualToneOnceInitializedToPlayAudioTest * self = new(ELeave)RA3FDevSoundTonePlayDualToneOnceInitializedToPlayAudioTest(aTestName);
7358 void RA3FDevSoundTonePlayDualToneOnceInitializedToPlayAudioTest::DoKickoffTestL()
7360 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
7362 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
7363 StopTest(KErrNotFound);
7366 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
7368 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
7369 StopTest(KErrNotFound);
7372 if (!GetIntFromConfig(iTestStepName, KFrequencyTone2, iFrequencyTone2))
7374 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone2);
7375 StopTest(KErrNotFound);
7380 void RA3FDevSoundTonePlayDualToneOnceInitializedToPlayAudioTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
7382 switch(iDevSoundState)
7386 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundTonePlayDualToneOnceInitializedToPlayAudioTest"), EFsmIncorrectErrorPassed));
7387 if (aDevSoundEvent == EEventInitialize)
7389 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL for playing audio files"));
7390 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
7391 if (err != KErrNone)
7393 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
7397 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
7398 iDevSoundState = EStateInitializing;
7402 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
7403 StopTest(aError, EFail);
7407 case EStateInitializing:
7409 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
7411 INFO_PRINTF4(_L("Calling CMMFDevSound::PlayDualToneL using %d Hz %d Hz during %d secs "), iFrequencyTone1, iFrequencyTone2, iDuration);
7412 TRAPD(err, iMMFDevSound->PlayDualToneL(iFrequencyTone1, iFrequencyTone2, iDuration*KMicroSecsInOneSec));
7413 if (err == KErrNotSupported)
7415 ERR_PRINTF2(_L("CMMFDevSound::PlayDualToneL left with KErrNotSupported %d which is the expected error"), err);
7416 StopTest(err, EPass);
7420 ERR_PRINTF2(_L("CMMFDevSound::PlayDualToneL left with error = %d"), err);
7421 ERR_PRINTF2(_L("Expected error = %d"), KErrNotSupported);
7422 StopTest(err, EFail);
7425 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
7427 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
7432 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
7433 StopTest(aError, EFail);
7439 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
7440 StopTest(aError, EFail);
7446 *========================================================================================================
7447 * MM-A3F-DEVSOUND-CHRTZ-TONE-0053
7449 RA3FDevSoundTonePlayDTMFStringOnceInitializedToPlayAudioTest::RA3FDevSoundTonePlayDTMFStringOnceInitializedToPlayAudioTest(const TDesC& aTestName)
7450 : RA3FDevSoundTestBase(aTestName), iDTMFString(KNullDesC)
7454 RA3FDevSoundTonePlayDTMFStringOnceInitializedToPlayAudioTest* RA3FDevSoundTonePlayDTMFStringOnceInitializedToPlayAudioTest::NewL(const TDesC& aTestName)
7456 RA3FDevSoundTonePlayDTMFStringOnceInitializedToPlayAudioTest * self = new(ELeave)RA3FDevSoundTonePlayDTMFStringOnceInitializedToPlayAudioTest(aTestName);
7460 void RA3FDevSoundTonePlayDTMFStringOnceInitializedToPlayAudioTest::DoKickoffTestL()
7463 if (!GetStringFromConfig(iTestStepName, KDTMFString, DTMF))
7465 ERR_PRINTF2(KMsgErrorGetParameter, &KDTMFString);
7466 StopTest(KErrNotFound);
7469 iDTMFString.Copy(DTMF);
7472 void RA3FDevSoundTonePlayDTMFStringOnceInitializedToPlayAudioTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
7474 switch(iDevSoundState)
7478 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundTonePlayDTMFStringOnceInitializedToPlayAudioTest"), EFsmIncorrectErrorPassed));
7479 if (aDevSoundEvent == EEventInitialize)
7481 INFO_PRINTF1(_L("Calling iMMFDevSound::InitializeL for playing audio files"));
7482 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
7483 if (err != KErrNone)
7485 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
7489 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
7490 iDevSoundState = EStateInitializing;
7494 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
7495 StopTest(aError, EFail);
7499 case EStateInitializing:
7501 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
7503 INFO_PRINTF2(_L("Calling CMMFDevSound::PlayDTMFStringL %S "), &iDTMFString);
7504 TRAPD(err, iMMFDevSound->PlayDTMFStringL(iDTMFString));
7505 if (err == KErrNotSupported)
7507 ERR_PRINTF2(_L("CMMFDevSound::PlayDTMFStringL left with KErrNotSupported %d which is the expected error"), err);
7512 ERR_PRINTF2(_L("CMMFDevSound::PlayDTMFStringL left with error = %d"), err);
7513 ERR_PRINTF2(_L("Expected error = %d"), KErrNotSupported);
7514 StopTest(err, EFail);
7517 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
7519 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
7524 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
7525 StopTest(aError, EFail);
7531 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
7532 StopTest(aError, EFail);
7538 *========================================================================================================
7539 * MM-A3F-DEVSOUND-CHRTZ-TONE-0054
7541 RA3FDevSoundTonePlayToneSequenceOnceInitializedToPlayAudioTest::RA3FDevSoundTonePlayToneSequenceOnceInitializedToPlayAudioTest(const TDesC& aTestName)
7542 : RA3FDevSoundTestBase(aTestName)
7546 RA3FDevSoundTonePlayToneSequenceOnceInitializedToPlayAudioTest* RA3FDevSoundTonePlayToneSequenceOnceInitializedToPlayAudioTest::NewL(const TDesC& aTestName)
7548 RA3FDevSoundTonePlayToneSequenceOnceInitializedToPlayAudioTest * self = new(ELeave)RA3FDevSoundTonePlayToneSequenceOnceInitializedToPlayAudioTest(aTestName);
7551 void RA3FDevSoundTonePlayToneSequenceOnceInitializedToPlayAudioTest::DoKickoffTestL()
7555 void RA3FDevSoundTonePlayToneSequenceOnceInitializedToPlayAudioTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
7557 switch(iDevSoundState)
7561 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundTonePlayToneSequenceOnceInitializedToPlayAudioTest"), EFsmIncorrectErrorPassed));
7562 if (aDevSoundEvent == EEventInitialize)
7564 INFO_PRINTF1(_L("Calling iMMFDevSound::InitializeL for playing audio files"));
7565 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
7566 if (err != KErrNone)
7568 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
7572 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
7573 iDevSoundState = EStateInitializing;
7577 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
7578 StopTest(aError, EFail);
7582 case EStateInitializing:
7584 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
7586 TUint8* tablePointer = const_cast<TUint8*>( &(KFixedSequenceTestSequenceDataX[0] ) );
7587 TPtrC8 KFixedSequenceData(tablePointer, sizeof(KFixedSequenceTestSequenceDataX));
7588 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayToneSequenceL"));
7589 TRAPD(err, iMMFDevSound->PlayToneSequenceL(KFixedSequenceData));
7590 if (err == KErrNotSupported)
7592 ERR_PRINTF2(_L("CMMFDevSound::PlayToneSequenceL left with KErrNotSupported %d which is the expected error"), err);
7593 StopTest(err, EPass);
7597 ERR_PRINTF2(_L("Play dual tone failed with error = %d"), err);
7598 ERR_PRINTF2(_L("Expected error = %d"), KErrNotSupported);
7599 StopTest(err, EFail);
7602 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
7604 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
7609 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
7610 StopTest(aError, EFail);
7616 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
7617 StopTest(aError, EFail);
7623 *========================================================================================================
7624 * MM-A3F-DEVSOUND-CHRTZ-TONE-0055
7626 RA3FDevSoundTonePlayToneOnceInitializedToRecordAudioTest::RA3FDevSoundTonePlayToneOnceInitializedToRecordAudioTest(const TDesC& aTestName)
7627 : RA3FDevSoundTestBase(aTestName), iDuration(0),
7632 RA3FDevSoundTonePlayToneOnceInitializedToRecordAudioTest* RA3FDevSoundTonePlayToneOnceInitializedToRecordAudioTest::NewL(const TDesC& aTestName)
7634 RA3FDevSoundTonePlayToneOnceInitializedToRecordAudioTest * self = new(ELeave)RA3FDevSoundTonePlayToneOnceInitializedToRecordAudioTest(aTestName);
7638 void RA3FDevSoundTonePlayToneOnceInitializedToRecordAudioTest::DoKickoffTestL()
7640 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
7642 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
7643 StopTest(KErrNotFound);
7646 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
7648 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
7649 StopTest(KErrNotFound);
7654 void RA3FDevSoundTonePlayToneOnceInitializedToRecordAudioTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
7656 switch (iDevSoundState)
7660 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundTonePlayToneOnceInitializedToRecordAudioTest"), EFsmIncorrectErrorPassed));
7661 if (aDevSoundEvent == EEventInitialize)
7663 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL for recording audio files"));
7664 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateRecording));
7665 if (err != KErrNone)
7667 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
7671 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
7672 iDevSoundState = EStateInitializing;
7676 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
7677 StopTest(aError, EFail);
7681 case EStateInitializing:
7683 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
7685 INFO_PRINTF3(_L("Calling CMMFDevSound::PlayToneL using %d Hz during %d secs"), iFrequencyTone1, iDuration);
7686 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
7687 if (err == KErrNotSupported)
7689 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with KErrNotSupported %d which is the expected error"), err);
7694 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error = %d"), err);
7695 ERR_PRINTF2(_L("Expected error = %d"), KErrNotSupported);
7696 StopTest(err, EFail);
7699 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
7701 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
7706 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
7707 StopTest(aError, EFail);
7713 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
7714 StopTest(aError, EFail);
7720 *========================================================================================================
7721 * MM-A3F-DEVSOUND-CHRTZ-TONE-0056
7723 RA3FDevSoundTonePlayDualToneOnceInitializedToRecordAudioTest::RA3FDevSoundTonePlayDualToneOnceInitializedToRecordAudioTest(const TDesC& aTestName)
7724 : RA3FDevSoundTestBase(aTestName), iDuration(0),
7725 iFrequencyTone1(0), iFrequencyTone2(0)
7729 RA3FDevSoundTonePlayDualToneOnceInitializedToRecordAudioTest* RA3FDevSoundTonePlayDualToneOnceInitializedToRecordAudioTest::NewL(const TDesC& aTestName)
7731 RA3FDevSoundTonePlayDualToneOnceInitializedToRecordAudioTest * self = new(ELeave)RA3FDevSoundTonePlayDualToneOnceInitializedToRecordAudioTest(aTestName);
7735 void RA3FDevSoundTonePlayDualToneOnceInitializedToRecordAudioTest::DoKickoffTestL()
7737 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
7739 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
7740 StopTest(KErrNotFound);
7743 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
7745 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
7746 StopTest(KErrNotFound);
7749 if (!GetIntFromConfig(iTestStepName, KFrequencyTone2, iFrequencyTone2))
7751 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone2);
7752 StopTest(KErrNotFound);
7757 void RA3FDevSoundTonePlayDualToneOnceInitializedToRecordAudioTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
7759 switch(iDevSoundState)
7763 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundTonePlayDualToneOnceInitializedToRecordAudioTest"), EFsmIncorrectErrorPassed));
7764 if (aDevSoundEvent == EEventInitialize)
7766 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL for recording audio files"));
7767 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateRecording));
7768 if (err != KErrNone)
7770 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
7774 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
7775 iDevSoundState = EStateInitializing;
7779 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
7780 StopTest(aError, EFail);
7784 case EStateInitializing:
7786 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
7788 INFO_PRINTF4(_L("Calling CMMFDevSound::PlayDualToneL using %d Hz %d Hz during %d secs "), iFrequencyTone1, iFrequencyTone2, iDuration);
7789 TRAPD(err, iMMFDevSound->PlayDualToneL(iFrequencyTone1, iFrequencyTone2, iDuration*KMicroSecsInOneSec));
7790 if (err == KErrNotSupported)
7792 ERR_PRINTF2(_L("CMMFDevSound::PlayDualToneL left with KErrNotSupported %d which is the expected error"), err);
7793 StopTest(err, EPass);
7797 ERR_PRINTF2(_L("CMMFDevSound::PlayDualToneL left with error = %d"), err);
7798 ERR_PRINTF2(_L("Expected error = %d"), KErrNotSupported);
7799 StopTest(err, EFail);
7802 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
7804 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
7809 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
7810 StopTest(aError, EFail);
7816 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
7817 StopTest(aError, EFail);
7823 *========================================================================================================
7824 * MM-A3F-DEVSOUND-CHRTZ-TONE-0057
7826 RA3FDevSoundTonePlayDTMFStringOnceInitializedToRecordAudioTest::RA3FDevSoundTonePlayDTMFStringOnceInitializedToRecordAudioTest(const TDesC& aTestName)
7827 : RA3FDevSoundTestBase(aTestName), iDTMFString(KNullDesC)
7831 RA3FDevSoundTonePlayDTMFStringOnceInitializedToRecordAudioTest* RA3FDevSoundTonePlayDTMFStringOnceInitializedToRecordAudioTest::NewL(const TDesC& aTestName)
7833 RA3FDevSoundTonePlayDTMFStringOnceInitializedToRecordAudioTest * self = new(ELeave)RA3FDevSoundTonePlayDTMFStringOnceInitializedToRecordAudioTest(aTestName);
7837 void RA3FDevSoundTonePlayDTMFStringOnceInitializedToRecordAudioTest::DoKickoffTestL()
7840 if (!GetStringFromConfig(iTestStepName, KDTMFString, DTMF))
7842 ERR_PRINTF2(KMsgErrorGetParameter, &KDTMFString);
7843 StopTest(KErrNotFound);
7846 iDTMFString.Copy(DTMF);
7849 void RA3FDevSoundTonePlayDTMFStringOnceInitializedToRecordAudioTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
7851 switch(iDevSoundState)
7855 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundTonePlayDTMFStringOnceInitializedToRecordAudioTest"), EFsmIncorrectErrorPassed));
7856 if (aDevSoundEvent == EEventInitialize)
7858 INFO_PRINTF1(_L("Calling iMMFDevSound::InitializeL for recording audio files"));
7859 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateRecording));
7860 if (err != KErrNone)
7862 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
7866 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
7867 iDevSoundState = EStateInitializing;
7871 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
7872 StopTest(aError, EFail);
7876 case EStateInitializing:
7878 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
7880 INFO_PRINTF2(_L("Calling CMMFDevSound::PlayDTMFStringL %S "), &iDTMFString);
7881 TRAPD(err, iMMFDevSound->PlayDTMFStringL(iDTMFString));
7882 if (err == KErrNotSupported)
7884 ERR_PRINTF2(_L("CMMFDevSound::PlayDTMFStringL left with KErrNotSupported %d which is the expected error"), err);
7889 ERR_PRINTF2(_L("CMMFDevSound::PlayDTMFStringL left with error = %d"), err);
7890 ERR_PRINTF2(_L("Expected error = %d"), KErrNotSupported);
7891 StopTest(err, EFail);
7894 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
7896 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
7901 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
7902 StopTest(aError, EFail);
7908 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
7909 StopTest(aError, EFail);
7915 *========================================================================================================
7916 * MM-A3F-DEVSOUND-CHRTZ-TONE-0058
7918 RA3FDevSoundTonePlayToneSequenceOnceInitializedToRecordAudioTest::RA3FDevSoundTonePlayToneSequenceOnceInitializedToRecordAudioTest(const TDesC& aTestName)
7919 : RA3FDevSoundTestBase(aTestName)
7923 RA3FDevSoundTonePlayToneSequenceOnceInitializedToRecordAudioTest* RA3FDevSoundTonePlayToneSequenceOnceInitializedToRecordAudioTest::NewL(const TDesC& aTestName)
7925 RA3FDevSoundTonePlayToneSequenceOnceInitializedToRecordAudioTest * self = new(ELeave)RA3FDevSoundTonePlayToneSequenceOnceInitializedToRecordAudioTest(aTestName);
7928 void RA3FDevSoundTonePlayToneSequenceOnceInitializedToRecordAudioTest::DoKickoffTestL()
7932 void RA3FDevSoundTonePlayToneSequenceOnceInitializedToRecordAudioTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
7934 switch(iDevSoundState)
7938 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundTonePlayToneSequenceOnceInitializedToRecordAudioTest"), EFsmIncorrectErrorPassed));
7939 if (aDevSoundEvent == EEventInitialize)
7941 INFO_PRINTF1(_L("Calling iMMFDevSound::InitializeL for playing audio files"));
7942 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateRecording));
7943 if (err != KErrNone)
7945 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
7949 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
7950 iDevSoundState = EStateInitializing;
7954 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
7955 StopTest(aError, EFail);
7959 case EStateInitializing:
7961 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
7963 TUint8* tablePointer = const_cast<TUint8*>( &(KFixedSequenceTestSequenceDataX[0] ) );
7964 TPtrC8 KFixedSequenceData(tablePointer, sizeof(KFixedSequenceTestSequenceDataX));
7965 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayToneSequenceL"));
7966 TRAPD(err, iMMFDevSound->PlayToneSequenceL(KFixedSequenceData));
7967 if (err == KErrNotSupported)
7969 ERR_PRINTF2(_L("CMMFDevSound::PlayToneSequenceL left with KErrNotSupported %d which is the expected error"), err);
7970 StopTest(err, EPass);
7974 ERR_PRINTF2(_L("Play dual tone failed with error = %d"), err);
7975 ERR_PRINTF2(_L("Expected error = %d"), KErrNotSupported);
7976 StopTest(err, EFail);
7979 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
7981 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
7986 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
7987 StopTest(aError, EFail);
7993 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
7994 StopTest(aError, EFail);
8000 *========================================================================================================
8001 * MM-A3F-DEVSOUND-CHRTZ-TONE-0059
8003 RA3FDevSoundTonePlayToneWithoutCallingInitializeTest::RA3FDevSoundTonePlayToneWithoutCallingInitializeTest(const TDesC& aTestName)
8004 : RA3FDevSoundTestBase(aTestName), iDuration(0),
8009 RA3FDevSoundTonePlayToneWithoutCallingInitializeTest* RA3FDevSoundTonePlayToneWithoutCallingInitializeTest::NewL(const TDesC& aTestName)
8011 RA3FDevSoundTonePlayToneWithoutCallingInitializeTest * self = new(ELeave)RA3FDevSoundTonePlayToneWithoutCallingInitializeTest(aTestName);
8015 void RA3FDevSoundTonePlayToneWithoutCallingInitializeTest::DoKickoffTestL()
8017 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
8019 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
8020 StopTest(KErrNotFound);
8023 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
8025 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
8026 StopTest(KErrNotFound);
8031 void RA3FDevSoundTonePlayToneWithoutCallingInitializeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
8033 switch (iDevSoundState)
8037 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundTonePlayToneWithoutCallingInitializeTest"), EFsmIncorrectErrorPassed));
8038 if (aDevSoundEvent == EEventInitialize)
8040 INFO_PRINTF3(_L("Calling CMMFDevSound::PlayToneL using %d Hz during %d secs"), iFrequencyTone1, iDuration);
8041 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
8042 if (err == KErrNotReady)
8044 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with KErrNotReady %d which is the expected error"), err);
8049 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error = %d"), err);
8050 ERR_PRINTF2(_L("Expected error = %d"), KErrNotReady);
8051 StopTest(err, EFail);
8054 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
8056 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
8061 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
8062 StopTest(aError, EFail);
8068 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
8069 StopTest(aError, EFail);
8075 *========================================================================================================
8076 * MM-A3F-DEVSOUND-CHRTZ-TONE-0060
8078 RA3FDevSoundTonePlayDualToneWithoutCallingInitializeTest::RA3FDevSoundTonePlayDualToneWithoutCallingInitializeTest(const TDesC& aTestName)
8079 : RA3FDevSoundTestBase(aTestName), iDuration(0),
8080 iFrequencyTone1(0), iFrequencyTone2(0)
8084 RA3FDevSoundTonePlayDualToneWithoutCallingInitializeTest* RA3FDevSoundTonePlayDualToneWithoutCallingInitializeTest::NewL(const TDesC& aTestName)
8086 RA3FDevSoundTonePlayDualToneWithoutCallingInitializeTest * self = new(ELeave)RA3FDevSoundTonePlayDualToneWithoutCallingInitializeTest(aTestName);
8090 void RA3FDevSoundTonePlayDualToneWithoutCallingInitializeTest::DoKickoffTestL()
8092 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
8094 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
8095 StopTest(KErrNotFound);
8098 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
8100 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
8101 StopTest(KErrNotFound);
8104 if (!GetIntFromConfig(iTestStepName, KFrequencyTone2, iFrequencyTone2))
8106 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone2);
8107 StopTest(KErrNotFound);
8112 void RA3FDevSoundTonePlayDualToneWithoutCallingInitializeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
8114 switch (iDevSoundState)
8118 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundTonePlayDualToneWithoutCallingInitializeTest"), EFsmIncorrectErrorPassed));
8119 if (aDevSoundEvent == EEventInitialize)
8121 INFO_PRINTF4(_L("Calling CMMFDevSound::PlayDualToneL using %d Hz %d Hz during %d secs "), iFrequencyTone1, iFrequencyTone2, iDuration);
8122 TRAPD(err, iMMFDevSound->PlayDualToneL(iFrequencyTone1, iFrequencyTone2, iDuration*KMicroSecsInOneSec));
8123 if (err == KErrNotReady)
8125 ERR_PRINTF2(_L("CMMFDevSound::PlayDualToneL left with KErrNotReady %d which is the expected error"), err);
8130 ERR_PRINTF2(_L("CMMFDevSound::PlayDualToneL left with error = %d"), err);
8131 ERR_PRINTF2(_L("Expected error = %d"), KErrNotReady);
8132 StopTest(err, EFail);
8135 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
8137 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
8142 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
8143 StopTest(aError, EFail);
8149 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
8150 StopTest(aError, EFail);
8156 *========================================================================================================
8157 * MM-A3F-DEVSOUND-CHRTZ-TONE-0061
8159 RA3FDevSoundTonePlayDTMFStringWithoutCallingInitializeTest::RA3FDevSoundTonePlayDTMFStringWithoutCallingInitializeTest(const TDesC& aTestName)
8160 : RA3FDevSoundTestBase(aTestName), iDTMFString(KNullDesC)
8164 RA3FDevSoundTonePlayDTMFStringWithoutCallingInitializeTest* RA3FDevSoundTonePlayDTMFStringWithoutCallingInitializeTest::NewL(const TDesC& aTestName)
8166 RA3FDevSoundTonePlayDTMFStringWithoutCallingInitializeTest * self = new(ELeave)RA3FDevSoundTonePlayDTMFStringWithoutCallingInitializeTest(aTestName);
8170 void RA3FDevSoundTonePlayDTMFStringWithoutCallingInitializeTest::DoKickoffTestL()
8173 if (!GetStringFromConfig(iTestStepName, KDTMFString, DTMF))
8175 ERR_PRINTF2(KMsgErrorGetParameter, &KDTMFString);
8176 StopTest(KErrNotFound);
8179 iDTMFString.Copy(DTMF);
8182 void RA3FDevSoundTonePlayDTMFStringWithoutCallingInitializeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
8184 switch (iDevSoundState)
8188 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundTonePlayDTMFStringWithoutCallingInitializeTest"), EFsmIncorrectErrorPassed));
8189 if (aDevSoundEvent == EEventInitialize)
8191 INFO_PRINTF2(_L("Calling CMMFDevSound::PlayDTMFStringL %S"), &iDTMFString);
8192 TRAPD(err, iMMFDevSound->PlayDTMFStringL(iDTMFString));
8193 if (err == KErrNotReady)
8195 ERR_PRINTF2(_L("CMMFDevSound::PlayDTMFStringL left with KErrNotReady %d which is the expected error"), err);
8200 ERR_PRINTF2(_L("CMMFDevSound::PlayDTMFStringL left with error = %d"), err);
8201 ERR_PRINTF2(_L("Expected error = %d"), KErrNotReady);
8202 StopTest(err, EFail);
8205 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
8207 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
8212 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
8213 StopTest(aError, EFail);
8219 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
8220 StopTest(aError, EFail);
8226 *========================================================================================================
8227 * MM-A3F-DEVSOUND-CHRTZ-TONE-0062
8229 RA3FDevSoundTonePlayToneSequenceWithoutCallingInitializeTest::RA3FDevSoundTonePlayToneSequenceWithoutCallingInitializeTest(const TDesC& aTestName)
8230 : RA3FDevSoundTestBase(aTestName)
8234 RA3FDevSoundTonePlayToneSequenceWithoutCallingInitializeTest* RA3FDevSoundTonePlayToneSequenceWithoutCallingInitializeTest::NewL(const TDesC& aTestName)
8236 RA3FDevSoundTonePlayToneSequenceWithoutCallingInitializeTest * self = new(ELeave)RA3FDevSoundTonePlayToneSequenceWithoutCallingInitializeTest(aTestName);
8240 void RA3FDevSoundTonePlayToneSequenceWithoutCallingInitializeTest::DoKickoffTestL()
8244 void RA3FDevSoundTonePlayToneSequenceWithoutCallingInitializeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
8246 switch (iDevSoundState)
8250 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundTonePlayToneSequenceWithoutCallingInitializeTest"), EFsmIncorrectErrorPassed));
8251 if (aDevSoundEvent == EEventInitialize)
8253 TUint8* tablePointer = const_cast<TUint8*>( &(KFixedSequenceTestSequenceDataX[0] ) );
8254 TPtrC8 KFixedSequenceData(tablePointer, sizeof(KFixedSequenceTestSequenceDataX));
8255 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayToneSequenceL"));
8256 TRAPD(err, iMMFDevSound->PlayToneSequenceL(KFixedSequenceData));
8257 if (err == KErrNotReady)
8259 ERR_PRINTF2(_L("CMMFDevSound::PlayToneSequenceL left with KErrNotReady %d which is the expected error"), err);
8264 ERR_PRINTF2(_L("CMMFDevSound::PlayToneSequenceL left with error = %d"), err);
8265 ERR_PRINTF2(_L("Expected error = %d"), KErrNotReady);
8266 StopTest(err, EFail);
8269 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
8271 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
8276 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
8277 StopTest(aError, EFail);
8283 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
8284 StopTest(aError, EFail);
8290 *========================================================================================================
8291 * MM-A3F-DEVSOUND-CHRTZ-TONE-0063
8293 RA3FDevSoundTonePlayToneSequenceUsingInvalidDescriptorTest::RA3FDevSoundTonePlayToneSequenceUsingInvalidDescriptorTest(const TDesC& aTestName)
8294 : RA3FDevSoundTestBase(aTestName), iInvalidToneSequence(KNullDesC8)
8298 RA3FDevSoundTonePlayToneSequenceUsingInvalidDescriptorTest* RA3FDevSoundTonePlayToneSequenceUsingInvalidDescriptorTest::NewL(const TDesC& aTestName)
8300 RA3FDevSoundTonePlayToneSequenceUsingInvalidDescriptorTest * self = new(ELeave)RA3FDevSoundTonePlayToneSequenceUsingInvalidDescriptorTest(aTestName);
8304 void RA3FDevSoundTonePlayToneSequenceUsingInvalidDescriptorTest::DoKickoffTestL()
8307 if ( !GetStringFromConfig(iTestStepName, KInvalidToneSequence, TS) )
8309 ERR_PRINTF2(KMsgErrorGetParameter, &KInvalidToneSequence);
8310 StopTest(KErrNotFound);
8313 iInvalidToneSequence.Copy(TS);
8316 void RA3FDevSoundTonePlayToneSequenceUsingInvalidDescriptorTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
8318 switch (iDevSoundState)
8322 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundTonePlayToneSequenceUsingInvalidDescriptorTest"), EFsmIncorrectErrorPassed));
8323 if (aDevSoundEvent == EEventInitialize)
8325 INFO_PRINTF1(_L("Calling iMMFDevSound::InitializeL"));
8326 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
8327 if (err != KErrNone)
8329 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
8333 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
8334 iDevSoundState = EStateInitializing;
8338 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
8339 StopTest(aError, EFail);
8343 case EStateInitializing:
8345 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
8347 INFO_PRINTF1(_L("Calling iMMFDevSound->PlayToneSequenceL with an invalid descriptor as argument"));
8348 TRAPD(err, iMMFDevSound->PlayToneSequenceL(iInvalidToneSequence));
8349 if (err != KErrNone)
8351 ERR_PRINTF2(_L("CMMFDevSound::PlayToneSequenceL left with error = %d and it should not leave"), err);
8352 StopTest(err, EFail);
8355 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
8357 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
8362 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
8363 StopTest(aError, EFail);
8369 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
8370 StopTest(aError, EFail);
8375 void RA3FDevSoundTonePlayToneSequenceUsingInvalidDescriptorTest::ToneFinished(TInt aError)
8377 INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
8378 if (aError == KErrCorrupt)
8380 INFO_PRINTF2(_L("ToneFinished called with KErrCorrupt %d which is the expected error"), aError);
8385 ERR_PRINTF3(_L("ToneFinished called with error = %d, when the expected error is = %d"), aError, KErrCorrupt);
8386 StopTest(aError, EFail);