First public contribution.
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 Play test cases.
18 #include "tsi_a3f_devsound_play.h"
22 * RTestStepA3FDevSoundPlayBase - Test step constructor
25 RTestStepA3FDevSoundPlayBase::RTestStepA3FDevSoundPlayBase(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
30 iCallBack(NULL, NULL),
31 iInputDataType(aInputDataType),
34 iSampleRate(KNullDesC),
35 iMonoStereo(KNullDesC),
36 iPlayState(EStatePlayStart),
39 iInvalidConfig(EFalse),
43 iTestStepName = aTestName; // store the name of the test case
49 * RTestStepA3FDevSoundPlayBase - Test step constructor
52 RTestStepA3FDevSoundPlayBase::RTestStepA3FDevSoundPlayBase(const TDesC& aTestName, const TDesC& aSectName)
57 iCallBack(NULL, NULL),
58 iInputDataType(KMMFFourCCCodePCM16),
61 iSampleRate(KNullDesC),
62 iMonoStereo(KNullDesC),
63 iPlayState(EStatePlayStart),
66 iInvalidConfig(EFalse),
70 iTestStepName = aTestName; // store the name of the test case
76 * RTestStepA3FDevSoundPlayBase - Test step constructor
79 RTestStepA3FDevSoundPlayBase::RTestStepA3FDevSoundPlayBase(const TDesC& aTestName, const TFourCC& aInputDataType)
84 iCallBack(NULL, NULL),
85 iInputDataType(aInputDataType),
88 iSampleRate(KNullDesC),
89 iMonoStereo(KNullDesC),
90 iPlayState(EStatePlayStart),
93 iInvalidConfig(EFalse),
97 iTestStepName = aTestName; // store the name of the test case
104 * RTestStepA3FDevSoundPlayBase - Test step constructor
107 RTestStepA3FDevSoundPlayBase::RTestStepA3FDevSoundPlayBase(const TDesC& aTestName)
112 iCallBack(NULL, NULL),
113 iInputDataType(KMMFFourCCCodePCM16),
114 iSectName(KNullDesC),
115 iFilename(KNullDesC),
116 iSampleRate(KNullDesC),
117 iMonoStereo(KNullDesC),
118 iPlayState(EStatePlayStart),
121 iInvalidConfig(EFalse),
125 iTestStepName = aTestName; // store the name of the test case
135 void RTestStepA3FDevSoundPlayBase::KickoffTestL()
137 TInt err = iFs.Connect();
140 ERR_PRINTF2(_L("Could not connect to Filesystem. Error = %d"), err);
144 // Get the file name of the audio file to play
146 if(!GetStringFromConfig(iSectName, _L("EmuPlayFile"), iFilename))
148 TPtrC keyName(_L("EmuPlayFile"));
149 ERR_PRINTF3(_L("Error in getting file name from config file in %S section via the %S key field."), &iSectName, &keyName);
150 StopTest(KErrPathNotFound);
155 if(!GetStringFromConfig(iSectName, _L("HwPlayFile"), iFilename))
157 TPtrC keyName(_L("HwPlayFile"));
158 ERR_PRINTF3(_L("Error in getting file name from config file in %S section via the %S key field."), &iSectName, &keyName);
159 StopTest(KErrPathNotFound);
164 // Check if SetConfig and FourCC are to be used or not
165 CheckConfigAndFourCCUsage();
167 INFO_PRINTF2(_L("Section Name is :%S"), &iSectName);
169 // Open using RFile for playback
170 err = iFile.Open(iFs, iFilename, EFileRead);
173 ERR_PRINTF2(_L("Could not Open the File: Error = %d"), err);
177 // Create instance of CMMFDevSound
178 iMMFDevSound = CMMFDevSound::NewL();
180 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
181 iCallBack = TCallBack(TimerCallback, this);
184 Fsm(EEventPlayStart, KErrNone); // call to initialize DevSound
193 void RTestStepA3FDevSoundPlayBase::DoKickoffTestL()
195 INFO_PRINTF2(_L("File to be played -> %S"), &iFilename);
204 void RTestStepA3FDevSoundPlayBase::ToneFinished(TInt /*aError*/)
206 __ASSERT_ALWAYS(0,Panic(_L("RTestStepA3FDevSoundPlayBase"),EInvalidCallbackCall));
215 void RTestStepA3FDevSoundPlayBase::RecordError(TInt)
217 __ASSERT_ALWAYS(0,Panic(_L("RTestStepA3FDevSoundPlayBase"),EInvalidCallbackCall));
226 void RTestStepA3FDevSoundPlayBase::BufferToBeEmptied(CMMFBuffer* /*aBuffer*/)
228 __ASSERT_ALWAYS(0,Panic(_L("RTestStepA3FDevSoundPlayBase"),EInvalidCallbackCall));
237 void RTestStepA3FDevSoundPlayBase::ConvertError(TInt /*aError*/)
239 __ASSERT_ALWAYS(0,Panic(_L("RTestStepA3FDevSoundPlayBase"),EInvalidCallbackCall));
248 void RTestStepA3FDevSoundPlayBase::DeviceMessage(TUid /*aMessageType*/, const TDesC8& /*aMsg*/)
250 __ASSERT_ALWAYS(0,Panic(_L("RTestStepA3FDevSoundPlayBase"),EInvalidCallbackCall));
259 TInt RTestStepA3FDevSoundPlayBase::TimerCallback(TAny* aPtr)
261 static_cast<RTestStepA3FDevSoundPlayBase*>(aPtr)->DoTimerCallback();
271 void RTestStepA3FDevSoundPlayBase::DoTimerCallback()
273 // The derived classes may provide the implementation if needed
281 void RTestStepA3FDevSoundPlayBase::CloseTest()
285 INFO_PRINTF1(_L("Deleting DevSound object..."));
306 void RTestStepA3FDevSoundPlayBase::InitializeComplete(TInt aError)
308 if (iPlayState == EStatePlayInitializing)
310 Fsm(EEventInitCompletePlay,aError);
320 void RTestStepA3FDevSoundPlayBase::BufferToBeFilled(CMMFBuffer* aBuffer)
324 ERR_PRINTF1(_L("BufferToBeFilled callback received a NULL CMMFBuffer!"));
325 StopTest(KErrGeneral);
331 // Call to continue the Play process
332 Fsm(EEventBTBF,KErrNone);
341 void RTestStepA3FDevSoundPlayBase::PlayError(TInt aError)
343 INFO_PRINTF2(_L("DevSound called PlayError with error = %d"), aError);
344 if ((iBuffer->LastBuffer()) && (aError == KErrUnderflow))
350 StopTest(aError, EFail);
358 * - Executes playing events of DevSound in sequence
361 void RTestStepA3FDevSoundPlayBase::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
365 case EStatePlayStart:
367 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RTestStepA3FDevSoundPlayBase"),EFsmIncorrectErrorPassed));
368 if (aDevSoundEvent == EEventPlayStart)
370 // Initializing DevSound object for playing mode to process audio data via desired FourCC code
371 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
375 TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
379 TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
383 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
389 INFO_PRINTF1(_L("State: EStatePlayInitializing"));
390 iPlayState = EStatePlayInitializing;
394 ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
395 StopTest(aError, EFail);
400 case EStatePlayInitializing:
402 if (aDevSoundEvent == EEventInitCompletePlay && aError == KErrNone)
406 // Set Devsound capability settings using CMMFDevSound::SetConfigL
407 SetSampleRateAndChannelMode();
408 TMMFCapabilities capabilities;
409 capabilities.iRate = ConvertDesToTMMFSampleRate(iSampleRate);
410 capabilities.iChannels = ConvertDesToTMMFMonoStereo(iMonoStereo);
412 TRAPD(errConfig, iMMFDevSound->SetConfigL(capabilities));
413 if (errConfig != KErrNone && !iInvalidConfig)
415 ERR_PRINTF2(_L("CMMFDevSound::SetConfigL() left with error = %d"), errConfig);
419 else if (errConfig == KErrArgument && iInvalidConfig)
421 ERR_PRINTF2(_L("CMMFDevSound::SetConfigL() left with expected error = %d"), errConfig);
422 iInvalidConfig = EFalse;
423 StopTest(errConfig, EPass);
428 // Initialize audio device and starts the playing process
429 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL()"));
430 TRAPD(errPlay, iMMFDevSound->PlayInitL());
431 if (errPlay != KErrNone)
433 ERR_PRINTF2(_L("CMMFDevSound::PlayInitL() left with error = %d"), errPlay);
437 INFO_PRINTF1(_L("State: EStatePlaying"));
438 iPlayState = EStatePlaying;
440 else if (aDevSoundEvent == EEventInitCompletePlay && aError != KErrNone)
442 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
447 ERR_PRINTF2(_L("DevSound EEventInitCompletePlay not received as expected. Received event: %d"), aDevSoundEvent);
448 StopTest(aError, EFail);
455 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RTestStepA3FDevSoundPlayBase"),EFsmIncorrectErrorPassed));
456 if (aDevSoundEvent == EEventBTBF)
458 // Fill the buffer with audio data and play the data in the buffer
459 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
460 TInt err = iFile.Read(buffer->Data());
463 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
467 if (buffer->Data().Length() != buffer->RequestSize())
469 INFO_PRINTF3(_L("Data length copied from file = %d. Expected = %d. Must be EOF."), buffer->Data().Length(), buffer->RequestSize());
470 iBuffer->SetLastBuffer(ETrue);
473 // Playing data in the buffer at the current volume
474 iMMFDevSound->PlayData();
479 ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
480 StopTest(aError, EFail);
488 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
489 StopTest(KErrGeneral);
500 void RTestStepA3FDevSoundPlayBase::DisplayCodecInfo()
502 // Display trace about codec under test
503 TUint32 fourCC = iInputDataType.FourCC();
504 INFO_PRINTF5(_L("Codec under test -> %c%c%c%c"), fourCC, fourCC>>8, fourCC>>16, fourCC>>24);
510 * ConvertDesToTMMFSampleRate
513 TUint RTestStepA3FDevSoundPlayBase::ConvertDesToTMMFSampleRate(const TDesC& aSampleRateString)
517 STR_SWITCH(aSampleRateString)
519 STR_CASE(_L("EMMFSampleRate8000Hz"))
521 rate = EMMFSampleRate8000Hz;
524 STR_CASE(_L("EMMFSampleRate11025Hz"))
526 rate = EMMFSampleRate11025Hz;
529 STR_CASE(_L("EMMFSampleRate12000Hz"))
531 rate = EMMFSampleRate12000Hz;
534 STR_CASE(_L("EMMFSampleRate16000Hz"))
536 rate = EMMFSampleRate16000Hz;
539 STR_CASE(_L("EMMFSampleRate22050Hz"))
541 rate = EMMFSampleRate22050Hz;
544 STR_CASE(_L("EMMFSampleRate24000Hz"))
546 rate = EMMFSampleRate24000Hz;
549 STR_CASE(_L("EMMFSampleRate32000Hz"))
551 rate = EMMFSampleRate32000Hz;
554 STR_CASE(_L("EMMFSampleRate44100Hz"))
556 rate = EMMFSampleRate44100Hz;
559 STR_CASE(_L("EMMFSampleRate48000Hz"))
561 rate = EMMFSampleRate48000Hz;
564 STR_CASE(_L("EMMFSampleRate64000Hz"))
566 rate = EMMFSampleRate64000Hz;
569 STR_CASE(_L("EMMFSampleRate88200Hz"))
571 rate = EMMFSampleRate88200Hz;
574 STR_CASE(_L("EMMFSampleRate96000Hz"))
576 rate = EMMFSampleRate96000Hz;
579 STR_CASE(_L("InvalidRate"))
587 ERR_PRINTF1(_L("Attempt to convert invalid sample rate"));
588 StopTest(KErrGeneral);
593 INFO_PRINTF2(_L("Sample Rate = %S"), &iSampleRate);
600 * ConvertDesToTMMFMonoStereo
603 TUint RTestStepA3FDevSoundPlayBase::ConvertDesToTMMFMonoStereo(const TDesC& aMonoStereoString)
605 TUint channelMode = 0;
607 STR_SWITCH(aMonoStereoString)
609 STR_CASE(_L("EMMFMono"))
611 channelMode = EMMFMono;
614 STR_CASE(_L("EMMFStereo"))
616 channelMode = EMMFStereo;
619 STR_CASE(_L("InvalidMode"))
621 channelMode = 0x90000000;
626 ERR_PRINTF1(_L("Attempt to convert invalid channel mode"));
627 StopTest(KErrGeneral);
632 INFO_PRINTF2(_L("Channel = %S"), &iMonoStereo);
639 * SetSampleRateAndChannelMode
642 void RTestStepA3FDevSoundPlayBase::SetSampleRateAndChannelMode()
644 if(!GetStringFromConfig(iSectName, _L("SampleRate"), iSampleRate))
646 TPtrC keyName(_L("SampleRate"));
647 ERR_PRINTF3(_L("Error in getting sample rate from config file in %S section via the %S key field."), &iSectName, &keyName);
648 StopTest(KErrPathNotFound);
652 if(!GetStringFromConfig(iSectName, _L("MonoStereo"), iMonoStereo))
654 TPtrC keyName(_L("MonoStereo"));
655 ERR_PRINTF3(_L("Error in getting channel mode from config file in %S section via the %S key field."), &iSectName, &keyName);
656 StopTest(KErrPathNotFound);
664 * CheckConfigAndFourCCUsage
667 void RTestStepA3FDevSoundPlayBase::CheckConfigAndFourCCUsage()
669 if(!GetBoolFromConfig(iSectName, _L("SetConfig"), iConfig))
671 TPtrC keyName(_L("SetConfig"));
672 ERR_PRINTF3(_L("Error in getting SetConfig flag value from config file in %S section via the %S key field."), &iSectName, &keyName);
673 StopTest(KErrPathNotFound);
676 if(!GetBoolFromConfig(iSectName, _L("UseFourCC"), iUseFourCC))
678 TPtrC keyName(_L("UseFourCC"));
679 ERR_PRINTF3(_L("Error in getting UseFourCC flag value from config file in %S section via the %S key field."), &iSectName, &keyName);
680 StopTest(KErrPathNotFound);
687 // RStepA3FDevSoundPlaySimple
692 * RStepA3FDevSoundPlaySimple - Test step constructor
695 RStepA3FDevSoundPlaySimple::RStepA3FDevSoundPlaySimple(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
696 :RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType)
702 * RStepA3FDevSoundPlaySimple - Test step constructor
705 RStepA3FDevSoundPlaySimple::RStepA3FDevSoundPlaySimple(const TDesC& aTestName, const TDesC& aSectName)
706 :RTestStepA3FDevSoundPlayBase(aTestName, aSectName)
715 RStepA3FDevSoundPlaySimple* RStepA3FDevSoundPlaySimple::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
717 RStepA3FDevSoundPlaySimple* self = new (ELeave) RStepA3FDevSoundPlaySimple(aTestName, aSectName, aInputDataType);
727 RStepA3FDevSoundPlaySimple* RStepA3FDevSoundPlaySimple::NewL(const TDesC& aTestName, const TDesC& aSectName)
729 RStepA3FDevSoundPlaySimple* self = new (ELeave) RStepA3FDevSoundPlaySimple(aTestName, aSectName);
735 // RStepA3FDevSoundPlayEmpty
740 * RStepA3FDevSoundPlayEmpty - Test step constructor
743 RStepA3FDevSoundPlayEmpty::RStepA3FDevSoundPlayEmpty(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
744 :RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType)
753 RStepA3FDevSoundPlayEmpty* RStepA3FDevSoundPlayEmpty::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
755 RStepA3FDevSoundPlayEmpty* self = new (ELeave) RStepA3FDevSoundPlayEmpty(aTestName, aSectName, aInputDataType);
763 * - Executes playing events of DevSound in sequence
766 void RStepA3FDevSoundPlayEmpty::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
770 case EStatePlayStart:
772 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundPlayEmpty"),EFsmIncorrectErrorPassed));
773 if (aDevSoundEvent == EEventPlayStart)
775 // Initializing DevSound object for playing mode to process audio data via desired FourCC code
776 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
780 TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
784 TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
788 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
792 INFO_PRINTF1(_L("State: EStatePlayInitializing"));
793 iPlayState = EStatePlayInitializing;
797 ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
798 StopTest(aError, EFail);
803 case EStatePlayInitializing:
805 if (aDevSoundEvent == EEventInitCompletePlay && aError == KErrNone)
809 // Set Devsound capability settings using CMMFDevSound::SetConfigL
810 SetSampleRateAndChannelMode();
811 TMMFCapabilities capabilities;
812 capabilities.iRate = ConvertDesToTMMFSampleRate(iSampleRate);
813 capabilities.iChannels = ConvertDesToTMMFMonoStereo(iMonoStereo);
815 TRAPD(errConfig, iMMFDevSound->SetConfigL(capabilities));
816 if (errConfig != KErrNone)
818 ERR_PRINTF2(_L("CMMFDevSound::SetConfigL() left with error = %d"), errConfig);
824 // Initialize audio device and starts the playing process
825 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL()"));
826 TRAPD(errPlay, iMMFDevSound->PlayInitL());
827 if (errPlay != KErrNone)
829 ERR_PRINTF2(_L("CMMFDevSound::PlayInitL() left with error = %d"), errPlay);
833 INFO_PRINTF1(_L("State: EStatePlaying"));
834 iPlayState = EStatePlaying;
836 else if (aDevSoundEvent == EEventInitCompletePlay && aError != KErrNone)
838 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
843 ERR_PRINTF2(_L("DevSound EEventInitCompletePlay not received as expected. Received event: %d"), aDevSoundEvent);
844 StopTest(aError, EFail);
851 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundPlayEmpty"),EFsmIncorrectErrorPassed));
852 if (aDevSoundEvent == EEventBTBF)
854 // Fill the buffer with audio data and play the data in the buffer
855 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
856 TInt err = iFile.Read(buffer->Data());
859 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
863 if (buffer->Data().Length() != buffer->RequestSize())
865 iBuffer->SetLastBuffer(ETrue);
866 INFO_PRINTF3(_L("Data length copied from file = %d. Expected = %d. Must be EOF."), buffer->Data().Length(), buffer->RequestSize());
867 // Playing empty data
868 iMMFDevSound->PlayData();
875 ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
876 StopTest(aError, EFail);
884 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
885 StopTest(KErrGeneral);
892 // RStepA3FDevSoundPlayInvalidFourCC
897 * RStepA3FDevSoundPlayInvalidFourCC - Test step constructor
900 RStepA3FDevSoundPlayInvalidFourCC::RStepA3FDevSoundPlayInvalidFourCC(const TDesC& aTestName, const TFourCC& aInputDataType)
901 :RTestStepA3FDevSoundPlayBase(aTestName, aInputDataType)
910 RStepA3FDevSoundPlayInvalidFourCC* RStepA3FDevSoundPlayInvalidFourCC::NewL(const TDesC& aTestName, const TFourCC& aInputDataType)
912 RStepA3FDevSoundPlayInvalidFourCC* self = new (ELeave) RStepA3FDevSoundPlayInvalidFourCC(aTestName, aInputDataType);
923 void RStepA3FDevSoundPlayInvalidFourCC::KickoffTestL()
925 // Create instance of CMMFDevSound
926 INFO_PRINTF1(_L("--- Creating DevSound object..."));
927 iMMFDevSound = CMMFDevSound::NewL();
929 //Display the name of Codec being used
931 Fsm(EEventPlayStart,KErrNone); // call to start the DevSound finite state machine for playing
938 * - Executes playing events of DevSound in sequence
941 void RStepA3FDevSoundPlayInvalidFourCC::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
945 case EStatePlayStart:
947 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundPlayInvalidFourCC"),EFsmIncorrectErrorPassed));
948 if (aDevSoundEvent == EEventPlayStart)
950 // Initializing DevSound object for playing mode to process audio data via desired FourCC code
951 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
953 TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
954 if (err == KErrNotSupported)
956 INFO_PRINTF2(_L("CMMFDevSound::InitializeL left with expected error = %d"), err);
957 StopTest(err, EPass);
961 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
962 INFO_PRINTF2(_L("Expected error = %d"), KErrNotSupported);
963 StopTest(err, EFail);
968 ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
969 StopTest(aError, EFail);
975 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
976 StopTest(KErrGeneral);
986 // RStepA3FDevSoundInitializeWithHwDeviceUID
991 * RStepA3FDevSoundInitializeWithHwDeviceUID - Test step constructor
994 RStepA3FDevSoundInitializeWithHwDeviceUID::RStepA3FDevSoundInitializeWithHwDeviceUID(const TDesC& aTestName)
995 :RTestStepA3FDevSoundPlayBase(aTestName)
1004 RStepA3FDevSoundInitializeWithHwDeviceUID* RStepA3FDevSoundInitializeWithHwDeviceUID::NewL(const TDesC& aTestName)
1006 RStepA3FDevSoundInitializeWithHwDeviceUID* self = new (ELeave) RStepA3FDevSoundInitializeWithHwDeviceUID(aTestName);
1017 void RStepA3FDevSoundInitializeWithHwDeviceUID::KickoffTestL()
1019 // Create instance of CMMFDevSound
1020 INFO_PRINTF1(_L("--- Creating DevSound object..."));
1021 iMMFDevSound = CMMFDevSound::NewL();
1023 //Display the name of Codec being used.
1025 Fsm(EEventPlayStart,KErrNone); // call to start the DevSound finite state machine for playing
1032 * - Executes playing events of DevSound in sequence
1035 void RStepA3FDevSoundInitializeWithHwDeviceUID::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
1039 case EStatePlayStart:
1041 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundInitializeWithHwDeviceUID"),EFsmIncorrectErrorPassed));
1042 if (aDevSoundEvent == EEventPlayStart)
1044 // Initializing DevSound object for playing mode to process audio data via HwDeviceUID
1045 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL with KMmfUidHwDevicePCM16ToPCM16"));
1047 TRAP(err, iMMFDevSound->InitializeL(*this, 0x101F9F00 , EMMFStatePlaying)); //KMmfUidHwDevicePCM16ToPCM16
1048 if (err == KErrNotSupported)
1050 INFO_PRINTF2(_L("CMMFDevSound::InitializeL left with expected error = %d"), err);
1051 StopTest(err, EPass);
1055 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1056 INFO_PRINTF2(_L("Expected error = %d"), KErrNotSupported);
1057 StopTest(err, EFail);
1062 ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
1063 StopTest(aError, EFail);
1069 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
1070 StopTest(KErrGeneral);
1077 // RStepA3FDevSoundPlayInvalidConfig
1082 * RStepA3FDevSoundPlayInvalidConfig - Test step constructor
1085 RStepA3FDevSoundPlayInvalidConfig::RStepA3FDevSoundPlayInvalidConfig(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1086 :RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType)
1095 RStepA3FDevSoundPlayInvalidConfig* RStepA3FDevSoundPlayInvalidConfig::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1097 RStepA3FDevSoundPlayInvalidConfig* self = new (ELeave) RStepA3FDevSoundPlayInvalidConfig(aTestName, aSectName, aInputDataType);
1108 void RStepA3FDevSoundPlayInvalidConfig::KickoffTestL()
1110 // Create instance of CMMFDevSound
1111 INFO_PRINTF1(_L("--- Creating DevSound object..."));
1112 iMMFDevSound = CMMFDevSound::NewL();
1114 iInvalidConfig = ETrue;
1115 //Display the name of Codec being used
1117 CheckConfigAndFourCCUsage();
1118 Fsm(EEventPlayStart,KErrNone); // call to start the DevSound finite state machine for playing
1127 void RStepA3FDevSoundPlayInvalidConfig::PlayError(TInt aError)
1129 if ((iPlayState == EStatePlaying) && (aError == KErrArgument))
1131 INFO_PRINTF2(_L("DevSound called PlayError with expected error = %d"), aError);
1132 StopTest(aError, EPass);
1136 INFO_PRINTF1(_L("Expected error = -6"));
1137 ERR_PRINTF2(_L("DevSound called PlayError with error = %d"), aError);
1138 StopTest(aError, EFail);
1144 // RStepA3FDevSoundReadConfigDuringPlay
1149 * RStepA3FDevSoundReadConfigDuringPlay - Test step constructor
1152 RStepA3FDevSoundReadConfigDuringPlay::RStepA3FDevSoundReadConfigDuringPlay(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1153 :RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType)
1162 RStepA3FDevSoundReadConfigDuringPlay* RStepA3FDevSoundReadConfigDuringPlay::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1164 RStepA3FDevSoundReadConfigDuringPlay* self = new (ELeave) RStepA3FDevSoundReadConfigDuringPlay(aTestName, aSectName, aInputDataType);
1174 void RStepA3FDevSoundReadConfigDuringPlay::BufferToBeFilled(CMMFBuffer* aBuffer)
1178 ERR_PRINTF1(_L("BufferToBeFilled callback received a NULL CMMFBuffer!"));
1179 StopTest(KErrGeneral);
1185 if (iPlayState == EStatePlaying)
1187 TMMFCapabilities capabilities;
1188 capabilities = iMMFDevSound->Config();
1189 INFO_PRINTF1(_L("Config values during Play: "));
1190 if (capabilities.iRate == ConvertDesToTMMFSampleRate(iSampleRate) && capabilities.iChannels == ConvertDesToTMMFMonoStereo(iMonoStereo))
1192 INFO_PRINTF1(_L("Config values before and during playback are same."));
1197 ERR_PRINTF1(_L("Config values before and during playback are different."));
1198 StopTest(KErrGeneral);
1205 // RStepA3FDevSoundSetVolPlayStopGetVol
1210 * RStepA3FDevSoundSetVolPlayStopGetVol - Test step constructor
1213 RStepA3FDevSoundSetVolPlayStopGetVol::RStepA3FDevSoundSetVolPlayStopGetVol(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1214 :RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType),
1216 iVolDuringStopped(0),
1226 RStepA3FDevSoundSetVolPlayStopGetVol* RStepA3FDevSoundSetVolPlayStopGetVol::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1228 RStepA3FDevSoundSetVolPlayStopGetVol* self = new (ELeave) RStepA3FDevSoundSetVolPlayStopGetVol(aTestName, aSectName, aInputDataType);
1238 void RStepA3FDevSoundSetVolPlayStopGetVol::DoKickoffTestL()
1240 INFO_PRINTF2(_L("File to be played -> %S"), &iFilename);
1242 CheckConfigAndFourCCUsage();
1244 TBool vol = GetIntFromConfig(iSectName,_L("Setvolume"),iSetVolume);
1247 INFO_PRINTF2(_L("SetVolume = %d"), iSetVolume );
1251 TPtrC keyName(_L("Setvolume"));
1252 ERR_PRINTF3(_L("Error in getting volume to be set from config file in %S section via the %S key field."), &iSectName, &keyName);
1253 StopTest(KErrPathNotFound);
1262 * - Executes playing events of DevSound in sequence
1265 void RStepA3FDevSoundSetVolPlayStopGetVol::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
1269 case EStatePlayStart:
1271 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundSetVolPlayStopGetVol"),EFsmIncorrectErrorPassed));
1272 if (aDevSoundEvent == EEventPlayStart)
1274 // Initializing DevSound object for playing mode to process audio data via desired FourCC code
1275 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1279 TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
1283 TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
1285 if (err != KErrNone)
1287 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1291 INFO_PRINTF1(_L("State: EStatePlayInitializing"));
1292 iPlayState = EStatePlayInitializing;
1296 ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
1297 StopTest(aError, EFail);
1302 case EStatePlayInitializing:
1304 if (aDevSoundEvent == EEventInitCompletePlay && aError == KErrNone)
1308 // Set Devsound capability settings using CMMFDevSound::SetConfigL
1309 SetSampleRateAndChannelMode();
1310 TMMFCapabilities capabilities;
1311 capabilities.iRate = ConvertDesToTMMFSampleRate(iSampleRate);
1312 capabilities.iChannels = ConvertDesToTMMFMonoStereo(iMonoStereo);
1314 TRAPD(errConfig, iMMFDevSound->SetConfigL(capabilities));
1315 if (errConfig != KErrNone)
1317 ERR_PRINTF2(_L("CMMFDevSound::SetConfigL() left with error = %d"), errConfig);
1318 StopTest(errConfig);
1322 // Setting Volume Before Playback
1323 iMMFDevSound->SetVolume(iSetVolume);
1324 INFO_PRINTF2(_L("Volume before playback = %d"), iSetVolume);
1325 // Initialize audio device and starts the playing process
1326 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL()"));
1327 TRAPD(errPlay, iMMFDevSound->PlayInitL());
1328 if (errPlay != KErrNone)
1330 ERR_PRINTF2(_L("CMMFDevSound::PlayInitL() left with error = %d"), errPlay);
1334 INFO_PRINTF1(_L("State: EStatePlaying"));
1335 iPlayState = EStatePlaying;
1337 else if (aDevSoundEvent == EEventInitCompletePlay && aError != KErrNone)
1339 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
1344 ERR_PRINTF2(_L("DevSound EEventInitCompletePlay not received as expected. Received event: %d"), aDevSoundEvent);
1345 StopTest(aError, EFail);
1352 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundSetVolPlayStopGetVol"),EFsmIncorrectErrorPassed));
1353 if (aDevSoundEvent == EEventBTBF)
1355 // Fill the buffer with audio data and play the data in the buffer
1356 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
1357 TInt err = iFile.Read(buffer->Data());
1358 if (err != KErrNone)
1360 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
1363 if (buffer->Data().Length() != buffer->RequestSize())
1365 INFO_PRINTF3(_L("Data length copied from file = %d. Expected = %d. Must be EOF."), buffer->Data().Length(), buffer->RequestSize());
1366 iBuffer->SetLastBuffer(ETrue);
1371 iTimer->Start(KMicroSecsInTenSecs, 0, iCallBack);
1373 iCheckTimer = EFalse;
1374 // Playing data in the buffer at the current volume
1375 iMMFDevSound->PlayData();
1378 else if (aDevSoundEvent == EEventPlayTimerComplete)
1380 iMMFDevSound->Stop();
1381 iPlayState = EStatePlayStopped;
1382 INFO_PRINTF1(_L("State: EStatePlayStopped"));
1386 ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
1387 StopTest(aError, EFail);
1392 case EStatePlayStopped:
1394 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundSetVolPlayStopGetVol"),EFsmIncorrectErrorPassed));
1395 if (aDevSoundEvent == EEventPlayStopped)
1397 iVolDuringStopped = iMMFDevSound->Volume();
1398 INFO_PRINTF2(_L("Volume when play is stopped: %d"), iVolDuringStopped);
1399 if (iVolDuringStopped == iSetVolume)
1401 INFO_PRINTF1(_L("Volume set before the playback is same as volume during playback stopped"));
1406 ERR_PRINTF1(_L("Volume set before the playback is not the same as volume during playback stopped"));
1407 StopTest(KErrGeneral);
1412 ERR_PRINTF1(_L("EStatePlayStopped event not received in EStatePlayStopped state"));
1413 StopTest(KErrGeneral);
1421 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
1422 StopTest(KErrGeneral);
1433 void RStepA3FDevSoundSetVolPlayStopGetVol::DoTimerCallback()
1435 iTimer->Cancel(); // only really wanted a one-shot
1438 Fsm(EEventPlayTimerComplete, KErrNone);
1439 Fsm(EEventPlayStopped, KErrNone);
1445 // RStepA3FDevSoundFlushBuffersPaused
1450 * RStepA3FDevSoundFlushBuffersPaused - Test step constructor
1453 RStepA3FDevSoundFlushBuffersPaused::RStepA3FDevSoundFlushBuffersPaused(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1454 :RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType),
1464 RStepA3FDevSoundFlushBuffersPaused* RStepA3FDevSoundFlushBuffersPaused::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1466 RStepA3FDevSoundFlushBuffersPaused* self = new (ELeave) RStepA3FDevSoundFlushBuffersPaused(aTestName, aSectName, aInputDataType);
1474 * - Executes playing events of DevSound in sequence
1477 void RStepA3FDevSoundFlushBuffersPaused::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
1481 case EStatePlayStart:
1483 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundFlushBuffersPaused"),EFsmIncorrectErrorPassed));
1484 if (aDevSoundEvent == EEventPlayStart)
1486 // Initializing DevSound object for playing mode to process audio data via desired FourCC code
1487 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1491 TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
1495 TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
1497 if (err != KErrNone)
1499 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1503 INFO_PRINTF1(_L("State: EStatePlayInitializing"));
1504 iPlayState = EStatePlayInitializing;
1508 ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
1509 StopTest(aError, EFail);
1514 case EStatePlayInitializing:
1516 if (aDevSoundEvent == EEventInitCompletePlay && aError == KErrNone)
1520 // Set Devsound capability settings using CMMFDevSound::SetConfigL
1521 SetSampleRateAndChannelMode();
1522 TMMFCapabilities capabilities;
1523 capabilities.iRate = ConvertDesToTMMFSampleRate(iSampleRate);
1524 capabilities.iChannels = ConvertDesToTMMFMonoStereo(iMonoStereo);
1526 TRAPD(errConfig, iMMFDevSound->SetConfigL(capabilities));
1527 if (errConfig != KErrNone)
1529 ERR_PRINTF2(_L("CMMFDevSound::SetConfigL() left with error = %d"), errConfig);
1530 StopTest(errConfig);
1534 // Initialize audio device and starts the playing process
1535 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL()"));
1536 TRAPD(errPlay, iMMFDevSound->PlayInitL());
1537 if (errPlay != KErrNone)
1539 ERR_PRINTF2(_L("CMMFDevSound::PlayInitL() left with error = %d"), errPlay);
1543 INFO_PRINTF1(_L("State: EStatePlaying"));
1544 iPlayState = EStatePlaying;
1546 else if (aDevSoundEvent == EEventInitCompletePlay && aError != KErrNone)
1548 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
1553 ERR_PRINTF2(_L("DevSound EEventInitCompletePlay not received as expected. Received event: %d"), aDevSoundEvent);
1554 StopTest(aError, EFail);
1561 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundFlushBuffersPaused"),EFsmIncorrectErrorPassed));
1562 if (aDevSoundEvent == EEventBTBF)
1564 // Fill the buffer with audio data and play the data in the buffer
1565 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
1566 TInt err = iFile.Read(buffer->Data());
1567 if (err != KErrNone)
1569 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
1573 if (buffer->Data().Length() != buffer->RequestSize())
1575 INFO_PRINTF3(_L("Data length copied from file = %d. Expected = %d. Must be EOF."), buffer->Data().Length(), buffer->RequestSize());
1576 iBuffer->SetLastBuffer(ETrue);
1580 iTimer->Start(KMicroSecsInTenSecs, 0, iCallBack);
1582 // Playing data in the buffer at the current volume
1583 iMMFDevSound->PlayData();
1585 iCheckTimer = EFalse;
1587 else if (aDevSoundEvent == EEventPlayTimerComplete)
1589 INFO_PRINTF1(_L("Calling CMMFDevSound::Pause()"));
1590 iMMFDevSound->Pause();
1591 iPlayState = EStatePlayPaused;
1592 INFO_PRINTF1(_L("State: EStatePlayPaused"));
1596 ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
1597 StopTest(aError, EFail);
1603 case EStatePlayPaused:
1605 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundFlushBuffersPaused"),EFsmIncorrectErrorPassed));
1607 if (aDevSoundEvent == EEventPlayPaused)
1609 err = iMMFDevSound->EmptyBuffers();
1610 INFO_PRINTF2(_L("EmptyBuffers in paused state returned with %d"), err);
1611 INFO_PRINTF2(_L("Expected to return with %d"), KErrNone);
1619 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
1620 StopTest(KErrGeneral);
1631 void RStepA3FDevSoundFlushBuffersPaused::BufferToBeFilled(CMMFBuffer* aBuffer)
1635 ERR_PRINTF1(_L("BufferToBeFilled callback received a NULL CMMFBuffer!"));
1636 StopTest(KErrGeneral);
1642 if(iPlayState != EStatePlayPaused)
1644 Fsm(EEventBTBF, KErrNone);
1654 void RStepA3FDevSoundFlushBuffersPaused::DoTimerCallback()
1656 iTimer->Cancel(); // only really wanted a one-shot
1659 Fsm(EEventPlayTimerComplete, KErrNone);
1660 Fsm(EEventPlayPaused, KErrNone);
1664 StopTest(KErrGeneral);
1670 // RStepA3FDevSoundInvalidStatePlay
1675 * RStepA3FDevSoundInvalidStatePlay - Test step constructor
1678 RStepA3FDevSoundInvalidStatePlay::RStepA3FDevSoundInvalidStatePlay(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1679 :RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType)
1688 RStepA3FDevSoundInvalidStatePlay* RStepA3FDevSoundInvalidStatePlay::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1690 RStepA3FDevSoundInvalidStatePlay* self = new (ELeave) RStepA3FDevSoundInvalidStatePlay(aTestName, aSectName, aInputDataType);
1701 void RStepA3FDevSoundInvalidStatePlay::KickoffTestL()
1703 // Create instance of CMMFDevSound
1704 INFO_PRINTF1(_L("--- Creating DevSound object..."));
1705 iMMFDevSound = CMMFDevSound::NewL();
1707 //Display the name of Codec being used
1709 if(!GetBoolFromConfig(iSectName, _L("UseFourCC"), iUseFourCC))
1711 TPtrC keyName(_L("UseFourCC"));
1712 ERR_PRINTF3(_L("Error in getting UseFourCC flag value from config file in %S section via the %S key field."), &iSectName, &keyName);
1713 StopTest(KErrPathNotFound);
1717 Fsm(EEventPlayStart,KErrNone); // call to start the DevSound finite state machine for playing
1724 * - Executes playing events of DevSound in sequence
1727 void RStepA3FDevSoundInvalidStatePlay::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
1731 case EStatePlayStart:
1733 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundInvalidStatePlay"),EFsmIncorrectErrorPassed));
1734 if (aDevSoundEvent == EEventPlayStart)
1736 // Initializing DevSound object for playing mode to process audio data via desired FourCC code
1737 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1739 INFO_PRINTF1(_L("Initializing DevSound in EMMFStateRecording"));
1742 TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStateRecording));
1746 TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStateRecording));
1748 if (err != KErrNone)
1750 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1751 StopTest(err, EFail);
1754 INFO_PRINTF1(_L("State: EStatePlayInitializing"));
1755 iPlayState = EStatePlayInitializing;
1759 ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
1760 StopTest(aError, EFail);
1765 case EStatePlayInitializing:
1767 if (aDevSoundEvent == EEventInitCompletePlay && aError == KErrNone)
1769 // Initialize audio device and start the playing process
1770 // Calling CMMFDevSound::PlayInitL() when DevSound initialized for record mode!
1771 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL()"));
1772 TRAPD(errPlay, iMMFDevSound->PlayInitL());
1773 if (errPlay == KErrNotReady)
1775 ERR_PRINTF2(_L("CMMFDevSound::PlayInitL() left as expected with error = %d"), errPlay);
1776 StopTest(errPlay,EPass);
1780 ERR_PRINTF2(_L("CMMFDevSound::PlayInitL did NOT leave with KErrNotReady as expected. Error = %d"), errPlay);
1781 StopTest(KErrUnknown);
1784 else if (aDevSoundEvent == EEventInitCompletePlay && aError != KErrNone)
1786 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
1791 ERR_PRINTF2(_L("DevSound EEventInitCompletePlay not received as expected. Received event: %d"), aDevSoundEvent);
1792 StopTest(aError, EFail);
1800 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
1801 StopTest(KErrGeneral);
1812 void RStepA3FDevSoundInvalidStatePlay::BufferToBeFilled(CMMFBuffer* aBuffer)
1816 ERR_PRINTF1(_L("BufferToBeFilled callback received a NULL CMMFBuffer!"));
1817 StopTest(KErrGeneral);
1823 // Call to continue the Play process
1824 Fsm(EEventBTBF,KErrNone);
1833 void RStepA3FDevSoundInvalidStatePlay::PlayError(TInt aError)
1835 if ((iPlayState == EStatePlaying) && (aError == KErrNotSupported))
1837 INFO_PRINTF2(_L("DevSound called PlayError with expected error = %d"), aError);
1838 StopTest(aError, EPass);
1842 INFO_PRINTF1(_L("Expected error = -5"));
1843 ERR_PRINTF2(_L("DevSound called PlayError with error = %d"), aError);
1844 StopTest(aError, EFail);
1850 // RStepA3FDevSoundFlushBuffersPlaying
1855 * RStepA3FDevSoundFlushBuffersPlaying - Test step constructor
1858 RStepA3FDevSoundFlushBuffersPlaying::RStepA3FDevSoundFlushBuffersPlaying(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1859 :RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType)
1868 RStepA3FDevSoundFlushBuffersPlaying* RStepA3FDevSoundFlushBuffersPlaying::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1870 RStepA3FDevSoundFlushBuffersPlaying* self = new (ELeave) RStepA3FDevSoundFlushBuffersPlaying(aTestName, aSectName, aInputDataType);
1878 * - Executes playing events of DevSound in sequence
1881 void RStepA3FDevSoundFlushBuffersPlaying::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
1885 case EStatePlayStart:
1887 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundFlushBuffersPlaying"),EFsmIncorrectErrorPassed));
1888 if (aDevSoundEvent == EEventPlayStart)
1890 // Initializing DevSound object for playing mode to process audio data via desired FourCC code
1891 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1895 TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
1899 TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
1901 if (err != KErrNone)
1903 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1907 INFO_PRINTF1(_L("State: EStatePlayInitializing"));
1908 iPlayState = EStatePlayInitializing;
1912 ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
1913 StopTest(aError, EFail);
1918 case EStatePlayInitializing:
1920 if (aDevSoundEvent == EEventInitCompletePlay && aError == KErrNone)
1924 // Set Devsound capability settings using CMMFDevSound::SetConfigL
1925 SetSampleRateAndChannelMode();
1926 TMMFCapabilities capabilities;
1927 capabilities.iRate = ConvertDesToTMMFSampleRate(iSampleRate);
1928 capabilities.iChannels = ConvertDesToTMMFMonoStereo(iMonoStereo);
1930 TRAPD(errConfig, iMMFDevSound->SetConfigL(capabilities));
1931 if (errConfig != KErrNone)
1933 ERR_PRINTF2(_L("CMMFDevSound::SetConfigL() left with error = %d"), errConfig);
1934 StopTest(errConfig);
1938 // Initialize audio device and starts the playing process
1939 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL()"));
1940 TRAPD(errPlay, iMMFDevSound->PlayInitL());
1941 if (errPlay != KErrNone)
1943 ERR_PRINTF2(_L("CMMFDevSound::PlayInitL() left with error = %d"), errPlay);
1947 INFO_PRINTF1(_L("State: EStatePlaying"));
1948 iPlayState = EStatePlaying;
1950 else if (aDevSoundEvent == EEventInitCompletePlay && aError != KErrNone)
1952 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
1957 ERR_PRINTF2(_L("DevSound EEventInitCompletePlay not received as expected. Received event: %d"), aDevSoundEvent);
1958 StopTest(aError, EFail);
1965 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundFlushBuffersPlaying"),EFsmIncorrectErrorPassed));
1966 if (aDevSoundEvent == EEventBTBF)
1968 // Fill the buffer with audio data and play the data in the buffer
1969 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
1970 TInt err = iFile.Read(buffer->Data());
1971 if (err != KErrNone)
1973 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
1977 if (buffer->Data().Length() != buffer->RequestSize())
1979 INFO_PRINTF3(_L("Data length copied from file = %d. Expected = %d. Must be EOF."), buffer->Data().Length(), buffer->RequestSize());
1980 iBuffer->SetLastBuffer(ETrue);
1983 INFO_PRINTF1(_L("Calling CMMFDevSound::EmptyBuffers() during playing"));
1984 err = iMMFDevSound->EmptyBuffers();
1985 INFO_PRINTF2(_L("CMMFDevSound::EmptyBuffers() left with error = %d"), err);
1988 StopTest(err, EPass);
1992 StopTest(err, EFail);
1997 ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
1998 StopTest(aError, EFail);
2005 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
2006 StopTest(KErrGeneral);
2013 // RStepA3FDevSoundInitializeWhilePlaying
2018 * RStepA3FDevSoundInitializeWhilePlaying - Test step constructor
2021 RStepA3FDevSoundInitializeWhilePlaying::RStepA3FDevSoundInitializeWhilePlaying(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
2022 :RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType),
2032 RStepA3FDevSoundInitializeWhilePlaying* RStepA3FDevSoundInitializeWhilePlaying::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
2034 RStepA3FDevSoundInitializeWhilePlaying* self = new (ELeave) RStepA3FDevSoundInitializeWhilePlaying(aTestName, aSectName, aInputDataType);
2042 * - Executes playing events of DevSound in sequence
2045 void RStepA3FDevSoundInitializeWhilePlaying::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
2049 case EStatePlayStart:
2051 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundInitializeWhilePlaying"),EFsmIncorrectErrorPassed));
2052 if (aDevSoundEvent == EEventPlayStart)
2054 // Initializing DevSound object for playing mode to process audio data via desired FourCC code
2055 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
2059 TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
2063 TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
2065 if (err != KErrNone)
2067 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
2071 INFO_PRINTF1(_L("State: EStatePlayInitializing"));
2072 iPlayState = EStatePlayInitializing;
2076 ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
2077 StopTest(aError, EFail);
2082 case EStatePlayInitializing:
2084 if (aDevSoundEvent == EEventInitCompletePlay && aError == KErrNone)
2088 // Set Devsound capability settings using CMMFDevSound::SetConfigL
2089 SetSampleRateAndChannelMode();
2090 TMMFCapabilities capabilities;
2091 capabilities.iRate = ConvertDesToTMMFSampleRate(iSampleRate);
2092 capabilities.iChannels = ConvertDesToTMMFMonoStereo(iMonoStereo);
2094 TRAPD(errConfig, iMMFDevSound->SetConfigL(capabilities));
2095 if (errConfig != KErrNone)
2097 ERR_PRINTF2(_L("CMMFDevSound::SetConfigL() left with error = %d"), errConfig);
2098 StopTest(errConfig);
2102 // Initialize audio device and starts the playing process
2103 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL()"));
2104 TRAPD(errPlay, iMMFDevSound->PlayInitL());
2105 if (errPlay != KErrNone)
2107 ERR_PRINTF2(_L("CMMFDevSound::PlayInitL() left with error = %d"), errPlay);
2111 INFO_PRINTF1(_L("State: EStatePlaying"));
2112 iPlayState = EStatePlaying;
2114 else if (aDevSoundEvent == EEventInitCompletePlay && aError != KErrNone)
2116 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
2121 ERR_PRINTF2(_L("DevSound EEventInitCompletePlay not received as expected. Received event: %d"), aDevSoundEvent);
2122 StopTest(aError, EFail);
2129 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundInitializeWhilePlaying"),EFsmIncorrectErrorPassed));
2130 if (aDevSoundEvent == EEventBTBF)
2132 // Fill the buffer with audio data and play the data in the buffer
2133 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
2134 TInt err = iFile.Read(buffer->Data());
2135 if (err != KErrNone)
2137 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
2141 if (buffer->Data().Length() != buffer->RequestSize())
2143 INFO_PRINTF3(_L("Data length copied from file = %d. Expected = %d. Must be EOF."), buffer->Data().Length(), buffer->RequestSize());
2144 iBuffer->SetLastBuffer(ETrue);
2149 iTimer->Start(KMicroSecsInTenSecs, 0, iCallBack);
2151 iCheckTimer = EFalse;
2155 ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
2156 StopTest(aError, EFail);
2163 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
2164 StopTest(KErrGeneral);
2175 void RStepA3FDevSoundInitializeWhilePlaying::DoTimerCallback()
2177 iTimer->Cancel(); // only really wanted a one-shot
2180 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL() during playing"));
2181 TRAPD(errInit, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
2182 INFO_PRINTF2(_L("CMMFDevSound::InitializeL() left with error = %d"), errInit);
2183 INFO_PRINTF2(_L("Expected error = %d"), KErrNotReady);
2184 if(errInit == KErrNotReady)
2186 StopTest(errInit, EPass);
2190 StopTest(errInit, EFail);
2197 // RStepA3FDevSoundSetBalanceDuringPlay
2202 * RStepA3FDevSoundSetBalanceDuringPlay - Test step constructor
2205 RStepA3FDevSoundSetBalanceDuringPlay::RStepA3FDevSoundSetBalanceDuringPlay(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
2206 :RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType),
2207 iPlaybalanceLeft(0),
2208 iPlaybalanceRight(0)
2217 RStepA3FDevSoundSetBalanceDuringPlay* RStepA3FDevSoundSetBalanceDuringPlay::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
2219 RStepA3FDevSoundSetBalanceDuringPlay* self = new (ELeave) RStepA3FDevSoundSetBalanceDuringPlay(aTestName, aSectName, aInputDataType);
2229 void RStepA3FDevSoundSetBalanceDuringPlay::DoKickoffTestL()
2231 INFO_PRINTF2(_L("File to be played -> %S"), &iFilename);
2233 CheckConfigAndFourCCUsage();
2235 TBool balance = GetIntFromConfig(iSectName,_L("PlaybalanceLeft"),iPlaybalanceLeft );
2238 // Getting the Left balance from Config file
2239 INFO_PRINTF2(_L("Left Percentage Playbalance = %d"),iPlaybalanceLeft);
2243 TPtrC keyName(_L("PlaybalanceLeft"));
2244 ERR_PRINTF3(_L("Error in getting left pc playbalance from config file in %S section via the %S key field."), &iSectName, &keyName);
2245 StopTest(KErrPathNotFound);
2248 balance = GetIntFromConfig(iSectName,_L("PlaybalanceRight"),iPlaybalanceRight );
2251 // Getting the Right balance from Config file
2252 INFO_PRINTF2(_L("Right Percentage Playbalance = %d"),iPlaybalanceRight);
2256 TPtrC keyName(_L("PlaybalanceRight"));
2257 ERR_PRINTF3(_L("Error in getting right pc playbalance from config file in %S section via the %S key field."), &iSectName, &keyName);
2258 StopTest(KErrPathNotFound);
2269 void RStepA3FDevSoundSetBalanceDuringPlay::BufferToBeFilled(CMMFBuffer* aBuffer)
2273 ERR_PRINTF1(_L("BufferToBeFilled callback received a NULL CMMFBuffer!"));
2274 StopTest(KErrGeneral);
2280 INFO_PRINTF3(_L("Setting left and right playbalance. left = %d right = %d"), iPlaybalanceLeft, iPlaybalanceRight );
2281 TRAPD(setErr, iMMFDevSound->SetPlayBalanceL(iPlaybalanceLeft, iPlaybalanceRight));
2282 if (setErr == KErrNone)
2286 INFO_PRINTF1(_L("Getting left and right playbalance"));
2287 TRAPD(getErr, iMMFDevSound->GetPlayBalanceL(getLeft, getRight));
2288 INFO_PRINTF3(_L("Got left and right playbalance. left = %d right = %d"), getLeft, getRight);
2289 if (getErr == KErrNone)
2291 if ((getLeft == iPlaybalanceLeft) && (getRight == iPlaybalanceRight ))
2293 INFO_PRINTF1(_L("Left and Right playbalanace values are same as the ones that were set"));
2298 ERR_PRINTF1(_L("Let and right playbalanace values are not the same as the ones that were set"));
2299 StopTest(KErrGeneral);
2304 ERR_PRINTF1(_L("Error in getting left and right play balance."));
2310 ERR_PRINTF1(_L("Error in setting left and right play balance."));
2317 // RStepA3FDevSoundPlayStopMultipleTimes
2322 * RStepA3FDevSoundPlayStopMultipleTimes - Test step constructor
2325 RStepA3FDevSoundPlayStopMultipleTimes::RStepA3FDevSoundPlayStopMultipleTimes(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
2326 :RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType),
2338 RStepA3FDevSoundPlayStopMultipleTimes* RStepA3FDevSoundPlayStopMultipleTimes::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
2340 RStepA3FDevSoundPlayStopMultipleTimes* self = new (ELeave) RStepA3FDevSoundPlayStopMultipleTimes(aTestName, aSectName, aInputDataType);
2350 void RStepA3FDevSoundPlayStopMultipleTimes::DoKickoffTestL()
2352 INFO_PRINTF2(_L("File to be played -> %S"), &iFilename);
2354 CheckConfigAndFourCCUsage();
2356 TBool repeatCount = GetIntFromConfig(iSectName,_L("Repeat"),iRepeatCount);
2359 INFO_PRINTF2(_L("No. of times to Repeat = %d"), iRepeatCount);
2363 TPtrC keyName(_L("Repeat"));
2364 ERR_PRINTF3(_L("Error in getting number of times to repeat stop from config file in %S section via the %S key field."), &iSectName, &keyName);
2365 StopTest(KErrPathNotFound);
2374 * - Executes playing events of DevSound in sequence
2377 void RStepA3FDevSoundPlayStopMultipleTimes::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
2381 case EStatePlayStart:
2383 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundPlayStopMultipleTimes"),EFsmIncorrectErrorPassed));
2384 if (aDevSoundEvent == EEventPlayStart)
2386 // Initializing DevSound object for playing mode to process audio data via desired FourCC code
2387 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
2391 TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
2395 TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
2397 if (err != KErrNone)
2399 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
2403 INFO_PRINTF1(_L("State: EStatePlayInitializing"));
2404 iPlayState = EStatePlayInitializing;
2408 ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
2409 StopTest(aError, EFail);
2414 case EStatePlayInitializing:
2416 if (aDevSoundEvent == EEventInitCompletePlay && aError == KErrNone)
2420 // Set Devsound capability settings using CMMFDevSound::SetConfigL
2421 SetSampleRateAndChannelMode();
2422 TMMFCapabilities capabilities;
2423 capabilities.iRate = ConvertDesToTMMFSampleRate(iSampleRate);
2424 capabilities.iChannels = ConvertDesToTMMFMonoStereo(iMonoStereo);
2426 TRAPD(errConfig, iMMFDevSound->SetConfigL(capabilities));
2427 if (errConfig != KErrNone)
2429 ERR_PRINTF2(_L("CMMFDevSound::SetConfigL() left with error = %d"), errConfig);
2430 StopTest(errConfig);
2434 // Initialize audio device and starts the playing process
2435 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL()"));
2436 TRAPD(errPlay, iMMFDevSound->PlayInitL());
2437 if (errPlay != KErrNone)
2439 ERR_PRINTF2(_L("CMMFDevSound::PlayInitL() left with error = %d"), errPlay);
2443 INFO_PRINTF1(_L("State: EStatePlaying"));
2444 iPlayState = EStatePlaying;
2446 else if (aDevSoundEvent == EEventInitCompletePlay && aError != KErrNone)
2448 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
2453 ERR_PRINTF2(_L("DevSound EEventInitCompletePlay not received as expected. Received event: %d"), aDevSoundEvent);
2454 StopTest(aError, EFail);
2461 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundPlayStopMultipleTimes"),EFsmIncorrectErrorPassed));
2462 if (aDevSoundEvent == EEventBTBF)
2464 // Fill the buffer with audio data and play the data in the buffer
2465 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
2466 TInt err = iFile.Read(buffer->Data());
2467 if (err != KErrNone)
2469 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
2473 if (buffer->Data().Length() != buffer->RequestSize())
2475 INFO_PRINTF3(_L("Data length copied from file = %d. Expected = %d. Must be EOF."), buffer->Data().Length(), buffer->RequestSize());
2476 iBuffer->SetLastBuffer(ETrue);
2479 if ((iCheckTimer) && (iRepeatCounter < iRepeatCount))
2481 iTimer->Start(KMicroSecsInTenSecs, 0, iCallBack);
2483 iCheckTimer = EFalse;
2484 // Playing data in the buffer at the current volume
2485 iMMFDevSound->PlayData();
2488 else if (aDevSoundEvent == EEventPlayTimerComplete)
2490 while(iRepeatCounter <= iRepeatCount)
2492 INFO_PRINTF1(_L("Calling iMMFDevSound->Stop()"));
2493 iMMFDevSound->Stop();
2495 INFO_PRINTF2(_L("Playback Stopped. Count = %d"), iRepeatCounter);
2496 INFO_PRINTF1(_L("Changing the state to: EStatePlaying "));
2497 iPlayState = EStatePlayInitializing;
2503 ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
2504 StopTest(aError, EFail);
2511 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
2512 StopTest(KErrGeneral);
2522 void RStepA3FDevSoundPlayStopMultipleTimes::DoTimerCallback()
2524 iTimer->Cancel(); // only really wanted a one-shot
2527 iCheckTimer = ETrue;
2528 Fsm(EEventPlayTimerComplete, KErrNone);
2529 if (iRepeatCounter <= iRepeatCount)
2531 Fsm(EEventInitCompletePlay, KErrNone);
2538 // RStepA3FDevSoundPlayEOFPlayMultipleTimes
2543 * RStepA3FDevSoundPlayEOFPlayMultipleTimes - Test step constructor
2546 RStepA3FDevSoundPlayEOFPlayMultipleTimes::RStepA3FDevSoundPlayEOFPlayMultipleTimes(const TDesC& aTestName, const TDesC& aSectName)
2547 :RTestStepA3FDevSoundPlayBase(aTestName, aSectName),
2558 RStepA3FDevSoundPlayEOFPlayMultipleTimes* RStepA3FDevSoundPlayEOFPlayMultipleTimes::NewL(const TDesC& aTestName, const TDesC& aSectName)
2560 RStepA3FDevSoundPlayEOFPlayMultipleTimes* self = new (ELeave) RStepA3FDevSoundPlayEOFPlayMultipleTimes(aTestName, aSectName);
2570 void RStepA3FDevSoundPlayEOFPlayMultipleTimes::DoKickoffTestL()
2572 INFO_PRINTF2(_L("File to be played -> %S"), &iFilename);
2574 CheckConfigAndFourCCUsage();
2576 TBool repeatCount = GetIntFromConfig(iSectName,_L("Repeat"),iRepeatCount);
2579 INFO_PRINTF2(_L("No. of times to Repeat = %d"), iRepeatCount);
2583 TPtrC keyName(_L("Repeat"));
2584 ERR_PRINTF3(_L("Error in getting number of times to repeat playback from config file in %S section via the %S key field."), &iSectName, &keyName);
2585 StopTest(KErrPathNotFound);
2596 void RStepA3FDevSoundPlayEOFPlayMultipleTimes::PlayError(TInt aError)
2598 INFO_PRINTF2(_L("DevSound called PlayError with error = %d"), aError);
2599 if ((iBuffer->LastBuffer()) && (aError == KErrUnderflow))
2601 INFO_PRINTF2(_L("Finished playing. Playback Count = %d"), iRepeatCounter);
2602 if (iRepeatCounter < iRepeatCount)
2605 INFO_PRINTF1(_L("Starting to Play again"));
2607 TInt err = iFile.Open(iFs, iFilename, EFileRead);
2608 if (err != KErrNone)
2610 ERR_PRINTF2(_L("Could not Open the File: Error = %d"), err);
2613 iPlayState = EStatePlayInitializing;
2614 Fsm(EEventInitCompletePlay, KErrNone);
2618 INFO_PRINTF2(_L("Finished playing %d number of times."), iRepeatCounter);
2624 StopTest(aError, EFail);
2630 // RStepA3FDevSoundInititalizeDuringInitialize
2635 * RStepA3FDevSoundInititalizeDuringInitialize - Test step constructor
2638 RStepA3FDevSoundInititalizeDuringInitialize::RStepA3FDevSoundInititalizeDuringInitialize(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
2639 :RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType),
2649 RStepA3FDevSoundInititalizeDuringInitialize* RStepA3FDevSoundInititalizeDuringInitialize::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
2651 RStepA3FDevSoundInititalizeDuringInitialize* self = new (ELeave) RStepA3FDevSoundInititalizeDuringInitialize(aTestName, aSectName, aInputDataType);
2662 void RStepA3FDevSoundInititalizeDuringInitialize::KickoffTestL()
2664 // Create instance of CMMFDevSound
2665 INFO_PRINTF1(_L("--- Creating DevSound object..."));
2666 iMMFDevSound = CMMFDevSound::NewL();
2668 //Display the name of Codec being used
2671 if(!GetBoolFromConfig(iSectName, _L("UseFourCC"), iUseFourCC))
2673 TPtrC keyName(_L("UseFourCC"));
2674 ERR_PRINTF3(_L("Error in getting UseFourCC flag value from config file in %S section via the %S key field."), &iSectName, &keyName);
2675 StopTest(KErrPathNotFound);
2679 Fsm(EEventPlayStart,KErrNone); // call to start the DevSound finite state machine for playing
2686 * - Executes playing events of DevSound in sequence
2689 void RStepA3FDevSoundInititalizeDuringInitialize::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
2693 case EStatePlayStart:
2695 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundInititalizeDuringInitialize"),EFsmIncorrectErrorPassed));
2696 if (aDevSoundEvent == EEventPlayStart)
2698 // Initializing DevSound object for playing mode to process audio data via desired FourCC code
2699 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
2703 INFO_PRINTF1(_L("Calling first InitializeL()"));
2704 TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
2705 if (err != KErrNone)
2707 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
2713 INFO_PRINTF1(_L("Calling second InitializeL() beofre first InitializeL() returns."));
2714 TRAP(iSecondInitErr, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
2719 INFO_PRINTF1(_L("Calling first InitializeL()"));
2720 TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
2721 if (err != KErrNone)
2723 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
2729 INFO_PRINTF1(_L("Calling second InitializeL() beofre first InitializeL() returns."));
2730 TRAP(iSecondInitErr, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
2733 INFO_PRINTF1(_L("State: EStatePlayInitializing"));
2734 iPlayState = EStatePlayInitializing;
2738 ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
2739 StopTest(aError, EFail);
2746 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
2747 StopTest(KErrGeneral);
2755 * InitializeComplete
2758 void RStepA3FDevSoundInititalizeDuringInitialize::InitializeComplete(TInt aError)
2760 INFO_PRINTF2(_L("First Initialize returned with = %d"), aError);
2761 INFO_PRINTF2(_L("Second Initialize left with = %d"), iSecondInitErr);
2763 if ((aError == KErrNone) && (iSecondInitErr == KErrNotReady))
2765 INFO_PRINTF1(_L("This is expected"));
2770 INFO_PRINTF2(_L("This is not expected. Second InitializeL should fail with %d"), KErrNotReady);
2771 StopTest(aError, EFail);
2777 // RStepA3FDevSoundPlayInitDuringPlayInit
2782 * RStepA3FDevSoundPlayInitDuringPlayInit - Test step constructor
2785 RStepA3FDevSoundPlayInitDuringPlayInit::RStepA3FDevSoundPlayInitDuringPlayInit(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
2786 :RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType),
2787 iFirstPlayInitErr(0),
2788 iSecondPlayInitErr(0)
2797 RStepA3FDevSoundPlayInitDuringPlayInit* RStepA3FDevSoundPlayInitDuringPlayInit::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
2799 RStepA3FDevSoundPlayInitDuringPlayInit* self = new (ELeave) RStepA3FDevSoundPlayInitDuringPlayInit(aTestName, aSectName, aInputDataType);
2809 void RStepA3FDevSoundPlayInitDuringPlayInit::KickoffTestL()
2811 // Create instance of CMMFDevSound
2812 INFO_PRINTF1(_L("--- Creating DevSound object..."));
2813 iMMFDevSound = CMMFDevSound::NewL();
2815 //Display the name of Codec being used
2817 CheckConfigAndFourCCUsage();
2818 Fsm(EEventPlayStart,KErrNone); // call to start the DevSound finite state machine for playing
2825 * - Executes playing events of DevSound in sequence
2828 void RStepA3FDevSoundPlayInitDuringPlayInit::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
2832 case EStatePlayStart:
2834 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundPlayInitDuringPlayInit"),EFsmIncorrectErrorPassed));
2835 if (aDevSoundEvent == EEventPlayStart)
2837 // Initializing DevSound object for playing mode to process audio data via desired FourCC code
2838 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
2842 TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
2846 TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
2848 if (err != KErrNone)
2850 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
2854 INFO_PRINTF1(_L("State: EStatePlayInitializing"));
2855 iPlayState = EStatePlayInitializing;
2859 ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
2860 StopTest(aError, EFail);
2865 case EStatePlayInitializing:
2867 if (aDevSoundEvent == EEventInitCompletePlay && aError == KErrNone)
2871 // Set Devsound capability settings using CMMFDevSound::SetConfigL
2872 SetSampleRateAndChannelMode();
2873 TMMFCapabilities capabilities;
2874 capabilities.iRate = ConvertDesToTMMFSampleRate(iSampleRate);
2875 capabilities.iChannels = ConvertDesToTMMFMonoStereo(iMonoStereo);
2877 TRAPD(errConfig, iMMFDevSound->SetConfigL(capabilities));
2878 if (errConfig != KErrNone)
2880 ERR_PRINTF2(_L("CMMFDevSound::SetConfigL() left with error = %d"), errConfig);
2881 StopTest(errConfig);
2886 // Initialize audio device and starts the playing process
2887 INFO_PRINTF1(_L("Calling First CMMFDevSound::PlayInitL()"));
2888 TRAPD(iFirstPlayInitErr, iMMFDevSound->PlayInitL());
2889 TRAP(iSecondPlayInitErr, iMMFDevSound->PlayInitL());
2890 if (iFirstPlayInitErr != KErrNone)
2892 ERR_PRINTF2(_L("First CMMFDevSound::PlayInitL() left with error = %d"), iFirstPlayInitErr);
2893 StopTest(iFirstPlayInitErr);
2896 INFO_PRINTF1(_L("State: EStatePlaying"));
2897 iPlayState = EStatePlaying;
2899 else if (aDevSoundEvent == EEventInitCompletePlay && aError != KErrNone)
2901 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
2906 ERR_PRINTF2(_L("DevSound EEventInitCompletePlay not received as expected. Received event: %d"), aDevSoundEvent);
2907 StopTest(aError, EFail);
2914 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
2915 StopTest(KErrGeneral);
2926 void RStepA3FDevSoundPlayInitDuringPlayInit::BufferToBeFilled(CMMFBuffer* aBuffer)
2930 ERR_PRINTF1(_L("BufferToBeFilled callback received a NULL CMMFBuffer!"));
2931 StopTest(KErrGeneral);
2936 INFO_PRINTF2(_L("First PlayInit left with = %d"), iFirstPlayInitErr);
2937 INFO_PRINTF2(_L("Second PlayInit left with = %d"), iSecondPlayInitErr);
2939 if ((iFirstPlayInitErr == KErrNone) && (iSecondPlayInitErr == KErrNotReady))
2941 INFO_PRINTF1(_L("This is expected"));
2946 INFO_PRINTF2(_L("This is not expected. Second PlayInit should fail with %d"), KErrNotReady);
2947 StopTest(iFirstPlayInitErr, EFail);
2953 // RStepA3FDevSoundVolumeCrop
2958 * RStepA3FDevSoundVolumeCrop - Test step constructor
2961 RStepA3FDevSoundVolumeCrop::RStepA3FDevSoundVolumeCrop(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
2962 :RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType),
2963 iIncreaseMaxVolume(0),
2973 RStepA3FDevSoundVolumeCrop* RStepA3FDevSoundVolumeCrop::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
2975 RStepA3FDevSoundVolumeCrop* self = new (ELeave) RStepA3FDevSoundVolumeCrop(aTestName, aSectName, aInputDataType);
2985 void RStepA3FDevSoundVolumeCrop::KickoffTestL()
2987 //Create instance of CMMFDevSound
2988 iMMFDevSound = CMMFDevSound::NewL();
2989 //Display the name of Codec being used
2992 if(!GetBoolFromConfig(iSectName, _L("UseFourCC"), iUseFourCC))
2994 TPtrC keyName(_L("UseFourCC"));
2995 ERR_PRINTF3(_L("Error in getting UseFourCC flag from config file in %S section via the %S key field."), &iSectName, &keyName);
2996 StopTest(KErrPathNotFound);
3000 TBool maxVol = GetIntFromConfig(iSectName,_L("IncreaseMaxVolume"),iIncreaseMaxVolume);
3003 INFO_PRINTF2(_L("Volume to be added to the MaxVolume supported by device = %d"), iIncreaseMaxVolume);
3007 TPtrC keyName(_L("IncreaseMaxVolume"));
3008 ERR_PRINTF3(_L("Error in getting the volume to increase maxvolume by from config file in %S section via the %S key field."), &iSectName, &keyName);
3009 StopTest(KErrPathNotFound);
3013 TBool minVol = GetIntFromConfig(iSectName,_L("SetMinVolume"),iMinVolume);
3016 INFO_PRINTF2(_L("Seting MinVolume value = %d"), iMinVolume);
3020 TPtrC keyName(_L("SetMinVolume"));
3021 ERR_PRINTF3(_L("Error in getting volume below zero from config file in %S section via the %S key field."), &iSectName, &keyName);
3025 Fsm(EEventPlayStart,KErrNone); // call to start the DevSound finite state machine for playing
3032 * - Executes playing events of DevSound in sequence
3035 void RStepA3FDevSoundVolumeCrop::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
3039 case EStatePlayStart:
3041 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundVolumeCrop"),EFsmIncorrectErrorPassed));
3042 if (aDevSoundEvent == EEventPlayStart)
3044 // Initializing DevSound object for playing mode to process audio data via desired FourCC code
3045 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
3049 TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
3053 TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
3055 if (err != KErrNone)
3057 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
3063 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
3064 TInt deviceMaxVol = iMMFDevSound->MaxVolume();
3065 INFO_PRINTF2(_L("Maximum volume supported by the device is %d"), deviceMaxVol);
3066 INFO_PRINTF2(_L("Setting the volume beyond the maximum volume supported by the device: %d"), deviceMaxVol + iIncreaseMaxVolume);
3067 iMMFDevSound->SetVolume(deviceMaxVol + iIncreaseMaxVolume);
3068 INFO_PRINTF1(_L("Getting the volume set"));
3069 TInt maxVolumeObtained = iMMFDevSound->Volume();
3070 INFO_PRINTF2(_L("iMMFDevSound->Volume(): %d"), maxVolumeObtained);
3071 if (maxVolumeObtained != deviceMaxVol)
3073 ERR_PRINTF1(_L("Volume was not cropped to equal to maximum volume supported by device"));
3074 StopTest(KErrGeneral);
3078 INFO_PRINTF1(_L("Volume was cropped to equal to maximum volume supported by device"));
3079 INFO_PRINTF2(_L("Setting volume to less than zero: %d"), iMinVolume);
3080 iMMFDevSound->SetVolume(iMinVolume);
3081 INFO_PRINTF1(_L("Getting the volume set"));
3082 TInt minVolumeObtained = iMMFDevSound->Volume();
3083 INFO_PRINTF2(_L("iMMFDevSound->Volume(): %d"), minVolumeObtained);
3084 if (minVolumeObtained != KNULLVolume)
3086 ERR_PRINTF1(_L("Volume was not cropped to equal to minimum volume supported by device"));
3087 StopTest(KErrGeneral);
3091 INFO_PRINTF1(_L("Volume was cropped to equal to minimum volume supported by device"));
3099 ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
3100 StopTest(aError, EFail);
3106 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
3107 StopTest(KErrGeneral);
3114 // RStepA3FDevSoundInitializeForConverting
3119 * RStepA3FDevSoundInitializeForConverting - Test step constructor
3122 RStepA3FDevSoundInitializeForConverting::RStepA3FDevSoundInitializeForConverting(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
3123 :RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType)
3132 RStepA3FDevSoundInitializeForConverting* RStepA3FDevSoundInitializeForConverting::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
3134 RStepA3FDevSoundInitializeForConverting* self = new (ELeave) RStepA3FDevSoundInitializeForConverting(aTestName, aSectName, aInputDataType);
3145 void RStepA3FDevSoundInitializeForConverting::KickoffTestL()
3147 // Create instance of CMMFDevSound
3148 INFO_PRINTF1(_L("--- Creating DevSound object..."));
3149 iMMFDevSound = CMMFDevSound::NewL();
3151 //Display the name of Codec being used
3154 if(!GetBoolFromConfig(iSectName, _L("UseFourCC"), iUseFourCC))
3156 TPtrC keyName(_L("UseFourCC"));
3157 ERR_PRINTF3(_L("Error in getting UseFourCC flag value from config file in %S section via the %S key field."), &iSectName, &keyName);
3158 StopTest(KErrPathNotFound);
3162 Fsm(EEventPlayStart,KErrNone); // call to start the DevSound finite state machine for playing
3169 * - Executes playing events of DevSound in sequence
3172 void RStepA3FDevSoundInitializeForConverting::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
3176 case EStatePlayStart:
3178 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundInitializeForConverting"),EFsmIncorrectErrorPassed));
3179 if (aDevSoundEvent == EEventPlayStart)
3181 // Initializing DevSound object for playing mode to process audio data via desired FourCC code
3182 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
3186 TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStateConverting));
3190 TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStateConverting));
3192 if (err == KErrNotSupported)
3194 INFO_PRINTF2(_L("CMMFDevSound::InitializeL left with expected error = %d for EMMFStateConverting"), err);
3195 StopTest(err, EPass);
3199 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d for EMMFStateConverting"), err);
3200 StopTest(err, EFail);
3205 ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
3206 StopTest(aError, EFail);
3215 // RStepA3FDevSoundGetSampleNumsAfterStop
3220 * RStepA3FDevSoundGetSampleNumsAfterStop - Test step constructor
3223 RStepA3FDevSoundGetSampleNumsAfterStop::RStepA3FDevSoundGetSampleNumsAfterStop(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
3224 :RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType),
3234 RStepA3FDevSoundGetSampleNumsAfterStop* RStepA3FDevSoundGetSampleNumsAfterStop::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
3236 RStepA3FDevSoundGetSampleNumsAfterStop* self = new (ELeave) RStepA3FDevSoundGetSampleNumsAfterStop(aTestName, aSectName, aInputDataType);
3244 * - Executes playing events of DevSound in sequence
3247 void RStepA3FDevSoundGetSampleNumsAfterStop::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
3251 case EStatePlayStart:
3253 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundGetSampleNumsAfterStop"),EFsmIncorrectErrorPassed));
3254 if (aDevSoundEvent == EEventPlayStart)
3256 // Initializing DevSound object for playing mode to process audio data via desired FourCC code
3257 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
3261 TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
3265 TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
3267 if (err != KErrNone)
3269 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
3273 INFO_PRINTF1(_L("State: EStatePlayInitializing"));
3274 iPlayState = EStatePlayInitializing;
3278 ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
3279 StopTest(aError, EFail);
3284 case EStatePlayInitializing:
3286 if (aDevSoundEvent == EEventInitCompletePlay && aError == KErrNone)
3290 // Set Devsound capability settings using CMMFDevSound::SetConfigL
3291 SetSampleRateAndChannelMode();
3292 TMMFCapabilities capabilities;
3293 capabilities.iRate = ConvertDesToTMMFSampleRate(iSampleRate);
3294 capabilities.iChannels = ConvertDesToTMMFMonoStereo(iMonoStereo);
3296 TRAPD(errConfig, iMMFDevSound->SetConfigL(capabilities));
3297 if (errConfig != KErrNone)
3299 ERR_PRINTF2(_L("CMMFDevSound::SetConfigL() left with error = %d"), errConfig);
3300 StopTest(errConfig);
3304 // Initialize audio device and starts the playing process
3305 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL()"));
3306 TRAPD(errPlay, iMMFDevSound->PlayInitL());
3307 if (errPlay != KErrNone)
3309 ERR_PRINTF2(_L("CMMFDevSound::PlayInitL() left with error = %d"), errPlay);
3313 INFO_PRINTF1(_L("State: EStatePlaying"));
3314 iPlayState = EStatePlaying;
3316 else if (aDevSoundEvent == EEventInitCompletePlay && aError != KErrNone)
3318 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
3323 ERR_PRINTF2(_L("DevSound EEventInitCompletePlay not received as expected. Received event: %d"), aDevSoundEvent);
3324 StopTest(aError, EFail);
3333 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundGetSampleNumsAfterStop"),EFsmIncorrectErrorPassed));
3334 if (aDevSoundEvent == EEventBTBF)
3336 // Fill the buffer with audio data and play the data in the buffer
3337 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
3338 TInt err = iFile.Read(buffer->Data());
3339 if (err != KErrNone)
3341 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
3345 if (buffer->Data().Length() != buffer->RequestSize())
3347 INFO_PRINTF3(_L("Data length copied from file = %d. Expected = %d. Must be EOF."), buffer->Data().Length(), buffer->RequestSize());
3348 iBuffer->SetLastBuffer(ETrue);
3353 iTimer->Start(KMicroSecsInTenSecs, 0, iCallBack);
3355 iCheckTimer = EFalse;
3356 // Playing data in the buffer at the current volume
3357 iMMFDevSound->PlayData();
3360 else if (aDevSoundEvent == EEventPlayTimerComplete)
3362 iMMFDevSound->Stop();
3363 iPlayState = EStatePlayStopped;
3364 INFO_PRINTF1(_L("EStatePlayStopped"));
3368 ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
3369 StopTest(aError, EFail);
3374 case EStatePlayStopped:
3376 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundGetSampleNumsAfterStop"),EFsmIncorrectErrorPassed));
3377 if (aDevSoundEvent == EEventPlayStopped)
3379 INFO_PRINTF1(_L("Getting SamplesPlayed after Stop"));
3380 TInt numSamplesStop = iMMFDevSound->SamplesPlayed();
3381 INFO_PRINTF2(_L("SamplesPlayed after Stop: %d"), numSamplesStop);
3382 if (numSamplesStop == KNULLSamples)
3384 ERR_PRINTF2(_L("Number of samples played after stop should not be %d"), KNULLSamples );
3385 StopTest(KErrGeneral);
3389 INFO_PRINTF2(_L("Number of samples played after stop is greater than %d"), KNULLSamples );
3395 ERR_PRINTF2(_L("Invalid DevSound event received: %d"), aDevSoundEvent);
3396 StopTest(KErrGeneral);
3403 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
3404 StopTest(KErrGeneral);
3415 void RStepA3FDevSoundGetSampleNumsAfterStop::DoTimerCallback()
3417 iTimer->Cancel(); // only really wanted a one-shot
3420 Fsm(EEventPlayTimerComplete, KErrNone);
3421 Fsm(EEventPlayStopped, KErrNone);
3427 // RStepA3FDevSoundCancelInitializePlay
3432 * RStepA3FDevSoundCancelInitializePlay - Test step constructor
3435 RStepA3FDevSoundCancelInitializePlay::RStepA3FDevSoundCancelInitializePlay(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
3436 :RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType)
3445 RStepA3FDevSoundCancelInitializePlay* RStepA3FDevSoundCancelInitializePlay::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
3447 RStepA3FDevSoundCancelInitializePlay* self = new (ELeave) RStepA3FDevSoundCancelInitializePlay(aTestName, aSectName, aInputDataType);
3458 void RStepA3FDevSoundCancelInitializePlay::KickoffTestL()
3460 // Create instance of CMMFDevSound
3461 INFO_PRINTF1(_L("--- Creating DevSound object..."));
3462 iMMFDevSound = CMMFDevSound::NewL();
3464 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
3465 iCallBack = TCallBack(TimerCallback, this);
3467 //Display the name of Codec being used
3469 CheckConfigAndFourCCUsage();
3471 Fsm(EEventPlayStart,KErrNone); // call to start the DevSound finite state machine for playing
3477 * InitializeComplete
3480 void RStepA3FDevSoundCancelInitializePlay::InitializeComplete(TInt aError)
3482 INFO_PRINTF1(_L("InitializeComplete callback was received. This is not the expected behaviour"));
3483 INFO_PRINTF1(_L("InitializeL was not cancelled"));
3484 StopTest(aError, EFail);
3492 void RStepA3FDevSoundCancelInitializePlay::DoTimerCallback()
3494 iTimer->Cancel(); // only really wanted a one-shot
3495 INFO_PRINTF1(_L("InitializeComplete callback was not received. This is the expected behaviour"));
3496 INFO_PRINTF1(_L("Use SetConfigL to verify that DevSound has not been initialised"));
3497 SetSampleRateAndChannelMode();
3498 TMMFCapabilities capabilities;
3499 capabilities.iRate = ConvertDesToTMMFSampleRate(iSampleRate);
3500 capabilities.iChannels = ConvertDesToTMMFMonoStereo(iMonoStereo);
3502 TRAPD(errConfig, iMMFDevSound->SetConfigL(capabilities));
3503 if(errConfig == KErrNotReady)
3505 INFO_PRINTF2(_L("SetConfigL returned with %d as expected"), errConfig);
3506 INFO_PRINTF1(_L("InitializeL was cancelled successfully"));
3509 else if (errConfig == KErrNone)
3511 INFO_PRINTF2(_L("SetConfigL returned with KErrNone %d"), errConfig);
3512 INFO_PRINTF1(_L("InitializeL was not cancelled successfully"));
3513 StopTest(errConfig, EFail);
3517 INFO_PRINTF2(_L("SetConfigL returned with unexpected error %d"), errConfig);
3518 StopTest(errConfig, EFail);
3525 * - Executes playing events of DevSound in sequence
3528 void RStepA3FDevSoundCancelInitializePlay::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
3532 case EStatePlayStart:
3534 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundCancelInitializePlay"),EFsmIncorrectErrorPassed));
3535 if (aDevSoundEvent == EEventPlayStart)
3537 // Initializing DevSound object for playing mode to process audio data via desired FourCC code
3538 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
3542 TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
3546 TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
3548 if (err != KErrNone)
3550 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
3556 INFO_PRINTF1(_L("State: EStatePlayInitializing"));
3557 iPlayState = EStatePlayInitializing;
3558 INFO_PRINTF1(_L("Calling CMMFDevSound::CancelInitialize()"));
3559 iMMFDevSound->CancelInitialize();
3561 INFO_PRINTF1(_L("Start timer to wait for InitializeComplete"));
3562 iTimer->Start(KMicroSecsInTenSecs, 0, iCallBack);
3566 ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
3567 StopTest(aError, EFail);
3573 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
3574 StopTest(KErrGeneral);
3581 // RStepA3FDevSoundNegCancelInitializePlay
3586 * RStepA3FDevSoundNegCancelInitializePlay - Test step constructor
3589 RStepA3FDevSoundNegCancelInitializePlay::RStepA3FDevSoundNegCancelInitializePlay(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
3590 :RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType)
3599 RStepA3FDevSoundNegCancelInitializePlay* RStepA3FDevSoundNegCancelInitializePlay::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
3601 RStepA3FDevSoundNegCancelInitializePlay* self = new (ELeave) RStepA3FDevSoundNegCancelInitializePlay(aTestName, aSectName, aInputDataType);
3612 void RStepA3FDevSoundNegCancelInitializePlay::KickoffTestL()
3614 // Create instance of CMMFDevSound
3615 INFO_PRINTF1(_L("--- Creating DevSound object..."));
3616 iMMFDevSound = CMMFDevSound::NewL();
3618 //Display the name of Codec being used
3620 if(!GetBoolFromConfig(iSectName, _L("UseFourCC"), iUseFourCC))
3622 TPtrC keyName(_L("UseFourCC"));
3623 ERR_PRINTF3(_L("Error in getting UseFourCC flag value from config file in %S section via the %S key field."), &iSectName, &keyName);
3624 StopTest(KErrPathNotFound);
3628 Fsm(EEventPlayStart,KErrNone); // call to start the DevSound finite state machine for playing
3634 * InitializeComplete
3637 void RStepA3FDevSoundNegCancelInitializePlay::InitializeComplete(TInt aError)
3639 if (aError == KErrNone)
3641 INFO_PRINTF1(_L("InitializeComplete returned with KErrNone"));
3642 INFO_PRINTF1(_L("Calling CancelInitialize after InitializeComplete"));
3644 err = iMMFDevSound->CancelInitialize();
3645 if (err == KErrNotReady)
3647 INFO_PRINTF1(_L("CancelInitialize returned with KErrNotReady as expected"));
3652 INFO_PRINTF2(_L("CancelInitialize return with error %d instead of KErrNotReady as expected"), aError);
3653 StopTest(aError, EFail);
3658 INFO_PRINTF2(_L("InitializeComplete returned with error %d"), aError);
3659 StopTest(aError, EFail);
3667 * - Executes playing events of DevSound in sequence
3670 void RStepA3FDevSoundNegCancelInitializePlay::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
3674 case EStatePlayStart:
3676 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundNegCancelInitializePlay"),EFsmIncorrectErrorPassed));
3677 if (aDevSoundEvent == EEventPlayStart)
3679 // Initializing DevSound object for playing mode to process audio data via desired FourCC code
3680 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
3684 TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
3688 TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
3690 if (err != KErrNone)
3692 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
3696 INFO_PRINTF1(_L("State: EStatePlayInitializing"));
3697 iPlayState = EStatePlayInitializing;
3701 ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
3702 StopTest(aError, EFail);
3709 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
3710 StopTest(KErrGeneral);
3717 // RStepA3FDevSoundEmptyBuffersInCreatedState
3722 * RStepA3FDevSoundEmptyBuffersInCreatedState - Test step constructor
3725 RStepA3FDevSoundEmptyBuffersInCreatedState::RStepA3FDevSoundEmptyBuffersInCreatedState(const TDesC& aTestName)
3726 :RTestStepA3FDevSoundPlayBase(aTestName)
3735 RStepA3FDevSoundEmptyBuffersInCreatedState* RStepA3FDevSoundEmptyBuffersInCreatedState::NewL(const TDesC& aTestName)
3737 RStepA3FDevSoundEmptyBuffersInCreatedState* self = new (ELeave) RStepA3FDevSoundEmptyBuffersInCreatedState(aTestName);
3748 void RStepA3FDevSoundEmptyBuffersInCreatedState::KickoffTestL()
3750 // Create instance of CMMFDevSound
3751 INFO_PRINTF1(_L("--- Creating DevSound object..."));
3752 iMMFDevSound = CMMFDevSound::NewL();
3754 //Display the name of Codec being used
3757 Fsm(EEventPlayStart,KErrNone); // call to start the DevSound finite state machine for playing
3764 * - Executes playing events of DevSound in sequence
3767 void RStepA3FDevSoundEmptyBuffersInCreatedState::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
3771 case EStatePlayStart:
3773 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundEmptyBuffersInCreatedState"),EFsmIncorrectErrorPassed));
3774 if (aDevSoundEvent == EEventPlayStart)
3776 // Calling EmptyBuffers
3777 INFO_PRINTF1(_L("Calling CMMFDevSound::EmptyBuffers()"));
3779 err = iMMFDevSound->EmptyBuffers();
3780 if (err == KErrNotReady)
3782 ERR_PRINTF2(_L("CMMFDevSound::EmptyBuffers() returned expected error = %d"), err);
3787 ERR_PRINTF2(_L("CMMFDevSound::EmptyBuffers() did not return KErrNotReady as expected. Returned with unexpected error = %d"), err);
3793 ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
3794 StopTest(aError, EFail);
3800 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
3801 StopTest(KErrGeneral);
3808 // RStepA3FDevSoundEmptyBuffersInInitializedState
3813 * RStepA3FDevSoundEmptyBuffersInCreatedState - Test step constructor
3816 RStepA3FDevSoundEmptyBuffersInInitializedState::RStepA3FDevSoundEmptyBuffersInInitializedState(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
3817 :RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType)
3826 RStepA3FDevSoundEmptyBuffersInInitializedState* RStepA3FDevSoundEmptyBuffersInInitializedState::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
3828 RStepA3FDevSoundEmptyBuffersInInitializedState* self = new (ELeave) RStepA3FDevSoundEmptyBuffersInInitializedState(aTestName, aSectName, aInputDataType);
3839 void RStepA3FDevSoundEmptyBuffersInInitializedState::KickoffTestL()
3841 // Create instance of CMMFDevSound
3842 INFO_PRINTF1(_L("--- Creating DevSound object..."));
3843 iMMFDevSound = CMMFDevSound::NewL();
3845 //Display the name of Codec being used
3847 CheckConfigAndFourCCUsage();
3849 Fsm(EEventPlayStart,KErrNone); // call to start the DevSound finite state machine for playing
3856 * - Executes playing events of DevSound in sequence
3859 void RStepA3FDevSoundEmptyBuffersInInitializedState::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
3863 case EStatePlayStart:
3865 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundEmptyBuffersInCreatedState"),EFsmIncorrectErrorPassed));
3866 if (aDevSoundEvent == EEventPlayStart)
3868 // Initializing DevSound object for playing mode to process audio data via desired FourCC code
3869 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
3873 TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
3877 TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
3879 if (err != KErrNone)
3881 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
3885 INFO_PRINTF1(_L("State: EStatePlayInitializing"));
3886 iPlayState = EStatePlayInitializing;
3890 ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
3891 StopTest(aError, EFail);
3895 case EStatePlayInitializing:
3897 if (aDevSoundEvent == EEventInitCompletePlay && aError == KErrNone)
3899 // Calling EmptyBuffers
3900 INFO_PRINTF1(_L("Calling CMMFDevSound::EmptyBuffers()"));
3902 err = iMMFDevSound->EmptyBuffers();
3903 if (err == KErrNotReady)
3905 ERR_PRINTF2(_L("CMMFDevSound::EmptyBuffers() returned expected error = %d"), err);
3910 ERR_PRINTF2(_L("CMMFDevSound::EmptyBuffers() did not return KErrNotReady as expected. Returned with unexpected error = %d"), err);
3914 else if (aDevSoundEvent == EEventInitCompletePlay && aError != KErrNone)
3916 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
3921 ERR_PRINTF2(_L("DevSound EEventInitCompletePlay not received as expected. Received event: %d"), aDevSoundEvent);
3922 StopTest(aError, EFail);
3928 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
3929 StopTest(KErrGeneral);
3935 // RStepA3FDevSoundEmptyBuffersInInitializingState
3940 * RStepA3FDevSoundCancelInitializePlay - Test step constructor
3943 RStepA3FDevSoundEmptyBuffersInInitializingState::RStepA3FDevSoundEmptyBuffersInInitializingState(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
3944 :RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType)
3953 RStepA3FDevSoundEmptyBuffersInInitializingState* RStepA3FDevSoundEmptyBuffersInInitializingState::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
3955 RStepA3FDevSoundEmptyBuffersInInitializingState* self = new (ELeave) RStepA3FDevSoundEmptyBuffersInInitializingState(aTestName, aSectName, aInputDataType);
3966 void RStepA3FDevSoundEmptyBuffersInInitializingState::KickoffTestL()
3968 // Create instance of CMMFDevSound
3969 INFO_PRINTF1(_L("--- Creating DevSound object..."));
3970 iMMFDevSound = CMMFDevSound::NewL();
3972 //Display the name of Codec being used
3974 CheckConfigAndFourCCUsage();
3976 Fsm(EEventPlayStart,KErrNone); // call to start the DevSound finite state machine for playing
3982 * InitializeComplete
3985 void RStepA3FDevSoundEmptyBuffersInInitializingState::InitializeComplete(TInt aError)
3987 INFO_PRINTF1(_L("InitializeComplete callback was received. This is not the expected behaviour"));
3988 INFO_PRINTF1(_L("EmptyBuffers was not called before InitializeComplete "));
3989 StopTest(aError, EFail);
3995 * - Executes playing events of DevSound in sequence
3998 void RStepA3FDevSoundEmptyBuffersInInitializingState::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
4002 case EStatePlayStart:
4004 __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundCancelInitializePlay"),EFsmIncorrectErrorPassed));
4005 if (aDevSoundEvent == EEventPlayStart)
4007 // Initializing DevSound object for playing mode to process audio data via desired FourCC code
4008 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
4012 TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
4016 TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
4018 if (err != KErrNone)
4020 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
4026 INFO_PRINTF1(_L("State: EStatePlayInitializing"));
4027 iPlayState = EStatePlayInitializing;
4028 INFO_PRINTF1(_L("Calling CMMFDevSound::EmptyBuffers()"));
4030 err = iMMFDevSound->EmptyBuffers();
4031 if (err == KErrNotReady)
4033 ERR_PRINTF2(_L("CMMFDevSound::EmptyBuffers() returned expected error = %d"), err);
4038 ERR_PRINTF2(_L("CMMFDevSound::EmptyBuffers() did not return KErrNotReady as expected. Returned with unexpected error = %d"), err);
4045 ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
4046 StopTest(aError, EFail);
4052 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
4053 StopTest(KErrGeneral);