Update contrib.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Implementation of Integraton test step classes for A3F DevSound Tone test cases.
18 #include "tsi_a3f_devsound_tone.h"
22 * RTestStepA3FDevSoundToneBase - Test step constructor
25 RTestStepA3FDevSoundToneBase::RTestStepA3FDevSoundToneBase(const TDesC& aTestName, const TDesC& aSectName)
30 iCallBack(NULL, NULL),
31 iState(EStateToneStart)
34 iTestStepName = aTestName; // store the name of the test case
40 * RTestStepA3FDevSoundToneBase - Test step constructor
43 RTestStepA3FDevSoundToneBase::RTestStepA3FDevSoundToneBase(const TDesC& aTestName)
48 iCallBack(NULL, NULL),
49 iState(EStateToneStart)
52 iTestStepName = aTestName; // store the name of the test case
62 void RTestStepA3FDevSoundToneBase::KickoffTestL()
64 // Create instance of CMMFDevSound
65 INFO_PRINTF1(_L("--- Creating DevSound object..."));
66 iMMFDevSound = CMMFDevSound::NewL();
68 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
72 Fsm(EEventToneStart,KErrNone); // call to start the DevSound finite state machine for tone playing
81 void RTestStepA3FDevSoundToneBase::CloseTest()
85 INFO_PRINTF1(_L("--- Deleting DevSound object..."));
103 void RTestStepA3FDevSoundToneBase::InitializeComplete(TInt aError)
105 Fsm(EEventInitCompleteTone,aError);
114 void RTestStepA3FDevSoundToneBase::ToneFinished(TInt aError)
116 if ((aError == KErrUnderflow))
118 INFO_PRINTF2(_L("DevSound called ToneFinished with error = %d as expected"), aError);
119 StopTest(aError,EPass);
123 INFO_PRINTF2(_L("DevSound called ToneFinished with error = %d that was NOT expected"), aError);
134 void RTestStepA3FDevSoundToneBase::BufferToBeFilled(CMMFBuffer* /*aBuffer*/)
136 __ASSERT_ALWAYS(0,Panic(_L("RTestStepA3FDevSoundToneBase"),EInvalidCallbackCall));
145 void RTestStepA3FDevSoundToneBase::PlayError(TInt /*aError*/)
147 __ASSERT_ALWAYS(0,Panic(_L("RTestStepA3FDevSoundToneBase"),EInvalidCallbackCall));
157 void RTestStepA3FDevSoundToneBase::RecordError(TInt /*aError*/)
159 __ASSERT_ALWAYS(0,Panic(_L("RTestStepA3FDevSoundToneBase"),EInvalidCallbackCall));
168 void RTestStepA3FDevSoundToneBase::BufferToBeEmptied(CMMFBuffer* /*aBuffer*/)
170 __ASSERT_ALWAYS(0,Panic(_L("RTestStepA3FDevSoundToneBase"),EInvalidCallbackCall));
179 void RTestStepA3FDevSoundToneBase::ConvertError(TInt /*aError*/)
181 __ASSERT_ALWAYS(0,Panic(_L("RTestStepA3FDevSoundToneBase"),EInvalidCallbackCall));
190 void RTestStepA3FDevSoundToneBase::DeviceMessage(TUid /*aMessageType*/, const TDesC8& /*aMsg*/)
192 __ASSERT_ALWAYS(0,Panic(_L("RTestStepA3FDevSoundToneBase"),EInvalidCallbackCall));
201 TInt RTestStepA3FDevSoundToneBase::TimerCallback(TAny* aPtr)
203 static_cast<RTestStepA3FDevSoundToneBase*>(aPtr)->DoTimerCallback();
213 void RTestStepA3FDevSoundToneBase::DoTimerCallback()
215 // The derived classes may provide the implementation if needed
220 * ConvertDesToTMMFSampleRate
223 TUint RTestStepA3FDevSoundToneBase::ConvertDesToTMMFSampleRate(const TDesC& aSampleRateString)
227 STR_SWITCH(aSampleRateString)
229 STR_CASE(_L("EMMFSampleRate8000Hz"))
231 rate = EMMFSampleRate8000Hz;
234 STR_CASE(_L("EMMFSampleRate11025Hz"))
236 rate = EMMFSampleRate11025Hz;
239 STR_CASE(_L("EMMFSampleRate12000Hz"))
241 rate = EMMFSampleRate12000Hz;
244 STR_CASE(_L("EMMFSampleRate16000Hz"))
246 rate = EMMFSampleRate16000Hz;
249 STR_CASE(_L("EMMFSampleRate22050Hz"))
251 rate = EMMFSampleRate22050Hz;
254 STR_CASE(_L("EMMFSampleRate24000Hz"))
256 rate = EMMFSampleRate24000Hz;
259 STR_CASE(_L("EMMFSampleRate32000Hz"))
261 rate = EMMFSampleRate32000Hz;
264 STR_CASE(_L("EMMFSampleRate44100Hz"))
266 rate = EMMFSampleRate44100Hz;
269 STR_CASE(_L("EMMFSampleRate48000Hz"))
271 rate = EMMFSampleRate48000Hz;
274 STR_CASE(_L("EMMFSampleRate64000Hz"))
276 rate = EMMFSampleRate64000Hz;
279 STR_CASE(_L("EMMFSampleRate88200Hz"))
281 rate = EMMFSampleRate88200Hz;
284 STR_CASE(_L("EMMFSampleRate96000Hz"))
286 rate = EMMFSampleRate96000Hz;
289 STR_CASE(_L("InvalidRate"))
297 ERR_PRINTF1(_L("Attempt to convert invalid sample rate"));
298 StopTest(KErrGeneral);
303 INFO_PRINTF2(_L("Sample Rate = %S"), &aSampleRateString);
309 // RStepA3FDevSoundDTMFTonePlay
314 * RStepA3FDevSoundDTMFTonePlay - Test step constructor
317 RStepA3FDevSoundDTMFTonePlay::RStepA3FDevSoundDTMFTonePlay(const TDesC& aTestName)
318 :RTestStepA3FDevSoundToneBase(aTestName)
327 RStepA3FDevSoundDTMFTonePlay* RStepA3FDevSoundDTMFTonePlay::NewL(const TDesC& aTestName)
329 RStepA3FDevSoundDTMFTonePlay* self = new (ELeave) RStepA3FDevSoundDTMFTonePlay(aTestName);
339 void RStepA3FDevSoundDTMFTonePlay::DoKickoffTestL()
346 * - Executes DTMF tone playing events of DevSound in sequence
349 void RStepA3FDevSoundDTMFTonePlay::Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError)
353 case EStateToneStart:
355 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundDTMFTonePlay"),EFsmIncorrectErrorPassed));
356 if (aDevSoundEvent == EEventToneStart)
358 // Initializing DevSound object for tone play
359 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
360 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
363 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
367 INFO_PRINTF1(_L("State: EStateToneInitializing"));
368 iState = EStateToneInitializing;
372 ERR_PRINTF2(_L("DevSound EEventToneStart not received as expected. Received event: %d"), aDevSoundEvent);
373 StopTest(aError, EFail);
380 case EStateToneInitializing:
382 if (aDevSoundEvent == EEventInitCompleteTone && aError == KErrNone)
384 TPtrC dtmfString = (_L("0123456789,abcdef,*#"));
385 TTimeIntervalMicroSeconds32 on(KMicroSecsInOneSec), off(KMicroSecsInOneSec), pause(0);
386 // Define the duration of tone on, tone off and tone pause to be used during the DTMF tone playback operation
387 INFO_PRINTF1(_L("Calling CMMFDevSound::SetDTMFLengths"));
388 iMMFDevSound->SetDTMFLengths(on,off,pause);
389 // Initialize the audio device and start playing the DTMF string
390 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayDTMFStringL"));
391 TRAPD(err, iMMFDevSound->PlayDTMFStringL(dtmfString));
394 ERR_PRINTF2(_L("CMMFDevSound::PlayDTMFStringL left with error = %d"), err);
398 INFO_PRINTF1(_L("State: EStateTonePlaying"));
399 iState = EStateTonePlaying;
402 else if (aDevSoundEvent == EEventInitCompleteTone && aError != KErrNone)
404 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
409 ERR_PRINTF2(_L("DevSound EEventInitCompleteTone not received as expected. Received event: %d"), aDevSoundEvent);
410 StopTest(aError, EFail);
419 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iState);
420 StopTest(KErrGeneral);
427 // RStepA3FDevSoundNormalAndDualTonePlay
432 * RStepA3FDevSoundNormalAndDualTonePlay - Test step constructor
435 RStepA3FDevSoundNormalAndDualTonePlay::RStepA3FDevSoundNormalAndDualTonePlay(const TDesC& aTestName, const TDesC& aSectName)
436 :RTestStepA3FDevSoundToneBase(aTestName, aSectName),
447 RStepA3FDevSoundNormalAndDualTonePlay* RStepA3FDevSoundNormalAndDualTonePlay::NewL(const TDesC& aTestName, const TDesC& aSectName)
449 RStepA3FDevSoundNormalAndDualTonePlay* self = new (ELeave) RStepA3FDevSoundNormalAndDualTonePlay(aTestName, aSectName);
459 void RStepA3FDevSoundNormalAndDualTonePlay::DoKickoffTestL()
461 //Getting the number of times the audio is to be repeated during the tone playback operation
462 if (GetIntFromConfig(iSectName,_L("Repeat"),iRepeat))
464 INFO_PRINTF2(_L("Repeat count taken from config file: %d"),iRepeat);
468 INFO_PRINTF2(_L("Default repeat count used: %d"), iRepeat);
471 // Getting the boolean flag value indicating whether dual tone playback should occur instead of the normal tone playback
472 if (GetBoolFromConfig(iSectName,_L("DualTone"),iDualTone))
474 INFO_PRINTF2(_L("Boolean value indicating whether to use dual tone playback taken from config file: %d"),iDualTone);
478 INFO_PRINTF2(_L("Default boolean value indicating whether to use dual tone playback used: %d"), iDualTone);
486 * - Executes either the normal or dual tone playing events of DevSound in sequence
489 void RStepA3FDevSoundNormalAndDualTonePlay::Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError)
493 case EStateToneStart:
495 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundNormalAndDualTonePlay"),EFsmIncorrectErrorPassed));
496 if (aDevSoundEvent == EEventToneStart)
498 // Initializing DevSound object for tone play
499 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
500 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
503 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
507 INFO_PRINTF1(_L("State: EStateToneInitializing"));
508 iState = EStateToneInitializing;
512 ERR_PRINTF2(_L("DevSound EEventToneStart not received as expected. Received event: %d"), aDevSoundEvent);
513 StopTest(aError, EFail);
520 case EStateToneInitializing:
522 if (aDevSoundEvent == EEventInitCompleteTone && aError == KErrNone)
524 TTimeIntervalMicroSeconds repeatTrailingSilence(KMicroSecsInOneSec), duration(KMicroSecsInOneSec);
525 // Define the number of times the audio is to be repeated during the tone playback operation
526 INFO_PRINTF1(_L("Calling CMMFDevSound::SetToneRepeats"));
527 iMMFDevSound->SetToneRepeats(iRepeat, repeatTrailingSilence);
530 // Initialize audio device and start playing a dual tone
531 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayDualToneL"));
532 TRAPD(err, iMMFDevSound->PlayDualToneL(KFrequency1, KFrequency2, duration));
535 ERR_PRINTF2(_L("CMMFDevSound::PlayDualToneL left with error = %d"), err);
542 // Initialize the audio device and start playing a tone
543 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayToneL"));
544 TRAPD(err, iMMFDevSound->PlayToneL(KFrequency1, duration));
547 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error = %d"), err);
552 INFO_PRINTF1(_L("State: EStateTonePlaying"));
553 iState = EStateTonePlaying;
556 else if (aDevSoundEvent == EEventInitCompleteTone && aError != KErrNone)
558 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
563 ERR_PRINTF2(_L("DevSound EEventInitCompleteTone not received as expected. Received event: %d"), aDevSoundEvent);
564 StopTest(aError, EFail);
573 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iState);
574 StopTest(KErrGeneral);
581 // RStepA3FDevSoundInitializeWhileTonePlaying
586 * RStepA3FDevSoundInitializeWhileTonePlaying - Test step constructor
589 RStepA3FDevSoundInitializeWhileTonePlaying::RStepA3FDevSoundInitializeWhileTonePlaying(const TDesC& aTestName)
590 :RTestStepA3FDevSoundToneBase(aTestName)
599 RStepA3FDevSoundInitializeWhileTonePlaying* RStepA3FDevSoundInitializeWhileTonePlaying::NewL(const TDesC& aTestName)
601 RStepA3FDevSoundInitializeWhileTonePlaying* self = new (ELeave) RStepA3FDevSoundInitializeWhileTonePlaying(aTestName);
611 void RStepA3FDevSoundInitializeWhileTonePlaying::DoKickoffTestL()
620 void RStepA3FDevSoundInitializeWhileTonePlaying::Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError)
624 case EStateToneStart:
626 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundInitializeWhileTonePlaying"),EFsmIncorrectErrorPassed));
627 if (aDevSoundEvent == EEventToneStart)
629 // Initializing DevSound object for tone play
630 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
631 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
634 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
638 INFO_PRINTF1(_L("State: EStateToneInitializing"));
639 iState = EStateToneInitializing;
643 ERR_PRINTF2(_L("DevSound EEventToneStart not received as expected. Received event: %d"), aDevSoundEvent);
644 StopTest(aError, EFail);
651 case EStateToneInitializing:
653 if (aDevSoundEvent == EEventInitCompleteTone && aError == KErrNone)
655 TTimeIntervalMicroSeconds duration(KMicroSecsInTenSecs);
656 // Initialize the audio device and start playing a tone
657 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayToneL"));
658 TRAPD(err, iMMFDevSound->PlayToneL(KFrequency1, duration));
661 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error = %d"), err);
665 INFO_PRINTF1(_L("State: EStateTonePlaying"));
666 iState = EStateTonePlaying;
668 // Calling CMMFDevSound::InitializeL again while tone playing!
669 INFO_PRINTF1(_L("CMMFDevSound::InitializeL called again while tone playing!"));
670 TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
671 if (err == KErrNotReady)
673 INFO_PRINTF2(_L("CMMFDevSound::InitializeL left as expected with error = %d"), err);
678 ERR_PRINTF2(_L("CMMFDevSound::InitializeL did NOT leave with KErrNotReady as expected. Error = %d"), err);
679 StopTest(KErrUnknown);
682 else if (aDevSoundEvent == EEventInitCompleteTone && aError != KErrNone)
684 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
689 ERR_PRINTF2(_L("DevSound EEventInitCompleteTone not received as expected. Received event: %d"), aDevSoundEvent);
690 StopTest(aError, EFail);
699 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iState);
700 StopTest(KErrGeneral);
707 // RStepA3FDevSoundNotSupportedPlayFixedSeq
712 * RStepA3FDevSoundNotSupportedPlayFixedSeq - Test step constructor
715 RStepA3FDevSoundNotSupportedPlayFixedSeq::RStepA3FDevSoundNotSupportedPlayFixedSeq(const TDesC& aTestName)
716 :RTestStepA3FDevSoundToneBase(aTestName)
725 RStepA3FDevSoundNotSupportedPlayFixedSeq* RStepA3FDevSoundNotSupportedPlayFixedSeq::NewL(const TDesC& aTestName)
727 RStepA3FDevSoundNotSupportedPlayFixedSeq* self = new (ELeave) RStepA3FDevSoundNotSupportedPlayFixedSeq(aTestName);
737 void RStepA3FDevSoundNotSupportedPlayFixedSeq::DoKickoffTestL()
746 void RStepA3FDevSoundNotSupportedPlayFixedSeq::Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError)
750 case EStateToneStart:
752 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundNotSupportedPlayFixedSeq"),EFsmIncorrectErrorPassed));
753 if (aDevSoundEvent == EEventToneStart)
755 // Initializing DevSound object for tone play
756 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
757 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
760 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
764 INFO_PRINTF1(_L("State: EStateToneInitializing"));
765 iState = EStateToneInitializing;
769 ERR_PRINTF2(_L("DevSound EEventToneStart not received as expected. Received event: %d"), aDevSoundEvent);
770 StopTest(aError, EFail);
777 case EStateToneInitializing:
779 if (aDevSoundEvent == EEventInitCompleteTone && aError == KErrNone)
781 TInt seqCount = iMMFDevSound->FixedSequenceCount();
784 ERR_PRINTF2(_L("CMMFDevSound::FixedSequenceCount() did not return 0 as always expected. It returned %d instead!"), seqCount);
788 INFO_PRINTF1(_L("CMMFDevSound::FixedSequenceCount() call returned 0 as always expected"));
790 // Initialize the audio device and start playing the specified pre-defined tone sequence.
791 INFO_PRINTF1(_L("Calling the not supported CMMFDevSound::PlayFixedSequenceL"));
792 TRAPD(err, iMMFDevSound->PlayFixedSequenceL(0));
793 if (err == KErrNotSupported)
795 INFO_PRINTF2(_L("CMMFDevSound::PlayFixedSequenceL left as expected with error = %d"), err);
800 ERR_PRINTF2(_L("CMMFDevSound::PlayFixedSequenceL did NOT leave with KErrNotSupported as expected. Error = %d"), err);
801 StopTest(KErrUnknown);
804 else if (aDevSoundEvent == EEventInitCompleteTone && aError != KErrNone)
806 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
811 ERR_PRINTF2(_L("DevSound EEventInitCompleteTone not received as expected. Received event: %d"), aDevSoundEvent);
812 StopTest(aError, EFail);
821 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iState);
822 StopTest(KErrGeneral);
829 // RStepA3FDevSoundInvalidInitializeForTone
834 * RStepA3FDevSoundInvalidInitializeForTone - Test step constructor
837 RStepA3FDevSoundInvalidInitializeForTone::RStepA3FDevSoundInvalidInitializeForTone(const TDesC& aTestName)
838 :RTestStepA3FDevSoundToneBase(aTestName)
847 RStepA3FDevSoundInvalidInitializeForTone* RStepA3FDevSoundInvalidInitializeForTone::NewL(const TDesC& aTestName)
849 RStepA3FDevSoundInvalidInitializeForTone* self = new (ELeave) RStepA3FDevSoundInvalidInitializeForTone(aTestName);
859 void RStepA3FDevSoundInvalidInitializeForTone::DoKickoffTestL()
868 void RStepA3FDevSoundInvalidInitializeForTone::Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError)
872 case EStateToneStart:
874 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundInvalidInitializeForTone"),EFsmIncorrectErrorPassed));
875 if (aDevSoundEvent == EEventToneStart)
877 TFourCC fourCCCodeMP3(KMMFFourCCCodeMP3);
878 // Initializing DevSound object for tone play using invalid version of CMMFDevSound::InitializeL
879 INFO_PRINTF1(_L("Calling invalid version of CMMFDevSound::InitializeL for tone play..."));
880 TRAPD(err, iMMFDevSound->InitializeL(*this, fourCCCodeMP3, EMMFStateTonePlaying));
881 if (err == KErrNotSupported)
883 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left as expected with error = %d"), err);
888 ERR_PRINTF2(_L("CMMFDevSound::InitializeL did NOT leave with KErrNotSupported as expected. Error = %d"), err);
889 StopTest(KErrUnknown);
894 ERR_PRINTF2(_L("DevSound EEventToneStart not received as expected. Received event: %d"), aDevSoundEvent);
895 StopTest(aError, EFail);
904 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iState);
905 StopTest(KErrGeneral);
912 // RStepA3FDevSoundCancelInitializeTone
917 * RStepA3FDevSoundCancelInitializeTone - Test step constructor
920 RStepA3FDevSoundCancelInitializeTone::RStepA3FDevSoundCancelInitializeTone(const TDesC& aTestName, const TDesC& aSectName)
921 :RTestStepA3FDevSoundToneBase(aTestName, aSectName)
930 RStepA3FDevSoundCancelInitializeTone* RStepA3FDevSoundCancelInitializeTone::NewL(const TDesC& aTestName, const TDesC& aSectName)
932 RStepA3FDevSoundCancelInitializeTone* self = new (ELeave) RStepA3FDevSoundCancelInitializeTone(aTestName, aSectName);
942 void RStepA3FDevSoundCancelInitializeTone::DoKickoffTestL()
951 void RStepA3FDevSoundCancelInitializeTone::InitializeComplete(TInt aError)
953 INFO_PRINTF1(_L("InitializeComplete callback was received. This is not the expected behaviour"));
954 INFO_PRINTF1(_L("InitializeL was not cancelled"));
955 StopTest(aError, EFail);
963 void RStepA3FDevSoundCancelInitializeTone::DoTimerCallback()
965 iTimer->Cancel(); // only really wanted a one-shot
966 INFO_PRINTF1(_L("InitializeComplete callback was not received. This is the expected behaviour"));
967 INFO_PRINTF1(_L("Use SetConfigL to verify that DevSound has not been initialised"));
968 TMMFCapabilities capabilities;
970 if(!GetStringFromConfig(iSectName, _L("SampleRate"), iSampleRate))
972 TPtrC keyName(_L("SampleRate"));
973 ERR_PRINTF3(_L("Error in getting sample rate from config file in %S section via the %S key field."), &iSectName, &keyName);
974 StopTest(KErrPathNotFound);
978 capabilities.iRate = ConvertDesToTMMFSampleRate(iSampleRate);
979 TRAPD(errConfig, iMMFDevSound->SetConfigL(capabilities));
980 if(errConfig == KErrNotReady)
982 INFO_PRINTF2(_L("SetConfigL returned with %d as expected"), errConfig);
983 INFO_PRINTF1(_L("InitializeL was cancelled successfully"));
986 else if (errConfig == KErrNone)
988 INFO_PRINTF2(_L("SetConfigL returned with KErrNone %d"), errConfig);
989 INFO_PRINTF1(_L("InitializeL was not cancelled successfully"));
990 StopTest(errConfig, EFail);
994 INFO_PRINTF2(_L("SetConfigL returned with unexpected error %d"), errConfig);
995 StopTest(errConfig, EFail);
1002 * - Executes Toneing events of DevSound in sequence
1005 void RStepA3FDevSoundCancelInitializeTone::Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError)
1009 case EStateToneStart:
1011 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundCancelInitializeTone"),EFsmIncorrectErrorPassed));
1012 if (aDevSoundEvent == EEventToneStart)
1014 // Initializing DevSound object for TonePlaying mode
1015 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1016 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
1017 if (err != KErrNone)
1019 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1025 INFO_PRINTF1(_L("State: EStateToneInitializing"));
1026 iState = EStateToneInitializing;
1027 INFO_PRINTF1(_L("Calling CMMFDevSound::CancelInitialize()"));
1028 iMMFDevSound->CancelInitialize();
1029 INFO_PRINTF1(_L("Start timer to wait for InitializeComplete"));
1030 TCallBack callback (TimerCallback, this);
1031 iTimer->Start(KMicroSecsInTenSecs, 0, callback);
1036 ERR_PRINTF2(_L("DevSound EEventToneStart not received as expected. Received event: %d"), aDevSoundEvent);
1037 StopTest(aError, EFail);
1043 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iState);
1044 StopTest(KErrGeneral);
1051 // RStepA3FDevSoundEmptyBuffersInitializedForTone
1056 * RStepA3FDevSoundInitializeWhileTonePlaying - Test step constructor
1059 RStepA3FDevSoundEmptyBuffersInitializedForTone::RStepA3FDevSoundEmptyBuffersInitializedForTone(const TDesC& aTestName, const TDesC& aSectName)
1060 :RTestStepA3FDevSoundToneBase(aTestName, aSectName)
1069 RStepA3FDevSoundEmptyBuffersInitializedForTone* RStepA3FDevSoundEmptyBuffersInitializedForTone::NewL(const TDesC& aTestName, const TDesC& aSectName)
1071 RStepA3FDevSoundEmptyBuffersInitializedForTone* self = new (ELeave) RStepA3FDevSoundEmptyBuffersInitializedForTone(aTestName, aSectName);
1081 void RStepA3FDevSoundEmptyBuffersInitializedForTone::DoKickoffTestL()
1090 void RStepA3FDevSoundEmptyBuffersInitializedForTone::Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError)
1094 case EStateToneStart:
1096 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundInitializeWhileTonePlaying"),EFsmIncorrectErrorPassed));
1097 if (aDevSoundEvent == EEventToneStart)
1099 // Initializing DevSound object for tone play
1100 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1101 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
1102 if (err != KErrNone)
1104 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1108 INFO_PRINTF1(_L("State: EStateToneInitializing"));
1109 iState = EStateToneInitializing;
1113 ERR_PRINTF2(_L("DevSound EEventToneStart not received as expected. Received event: %d"), aDevSoundEvent);
1114 StopTest(aError, EFail);
1121 case EStateToneInitializing:
1123 if (aDevSoundEvent == EEventInitCompleteTone && aError == KErrNone)
1125 // Calling EmptyBuffers
1126 INFO_PRINTF1(_L("Calling CMMFDevSound::EmptyBuffers()"));
1128 err = iMMFDevSound->EmptyBuffers();
1129 if (err == KErrNotSupported)
1131 ERR_PRINTF2(_L("CMMFDevSound::EmptyBuffers() returned expected error = %d"), err);
1136 ERR_PRINTF2(_L("CMMFDevSound::EmptyBuffers() did not return KErrNotSupported as expected. Returned with unexpected error = %d"), err);
1140 else if (aDevSoundEvent == EEventInitCompleteTone && aError != KErrNone)
1142 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
1147 ERR_PRINTF2(_L("DevSound EEventInitCompleteTone not received as expected. Received event: %d"), aDevSoundEvent);
1148 StopTest(aError, EFail);
1157 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iState);
1158 StopTest(KErrGeneral);
1164 // RStepA3FDevSoundEmptyBuffersWhileTonePlaying
1169 * RStepA3FDevSoundEmptyBuffersWhileTonePlaying - Test step constructor
1172 RStepA3FDevSoundEmptyBuffersWhileTonePlaying::RStepA3FDevSoundEmptyBuffersWhileTonePlaying(const TDesC& aTestName)
1173 :RTestStepA3FDevSoundToneBase(aTestName)
1182 RStepA3FDevSoundEmptyBuffersWhileTonePlaying* RStepA3FDevSoundEmptyBuffersWhileTonePlaying::NewL(const TDesC& aTestName)
1184 RStepA3FDevSoundEmptyBuffersWhileTonePlaying* self = new (ELeave) RStepA3FDevSoundEmptyBuffersWhileTonePlaying(aTestName);
1194 void RStepA3FDevSoundEmptyBuffersWhileTonePlaying::DoKickoffTestL()
1203 void RStepA3FDevSoundEmptyBuffersWhileTonePlaying::Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError)
1207 case EStateToneStart:
1209 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundEmptyBuffersWhileTonePlaying"),EFsmIncorrectErrorPassed));
1210 if (aDevSoundEvent == EEventToneStart)
1212 // Initializing DevSound object for tone play
1213 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1214 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
1215 if (err != KErrNone)
1217 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1221 INFO_PRINTF1(_L("State: EStateToneInitializing"));
1222 iState = EStateToneInitializing;
1226 ERR_PRINTF2(_L("DevSound EEventToneStart not received as expected. Received event: %d"), aDevSoundEvent);
1227 StopTest(aError, EFail);
1234 case EStateToneInitializing:
1236 if (aDevSoundEvent == EEventInitCompleteTone && aError == KErrNone)
1238 TTimeIntervalMicroSeconds duration(KMicroSecsInTenSecs);
1239 // Initialize the audio device and start playing a tone
1240 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayToneL"));
1241 TRAPD(err, iMMFDevSound->PlayToneL(KFrequency1, duration));
1242 if (err != KErrNone)
1244 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error = %d"), err);
1248 INFO_PRINTF1(_L("State: EStateTonePlaying"));
1249 iState = EStateTonePlaying;
1251 // Calling CMMFDevSound::EmptyBuffers while tone playing
1252 INFO_PRINTF1(_L("CMMFDevSound::EmptyBuffers called while tone playing"));
1253 err = iMMFDevSound->EmptyBuffers();
1254 if (err == KErrNotSupported)
1256 INFO_PRINTF2(_L("CMMFDevSound::EmptyBuffers left as expected with error = %d"), err);
1257 StopTest(err,EPass);
1261 ERR_PRINTF2(_L("CMMFDevSound::EmptyBuffers did NOT leave with KErrNotSupported as expected. Error = %d"), err);
1262 StopTest(KErrUnknown);
1265 else if (aDevSoundEvent == EEventInitCompleteTone && aError != KErrNone)
1267 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
1272 ERR_PRINTF2(_L("DevSound EEventInitCompleteTone not received as expected. Received event: %d"), aDevSoundEvent);
1273 StopTest(aError, EFail);
1282 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iState);
1283 StopTest(KErrGeneral);