sl@0: // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: // User includes sl@0: #include "char_a3f_devsound_playtest.h" sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0001 sl@0: */ sl@0: RA3FDevSoundPlaySetConfigTest::RA3FDevSoundPlaySetConfigTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), iSampleRate(0), sl@0: iChannels(0) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlaySetConfigTest* RA3FDevSoundPlaySetConfigTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlaySetConfigTest* self = new (ELeave) RA3FDevSoundPlaySetConfigTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySetConfigTest::DoKickoffTestL() sl@0: { sl@0: if (!GetIntFromConfig(iTestStepName, KSampleRate, iSampleRate)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KSampleRate); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: if (!GetIntFromConfig(iTestStepName, KChannel, iChannels)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KChannel); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySetConfigTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetConfigLTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: TMMFCapabilities capabilitiesSet; sl@0: TBuf stringSampleRateSet; sl@0: TBuf stringChannelsSet; sl@0: SampleRateFromTIntToTMMFSampleRate (iSampleRate, iESampleRate); sl@0: capabilitiesSet.iRate = iESampleRate; sl@0: capabilitiesSet.iChannels = iChannels; sl@0: SampleRateFromTUintToString (capabilitiesSet.iRate, stringSampleRateSet); sl@0: ChannelsFromTUintToString (capabilitiesSet.iChannels, stringChannelsSet); sl@0: INFO_PRINTF3(_L("Settings for Sample rate an channel mode : %S %S"), &stringSampleRateSet, &stringChannelsSet); sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::SetConfigL")); sl@0: TRAPD(err, iMMFDevSound->SetConfigL(capabilitiesSet)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::SetConfigL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: TMMFCapabilities capabilitiesGet; sl@0: TBuf stringSampleRateGet; sl@0: TBuf stringChannelsGet; sl@0: capabilitiesGet=iMMFDevSound->Config (); sl@0: SampleRateFromTUintToString (capabilitiesGet.iRate, stringSampleRateGet); sl@0: ChannelsFromTUintToString (capabilitiesGet.iChannels, stringChannelsGet); sl@0: if (capabilitiesGet.iRate != capabilitiesSet.iRate || capabilitiesGet.iChannels != capabilitiesSet.iChannels) sl@0: { sl@0: ERR_PRINTF3(_L("Retrieved sample rate and channel : %S %S"), &stringSampleRateGet, &stringChannelsGet); sl@0: ERR_PRINTF3(_L("Expected %S %S"), &stringSampleRateSet, &stringChannelsSet); sl@0: StopTest(aError, EFail); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("========== Test Case Successfully Completed ==========")); sl@0: StopTest(); sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error : %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0002 sl@0: */ sl@0: RA3FDevSoundPlaySetVolumeWhilePlayingTest::RA3FDevSoundPlaySetVolumeWhilePlayingTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), iVolume(0), sl@0: iFilename(KNullDesC) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlaySetVolumeWhilePlayingTest* RA3FDevSoundPlaySetVolumeWhilePlayingTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlaySetVolumeWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlaySetVolumeWhilePlayingTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySetVolumeWhilePlayingTest::DoKickoffTestL() sl@0: { sl@0: TPtrC filename; sl@0: // Get the filename of the audio file to play sl@0: if (!GetStringFromConfig(iTestStepName, KFilename, filename)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFilename); sl@0: StopTest (KErrNotFound); sl@0: return; sl@0: } sl@0: // open using RFile for playback sl@0: iFilename.Copy (filename); sl@0: TInt err = iFile.Open (iFs, iFilename, EFileRead); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Could not open input file. Error = %d"), err); sl@0: iFs.Close(); sl@0: StopTest(err); sl@0: return; sl@0: } sl@0: sl@0: INFO_PRINTF2(_L("File under test -> %S"), &iFilename); sl@0: sl@0: if (!GetIntFromConfig(iTestStepName, KVolume, iVolume)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KVolume); sl@0: StopTest (KErrNotFound); sl@0: return; sl@0: } sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: iTimer = CPeriodic::NewL(CActive::EPriorityHigh); sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySetVolumeWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumePlayingTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error: %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL")); sl@0: TRAPD(err, iMMFDevSound->PlayInitL()); sl@0: if (err != KErrNone) sl@0: { sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: StartTimer(KMicroSecsTwoSec); sl@0: INFO_PRINTF1(_L("DevSound State: EStatePlaying")); sl@0: iDevSoundState = EStatePlaying; sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStatePlaying: sl@0: { sl@0: if (aDevSoundEvent == EEventBTBF) sl@0: { sl@0: CMMFDataBuffer* buffer = static_cast (iBuffer); sl@0: TInt err = iFile.Read (buffer->Data ()); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("ERROR : iFile.Read() failed with: %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: if (buffer->Data().Length ()!= buffer->RequestSize ()) sl@0: { sl@0: iBuffer->SetLastBuffer (ETrue); sl@0: } sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData")); sl@0: iMMFDevSound->PlayData (); sl@0: } sl@0: sl@0: else if (aDevSoundEvent == EEventTimerComplete) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::SetVolume")); sl@0: iMMFDevSound->SetVolume(iVolume); sl@0: TInt volumeGet; sl@0: volumeGet=iMMFDevSound->Volume(); sl@0: if (volumeGet == iVolume) sl@0: { sl@0: INFO_PRINTF2(_L("CMMFDevSound::SetVolume during playback succeeded with %d"), volumeGet); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::SetVolume during playback failed with %d"), volumeGet); sl@0: ERR_PRINTF2(_L("Expected value = %d"), iVolume); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySetVolumeWhilePlayingTest::DoTimerCallback() sl@0: { sl@0: INFO_PRINTF1(_L("TimerEvent called")); sl@0: iTimer->Cancel(); sl@0: INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete")); sl@0: Fsm (EEventTimerComplete, KErrNone); sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0003 sl@0: */ sl@0: RA3FDevSoundPlaySetVolumeTest::RA3FDevSoundPlaySetVolumeTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), iVolume(0) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlaySetVolumeTest* RA3FDevSoundPlaySetVolumeTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlaySetVolumeTest* self = new (ELeave) RA3FDevSoundPlaySetVolumeTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySetVolumeTest::DoKickoffTestL() sl@0: { sl@0: if (!GetIntFromConfig(iTestStepName, KVolume, iVolume)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KVolume); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySetVolumeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumeTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::SetVolume")); sl@0: iMMFDevSound->SetVolume(iVolume); sl@0: TInt volumeGet; sl@0: volumeGet = iMMFDevSound->Volume(); sl@0: if (volumeGet == iVolume) sl@0: { sl@0: INFO_PRINTF2(_L("CMMFDevSound::SetVolume succeeded with %d"), volumeGet); sl@0: StopTest(); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::SetVolume failed with %d"), volumeGet); sl@0: ERR_PRINTF2(_L("Expected value = %d"), iVolume); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0004 sl@0: */ sl@0: RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest::RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC), sl@0: iVolume(0) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest* RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest* self = new (ELeave) RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest::DoKickoffTestL() sl@0: { sl@0: TPtrC filename; sl@0: // Get the filename of the audio file to play sl@0: if (!GetStringFromConfig(iTestStepName, KFilename, filename)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFilename); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: // open using RFile for playback sl@0: iFilename.Copy(filename); sl@0: TInt err = iFile.Open(iFs, iFilename, EFileRead); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Could not open input file. Error = %d"), err); sl@0: iFs.Close(); sl@0: StopTest(err); sl@0: return; sl@0: } sl@0: sl@0: INFO_PRINTF2(_L("File under test -> %S"), &iFilename); sl@0: sl@0: if (!GetIntFromConfig(iTestStepName, KVolume, iVolume)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KVolume); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: iTimer = CPeriodic::NewL(CActive::EPriorityHigh); sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: TRAPD(err, iMMFDevSound->PlayInitL()); sl@0: if ( err != KErrNone) sl@0: { sl@0: StopTest (err); sl@0: break; sl@0: } sl@0: StartTimer (KMicroSecsTwoSec); sl@0: INFO_PRINTF1(_L("DevSound State: EStatePlaying")); sl@0: iDevSoundState = EStatePlaying; sl@0: } sl@0: else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest (aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest (aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStatePlaying: sl@0: { sl@0: if (aDevSoundEvent == EEventBTBF) sl@0: { sl@0: CMMFDataBuffer* buffer = static_cast (iBuffer); sl@0: TInt err = iFile.Read (buffer->Data ()); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: if (buffer->Data().Length ()!= buffer->RequestSize()) sl@0: { sl@0: iBuffer->SetLastBuffer (ETrue); sl@0: } sl@0: INFO_PRINTF1(_L("CMMFDevSound::PlayData")); sl@0: iMMFDevSound->PlayData(); sl@0: } sl@0: else if (aDevSoundEvent == EEventTimerComplete) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::Pause")); sl@0: iMMFDevSound->Pause(); sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::SetVolume")); sl@0: iMMFDevSound->SetVolume(iVolume); sl@0: TInt volumeGet; sl@0: volumeGet=iMMFDevSound->Volume (); sl@0: if (volumeGet == iVolume) sl@0: { sl@0: INFO_PRINTF2(_L("CMMFDevSound::SetVolume succeeded with %d"), volumeGet); sl@0: StopTest(); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::SetVolume failed with %d"), volumeGet); sl@0: ERR_PRINTF2(_L("Expected volume: %d"), iVolume); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest (aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest::DoTimerCallback() sl@0: { sl@0: iTimer->Cancel(); sl@0: INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete")); sl@0: Fsm (EEventTimerComplete, KErrNone); sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0005 sl@0: */ sl@0: RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest::RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), sl@0: iReinitialized(EFalse), iVolume(0) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest* RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest * self = new (ELeave) RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest::DoKickoffTestL() sl@0: { sl@0: if (!GetIntFromConfig(iTestStepName, KVolume, iVolume)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KVolume); sl@0: StopTest (KErrNotFound); sl@0: return; sl@0: } sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest (KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC (fourccCode); sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::SetVolume")); sl@0: iMMFDevSound->SetVolume(iVolume); sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: if (!iReinitialized) sl@0: { sl@0: iReinitialized = ETrue; sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: TInt volumeGet; sl@0: volumeGet=iMMFDevSound->Volume(); sl@0: if (volumeGet == iVolume) sl@0: { sl@0: INFO_PRINTF2(_L("CMMFDevSound::SetVolume is kept after reinitialise Devsound. Volume = %d "), volumeGet); sl@0: StopTest(); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::SetVolume was not kept. Volume = %d"), volumeGet); sl@0: ERR_PRINTF2(_L("Expected value = %d"),iVolume); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest (aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest (aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest (aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0006 sl@0: */ sl@0: RA3FDevSoundPlaySetVolumeRampWhilePlayingTest::RA3FDevSoundPlaySetVolumeRampWhilePlayingTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC), sl@0: iVolumeRamp(0), iPlayInitTwice(EFalse) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlaySetVolumeRampWhilePlayingTest* RA3FDevSoundPlaySetVolumeRampWhilePlayingTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlaySetVolumeRampWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlaySetVolumeRampWhilePlayingTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySetVolumeRampWhilePlayingTest::DoKickoffTestL() sl@0: { sl@0: TPtrC filename; sl@0: // Get the filename of the audio file to play sl@0: if (!GetStringFromConfig(iTestStepName, KFilename, filename)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFilename); sl@0: StopTest (KErrNotFound); sl@0: return; sl@0: } sl@0: // open using RFile for playback sl@0: iFilename.Copy(filename); sl@0: TInt err = iFile.Open (iFs, iFilename, EFileRead); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Could not open input file. Error = %d"), err); sl@0: iFs.Close(); sl@0: StopTest(err); sl@0: return; sl@0: } sl@0: sl@0: INFO_PRINTF2(_L("File under test -> %S"), &iFilename); sl@0: sl@0: if (!GetIntFromConfig(iTestStepName, KVolumeRamp, iVolumeRamp)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KVolumeRamp); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: iTimer = CPeriodic::NewL (CActive::EPriorityHigh); sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySetVolumeRampWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumePlayingTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL")); sl@0: TRAPD(err, iMMFDevSound->PlayInitL()); sl@0: if (err != KErrNone) sl@0: { sl@0: StopTest (err); sl@0: break; sl@0: } sl@0: StartTimer(KMicroSecsTwoSec); sl@0: INFO_PRINTF1(_L("DevSound State: EStatePlaying")); sl@0: iDevSoundState = EStatePlaying; sl@0: } sl@0: else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest (aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStatePlaying: sl@0: { sl@0: if (aDevSoundEvent == EEventBTBF) sl@0: { sl@0: CMMFDataBuffer* buffer = static_cast (iBuffer); sl@0: TInt err = iFile.Read (buffer->Data ()); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: if (buffer->Data().Length ()!= buffer->RequestSize()) sl@0: { sl@0: iBuffer->SetLastBuffer (ETrue); sl@0: } sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData")); sl@0: iMMFDevSound->PlayData (); sl@0: } sl@0: else if (aDevSoundEvent == EEventTimerComplete) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::SetVolumeRamp")); sl@0: iMMFDevSound->SetVolumeRamp (iVolumeRamp*KMicroSecsInOneSec); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySetVolumeRampWhilePlayingTest::DoTimerCallback() sl@0: { sl@0: INFO_PRINTF1(_L("TimerEvent called")); sl@0: iTimer->Cancel(); sl@0: INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete")); sl@0: Fsm(EEventTimerComplete, KErrNone); sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySetVolumeRampWhilePlayingTest::PlayError(TInt aError) sl@0: { sl@0: INFO_PRINTF1(_L("========== DevSound PlayError() callback ==========")); sl@0: INFO_PRINTF3(KMsgErrorDevSoundCallback, &KPlayErrorText, aError); sl@0: if (iBuffer->LastBuffer ()&& aError == KErrUnderflow) sl@0: { sl@0: TInt filePosition = 0; sl@0: TInt err = iFile.Seek (ESeekStart, filePosition); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("iFile.Seek() returned %d"), err); sl@0: StopTest(err); sl@0: } sl@0: else sl@0: { sl@0: if (!iPlayInitTwice) sl@0: { sl@0: INFO_PRINTF1(_L("Playback completed normally")); sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL")); sl@0: TRAPD(err, iMMFDevSound->PlayInitL()); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Calling again CMMFDevSound::PlayInitL left with error = %d"), err); sl@0: StopTest(err); sl@0: } sl@0: iPlayInitTwice=ETrue; sl@0: } sl@0: else sl@0: { sl@0: StopTest(err); sl@0: } sl@0: } sl@0: } sl@0: else sl@0: { sl@0: INFO_PRINTF1(_L("Playback completed with error")); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0007 sl@0: */ sl@0: RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest::RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest* RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest* self = new (ELeave) RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest::DoKickoffTestL() sl@0: { sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC (fourccCode); sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest (aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::SetVolume()to set volume values beyond CMMFDevSound::MaxVolume()")); sl@0: TInt maxVolume = iMMFDevSound->MaxVolume(); sl@0: iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume()+ KExtraVolume); sl@0: TInt volumeGet = iMMFDevSound->Volume(); sl@0: if (volumeGet == maxVolume) sl@0: { sl@0: INFO_PRINTF2(_L("Calling CMMFDevSound::SetVolume to set volume beyond CMMFDevSound::MaxVolume succeeded with %d"), volumeGet); sl@0: StopTest(); sl@0: break; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("Calling CMMFDevSound::SetVolume to set volume beyond CMMFDevSound::MaxVolume failed with %d"), volumeGet); sl@0: ERR_PRINTF2(_L("Expected value = %d"), maxVolume); sl@0: StopTest(aError, EFail); sl@0: break; sl@0: } sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0008 sl@0: */ sl@0: RA3FDevSoundPlaySetVolumeToNegativeTest::RA3FDevSoundPlaySetVolumeToNegativeTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), sl@0: iVolume(0) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlaySetVolumeToNegativeTest* RA3FDevSoundPlaySetVolumeToNegativeTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlaySetVolumeToNegativeTest* self = new (ELeave) RA3FDevSoundPlaySetVolumeToNegativeTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySetVolumeToNegativeTest::DoKickoffTestL() sl@0: { sl@0: if (!GetIntFromConfig(iTestStepName, KVolume, iVolume)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KVolume); sl@0: StopTest (KErrNotFound); sl@0: return; sl@0: } sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest (KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC (fourccCode); sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySetVolumeToNegativeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumeToNegativeTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: INFO_PRINTF2(_L("Calling CMMFDevSound::SetVolume to set volume value to a negative: %d"), iVolume); sl@0: iMMFDevSound->SetVolume (iVolume); sl@0: if (iMMFDevSound->Volume ()== 0) sl@0: { sl@0: INFO_PRINTF2(_L("Calling CMMFDevSound::SetVolume succeeded with %d"), iMMFDevSound->Volume()); sl@0: StopTest(); sl@0: break; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("Calling CMMFDevSound::SetVolume failed with %d"), iMMFDevSound->Volume()); sl@0: ERR_PRINTF2(_L("Expected value = %d"), 0); sl@0: StopTest (aError, EFail); sl@0: break; sl@0: } sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest (aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest (aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0009 sl@0: */ sl@0: RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest::RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), sl@0: iLSpeakerBalance(0), iRSpeakerBalance(0) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest* RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest* self = new (ELeave) RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest::DoKickoffTestL() sl@0: { sl@0: if ( !GetIntFromConfig(iTestStepName, KLSpeakerBalance, iLSpeakerBalance) ) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KLSpeakerBalance); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: if ( !GetIntFromConfig(iTestStepName, KRSpeakerBalance, iRSpeakerBalance) ) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KRSpeakerBalance); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: INFO_PRINTF3(_L("Calling CMMFDevSound::SetPlayBalanceL using left = %d right = %d values"), iLSpeakerBalance, iRSpeakerBalance); sl@0: TRAPD(err, iMMFDevSound->SetPlayBalanceL(iLSpeakerBalance, iRSpeakerBalance)); sl@0: if (err == KErrNone) sl@0: { sl@0: TInt getBalanceL, getBalanceR; sl@0: TRAPD(err, iMMFDevSound->GetPlayBalanceL(getBalanceL, getBalanceR)); sl@0: if (err == KErrNone) sl@0: { sl@0: if (getBalanceL == KMaxSpeakerBalanceValue && getBalanceR == KMaxSpeakerBalanceValue) sl@0: { sl@0: INFO_PRINTF3(_L("Calling CMMFDevSound::SetPlayBalanceL to set balance values beyond 100 succeeded, left = %d right = %d values"), getBalanceL, getBalanceR); sl@0: StopTest(); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF3(_L("Calling CMMFDevSound::SetPlayBalanceL to set balance values beyond 100 failed, left = %d right = %d values"), getBalanceL, getBalanceR); sl@0: ERR_PRINTF3(_L("Expected values left = %d right = %d values"), KMaxSpeakerBalanceValue, KMaxSpeakerBalanceValue); sl@0: StopTest (err, EFail); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF1(_L("Error in getting left and right play balance.")); sl@0: StopTest (err); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF1(_L("Error in setting left and right play balance.")); sl@0: StopTest (err); sl@0: } sl@0: } sl@0: else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest (aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0010 sl@0: */ sl@0: RA3FDevSoundPlaySetPlayBalanceToNegativeTest::RA3FDevSoundPlaySetPlayBalanceToNegativeTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), sl@0: iLSpeakerBalance(0), iRSpeakerBalance(0) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlaySetPlayBalanceToNegativeTest* RA3FDevSoundPlaySetPlayBalanceToNegativeTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlaySetPlayBalanceToNegativeTest* self = new (ELeave) RA3FDevSoundPlaySetPlayBalanceToNegativeTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySetPlayBalanceToNegativeTest::DoKickoffTestL() sl@0: { sl@0: if ( !GetIntFromConfig(iTestStepName, KLSpeakerBalance, iLSpeakerBalance) ) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KLSpeakerBalance); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: if ( !GetIntFromConfig(iTestStepName, KRSpeakerBalance, iRSpeakerBalance) ) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KRSpeakerBalance); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC (fourccCode); sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySetPlayBalanceToNegativeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetPlayBalanceToNegativeTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest (aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: INFO_PRINTF3(_L("Calling CMMFDevSound::SetPlayBalanceL using left = %d right = %d values"), iLSpeakerBalance, iRSpeakerBalance); sl@0: TRAPD(err, iMMFDevSound->SetPlayBalanceL(iLSpeakerBalance, iRSpeakerBalance)); sl@0: if (err == KErrNone) sl@0: { sl@0: TInt getBalanceL, getBalanceR; sl@0: TRAPD(err, iMMFDevSound->GetPlayBalanceL(getBalanceL, getBalanceR)); sl@0: if (err == KErrNone) sl@0: { sl@0: if (getBalanceL == KMinSpeakerBalanceValue && getBalanceR == KMinSpeakerBalanceValue) sl@0: { sl@0: INFO_PRINTF3(_L("Calling CMMFDevSound::SetPlayBalanceL to set balance values to negative succeeded, left = %d right = %d values"), getBalanceL, getBalanceR); sl@0: StopTest(); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF3(_L("Calling CMMFDevSound::SetPlayBalanceL to set balance values to negative failed, left = %d right = %d values"), getBalanceL, getBalanceR); sl@0: ERR_PRINTF3(_L("Expected values, left = %d right = %d values"), KMinSpeakerBalanceValue, KMinSpeakerBalanceValue); sl@0: StopTest(err, EFail); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF1(_L("Error in getting left and right play balance.")); sl@0: StopTest (err); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF1(_L("Error in setting left and right play balance.")); sl@0: StopTest (err); sl@0: } sl@0: } sl@0: else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest (aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest (aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest (aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0011 sl@0: */ sl@0: RA3FDevSoundPlaySetPrioritySettingsTest::RA3FDevSoundPlaySetPrioritySettingsTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), iPriority(0) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlaySetPrioritySettingsTest* RA3FDevSoundPlaySetPrioritySettingsTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlaySetPrioritySettingsTest* self = new (ELeave) RA3FDevSoundPlaySetPrioritySettingsTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySetPrioritySettingsTest::DoKickoffTestL() sl@0: { sl@0: if (!GetIntFromConfig(iTestStepName, KPriority, iPriority)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KPriority); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySetPrioritySettingsTest::Fsm( sl@0: TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetPrioritySettingTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: TMMFPrioritySettings priority; sl@0: priority.iPriority = iPriority; sl@0: INFO_PRINTF2(_L("Setting Priority to %d calling CMMFDevSound::SetPrioritySettings"), iPriority); sl@0: iMMFDevSound->SetPrioritySettings(priority); sl@0: INFO_PRINTF1(_L("========== Test Case Successfully Completed ==========")); sl@0: StopTest(); sl@0: } sl@0: else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest (aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest (aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0012 sl@0: */ sl@0: RA3FDevSoundPlayCapabilitiesTest::RA3FDevSoundPlayCapabilitiesTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlayCapabilitiesTest* RA3FDevSoundPlayCapabilitiesTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlayCapabilitiesTest* self = new (ELeave) RA3FDevSoundPlayCapabilitiesTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlayCapabilitiesTest::DoKickoffTestL() sl@0: { sl@0: if (!GetIntFromConfig(iTestStepName, KExCapChannels, iExCapChannels)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KExCapChannels); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: if (!GetIntFromConfig(iTestStepName, KExCapRate, iExCapRate)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KExCapRate); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest (KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC (fourccCode); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayCapabilitiesTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::Capabilities")); sl@0: TMMFCapabilities capabilitiesGet; sl@0: capabilitiesGet = iMMFDevSound->Capabilities (); sl@0: sl@0: INFO_PRINTF3(_L("Rate Sum:0x%x Channels Sum:0x%x"), capabilitiesGet.iRate, capabilitiesGet.iChannels); sl@0: PrintSupportedCapabilities (capabilitiesGet.iRate, capabilitiesGet.iChannels); sl@0: if(capabilitiesGet.iRate == iExCapRate && capabilitiesGet.iChannels == iExCapChannels) sl@0: { sl@0: INFO_PRINTF3(_L("Capabilities returned match expected capabilities which are Sum:0x%x Channels Sum:0x%x"), capabilitiesGet.iRate, capabilitiesGet.iChannels); sl@0: StopTest (); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF1(_L("Capabilities returned do not match the expected capabilities")); sl@0: ERR_PRINTF3(_L("Expected Rate Sum:0x%x Channels Sum:0x%x"), iExCapRate, iExCapChannels); sl@0: StopTest (KErrNone, EFail); sl@0: } sl@0: } sl@0: else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest (aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest (aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest (aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0013 sl@0: */ sl@0: RA3FDevSoundPlayConfigTest::RA3FDevSoundPlayConfigTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName),iExCapRate(0), sl@0: iExCapChannels(0) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlayConfigTest* RA3FDevSoundPlayConfigTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlayConfigTest* self = new (ELeave) RA3FDevSoundPlayConfigTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlayConfigTest::DoKickoffTestL() sl@0: { sl@0: if (!GetIntFromConfig(iTestStepName, KExCapRate, iExCapRate)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KExCapRate); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: if (!GetIntFromConfig(iTestStepName, KExCapChannels, iExCapChannels)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KExCapChannels); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest (KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC (fourccCode); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayConfigTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayConfigTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: TMMFCapabilities capabilitiesGet; sl@0: TBuf stringSampleRateGet; sl@0: TBuf stringChannelsGet; sl@0: TBuf stringSampleRateExpected; sl@0: TBuf stringChannelsExpected; sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::Config while playing")); sl@0: capabilitiesGet=iMMFDevSound->Config (); sl@0: SampleRateFromTUintToString (capabilitiesGet.iRate, stringSampleRateGet); sl@0: ChannelsFromTUintToString (capabilitiesGet.iChannels, stringChannelsGet); sl@0: SampleRateFromTUintToString (capabilitiesGet.iRate, stringSampleRateExpected); sl@0: ChannelsFromTUintToString (capabilitiesGet.iChannels, stringChannelsExpected); sl@0: if (stringSampleRateExpected.Compare(stringSampleRateGet) == 0) sl@0: { sl@0: INFO_PRINTF2(_L("Sample rate value match default as expected with %S"), &stringSampleRateGet); sl@0: if (stringChannelsExpected.Compare(stringChannelsGet) == 0) sl@0: { sl@0: INFO_PRINTF2(_L("Channel mode value match default as expected with %S"), &stringChannelsGet); sl@0: StopTest(); sl@0: } sl@0: else sl@0: { sl@0: INFO_PRINTF2(_L("Channel mode value failed with %S"), &stringChannelsGet); sl@0: ERR_PRINTF2(_L("Expected channel mode %S"), &stringChannelsExpected); sl@0: StopTest(KErrNone, EFail); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("Sample rate value failed with %S"), &stringSampleRateGet); sl@0: ERR_PRINTF2(_L("Expected sample rate %S"), &stringSampleRateExpected); sl@0: StopTest(KErrNone, EFail); sl@0: } sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0014 sl@0: */ sl@0: RA3FDevSoundPlayGetPlayBalanceTest::RA3FDevSoundPlayGetPlayBalanceTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), sl@0: iExLSpeakerBalance(0), sl@0: iExRSpeakerBalance(0) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlayGetPlayBalanceTest* RA3FDevSoundPlayGetPlayBalanceTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlayGetPlayBalanceTest* self = new (ELeave) RA3FDevSoundPlayGetPlayBalanceTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlayGetPlayBalanceTest::DoKickoffTestL() sl@0: { sl@0: if (!GetIntFromConfig(iTestStepName, KExLSpeakerBalance, iExLSpeakerBalance)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KExLSpeakerBalance); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: if (!GetIntFromConfig(iTestStepName, KExRSpeakerBalance, iExRSpeakerBalance)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KExRSpeakerBalance); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest (KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayGetPlayBalanceTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayGetPlayBalanceTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest (aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: TInt getBalanceL, getBalanceR; sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::GetPlayBalance")); sl@0: TRAPD(err, iMMFDevSound->GetPlayBalanceL(getBalanceL, getBalanceR)); sl@0: if (err == KErrNone) sl@0: { sl@0: if(getBalanceL == iExLSpeakerBalance && getBalanceR == iExRSpeakerBalance) sl@0: { sl@0: INFO_PRINTF3(_L("Balance values match expected values which are, right = %d, left = %d"), getBalanceL, getBalanceR); sl@0: StopTest(); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF3(_L("Balance values do not match expected values, left = %d right = %d"), getBalanceL, getBalanceR); sl@0: ERR_PRINTF3(_L("Expected values, left = %d right = %d"), iExLSpeakerBalance, iExRSpeakerBalance); sl@0: StopTest(KErrNone, EFail); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF1(_L("Error in getting left and right play balance.")); sl@0: StopTest(err); sl@0: } sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0015 sl@0: */ sl@0: RA3FDevSoundPlayGetSupportedInputDataTypesLTest::RA3FDevSoundPlayGetSupportedInputDataTypesLTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), sl@0: iCurrentTypeInTest(0) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlayGetSupportedInputDataTypesLTest* RA3FDevSoundPlayGetSupportedInputDataTypesLTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlayGetSupportedInputDataTypesLTest* self = new (ELeave) RA3FDevSoundPlayGetSupportedInputDataTypesLTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlayGetSupportedInputDataTypesLTest::DoKickoffTestL() sl@0: { sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest (KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayGetSupportedInputDataTypesLTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayGetSupportedInputDataTypesLTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: if(iCurrentTypeInTest == 0) sl@0: { sl@0: TMMFPrioritySettings prioritySettings; sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::GetSupportedInputDataTypes")); sl@0: TRAPD(err,iMMFDevSound->GetSupportedInputDataTypesL(iSupportedDataTypes, prioritySettings)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::GetSupportedInputDataTypes data types falied ! Left with error = %d"), err); sl@0: StopTest (err); sl@0: break; sl@0: } sl@0: for(TInt x = 0; x < iSupportedDataTypes.Count (); x++) sl@0: { sl@0: TFourCC fourCC = iSupportedDataTypes[x]; sl@0: TBuf name; sl@0: for (TInt i=0; i<= KFourCCMaxBitDisplacement; i+=K8Bits) sl@0: { sl@0: name.Append ( (TUint8)(fourCC.FourCC() >> i)); sl@0: } sl@0: INFO_PRINTF3(_L("Supported Input Data types: 0x%x %S "), fourCC.FourCC(), &name); sl@0: } sl@0: } sl@0: sl@0: // Complete test when all types have been used of initialization sl@0: if(iCurrentTypeInTest == iSupportedDataTypes.Count()) sl@0: { sl@0: INFO_PRINTF1(_L("========== Test Case Successfully Completed ==========")); sl@0: StopTest(); sl@0: } sl@0: else sl@0: { sl@0: TFourCC fourCC = iSupportedDataTypes[iCurrentTypeInTest]; sl@0: TBuf name; sl@0: for (TInt i=0; i<= KFourCCMaxBitDisplacement; i+=K8Bits) sl@0: { sl@0: name.Append ( (TUint8)(fourCC.FourCC() >> i)); sl@0: } sl@0: INFO_PRINTF3(_L("Initializing for Input Data type: 0x%x %S "), fourCC.FourCC(), &name); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, fourCC, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: } sl@0: iCurrentTypeInTest++; sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0016 sl@0: */ sl@0: RA3FDevSoundPlayMaxVolumeTest::RA3FDevSoundPlayMaxVolumeTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), iExVolume(0) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlayMaxVolumeTest* RA3FDevSoundPlayMaxVolumeTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlayMaxVolumeTest* self = new (ELeave) RA3FDevSoundPlayMaxVolumeTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlayMaxVolumeTest::DoKickoffTestL() sl@0: { sl@0: if (!GetIntFromConfig(iTestStepName, KExVolume, iExVolume)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KExVolume); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC (fourccCode); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayMaxVolumeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayMaxVolumeTest"), EFsmIncorrectErrorPassed)); sl@0: if ( aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: TInt maxVolume = iMMFDevSound->MaxVolume(); sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::MaxVolume")); sl@0: if(maxVolume == iExVolume) sl@0: { sl@0: INFO_PRINTF2(_L("Calling CMMFDevSound::MaxVolume succeeded with the expected value %d"), maxVolume); sl@0: StopTest(); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("Calling CMMFDevSound::MaxVolume failed with value %d"), maxVolume); sl@0: ERR_PRINTF2(_L("Expected value = %d"), iExVolume); sl@0: StopTest(KErrNone, EFail); sl@0: } sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0017 sl@0: */ sl@0: RA3FDevSoundPlaySamplesPlayedTest::RA3FDevSoundPlaySamplesPlayedTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), sl@0: iExSamplesPlayed(0) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlaySamplesPlayedTest* RA3FDevSoundPlaySamplesPlayedTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlaySamplesPlayedTest* self = new (ELeave) RA3FDevSoundPlaySamplesPlayedTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySamplesPlayedTest::DoKickoffTestL() sl@0: { sl@0: if (!GetIntFromConfig(iTestStepName, KExSamplesPlayed, iExSamplesPlayed)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KExSamplesPlayed); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySamplesPlayedTest::Fsm(TMmfDevSoundEvent aDevSoundEvent,TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySamplesPlayedTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::SamplesPlayed")); sl@0: TInt samplesPlayed = iMMFDevSound->SamplesPlayed(); sl@0: INFO_PRINTF2(_L("Samples returned by CMMFDevSound::SamplesPlayed = %d"), samplesPlayed); sl@0: if(samplesPlayed == iExSamplesPlayed) sl@0: { sl@0: INFO_PRINTF3(_L("Samples returned by CMMFDevSound::SamplesPlayed: %d matches the expected samples played: %d"), samplesPlayed, iExSamplesPlayed); sl@0: StopTest(); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("Call to CMMFDevSound::SamplesPlayed do not match the expected value = %d"), samplesPlayed); sl@0: ERR_PRINTF2(_L("Expected Samples played value = %d"), iExSamplesPlayed); sl@0: StopTest(KErrNone, EFail); sl@0: } sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0018 sl@0: */ sl@0: RA3FDevSoundPlayVolumeTest::RA3FDevSoundPlayVolumeTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), sl@0: iExVolume(0) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlayVolumeTest* RA3FDevSoundPlayVolumeTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlayVolumeTest* self = new (ELeave) RA3FDevSoundPlayVolumeTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlayVolumeTest::DoKickoffTestL() sl@0: { sl@0: if (!GetIntFromConfig(iTestStepName, KExVolume, iExVolume)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KExVolume); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayVolumeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayVolumeTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::Volume")); sl@0: TInt volumeGet = iMMFDevSound->Volume(); sl@0: INFO_PRINTF2(_L("Volume returned by CMMFDevSound::Volume() = %d"), volumeGet); sl@0: if(volumeGet == iExVolume) sl@0: { sl@0: INFO_PRINTF3(_L("Volume returned by CMMFDevSound::Volume(): %d matches the default device volume: %d"), volumeGet, iExVolume); sl@0: StopTest(); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("Default device volume failed with %d"), volumeGet); sl@0: ERR_PRINTF2(_L("Expected value = % d"), iExVolume); sl@0: StopTest(aError , EFail); sl@0: } sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0019 sl@0: */ sl@0: RA3FDevSoundPlayCapabilitiesWhilePlayingTest::RA3FDevSoundPlayCapabilitiesWhilePlayingTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC), sl@0: iExCapChannels(0), iExCapRate(0) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlayCapabilitiesWhilePlayingTest* RA3FDevSoundPlayCapabilitiesWhilePlayingTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlayCapabilitiesWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayCapabilitiesWhilePlayingTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlayCapabilitiesWhilePlayingTest::DoKickoffTestL() sl@0: { sl@0: if (!GetIntFromConfig(iTestStepName, KExCapChannels, iExCapChannels)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KExCapChannels); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: if (!GetIntFromConfig(iTestStepName, KExCapRate, iExCapRate)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KExCapRate); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: TPtrC filename; sl@0: // Get the filename of the audio file to play sl@0: if ( !GetStringFromConfig(iTestStepName, KFilename, filename)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFilename); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: // open using RFile for playback sl@0: iFilename.Copy(filename); sl@0: TInt err = iFile.Open (iFs, iFilename, EFileRead); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Could not open input file. Error = %d"), err); sl@0: iFs.Close(); sl@0: StopTest(err); sl@0: return; sl@0: } sl@0: sl@0: INFO_PRINTF2(_L("File under test -> %S"), &iFilename); sl@0: sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: iTimer = CPeriodic::NewL(CActive::EPriorityHigh); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayCapabilitiesWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume()); sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL")); sl@0: TRAPD(err, iMMFDevSound->PlayInitL()); sl@0: if (err != KErrNone) sl@0: { sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: StartTimer(KMicroSecsTwoSec); sl@0: INFO_PRINTF1(_L("DevSound State: EStatePlaying")); sl@0: iDevSoundState = EStatePlaying; sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStatePlaying: sl@0: { sl@0: if (aDevSoundEvent == EEventBTBF) sl@0: { sl@0: CMMFDataBuffer* buffer = static_cast (iBuffer); sl@0: TInt err = iFile.Read (buffer->Data ()); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: if (buffer->Data().Length ()!= buffer->RequestSize()) sl@0: { sl@0: iBuffer->SetLastBuffer (ETrue); sl@0: } sl@0: INFO_PRINTF1(_L("CMMFDevSound::PlayData()")); sl@0: iMMFDevSound->PlayData(); sl@0: } sl@0: else if (aDevSoundEvent == EEventTimerComplete) sl@0: { sl@0: TMMFCapabilities capabilitiesGet; sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::Capabilities while playing")); sl@0: capabilitiesGet = iMMFDevSound->Capabilities (); sl@0: INFO_PRINTF3(_L("Rate Sum:0x%x Channels Sum:0x%x"), capabilitiesGet.iRate, capabilitiesGet.iChannels); sl@0: PrintSupportedCapabilities (capabilitiesGet.iRate, capabilitiesGet.iChannels); sl@0: if(capabilitiesGet.iRate == iExCapRate && capabilitiesGet.iChannels == iExCapChannels) sl@0: { sl@0: INFO_PRINTF3(_L("Capabilities returned match expected capabilities which are Sum:0x%x Channels Sum:0x%x"), capabilitiesGet.iRate, capabilitiesGet.iChannels); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF3(_L("Capabilities returned do not match the expected capabilities. The total capabilities Sum:0x%x Channels Sum:0x%x "), capabilitiesGet.iRate, capabilitiesGet.iChannels); sl@0: ERR_PRINTF3(_L("Expected Rate Sum:0x%x Channels Sum:0x%x"), iExCapRate, iExCapChannels); sl@0: StopTest (KErrNone, EFail); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest (aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayCapabilitiesWhilePlayingTest::DoTimerCallback() sl@0: { sl@0: INFO_PRINTF1(_L("TimerEvent called")); sl@0: iTimer->Cancel(); sl@0: INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete")); sl@0: Fsm(EEventTimerComplete, KErrNone); sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0020 sl@0: */ sl@0: RA3FDevSoundPlayConfigWhilePlayingTest::RA3FDevSoundPlayConfigWhilePlayingTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC), iExCapRate(0), sl@0: iExCapChannels(0) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlayConfigWhilePlayingTest* RA3FDevSoundPlayConfigWhilePlayingTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlayConfigWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayConfigWhilePlayingTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlayConfigWhilePlayingTest::DoKickoffTestL() sl@0: { sl@0: TPtrC filename; sl@0: // Get the filename of the audio file to play sl@0: if (!GetStringFromConfig(iTestStepName, KFilename, filename)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFilename); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: // open using RFile for playback sl@0: iFilename.Copy(filename); sl@0: TInt err = iFile.Open (iFs, iFilename, EFileRead); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Could not open input file. Error = %d"), err); sl@0: iFs.Close(); sl@0: StopTest(err); sl@0: return; sl@0: } sl@0: sl@0: INFO_PRINTF2(_L("File under test -> %S"), &iFilename); sl@0: sl@0: if (!GetIntFromConfig(iTestStepName, KExCapRate, iExCapRate)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KExCapRate); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: if (!GetIntFromConfig(iTestStepName, KExCapChannels, iExCapChannels)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KExCapChannels); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: iTimer = CPeriodic::NewL(CActive::EPriorityHigh); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayConfigWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ()); sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL")); sl@0: TRAPD(err, iMMFDevSound->PlayInitL()); sl@0: if (err != KErrNone) sl@0: { sl@0: StopTest (err); sl@0: break; sl@0: } sl@0: StartTimer(KMicroSecsTwoSec); sl@0: INFO_PRINTF1(_L("DevSound State: EStatePlaying")); sl@0: iDevSoundState = EStatePlaying; sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStatePlaying: sl@0: { sl@0: if (aDevSoundEvent == EEventBTBF) sl@0: { sl@0: CMMFDataBuffer* buffer = static_cast (iBuffer); sl@0: TInt err = iFile.Read (buffer->Data ()); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: if (buffer->Data().Length ()!= buffer->RequestSize()) sl@0: { sl@0: iBuffer->SetLastBuffer(ETrue); sl@0: } sl@0: INFO_PRINTF1(_L("CMMFDevSound::PlayData()")); sl@0: iMMFDevSound->PlayData (); sl@0: } sl@0: else if (aDevSoundEvent == EEventTimerComplete) sl@0: { sl@0: TMMFCapabilities capabilitiesGet; sl@0: TBuf stringSampleRateGet; sl@0: TBuf stringChannelsGet; sl@0: TBuf stringSampleRateExpected; sl@0: TBuf stringChannelsExpected; sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::Config while playing")); sl@0: capabilitiesGet=iMMFDevSound->Config (); sl@0: SampleRateFromTUintToString (capabilitiesGet.iRate, stringSampleRateGet); sl@0: ChannelsFromTUintToString (capabilitiesGet.iChannels, stringChannelsGet); sl@0: SampleRateFromTIntToTMMFSampleRate (iExCapRate, iExSampleRate); sl@0: SampleRateFromTUintToString (iExSampleRate, stringSampleRateExpected); sl@0: ChannelsFromTUintToString (iExCapChannels, stringChannelsExpected); sl@0: if (stringSampleRateExpected.Compare(stringSampleRateGet) == 0) sl@0: { sl@0: INFO_PRINTF2(_L("Sample rate value match default as expected with %S"), &stringSampleRateGet); sl@0: if (stringChannelsExpected.Compare(stringChannelsGet) == 0) sl@0: { sl@0: INFO_PRINTF2(_L("Channel mode value match default as expected with %S"), &stringChannelsGet); sl@0: StopTest(); sl@0: } sl@0: else sl@0: { sl@0: INFO_PRINTF2(_L("Channel mode value failed with %S"), &stringChannelsGet); sl@0: ERR_PRINTF2(_L("Expected channel mode %S"), &stringChannelsExpected); sl@0: StopTest(KErrNone, EFail); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("Sample rate value failed with %S"), &stringSampleRateGet); sl@0: ERR_PRINTF2(_L("Expected sample rate %S"), &stringSampleRateExpected); sl@0: StopTest(KErrNone, EFail); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayConfigWhilePlayingTest::DoTimerCallback() sl@0: { sl@0: INFO_PRINTF1(_L("TimerEvent called")); sl@0: iTimer->Cancel(); sl@0: INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete")); sl@0: Fsm (EEventTimerComplete, KErrNone); sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0021 sl@0: */ sl@0: RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest::RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), sl@0: iFilename(KNullDesC), sl@0: iExLSpeakerBalance(0), sl@0: iExRSpeakerBalance(0) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest* RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest::DoKickoffTestL() sl@0: { sl@0: if (!GetIntFromConfig(iTestStepName, KExLSpeakerBalance, iExLSpeakerBalance)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KExLSpeakerBalance); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: if (!GetIntFromConfig(iTestStepName, KExRSpeakerBalance, iExRSpeakerBalance)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KExRSpeakerBalance); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: TPtrC filename; sl@0: // Get the filename of the audio file to play sl@0: if (!GetStringFromConfig(iTestStepName, KFilename, filename)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFilename); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: // open using RFile for playback sl@0: iFilename.Copy (filename); sl@0: TInt err = iFile.Open (iFs, iFilename, EFileRead); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Could not open input file. Error = %d"), err); sl@0: iFs.Close(); sl@0: StopTest(err); sl@0: return; sl@0: } sl@0: sl@0: INFO_PRINTF2(_L("File under test -> %S"), &iFilename); sl@0: sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: iTimer = CPeriodic::NewL(CActive::EPriorityHigh); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume()); sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL")); sl@0: TRAPD(err, iMMFDevSound->PlayInitL()); sl@0: if (err != KErrNone) sl@0: { sl@0: StopTest (err); sl@0: break; sl@0: } sl@0: StartTimer (KMicroSecsTwoSec); sl@0: INFO_PRINTF1(_L("DevSound State: EStatePlaying")); sl@0: iDevSoundState = EStatePlaying; sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStatePlaying: sl@0: { sl@0: if (aDevSoundEvent == EEventBTBF) sl@0: { sl@0: CMMFDataBuffer* buffer = static_cast (iBuffer); sl@0: TInt err = iFile.Read (buffer->Data ()); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: if (buffer->Data().Length ()!= buffer->RequestSize()) sl@0: { sl@0: iBuffer->SetLastBuffer(ETrue); sl@0: } sl@0: INFO_PRINTF1(_L("CMMFDevSound::PlayData()")); sl@0: iMMFDevSound->PlayData (); sl@0: } sl@0: else if (aDevSoundEvent == EEventTimerComplete) sl@0: { sl@0: TInt getBalanceL, getBalanceR; sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::GetPlayBalance while playing")); sl@0: TRAPD(err, iMMFDevSound->GetPlayBalanceL(getBalanceL, getBalanceR)); sl@0: INFO_PRINTF3(_L("Balance returned by CMMFDevSound::GetPlayBalance left = %d right = %d"), getBalanceL, getBalanceR); sl@0: if (err == KErrNone) sl@0: { sl@0: if(getBalanceL == iExLSpeakerBalance && getBalanceR == iExRSpeakerBalance) sl@0: { sl@0: INFO_PRINTF5(_L("Balance returned by CMMFDevSound::GetPlayBalance: left %d right %d matches the default device balance: left %d right %d"), getBalanceL, getBalanceR, iExLSpeakerBalance, iExRSpeakerBalance); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF3(_L("Balance values do not match expected values, left %d right %d"), getBalanceL, getBalanceR); sl@0: ERR_PRINTF3(_L("Expected values, left %d right %d"), iExLSpeakerBalance, iExRSpeakerBalance); sl@0: StopTest(KErrNone, EFail); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF1(_L("Error in getting left and right play balance.")); sl@0: StopTest(err); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest::DoTimerCallback() sl@0: { sl@0: INFO_PRINTF1(_L("TimerEvent called")); sl@0: iTimer->Cancel(); sl@0: INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete")); sl@0: Fsm(EEventTimerComplete, KErrNone); sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0022 sl@0: */ sl@0: RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest::RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest* RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest::DoKickoffTestL() sl@0: { sl@0: TPtrC filename; sl@0: // Get the filename of the audio file to play sl@0: if (!GetStringFromConfig(iTestStepName, KFilename, filename)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFilename); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: // open using RFile for playback sl@0: iFilename.Copy(filename); sl@0: TInt err = iFile.Open (iFs, iFilename, EFileRead); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Could not open input file. Error = %d"), err); sl@0: iFs.Close(); sl@0: StopTest(err); sl@0: return; sl@0: } sl@0: sl@0: INFO_PRINTF2(_L("File under test -> %S"), &iFilename); sl@0: sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: iTimer = CPeriodic::NewL(CActive::EPriorityHigh); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume()); sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL")); sl@0: TRAPD(err, iMMFDevSound->PlayInitL()); sl@0: if (err != KErrNone) sl@0: { sl@0: StopTest (err); sl@0: break; sl@0: } sl@0: StartTimer(KMicroSecsTwoSec); sl@0: INFO_PRINTF1(_L("DevSound State: EStatePlaying")); sl@0: iDevSoundState = EStatePlaying; sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStatePlaying: sl@0: { sl@0: if (aDevSoundEvent == EEventBTBF) sl@0: { sl@0: CMMFDataBuffer* buffer = static_cast (iBuffer); sl@0: TInt err = iFile.Read (buffer->Data ()); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: if (buffer->Data().Length ()!= buffer->RequestSize()) sl@0: { sl@0: iBuffer->SetLastBuffer (ETrue); sl@0: } sl@0: INFO_PRINTF1(_L("CMMFDevSound::PlayData()")); sl@0: iMMFDevSound->PlayData (); sl@0: } sl@0: else if (aDevSoundEvent == EEventTimerComplete) sl@0: { sl@0: RArray< TFourCC > supportedDataTypes; sl@0: TMMFPrioritySettings prioritySettings; sl@0: TRAPD(err,iMMFDevSound->GetSupportedInputDataTypesL(supportedDataTypes, prioritySettings)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Getting supported data types falied ! Left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: for(TInt x = 0; x < supportedDataTypes.Count (); x++) sl@0: { sl@0: TFourCC fourCC = supportedDataTypes[x]; sl@0: TBuf name; sl@0: for (TInt i=0; i<= KFourCCMaxBitDisplacement; i+=K8Bits) sl@0: { sl@0: name.Append ( (TUint8)(fourCC.FourCC() >> i)); sl@0: } sl@0: INFO_PRINTF3(_L("Supported Input Data types: 0x%x %S "), fourCC.FourCC(), &name); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest::DoTimerCallback() sl@0: { sl@0: INFO_PRINTF1(_L("TimerEvent called")); sl@0: iTimer->Cancel(); sl@0: INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete")); sl@0: Fsm(EEventTimerComplete, KErrNone); sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0023 sl@0: */ sl@0: RA3FDevSoundPlayMaxVolumeWhilePlayingTest::RA3FDevSoundPlayMaxVolumeWhilePlayingTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC), sl@0: iExVolume(0) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlayMaxVolumeWhilePlayingTest* RA3FDevSoundPlayMaxVolumeWhilePlayingTest::NewL( const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlayMaxVolumeWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayMaxVolumeWhilePlayingTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlayMaxVolumeWhilePlayingTest::DoKickoffTestL() sl@0: { sl@0: if (!GetIntFromConfig(iTestStepName, KExVolume, iExVolume)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KExVolume); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: TPtrC filename; sl@0: // Get the filename of the audio file to play sl@0: if (!GetStringFromConfig(iTestStepName, KFilename, filename)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFilename); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: // open using RFile for playback sl@0: iFilename.Copy(filename); sl@0: TInt err = iFile.Open(iFs, iFilename, EFileRead); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Could not open input file. Error = %d"), err); sl@0: iFs.Close(); sl@0: StopTest(err); sl@0: return; sl@0: } sl@0: sl@0: INFO_PRINTF2(_L("File under test -> %S"), &iFilename); sl@0: sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest (KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: iTimer = CPeriodic::NewL(CActive::EPriorityHigh); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayMaxVolumeWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed)); sl@0: if ( aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume ()); sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL")); sl@0: TRAPD(err, iMMFDevSound->PlayInitL()); sl@0: if (err != KErrNone) sl@0: { sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: StartTimer(KMicroSecsTwoSec); sl@0: INFO_PRINTF1(_L("DevSound State: EStatePlaying")); sl@0: iDevSoundState = EStatePlaying; sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete was NOT received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStatePlaying: sl@0: { sl@0: if (aDevSoundEvent == EEventBTBF) sl@0: { sl@0: CMMFDataBuffer* buffer = static_cast (iBuffer); sl@0: TInt err = iFile.Read (buffer->Data ()); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: if (buffer->Data().Length ()!= buffer->RequestSize()) sl@0: { sl@0: iBuffer->SetLastBuffer(ETrue); sl@0: } sl@0: INFO_PRINTF1(_L("CMMFDevSound::PlayData()")); sl@0: iMMFDevSound->PlayData(); sl@0: } sl@0: else if (aDevSoundEvent == EEventTimerComplete) sl@0: { sl@0: TInt maxVolume = iMMFDevSound->MaxVolume(); sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::MaxVolume")); sl@0: if(maxVolume == iExVolume) sl@0: { sl@0: INFO_PRINTF2(_L("Call to CMMFDevSound::MaxVolume succeeded with %d"), maxVolume); sl@0: StopTest(); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("Call to CMMFDevSound::MaxVolume failed with %d"), maxVolume); sl@0: ERR_PRINTF2(_L("Expected Max volume value = %d"), iExVolume); sl@0: StopTest(KErrNone, EFail); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayMaxVolumeWhilePlayingTest::DoTimerCallback() sl@0: { sl@0: INFO_PRINTF1(_L("TimerEvent called")); sl@0: iTimer->Cancel(); sl@0: INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete")); sl@0: Fsm (EEventTimerComplete, KErrNone); sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0024 sl@0: */ sl@0: RA3FDevSoundPlaySamplesPlayedWhilePlayingTest::RA3FDevSoundPlaySamplesPlayedWhilePlayingTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC), sl@0: iExSamplesPlayed(0) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlaySamplesPlayedWhilePlayingTest* RA3FDevSoundPlaySamplesPlayedWhilePlayingTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlaySamplesPlayedWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlaySamplesPlayedWhilePlayingTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySamplesPlayedWhilePlayingTest::DoKickoffTestL() sl@0: { sl@0: TPtrC filename; sl@0: // Get the filename of the audio file to play sl@0: if (!GetStringFromConfig(iTestStepName, KFilename, filename)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFilename); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: // open using RFile for playback sl@0: iFilename.Copy(filename); sl@0: TInt err = iFile.Open (iFs, iFilename, EFileRead); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Could not open input file. Error = %d"), err); sl@0: iFs.Close(); sl@0: StopTest(err); sl@0: return; sl@0: } sl@0: INFO_PRINTF2(_L("File under test -> %S"), &iFilename); sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: iTimer = CPeriodic::NewL(CActive::EPriorityHigh); sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySamplesPlayedWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume()); sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL")); sl@0: TRAPD(err, iMMFDevSound->PlayInitL()); sl@0: if (err != KErrNone) sl@0: { sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: StartTimer(KMicroSecsTwoSec); sl@0: INFO_PRINTF1(_L("DevSound State: EStatePlaying")); sl@0: iDevSoundState = EStatePlaying; sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStatePlaying: sl@0: { sl@0: if (aDevSoundEvent == EEventBTBF) sl@0: { sl@0: CMMFDataBuffer* buffer = static_cast (iBuffer); sl@0: TInt err = iFile.Read(buffer->Data ()); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err); sl@0: StopTest (err); sl@0: break; sl@0: } sl@0: if (buffer->Data().Length()!= buffer->RequestSize()) sl@0: { sl@0: iBuffer->SetLastBuffer(ETrue); sl@0: } sl@0: INFO_PRINTF1(_L("CMMFDevSound::PlayData()")); sl@0: iMMFDevSound->PlayData(); sl@0: } sl@0: else if (aDevSoundEvent == EEventTimerComplete) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::SamplesPlayed")); sl@0: TInt samplesPlayed = iMMFDevSound->SamplesPlayed(); sl@0: INFO_PRINTF2(_L("Samples played so far %d"), samplesPlayed); sl@0: if(samplesPlayed > 0) sl@0: { sl@0: INFO_PRINTF2(_L("Samples returned by CMMFDevSound::SamplesPlayed: %d matches the expected value which is > 0"), samplesPlayed); sl@0: StopTest(); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("Samples played returned an invalid value %d"), samplesPlayed); sl@0: ERR_PRINTF1(_L("Expected value must be a positive value greater than 0")); sl@0: StopTest(aError, EFail); sl@0: sl@0: } sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlaySamplesPlayedWhilePlayingTest::DoTimerCallback() sl@0: { sl@0: INFO_PRINTF1(_L("TimerEvent called")); sl@0: iTimer->Cancel(); sl@0: INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete")); sl@0: Fsm(EEventTimerComplete, KErrNone); sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0025 sl@0: */ sl@0: sl@0: RA3FDevSoundPlayVolumeWhilePlayingTest::RA3FDevSoundPlayVolumeWhilePlayingTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC), sl@0: iExVolume(0) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlayVolumeWhilePlayingTest* RA3FDevSoundPlayVolumeWhilePlayingTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlayVolumeWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayVolumeWhilePlayingTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlayVolumeWhilePlayingTest::DoKickoffTestL() sl@0: { sl@0: TPtrC filename; sl@0: // Get the filename of the audio file to play sl@0: if (!GetStringFromConfig(iTestStepName, KFilename, filename)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFilename); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: // open using RFile for playback sl@0: iFilename.Copy(filename); sl@0: TInt err = iFile.Open(iFs, iFilename, EFileRead); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Could not open input file. Error = %d"), err); sl@0: iFs.Close(); sl@0: StopTest(err); sl@0: return; sl@0: } sl@0: INFO_PRINTF2(_L("File under test -> %S"), &iFilename); sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: if (!GetIntFromConfig(iTestStepName, KExVolume, iExVolume)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KExVolume); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: iTimer = CPeriodic::NewL(CActive::EPriorityHigh); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayVolumeWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL")); sl@0: TRAPD(err, iMMFDevSound->PlayInitL()); sl@0: if (err != KErrNone) sl@0: { sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: StartTimer (KMicroSecsTwoSec); sl@0: INFO_PRINTF1(_L("DevSound State: EStatePlaying")); sl@0: iDevSoundState = EStatePlaying; sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete NOT received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStatePlaying: sl@0: { sl@0: if (aDevSoundEvent == EEventBTBF) sl@0: { sl@0: CMMFDataBuffer* buffer = static_cast (iBuffer); sl@0: TInt err = iFile.Read(buffer->Data ()); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: if (buffer->Data().Length()!= buffer->RequestSize()) sl@0: { sl@0: iBuffer->SetLastBuffer(ETrue); sl@0: } sl@0: INFO_PRINTF1(_L("CMMFDevSound::PlayData()")); sl@0: iMMFDevSound->PlayData(); sl@0: } sl@0: else if (aDevSoundEvent == EEventTimerComplete) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::Volume")); sl@0: TInt volumeGet = iMMFDevSound->Volume(); sl@0: if(volumeGet == iExVolume) sl@0: { sl@0: INFO_PRINTF2(_L("Default device volume succeeded with = %d"), volumeGet); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("Default device volume failed with = %d"), volumeGet); sl@0: ERR_PRINTF2(_L("Expected value = % d"), iExVolume); sl@0: StopTest(aError , EFail); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayVolumeWhilePlayingTest::DoTimerCallback() sl@0: { sl@0: INFO_PRINTF1(_L("TimerEvent called")); sl@0: iTimer->Cancel(); sl@0: INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete")); sl@0: Fsm(EEventTimerComplete, KErrNone); sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0026 sl@0: */ sl@0: RA3FDevSoundPlayTest::RA3FDevSoundPlayTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlayTest* RA3FDevSoundPlayTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlayTest* self = new (ELeave) RA3FDevSoundPlayTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlayTest::DoKickoffTestL() sl@0: { sl@0: TPtrC filename; sl@0: // Get the filename of the audio file to play sl@0: if ( !GetStringFromConfig(iTestStepName, KFilename, filename)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFilename); sl@0: StopTest (KErrNotFound); sl@0: return; sl@0: } sl@0: // open using RFile for playback sl@0: iFilename.Copy (filename); sl@0: TInt err = iFile.Open (iFs, iFilename, EFileRead); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Could not open input file. Error = %d"), err); sl@0: iFs.Close(); sl@0: StopTest(err); sl@0: return; sl@0: } sl@0: INFO_PRINTF2(_L("File under test -> %S"), &iFilename); sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest (KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC (fourccCode); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest (err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ()); sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL")); sl@0: TRAPD(err, iMMFDevSound->PlayInitL()); sl@0: if (err != KErrNone) sl@0: { sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStatePlaying")); sl@0: iDevSoundState = EStatePlaying; sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStatePlaying: sl@0: { sl@0: if (aDevSoundEvent == EEventBTBF) sl@0: { sl@0: CMMFDataBuffer* buffer = static_cast (iBuffer); sl@0: TInt err = iFile.Read (buffer->Data ()); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: if (buffer->Data().Length()!= buffer->RequestSize()) sl@0: { sl@0: iBuffer->SetLastBuffer(ETrue); sl@0: } sl@0: INFO_PRINTF1(_L("CMMFDevSound::PlayData()")); sl@0: iMMFDevSound->PlayData(); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0027 sl@0: */ sl@0: RA3FDevSoundPlayEmptyBufferWhilePlayingTest::RA3FDevSoundPlayEmptyBufferWhilePlayingTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlayEmptyBufferWhilePlayingTest* RA3FDevSoundPlayEmptyBufferWhilePlayingTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlayEmptyBufferWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayEmptyBufferWhilePlayingTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlayEmptyBufferWhilePlayingTest::DoKickoffTestL() sl@0: { sl@0: TPtrC filename; sl@0: // Get the filename of the audio file to play sl@0: if (!GetStringFromConfig(iTestStepName, KFilename, filename)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFilename); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: // open using RFile for playback sl@0: iFilename.Copy(filename); sl@0: TInt err = iFile.Open(iFs, iFilename, EFileRead); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Could not open input file. Error = %d"), err); sl@0: StopTest(err); sl@0: return; sl@0: } sl@0: sl@0: INFO_PRINTF2(_L("File under test -> %S"), &iFilename); sl@0: sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: iTimer = CPeriodic::NewL(CActive::EPriorityHigh); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayEmptyBufferWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayEmptyBufferPlayingTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ()); sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL")); sl@0: TRAPD(err, iMMFDevSound->PlayInitL()); sl@0: if (err != KErrNone) sl@0: { sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: StartTimer(KMicroSecsTwoSec); sl@0: INFO_PRINTF1(_L("DevSound State: EStatePlaying")); sl@0: iDevSoundState = EStatePlaying; sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError, EFail); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStatePlaying: sl@0: { sl@0: if (aDevSoundEvent == EEventBTBF) sl@0: { sl@0: CMMFDataBuffer* buffer = static_cast (iBuffer); sl@0: TInt err = iFile.Read(buffer->Data()); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: if (buffer->Data().Length ()!= buffer->RequestSize ()) sl@0: { sl@0: iBuffer->SetLastBuffer(ETrue); sl@0: } sl@0: INFO_PRINTF1(_L("CMMFDevSound::PlayData()")); sl@0: iMMFDevSound->PlayData(); sl@0: } sl@0: else if (aDevSoundEvent == EEventTimerComplete) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::EmptyBuffers()")); sl@0: TInt err = iMMFDevSound->EmptyBuffers(); sl@0: if (err == KErrNone) sl@0: { sl@0: INFO_PRINTF2(_L("Call EmptyBuffers() while playing returned error = %d"), err); sl@0: StopTest(); sl@0: break; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("Call EmptyBuffers() while playing returned error = %d"), err); sl@0: ERR_PRINTF2(_L("Expected error = %d"), KErrNone); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest (aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayEmptyBufferWhilePlayingTest::DoTimerCallback() sl@0: { sl@0: INFO_PRINTF1(_L("TimerEvent called")); sl@0: iTimer->Cancel(); sl@0: INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete")); sl@0: Fsm(EEventTimerComplete, KErrNone); sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0028 sl@0: */ sl@0: RA3FDevSoundPlayEmptyBufferBeforePlayingTest::RA3FDevSoundPlayEmptyBufferBeforePlayingTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlayEmptyBufferBeforePlayingTest* RA3FDevSoundPlayEmptyBufferBeforePlayingTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlayEmptyBufferBeforePlayingTest* self = new (ELeave) RA3FDevSoundPlayEmptyBufferBeforePlayingTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlayEmptyBufferBeforePlayingTest::DoKickoffTestL() sl@0: { sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: iTimer = CPeriodic::NewL(CActive::EPriorityHigh); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayEmptyBufferBeforePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayEmptyBufferPlayingTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)) ; sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::EmptyBuffers()")); sl@0: TInt err = iMMFDevSound->EmptyBuffers (); sl@0: if (err == KErrNotReady) sl@0: { sl@0: INFO_PRINTF2(_L("Calling CMMFDevSound::EmptyBuffers after initialization and before playback returned with the expected error = %d"), err); sl@0: StopTest(); sl@0: break; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("Calling CMMFDevSound::EmptyBuffers after initialization and before playback returned with error = %d"), err); sl@0: ERR_PRINTF2(_L("Expected error = %d"), KErrNotReady); sl@0: StopTest(err, EFail); sl@0: } sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError, EFail); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0029 sl@0: */ sl@0: RA3FDevSoundPlayPauseTest::RA3FDevSoundPlayPauseTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC), sl@0: iPaused(EFalse), iSamplesPlayedPaused(0) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlayPauseTest* RA3FDevSoundPlayPauseTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlayPauseTest* self = new (ELeave) RA3FDevSoundPlayPauseTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPauseTest::DoKickoffTestL() sl@0: { sl@0: TPtrC filename; sl@0: // Get the filename of the audio file to play sl@0: if (!GetStringFromConfig(iTestStepName, KFilename, filename)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFilename); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: // open using RFile for playback sl@0: iFilename.Copy(filename); sl@0: TInt err = iFile.Open(iFs, iFilename, EFileRead); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Could not open input file. Error = %d"), err); sl@0: iFs.Close(); sl@0: StopTest(err); sl@0: return; sl@0: } sl@0: sl@0: INFO_PRINTF2(_L("File under test -> %S"), &iFilename); sl@0: sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: iTimer = CPeriodic::NewL(CActive::EPriorityHigh); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPauseTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPauseTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ()); sl@0: INFO_PRINTF1(_L("CMMFDevSound::PlayInitL")); sl@0: TRAPD(err, iMMFDevSound->PlayInitL()); sl@0: if (err != KErrNone) sl@0: { sl@0: StopTest (err); sl@0: break; sl@0: } sl@0: StartTimer(KMicroSecsTwoSec); sl@0: INFO_PRINTF1(_L("DevSound State: EStatePlaying")); sl@0: iDevSoundState = EStatePlaying; sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStatePlaying: sl@0: { sl@0: if (aDevSoundEvent == EEventBTBF) sl@0: { sl@0: CMMFDataBuffer* buffer = static_cast (iBuffer); sl@0: TInt err = iFile.Read (buffer->Data ()); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: if (buffer->Data().Length()!= buffer->RequestSize()) sl@0: { sl@0: iBuffer->SetLastBuffer(ETrue); sl@0: } sl@0: INFO_PRINTF1(_L("CMMFDevSound::PlayData")); sl@0: iMMFDevSound->PlayData(); sl@0: } sl@0: else if (aDevSoundEvent == EEventTimerComplete) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::Pause")); sl@0: iMMFDevSound->Pause(); sl@0: iDevSoundState = EStatePause; sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::SamplesPlayed")); sl@0: iSamplesPlayedPaused = iMMFDevSound->SamplesPlayed(); sl@0: INFO_PRINTF2(_L("The number of samples played is %d"), iSamplesPlayedPaused); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStatePause: sl@0: { sl@0: if (aDevSoundEvent == EEventTimerComplete) sl@0: { sl@0: TInt samplesPlayed = iMMFDevSound->SamplesPlayed(); sl@0: INFO_PRINTF2(_L("Samples returned by CMMFDevSound::SamplesPlayed = %d"), samplesPlayed); sl@0: if(iSamplesPlayedPaused == samplesPlayed) sl@0: { sl@0: INFO_PRINTF3(_L("Samples returned by CMMFDevSound::SamplesPlayed: %d matches the expected samples played: %d"), samplesPlayed, iSamplesPlayedPaused); sl@0: StopTest(); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("Call to CMMFDevSound::SamplesPlayed do not match the expected value = %d"), samplesPlayed); sl@0: ERR_PRINTF2(_L("Expected Samples played value = %d"), iSamplesPlayedPaused); sl@0: StopTest(KErrNone, EFail); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("EEventTimerComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPauseTest::DoTimerCallback() sl@0: { sl@0: INFO_PRINTF1(_L("TimerEvent called")); sl@0: if (!iPaused) sl@0: { sl@0: INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete")); sl@0: Fsm(EEventTimerComplete, KErrNone); sl@0: iPaused = ETrue; sl@0: } sl@0: else sl@0: { sl@0: iTimer->Cancel(); sl@0: INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete")); sl@0: Fsm(EEventTimerComplete, KErrNone); sl@0: } sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0030 sl@0: */ sl@0: RA3FDevSoundPlayStopTest::RA3FDevSoundPlayStopTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC), iStopped(EFalse) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlayStopTest* RA3FDevSoundPlayStopTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlayStopTest* self = new (ELeave) RA3FDevSoundPlayStopTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlayStopTest::DoKickoffTestL() sl@0: { sl@0: TPtrC filename; sl@0: // Get the filename of the audio file to play sl@0: if (!GetStringFromConfig(iTestStepName, KFilename, filename)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFilename); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: // open using RFile for playback sl@0: iFilename.Copy(filename); sl@0: TInt err = iFile.Open(iFs, iFilename, EFileRead); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Could not open input file. Error = %d"), err); sl@0: iFs.Close(); sl@0: StopTest(err); sl@0: return; sl@0: } sl@0: sl@0: INFO_PRINTF2(_L("File under test -> %S"), &iFilename); sl@0: sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: iTimer = CPeriodic::NewL(CActive::EPriorityHigh); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayStopTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayStopTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: if (!iStopped) sl@0: { sl@0: iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume()); sl@0: INFO_PRINTF1(_L("CMMFDevSound::PlayInitL")); sl@0: TRAPD(err, iMMFDevSound->PlayInitL()); sl@0: if (err != KErrNone) sl@0: { sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: StartTimer(KMicroSecsTwoSec); sl@0: INFO_PRINTF1(_L("DevSound State: EStatePlaying")); sl@0: iDevSoundState = EStatePlaying; sl@0: } sl@0: else sl@0: { sl@0: INFO_PRINTF1(_L("InitializeComplete returned KErrNone after calling CMMFDevSound::Stop then CMMFDevSound::InitializeL")); sl@0: StopTest(); sl@0: } sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: if (!iStopped) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: INFO_PRINTF2(_L("InitializeComplete returned %d after calling CMMFDevSound::Stop then CMMFDevSound::InitializeL"), aError); sl@0: StopTest(aError); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStatePlaying: sl@0: { sl@0: if (aDevSoundEvent == EEventBTBF) sl@0: { sl@0: CMMFDataBuffer* buffer = static_cast (iBuffer); sl@0: TInt err = iFile.Read (buffer->Data()); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: if (buffer->Data().Length ()!= buffer->RequestSize()) sl@0: { sl@0: iBuffer->SetLastBuffer(ETrue); sl@0: } sl@0: INFO_PRINTF1(_L("CMMFDevSound::PlayData")); sl@0: iMMFDevSound->PlayData(); sl@0: } sl@0: else if (aDevSoundEvent == EEventTimerComplete) sl@0: { sl@0: INFO_PRINTF1(_L("CMMFDevSound::Stop")); sl@0: iMMFDevSound->Stop(); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayStopTest::DoTimerCallback() sl@0: { sl@0: INFO_PRINTF1(_L("TimerEvent called")); sl@0: if (!iStopped) sl@0: { sl@0: INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete")); sl@0: Fsm(EEventTimerComplete, KErrNone); sl@0: iStopped = ETrue; sl@0: } sl@0: else sl@0: { sl@0: iTimer->Cancel(); sl@0: INFO_PRINTF1(_L("Initializing again after stop successful. Hence passing the test")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: } sl@0: sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0031 sl@0: */ sl@0: RA3FDevSoundPlayPreemptionTest::RA3FDevSoundPlayPreemptionTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC), sl@0: iOtherFilename(KNullDesC) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlayPreemptionTest* RA3FDevSoundPlayPreemptionTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlayPreemptionTest* self = new (ELeave) RA3FDevSoundPlayPreemptionTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPreemptionTest::DoKickoffTestL() sl@0: { sl@0: TPtrC filename; sl@0: // Get the filename of the audio file to play sl@0: if (!GetStringFromConfig(iTestStepName, KFilename, filename)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFilename); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: // open using RFile for playback sl@0: iFilename.Copy(filename); sl@0: TInt err = iFile.Open(iFs, iFilename, EFileRead); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Could not open input file. Error = %d"), err); sl@0: StopTest(err); sl@0: return; sl@0: } sl@0: INFO_PRINTF2(_L("File under test -> %S"), &iFilename); sl@0: // Get the filename of the second devsound instance sl@0: TPtrC tempString; sl@0: if (!GetStringFromConfig(iTestStepName, KOtherFilename, tempString)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KOtherFilename); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: iOtherFilename.Copy (tempString); sl@0: INFO_PRINTF2(_L("File under test -> %S"), &iOtherFilename); sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: iTimer = CPeriodic::NewL(CActive::EPriorityHigh); sl@0: iDevsoundPlayClient = CA3FDevSoundPlayClient::NewL(*this, iFourCCCode, iFs, iSuite); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPreemptionTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPreemptionTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: TMMFPrioritySettings priority; sl@0: priority.iPriority = KMinimumPriority; sl@0: INFO_PRINTF2(_L("Setting Priority to %d using CMMFDevSound::SetPrioritySettings"), priority.iPriority); sl@0: iMMFDevSound->SetPrioritySettings (priority); sl@0: iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ()); sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL")); sl@0: TRAPD(err, iMMFDevSound->PlayInitL()); sl@0: if (err != KErrNone) sl@0: { sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStatePlaying")); sl@0: iDevSoundState = EStatePlaying; sl@0: StartTimer(KMicroSecsTwoSec); sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStatePlaying: sl@0: { sl@0: if (aDevSoundEvent == EEventBTBF) sl@0: { sl@0: CMMFDataBuffer* buffer = static_cast (iBuffer); sl@0: TInt err = iFile.Read (buffer->Data ()); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err); sl@0: StopTest (err); sl@0: break; sl@0: } sl@0: if (buffer->Data().Length ()!= buffer->RequestSize()) sl@0: { sl@0: iBuffer->SetLastBuffer(ETrue); sl@0: } sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData")); sl@0: iMMFDevSound->PlayData(); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPreemptionTest::DoTimerCallback() sl@0: { sl@0: INFO_PRINTF1(_L("TimerEvent called")); sl@0: iTimer->Cancel(); sl@0: INFO_PRINTF1(_L("Starting higher priority devsound client")); sl@0: iDevsoundPlayClient->SetPriority(KMaximumPriority); sl@0: INFO_PRINTF1(_L("Initializing to play audio thru second devsound client")); sl@0: TInt err = iDevsoundPlayClient->PlayInit(iOtherFilename); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Initializating DevSound to play audio thru second devsound client failed with error = %d"), err); sl@0: StopTest(err); sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPreemptionTest::PlayError(TInt aError) sl@0: { sl@0: INFO_PRINTF1(_L("========== DevSound PlayError() callback ==========")); sl@0: if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied) sl@0: { sl@0: INFO_PRINTF1(_L("========== Preempting 1st DevSound Instance==========")); sl@0: INFO_PRINTF2(_L("First DevSound client PlayError succeeded with error = %d "), aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("First DevSound client PlayError and failed with error = %d "), aError); sl@0: ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPreemptionTest::ClientInitializeCompleteCallback(TInt aError) sl@0: { sl@0: INFO_PRINTF1(_L("========== Second Client DevSound InitializeComplete() callback ==========")); sl@0: if (aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: INFO_PRINTF1(_L("Starting to play audio thru second devsound client")); sl@0: TInt err = iDevsoundPlayClient->PlayAudio(); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Starting to play audio thru second devsound client failed with error = %d"), err); sl@0: StopTest(err); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPreemptionTest::ClientBufferToBeFilledCallback(TInt aError) sl@0: { sl@0: INFO_PRINTF1(_L("========== Second Client DevSound BufferToBeFilled() callback ==========")); sl@0: if (aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Second DevSound client called BufferToBeFilled and failed with error = %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPreemptionTest::ClientPlayHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError) sl@0: { sl@0: switch (aError) sl@0: { sl@0: case EInvalidClientFSMEvent: sl@0: ERR_PRINTF1(_L("Second devsound client received an invalid Event...")); sl@0: break; sl@0: case EInvalidClientFSMState: sl@0: ERR_PRINTF1(_L("Second devsound client received an invalid State...")); sl@0: break; sl@0: case EReadFileErrorInClient: sl@0: ERR_PRINTF1(_L("Second devsound client could not read to file...")); sl@0: break; sl@0: default: sl@0: break; sl@0: } sl@0: StopTest(aError, EFail); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPreemptionTest::ClientPlayErrorCallback(TInt aError, TBool aLastBuffer) sl@0: { sl@0: INFO_PRINTF1(_L("========== Second Client DevSound PlayError() callback ==========")); sl@0: sl@0: if (aError == KErrUnderflow && aLastBuffer) sl@0: { sl@0: INFO_PRINTF1(_L("Second DevSound client called PlayError and completed normally")); sl@0: StopTest(); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("Second DevSound PlayError failed with error = %d"), aError); sl@0: ERR_PRINTF2(_L("Expected error = %d "), KErrUnderflow); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * 3F-DEVSOUND-CHRTZ-PLAY-RAW-0032 sl@0: */ sl@0: RA3FDevSoundPlayPreemptedByToneTest::RA3FDevSoundPlayPreemptedByToneTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName),iFilename(KNullDesC), sl@0: iFrequencyTone1(0), iDuration(0) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlayPreemptedByToneTest* RA3FDevSoundPlayPreemptedByToneTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlayPreemptedByToneTest* self = new (ELeave) RA3FDevSoundPlayPreemptedByToneTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPreemptedByToneTest::DoKickoffTestL() sl@0: { sl@0: TPtrC filename; sl@0: // Get the filename of the audio file to play sl@0: if (!GetStringFromConfig(iTestStepName, KFilename, filename)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFilename); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: // open using RFile for playback sl@0: iFilename.Copy(filename); sl@0: TInt err = iFile.Open(iFs, iFilename, EFileRead); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Could not open input file. Error = %d"), err); sl@0: StopTest(err); sl@0: return; sl@0: } sl@0: sl@0: INFO_PRINTF2(_L("File under test -> %S"), &iFilename); sl@0: sl@0: if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: if (!GetIntFromConfig(iTestStepName, KDuration, iDuration)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KDuration); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: iTimer = CPeriodic::NewL(CActive::EPriorityHigh); sl@0: iDevsoundToneClient = CA3FDevSoundToneClient::NewL(*this); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPreemptedByToneTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPreemptedByToneTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: TMMFPrioritySettings priority; sl@0: priority.iPriority = KMinimumPriority; sl@0: INFO_PRINTF2(_L("Setting Priority to %d using CMMFDevSound::SetPrioritySettings"), priority.iPriority); sl@0: iMMFDevSound->SetPrioritySettings (priority); sl@0: iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ()); sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL")); sl@0: TRAPD(err, iMMFDevSound->PlayInitL()); sl@0: if (err != KErrNone) sl@0: { sl@0: StopTest (err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStatePlaying")); sl@0: iDevSoundState = EStatePlaying; sl@0: StartTimer (KMicroSecsTwoSec); sl@0: } sl@0: else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStatePlaying: sl@0: { sl@0: if (aDevSoundEvent == EEventBTBF) sl@0: { sl@0: CMMFDataBuffer* buffer = static_cast (iBuffer); sl@0: TInt err = iFile.Read (buffer->Data()); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: if (buffer->Data().Length ()!= buffer->RequestSize()) sl@0: { sl@0: iBuffer->SetLastBuffer(ETrue); sl@0: } sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData")); sl@0: iMMFDevSound->PlayData(); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPreemptedByToneTest::DoTimerCallback() sl@0: { sl@0: INFO_PRINTF1(_L("TimerEvent called")); sl@0: iTimer->Cancel(); sl@0: INFO_PRINTF1(_L("Starting higher priority devsound client")); sl@0: iDevsoundToneClient->SetPriority(KMaximumPriority); sl@0: INFO_PRINTF1(_L("Initializing to play tones thru second devsound client")); sl@0: TInt err = iDevsoundToneClient->InitTonePlay(iFrequencyTone1,iDuration*KMicroSecsInOneSec); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Initializating DevSoud to play tones thru second devsound client failed with error = %d"), err); sl@0: StopTest(err); sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPreemptedByToneTest::PlayError(TInt aError) sl@0: { sl@0: INFO_PRINTF1(_L("========== DevSound PlayError() callback ==========")); sl@0: if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied) sl@0: { sl@0: INFO_PRINTF1(_L("========== Preempting 1st DevSound Instance==========")); sl@0: INFO_PRINTF2(_L("First DevSound client PlayError succeeded with error = %d "), aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("First DevSound client called PlayError and failed with error = %d "), aError); sl@0: ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPreemptedByToneTest::ClientInitializeCompleteCallback(TInt aError) sl@0: { sl@0: INFO_PRINTF1(_L("==========Second DevSound client called InitializeComplete()==========")); sl@0: if (aError == KErrNone) sl@0: { sl@0: INFO_PRINTF1(_L("Starting to play tone thru second devsound client")); sl@0: TInt err = iDevsoundToneClient->PlayTone (); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Second Devsound client called PlayTone and failed with error = %d"), err); sl@0: StopTest(err); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPreemptedByToneTest::ClientToneFinishedCallback(TInt aError) sl@0: { sl@0: INFO_PRINTF1(_L("========== Second DevSound client called ToneFinished()==========")); sl@0: if (aError == KErrUnderflow) sl@0: { sl@0: INFO_PRINTF2(_L("Second DevSound client called ToneFinished and succeeded with error = %d"), aError); sl@0: StopTest(aError, EPass); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("Second DevSound client called ToneFinished and failed with error = %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0033 sl@0: */ sl@0: RA3FDevSoundPlayPreemptedByRecordTest::RA3FDevSoundPlayPreemptedByRecordTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC) sl@0: sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlayPreemptedByRecordTest* RA3FDevSoundPlayPreemptedByRecordTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlayPreemptedByRecordTest* self = new (ELeave) RA3FDevSoundPlayPreemptedByRecordTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPreemptedByRecordTest::DoKickoffTestL() sl@0: { sl@0: TPtrC filename; sl@0: // Get the filename of the audio file to play sl@0: if (!GetStringFromConfig(iTestStepName, KFilename, filename)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFilename); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: // open using RFile for playback sl@0: iFilename.Copy(filename); sl@0: TInt err = iFile.Open(iFs, iFilename, EFileRead); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Could not open input file. Error = %d"), err); sl@0: StopTest(err); sl@0: return; sl@0: } sl@0: // Get the filename of the audio file to record sl@0: if (!GetStringFromConfig(iTestStepName, KOtherFilename, filename)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KOtherFilename); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: sl@0: iOtherFilename.Copy(filename); sl@0: sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest (KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: iTimer = CPeriodic::NewL(CActive::EPriorityHigh); sl@0: iDevsoundRecordClient = CA3FDevSoundRecordClient::NewL(*this, iFourCCCode, iFs, iSuite); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPreemptedByRecordTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPreemptedByRecordTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: TMMFPrioritySettings priority; sl@0: priority.iPriority = KMinimumPriority; sl@0: INFO_PRINTF2(_L("Setting Priority to %d using CMMFDevSound::SetPrioritySettings"), priority.iPriority); sl@0: iMMFDevSound->SetPrioritySettings (priority); sl@0: iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ()); sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL")); sl@0: TRAPD(err, iMMFDevSound->PlayInitL()); sl@0: if (err != KErrNone) sl@0: { sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStatePlaying")); sl@0: iDevSoundState = EStatePlaying; sl@0: StartTimer(KMicroSecsTwoSec); sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStatePlaying: sl@0: { sl@0: if (aDevSoundEvent == EEventBTBF) sl@0: { sl@0: CMMFDataBuffer* buffer = static_cast (iBuffer); sl@0: TInt err = iFile.Read (buffer->Data ()); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: if (buffer->Data().Length()!= buffer->RequestSize()) sl@0: { sl@0: iBuffer->SetLastBuffer(ETrue); sl@0: } sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData")); sl@0: iMMFDevSound->PlayData(); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPreemptedByRecordTest::DoTimerCallback() sl@0: { sl@0: INFO_PRINTF1(_L("TimerEvent called")); sl@0: if (!iOtherClientStarted) sl@0: { sl@0: INFO_PRINTF1(_L("Initializing higher priority devsound client...")); sl@0: iDevsoundRecordClient->SetPriority (KMaximumPriority); sl@0: TInt err = iDevsoundRecordClient->InitializeRecordClient (iOtherFilename); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF1(_L("Initializating DevSoud to record audio thru second devsound client failed with error = %d")); sl@0: StopTest(err); sl@0: } sl@0: iOtherClientStarted = ETrue; sl@0: } sl@0: else sl@0: { sl@0: iTimer->Cancel(); sl@0: iDevsoundRecordClient->StopRecord(); sl@0: StopTest(); sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPreemptedByRecordTest::PlayError(TInt aError) sl@0: { sl@0: INFO_PRINTF1(_L("========== DevSound PlayError() callback ==========")); sl@0: if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied) sl@0: { sl@0: INFO_PRINTF1(_L("========== Preempting 1st DevSound Instance==========")); sl@0: INFO_PRINTF2(_L("First DevSound client PlayError succeeded with error = %d "), aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("First DevSound client called PlayError and failed with error = %d "), aError); sl@0: ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPreemptedByRecordTest::ClientInitializeCompleteCallback(TInt aError) sl@0: { sl@0: INFO_PRINTF1(_L("========== Second Client DevSound InitializeComplete() callback ==========")); sl@0: if (aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: INFO_PRINTF2(_L("Second DevSound client called InitializeComplete with error = %d"), aError); sl@0: INFO_PRINTF1(_L("Starting to record audio thru second devsound client")); sl@0: TInt err = iDevsoundRecordClient->RecordAudio (); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Starting to record audio thru second devsound client failed with error = %d"), err); sl@0: StopTest(err); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPreemptedByRecordTest::ClientBufferToBeEmptiedCallback(TInt aError) sl@0: { sl@0: INFO_PRINTF1(_L("========== Second Client DevSound ClientBufferToBeEmptied() callback ==========")); sl@0: switch (aError) sl@0: { sl@0: case KErrGeneral: sl@0: { sl@0: INFO_PRINTF1(_L("Second DevSound client called BufferToBeEmptied and received a NULL CMMFBuffer")); sl@0: StopTest(aError); sl@0: break; sl@0: } sl@0: case KErrUnknown: sl@0: { sl@0: INFO_PRINTF1(_L("Second DevSound client called BufferToBeEmptied: Unknown behaviour: Last buffer flag set before calling CMMFDevSound->Pause()")); sl@0: StopTest(aError); sl@0: break; sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPreemptedByRecordTest::ClientRecordErrorCallback(TInt aError) sl@0: { sl@0: INFO_PRINTF1(_L("========== Second Client DevSound RecordError() callback ==========")); sl@0: if (aError == KErrUnderflow) sl@0: { sl@0: INFO_PRINTF2(_L("Second DevSound client called RecordError with error = %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPreemptedByRecordTest::ClientRecordHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError) sl@0: { sl@0: switch (aError) sl@0: { sl@0: case EInvalidClientFSMEvent: sl@0: { sl@0: ERR_PRINTF1(_L("Second devsound client received an invalid Event...")); sl@0: StopTest(KErrNone, EFail); sl@0: break; sl@0: } sl@0: case EInvalidClientFSMState: sl@0: { sl@0: ERR_PRINTF1(_L("Second devsound client received an invalid State...")); sl@0: StopTest(KErrNone, EFail); sl@0: break; sl@0: } sl@0: case EWriteFileErrorInClient: sl@0: { sl@0: ERR_PRINTF1(_L("Second devsound client could not write to file...")); sl@0: StopTest(KErrNone, EFail); sl@0: break; sl@0: } sl@0: } sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0034 sl@0: */ sl@0: RA3FDevSoundPlayRejectionTest::RA3FDevSoundPlayRejectionTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC), sl@0: iOtherFilename(KNullDesC) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlayRejectionTest* RA3FDevSoundPlayRejectionTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlayRejectionTest* self = new (ELeave) RA3FDevSoundPlayRejectionTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlayRejectionTest::DoKickoffTestL() sl@0: { sl@0: TPtrC filename; sl@0: // Get the filename of the audio file to play sl@0: if (!GetStringFromConfig(iTestStepName, KFilename, filename)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFilename); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: // open using RFile for playback sl@0: iFilename.Copy(filename); sl@0: sl@0: TInt err = iFile.Open(iFs, iFilename, EFileRead); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Could not open input file. Error = %d"), err); sl@0: StopTest(err); sl@0: return; sl@0: } sl@0: sl@0: INFO_PRINTF2(_L("File under test -> %S"), &iFilename); sl@0: sl@0: // Get the filename of the second devsound instance sl@0: TPtrC tempString; sl@0: if (!GetStringFromConfig(iTestStepName, KOtherFilename, tempString)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KOtherFilename); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: sl@0: iOtherFilename.Copy (tempString); sl@0: sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: iTimer = CPeriodic::NewL(CActive::EPriorityHigh); sl@0: iDevsoundPlayClient = CA3FDevSoundPlayClient::NewL(*this, iFourCCCode, iFs, iSuite); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayRejectionTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayRejectionTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: TMMFPrioritySettings priority; sl@0: priority.iPriority = KMaximumPriority; sl@0: INFO_PRINTF2(_L("Setting Priority to %d using CMMFDevSound::SetPrioritySettings"), priority.iPriority); sl@0: iMMFDevSound->SetPrioritySettings (priority); sl@0: iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume()); sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL")); sl@0: TRAPD(err, iMMFDevSound->PlayInitL()); sl@0: if ( err != KErrNone) sl@0: { sl@0: INFO_PRINTF2(_L("CMMFDevSound::PlayInitL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStatePlaying")); sl@0: iDevSoundState = EStatePlaying; sl@0: StartTimer (KMicroSecsTwoSec); sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStatePlaying: sl@0: { sl@0: if (aDevSoundEvent == EEventBTBF) sl@0: { sl@0: CMMFDataBuffer* buffer = static_cast (iBuffer); sl@0: TInt err = iFile.Read (buffer->Data ()); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: if (buffer->Data().Length()!= buffer->RequestSize()) sl@0: { sl@0: iBuffer->SetLastBuffer (ETrue); sl@0: } sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData")); sl@0: iMMFDevSound->PlayData(); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayRejectionTest::DoTimerCallback() sl@0: { sl@0: INFO_PRINTF1(_L("TimerEvent called")); sl@0: iTimer->Cancel(); sl@0: INFO_PRINTF1(_L("Starting higher priority devsound client")); sl@0: iDevsoundPlayClient->SetPriority(KMinimumPriority); sl@0: INFO_PRINTF1(_L("Initializing to play audio thru second devsound client")); sl@0: TInt err = iDevsoundPlayClient->PlayInit(iOtherFilename); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Initialization to play audio thru second devsound client failed with %d"), err); sl@0: StopTest(err); sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayRejectionTest::ClientInitializeCompleteCallback(TInt aError) sl@0: { sl@0: INFO_PRINTF1(_L("========== Second Client DevSound InitializeComplete() callback ==========")); sl@0: if (aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: INFO_PRINTF2(_L("Second DevSound client called InitializeComplete with error = %d"), aError); sl@0: INFO_PRINTF1(_L("Starting to play audio thru second devsound client")); sl@0: TInt err = iDevsoundPlayClient->PlayAudio (); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Starting to play audio thru second devsound client failed with error = %d"), err); sl@0: StopTest(err); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayRejectionTest::ClientPlayHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError) sl@0: { sl@0: switch (aError) sl@0: { sl@0: case EInvalidClientFSMEvent: sl@0: ERR_PRINTF1(_L("Second devsound client received an invalid Event...")); sl@0: break; sl@0: case EInvalidClientFSMState: sl@0: ERR_PRINTF1(_L("Second devsound client received an invalid State...")); sl@0: break; sl@0: case EReadFileErrorInClient: sl@0: ERR_PRINTF1(_L("Second devsound client could not read to file...")); sl@0: break; sl@0: default: sl@0: break; sl@0: } sl@0: StopTest(aError, EFail); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayRejectionTest::ClientBufferToBeFilledCallback(TInt aError) sl@0: { sl@0: INFO_PRINTF2(_L("Second DevSound client should not call BufferToBeFilled in rejection. Error = %d"), aError); sl@0: StopTest(aError, EFail); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayRejectionTest::ClientPlayErrorCallback(TInt aError, TBool aLastBuffer) sl@0: { sl@0: INFO_PRINTF1(_L("========== Second Client DevSound PlayError() callback ==========")); sl@0: sl@0: if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied && !aLastBuffer) sl@0: { sl@0: INFO_PRINTF1(_L("========== Rejecting 2nd DevSound Instance==========")); sl@0: INFO_PRINTF2(_L("Second DevSound client PlayError succeeded with error = %d"), aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("Second DevSound PlayError failed with error = %d"), aError); sl@0: ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0035 sl@0: */ sl@0: RA3FDevSoundPlayRejectedByToneTest::RA3FDevSoundPlayRejectedByToneTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlayRejectedByToneTest* RA3FDevSoundPlayRejectedByToneTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlayRejectedByToneTest* self = new (ELeave) RA3FDevSoundPlayRejectedByToneTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlayRejectedByToneTest::DoKickoffTestL() sl@0: { sl@0: TPtrC filename; sl@0: // Get the filename of the audio file to play sl@0: if (!GetStringFromConfig(iTestStepName, KFilename, filename)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFilename); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: // open using RFile for playback sl@0: iFilename.Copy (filename); sl@0: sl@0: INFO_PRINTF2(_L("File under test -> %S"), &iFilename); sl@0: if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: if (!GetIntFromConfig(iTestStepName, KDuration, iDuration)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KDuration); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: iTimer = CPeriodic::NewL(CActive::EPriorityHigh); sl@0: iDevsoundPlayClient = CA3FDevSoundPlayClient::NewL(*this, iFourCCCode, iFs, iSuite); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayRejectedByToneTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayRejectedByToneTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: TMMFPrioritySettings priority; sl@0: priority.iPriority = KMinimumPriority; sl@0: INFO_PRINTF2(_L("Setting Priority to %d using CMMFDevSound::SetPrioritySettings"), priority.iPriority); sl@0: iMMFDevSound->SetPrioritySettings (priority); sl@0: iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume()); sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayToneL")); sl@0: TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error =%d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStatePlaying")); sl@0: iDevSoundState = EStatePlaying; sl@0: StartTimer(KMicroSecsTwoSec); sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayRejectedByToneTest::DoTimerCallback() sl@0: { sl@0: INFO_PRINTF1(_L("TimerEvent called")); sl@0: iTimer->Cancel(); sl@0: INFO_PRINTF1(_L("Starting higher priority devsound client")); sl@0: iDevsoundPlayClient->SetPriority(KMinimumPriority); sl@0: INFO_PRINTF1(_L("Initializing to play audio thru second devsound client")); sl@0: TInt err = iDevsoundPlayClient->PlayInit(iFilename); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Initialization to play audio thru second devsound client failed with %d"), err); sl@0: StopTest(err); sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayRejectedByToneTest::ClientInitializeCompleteCallback(TInt aError) sl@0: { sl@0: INFO_PRINTF1(_L("========== Second Client DevSound InitializeComplete() callback ==========")); sl@0: if (aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError); sl@0: StopTest (aError); sl@0: } sl@0: else sl@0: { sl@0: INFO_PRINTF2(_L("Second DevSound client called InitializeComplete with error = %d"), aError); sl@0: INFO_PRINTF1(_L("Starting to play audio thru second devsound client")); sl@0: TInt err = iDevsoundPlayClient->PlayAudio (); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Starting to play audio thru second devsound client failed with error = %d"), err); sl@0: StopTest(err); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayRejectedByToneTest::ClientPlayHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError) sl@0: { sl@0: switch (aError) sl@0: { sl@0: case EInvalidClientFSMEvent: sl@0: ERR_PRINTF1(_L("Second devsound client received an invalid Event...")); sl@0: break; sl@0: case EInvalidClientFSMState: sl@0: ERR_PRINTF1(_L("Second devsound client received an invalid State...")); sl@0: break; sl@0: case EReadFileErrorInClient: sl@0: ERR_PRINTF1(_L("Second devsound client could not read to file...")); sl@0: break; sl@0: default: sl@0: break; sl@0: } sl@0: StopTest(aError, EFail); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayRejectedByToneTest::ClientBufferToBeFilledCallback(TInt aError) sl@0: { sl@0: INFO_PRINTF2(_L("Second DevSound client should not call BufferToBeFilled in rejection. Error = %d"), aError); sl@0: StopTest(aError, EFail); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayRejectedByToneTest::ClientPlayErrorCallback(TInt aError,TBool aLastBuffer) sl@0: { sl@0: INFO_PRINTF1(_L("========== Second Client DevSound PlayError() callback ==========")); sl@0: if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied && !aLastBuffer) sl@0: { sl@0: INFO_PRINTF1(_L("========== Rejecting 2nd DevSound Instance==========")); sl@0: INFO_PRINTF2(_L("Second DevSound client PlayError succeeded with error = %d"), aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("Second DevSound PlayError failed with error = %d"), aError); sl@0: ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0036 sl@0: */ sl@0: RA3FDevSoundPlayRejectedByRecordTest::RA3FDevSoundPlayRejectedByRecordTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC), sl@0: iOtherFilename(KNullDesC), iOtherClientStarted(EFalse) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlayRejectedByRecordTest* RA3FDevSoundPlayRejectedByRecordTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlayRejectedByRecordTest* self = new (ELeave) RA3FDevSoundPlayRejectedByRecordTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlayRejectedByRecordTest::DoKickoffTestL() sl@0: { sl@0: TPtrC filename; sl@0: if (!GetStringFromConfig(iTestStepName, KFilename, filename)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFilename); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: // Open file for recording using RFile sl@0: sl@0: iFilename.Copy (filename); sl@0: sl@0: // Get the filename of the second audio file to play sl@0: if (!GetStringFromConfig(iTestStepName, KOtherFilename, filename)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KOtherFilename); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: INFO_PRINTF2(_L("Opening file for recording %S"), &iFilename); sl@0: TInt err = iFile.Replace (iFs, iFilename, EFileWrite); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Could not create output file. Error = %d"), err); sl@0: iFs.Close(); sl@0: StopTest(err); sl@0: return; sl@0: } sl@0: sl@0: iOtherFilename.Copy (filename); sl@0: sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest (KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: iTimer = CPeriodic::NewL(CActive::EPriorityHigh); sl@0: iDevsoundPlayClient = CA3FDevSoundPlayClient::NewL(*this, iFourCCCode, iFs, iSuite); sl@0: iAsyncWriteBTFAO = CAsyncWriteBufferToFile::NewL(iFile, iMMFDevSound, *this); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayRejectedByRecordTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayRejectedByRecordTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: INFO_PRINTF1(_L("iMMFDevSound->InitializeL()")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStateRecording)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Initialization of DevSound failed with error : %d!"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: INFO_PRINTF1(_L("CMMFDevSound::RecordInitL")); sl@0: TRAPD(err, iMMFDevSound->RecordInitL()); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound RecordInitL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: StartTimer(KMicroSecsTwoSec); sl@0: INFO_PRINTF1(_L("DevSound State: EStateRecording")); sl@0: iDevSoundState = EStateRecording; sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateRecording: sl@0: { sl@0: if (aDevSoundEvent == EEventBTBE) sl@0: { sl@0: // Write buffer to file sl@0: INFO_PRINTF1(_L("Writing data to file")); sl@0: CMMFDataBuffer* buffer = static_cast (iBuffer); sl@0: iAsyncWriteBTFAO->Start(buffer); sl@0: } sl@0: else if (aDevSoundEvent == EEventTimerComplete) sl@0: { sl@0: iMMFDevSound->Pause(); sl@0: INFO_PRINTF1(_L("DevSound State: EStatePause")); sl@0: iDevSoundState = EStatePause; sl@0: INFO_PRINTF1(_L("Recording is Paused, waiting for the last buffer callback")); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventBTBE not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStatePause: sl@0: { sl@0: if (aDevSoundEvent == EEventBTBE) sl@0: { sl@0: CMMFDataBuffer* buffer = static_cast (iBuffer); sl@0: // Continue recording data sl@0: iAsyncWriteBTFAO->Start (buffer); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventBTBE not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayRejectedByRecordTest::DoTimerCallback() sl@0: { sl@0: INFO_PRINTF1(_L("TimerEvent called")); sl@0: if (!iOtherClientStarted) sl@0: { sl@0: INFO_PRINTF1(_L("Starting higher priority devsound client")); sl@0: iDevsoundPlayClient->SetPriority(KMinimumPriority); sl@0: INFO_PRINTF1(_L("Initializing to play audio thru second devsound client")); sl@0: TInt err = iDevsoundPlayClient->PlayInit(iFilename); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Initialization to play audio thru second devsound client failed with %d"), err); sl@0: StopTest(err); sl@0: } sl@0: iOtherClientStarted = ETrue; sl@0: } sl@0: else sl@0: { sl@0: iTimer->Cancel(); sl@0: Fsm(EEventTimerComplete, KErrNone); sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayRejectedByRecordTest::ClientInitializeCompleteCallback(TInt aError) sl@0: { sl@0: INFO_PRINTF1(_L("========== Second Client DevSound InitializeComplete() callback ==========")); sl@0: if (aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: INFO_PRINTF2(_L("Second DevSound client called InitializeComplete and with error = %d"), aError); sl@0: INFO_PRINTF1(_L("Starting to play audio thru second devsound client")); sl@0: TInt err = iDevsoundPlayClient->PlayAudio(); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Starting to play audio thru second devsound client failed with error = %d"), err); sl@0: StopTest(err); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayRejectedByRecordTest::ClientPlayHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError) sl@0: { sl@0: switch (aError) sl@0: { sl@0: case EInvalidClientFSMEvent: sl@0: ERR_PRINTF1(_L("Second devsound client received an invalid Event...")); sl@0: break; sl@0: case EInvalidClientFSMState: sl@0: ERR_PRINTF1(_L("Second devsound client received an invalid State...")); sl@0: break; sl@0: case EReadFileErrorInClient: sl@0: ERR_PRINTF1(_L("Second devsound client could not read to file...")); sl@0: break; sl@0: default: sl@0: break; sl@0: } sl@0: StopTest(aError, EFail); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayRejectedByRecordTest::ClientBufferToBeFilledCallback(TInt aError) sl@0: { sl@0: INFO_PRINTF2(_L("Second DevSound client should not call BufferToBeFilled in rejection. Error = %d"), aError); sl@0: StopTest(aError, EFail); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayRejectedByRecordTest::ClientPlayErrorCallback(TInt aError, TBool aLastBuffer) sl@0: { sl@0: INFO_PRINTF1(_L("========== Second Client DevSound PlayError() callback ==========")); sl@0: sl@0: if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied && !aLastBuffer) sl@0: { sl@0: INFO_PRINTF1(_L("========== Rejecting 2nd DevSound Instance==========")); sl@0: INFO_PRINTF2(_L("Second DevSound client PlayError succeeded with error = %d"), aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("Second DevSound PlayError failed with error = %d"), aError); sl@0: ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0037 sl@0: */ sl@0: RA3FDevSoundPlayDataBeforePlayInitTest::RA3FDevSoundPlayDataBeforePlayInitTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlayDataBeforePlayInitTest* RA3FDevSoundPlayDataBeforePlayInitTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlayDataBeforePlayInitTest* self = new (ELeave) RA3FDevSoundPlayDataBeforePlayInitTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlayDataBeforePlayInitTest::DoKickoffTestL() sl@0: { sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayDataBeforePlayInitTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPlayDatabeforePlayInitLTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData out of sequence")); sl@0: iMMFDevSound->PlayData(); sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0038 sl@0: */ sl@0: RA3FDevSoundPlayInitTwiceTest::RA3FDevSoundPlayInitTwiceTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName),iFirstPlayInitErr(KErrGeneral), sl@0: iErr(KErrGeneral) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlayInitTwiceTest* RA3FDevSoundPlayInitTwiceTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlayInitTwiceTest* self = new (ELeave) RA3FDevSoundPlayInitTwiceTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlayInitTwiceTest::DoKickoffTestL() sl@0: { sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC (fourccCode); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayInitTwiceTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPlayInitLTwiceTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL")); sl@0: TRAP(iFirstPlayInitErr, iMMFDevSound->PlayInitL()); sl@0: if (iFirstPlayInitErr != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::PlayInitL left with error = %d"), iFirstPlayInitErr); sl@0: StopTest(iFirstPlayInitErr); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("CMMFDevSound::PlayInitL twice (more than once)")); sl@0: TRAP(iErr, iMMFDevSound->PlayInitL()); sl@0: if (iErr == KErrNotReady) sl@0: { sl@0: INFO_PRINTF2(_L("CMMFDevSound::PlayInitL left with the expected error = %d"), iErr); sl@0: break; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("Second CMMFDevSound::PlayInitL did NOT leave with the expected error = %d"), iErr); sl@0: ERR_PRINTF2(_L("Expected error = %d"), KErrNotReady); sl@0: StopTest(iErr, EFail); sl@0: break; sl@0: } sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayInitTwiceTest::BufferToBeFilled(CMMFBuffer* /*aBuffer*/) sl@0: { sl@0: INFO_PRINTF1(_L("========== DevSound BufferToBeFilled() callback ==========")); sl@0: if (iErr == KErrNotReady && iFirstPlayInitErr == KErrNone) sl@0: { sl@0: INFO_PRINTF1(_L("BufferToBeFilled is called because the leave generated due to second CMMFDevSound::PlayInitL is ignored")); sl@0: StopTest(); sl@0: } sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0039 sl@0: */ sl@0: RA3FDevSoundPlayARNTest::RA3FDevSoundPlayARNTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC), sl@0: iOtherFilename(KNullDesC) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlayARNTest* RA3FDevSoundPlayARNTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlayARNTest* self = new (ELeave) RA3FDevSoundPlayARNTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlayARNTest::DoKickoffTestL() sl@0: { sl@0: iRepeat = EFalse; sl@0: TPtrC filename; sl@0: // Get the filename of the audio file to play sl@0: if (!GetStringFromConfig(iTestStepName, KFilename, filename)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFilename); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: // open using RFile for playback sl@0: iFilename.Copy(filename); sl@0: TInt err = iFile.Open(iFs, iFilename, EFileRead); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Could not open input file. Error = %d"), err); sl@0: StopTest(err); sl@0: return; sl@0: } sl@0: INFO_PRINTF2(_L("File under test -> %S"), &iFilename); sl@0: // Get the filename of the second devsound instance sl@0: TPtrC tempString; sl@0: if (!GetStringFromConfig(iTestStepName, KOtherFilename, tempString)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KOtherFilename); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: iOtherFilename.Copy (tempString); sl@0: INFO_PRINTF2(_L("File under test -> %S"), &iOtherFilename); sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: iTimer = CPeriodic::NewL(CActive::EPriorityHigh); sl@0: iDevsoundPlayClient = CA3FDevSoundPlayClient::NewL(*this, iFourCCCode, iFs, iSuite); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayARNTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPreemptionTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: TMMFPrioritySettings priority; sl@0: priority.iPriority = KMinimumPriority; sl@0: INFO_PRINTF2(_L("Setting Priority to %d using CMMFDevSound::SetPrioritySettings"), priority.iPriority); sl@0: iMMFDevSound->SetPrioritySettings (priority); sl@0: iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ()); sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL")); sl@0: TRAPD(err, iMMFDevSound->PlayInitL()); sl@0: if (err != KErrNone) sl@0: { sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStatePlaying")); sl@0: INFO_PRINTF1(_L("Registering first client")); sl@0: iMMFDevSound->RegisterAsClient(KMMFEventCategoryAudioResourceAvailable); sl@0: iDevSoundState = EStatePlaying; sl@0: StartTimer(KMicroSecsTwoSec); sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStatePlaying: sl@0: { sl@0: if (aDevSoundEvent == EEventBTBF) sl@0: { sl@0: CMMFDataBuffer* buffer = static_cast (iBuffer); sl@0: TInt err = iFile.Read (buffer->Data ()); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err); sl@0: StopTest (err); sl@0: break; sl@0: } sl@0: if (buffer->Data().Length ()!= buffer->RequestSize()) sl@0: { sl@0: iBuffer->SetLastBuffer(ETrue); sl@0: } sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData")); sl@0: iMMFDevSound->PlayData(); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateResumePlaying: sl@0: { sl@0: // if (aDevSoundEvent == KMMFEventCategoryAudioResourceAvailable) sl@0: if (aDevSoundEvent == EResourceAvailable) sl@0: { sl@0: INFO_PRINTF1(_L("First Client Received Notification as expected")); sl@0: //INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData")); sl@0: //iMMFDevSound->PlayData (); sl@0: StopTest(); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound KMMFEventCategoryAudioResourceAvailable not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(KErrGeneral); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayARNTest::DoTimerCallback() sl@0: { sl@0: if(!iRepeat) sl@0: { sl@0: INFO_PRINTF1(_L("TimerEvent called")); sl@0: //iTimer->Cancel(); sl@0: INFO_PRINTF1(_L("Starting higher priority devsound client")); sl@0: iDevsoundPlayClient->SetPriority(KMaximumPriority); sl@0: INFO_PRINTF1(_L("Initializing to play audio thru second devsound client")); sl@0: TInt err = iDevsoundPlayClient->PlayInit(iOtherFilename); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Initializating DevSound to play audio thru second devsound client failed with error = %d"), err); sl@0: StopTest(err); sl@0: } sl@0: iRepeat = ETrue; sl@0: } sl@0: else sl@0: { sl@0: INFO_PRINTF1(_L("Deleting second devsound client")); sl@0: iDevsoundPlayClient->DeleteClient(); sl@0: iDevSoundState = EStateResumePlaying; sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayARNTest::PlayError(TInt aError) sl@0: { sl@0: INFO_PRINTF1(_L("========== DevSound PlayError() callback ==========")); sl@0: if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied) sl@0: { sl@0: INFO_PRINTF1(_L("========== Preempting 1st DevSound Instance==========")); sl@0: INFO_PRINTF2(_L("First DevSound client PlayError succeeded with error = %d "), aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("First DevSound client PlayError and failed with error = %d "), aError); sl@0: ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayARNTest::ClientInitializeCompleteCallback(TInt aError) sl@0: { sl@0: INFO_PRINTF1(_L("========== Second Client DevSound InitializeComplete() callback ==========")); sl@0: if (aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: INFO_PRINTF1(_L("Starting to play audio thru second devsound client")); sl@0: TInt err = iDevsoundPlayClient->PlayAudio(); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Starting to play audio thru second devsound client failed with error = %d"), err); sl@0: StopTest(err); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayARNTest::ClientBufferToBeFilledCallback(TInt aError) sl@0: { sl@0: INFO_PRINTF1(_L("========== Second Client DevSound BufferToBeFilled() callback ==========")); sl@0: if (aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Second DevSound client called BufferToBeFilled and failed with error = %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayARNTest::ClientPlayHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError) sl@0: { sl@0: switch (aError) sl@0: { sl@0: case EInvalidClientFSMEvent: sl@0: ERR_PRINTF1(_L("Second devsound client received an invalid Event...")); sl@0: break; sl@0: case EInvalidClientFSMState: sl@0: ERR_PRINTF1(_L("Second devsound client received an invalid State...")); sl@0: break; sl@0: case EReadFileErrorInClient: sl@0: ERR_PRINTF1(_L("Second devsound client could not read to file...")); sl@0: break; sl@0: default: sl@0: break; sl@0: } sl@0: StopTest(aError, EFail); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayARNTest::ClientPlayErrorCallback(TInt aError, TBool aLastBuffer) sl@0: { sl@0: INFO_PRINTF1(_L("========== Second Client DevSound PlayError() callback ==========")); sl@0: sl@0: if (aError == KErrUnderflow && aLastBuffer) sl@0: { sl@0: INFO_PRINTF1(_L("Second DevSound client called PlayError and completed normally")); sl@0: iDevSoundState = EStateResumePlaying; sl@0: //StopTest(); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("Second DevSound PlayError failed with error = %d"), aError); sl@0: ERR_PRINTF2(_L("Expected error = %d "), KErrUnderflow); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0040 sl@0: */ sl@0: RA3FDevSoundImmediatePauseAfterCreation::RA3FDevSoundImmediatePauseAfterCreation(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundImmediatePauseAfterCreation* RA3FDevSoundImmediatePauseAfterCreation::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundImmediatePauseAfterCreation* self = new (ELeave) RA3FDevSoundImmediatePauseAfterCreation(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundImmediatePauseAfterCreation::DoKickoffTestL() sl@0: { sl@0: iTimer = CPeriodic::NewL(CActive::EPriorityHigh); sl@0: } sl@0: sl@0: void RA3FDevSoundImmediatePauseAfterCreation::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundImmediatePauseAfterCreation"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::Pause")); sl@0: sl@0: iMMFDevSound->Pause(); sl@0: StartTimer(KMicroSecsInOneSec); sl@0: sl@0: iDevSoundState = EStatePause; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundImmediatePauseAfterCreation::DoTimerCallback() sl@0: { sl@0: INFO_PRINTF1(_L("TimerEvent called")); sl@0: iTimer->Cancel(); sl@0: INFO_PRINTF1(_L("Pause did not panic DevSound")); sl@0: StopTest(KErrNone); sl@0: } sl@0: sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0041 sl@0: */ sl@0: RA3FDevSoundPlayEmptyBuffersWhilePlayingTest::RA3FDevSoundPlayEmptyBuffersWhilePlayingTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName), iVolume(0), sl@0: iFilename(KNullDesC) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlayEmptyBuffersWhilePlayingTest* RA3FDevSoundPlayEmptyBuffersWhilePlayingTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlayEmptyBuffersWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayEmptyBuffersWhilePlayingTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlayEmptyBuffersWhilePlayingTest::DoKickoffTestL() sl@0: { sl@0: TPtrC filename; sl@0: // Get the filename of the audio file to play sl@0: if (!GetStringFromConfig(iTestStepName, KFilename, filename)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFilename); sl@0: StopTest (KErrNotFound); sl@0: return; sl@0: } sl@0: // open using RFile for playback sl@0: iFilename.Copy (filename); sl@0: TInt err = iFile.Open (iFs, iFilename, EFileRead); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Could not open input file. Error = %d"), err); sl@0: iFs.Close(); sl@0: StopTest(err); sl@0: return; sl@0: } sl@0: sl@0: INFO_PRINTF2(_L("File under test -> %S"), &iFilename); sl@0: sl@0: if (!GetIntFromConfig(iTestStepName, KVolume, iVolume)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KVolume); sl@0: StopTest (KErrNotFound); sl@0: return; sl@0: } sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayEmptyBuffersWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumePlayingTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error: %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL")); sl@0: TRAPD(err, iMMFDevSound->PlayInitL()); sl@0: if (err != KErrNone) sl@0: { sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: iDevSoundState = EStatePlaying; sl@0: } sl@0: else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStatePlaying: sl@0: { sl@0: if (aDevSoundEvent == EEventBTBF) sl@0: { sl@0: sl@0: if(iBtbfCount == 3) sl@0: { sl@0: INFO_PRINTF2(_L("BTBF count = %d, Calling CMMFDevSound::EmptyBuffers"),iBtbfCount); sl@0: iMMFDevSound->EmptyBuffers(); sl@0: } sl@0: sl@0: else sl@0: { sl@0: CMMFDataBuffer* buffer = static_cast (iBuffer); sl@0: TInt err = iFile.Read (buffer->Data ()); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("ERROR : iFile.Read() failed with: %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: if (buffer->Data().Length ()!= buffer->RequestSize ()) sl@0: { sl@0: iBuffer->SetLastBuffer (ETrue); sl@0: } sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData")); sl@0: iMMFDevSound->PlayData (); sl@0: } sl@0: sl@0: ++iBtbfCount; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: /* sl@0: *======================================================================================================== sl@0: * 3F-DEVSOUND-CHRTZ-PLAY-RAW-0042 sl@0: */ sl@0: RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest(const TDesC& aTestName) : sl@0: RA3FDevSoundTestBase(aTestName),iFilename(KNullDesC), sl@0: iExVolume(0), iFrequencyTone1(0), iDuration(0), sl@0: iSetVolume(EFalse), iResume(EFalse) sl@0: { sl@0: } sl@0: sl@0: RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest* RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::NewL(const TDesC& aTestName) sl@0: { sl@0: RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest* self = new (ELeave) RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest(aTestName); sl@0: return self; sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::DoKickoffTestL() sl@0: { sl@0: TPtrC filename; sl@0: // Get the filename of the audio file to play sl@0: if (!GetStringFromConfig(iTestStepName, KFilename, filename)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFilename); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: // open using RFile for playback sl@0: iFilename.Copy(filename); sl@0: TInt err = iFile.Open(iFs, iFilename, EFileRead); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Could not open input file. Error = %d"), err); sl@0: StopTest(err); sl@0: return; sl@0: } sl@0: sl@0: INFO_PRINTF2(_L("File under test -> %S"), &iFilename); sl@0: sl@0: if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: if (!GetIntFromConfig(iTestStepName, KDuration, iDuration)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KDuration); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: TPtrC fourccCode; sl@0: if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: sl@0: if (!GetIntFromConfig(iTestStepName, KExVolume, iExVolume)) sl@0: { sl@0: ERR_PRINTF2(KMsgErrorGetParameter, &KExVolume); sl@0: StopTest(KErrNotFound); sl@0: return; sl@0: } sl@0: sl@0: EncodingFromStringToTFourCC(fourccCode); sl@0: iTimer = CPeriodic::NewL(CActive::EPriorityHigh); sl@0: iDevsoundToneClient = CA3FDevSoundToneClient::NewL(*this); sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) sl@0: { sl@0: switch (iDevSoundState) sl@0: { sl@0: case EStateCreated: sl@0: { sl@0: __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPreemptedByToneTest"), EFsmIncorrectErrorPassed)); sl@0: if (aDevSoundEvent == EEventInitialize) sl@0: { sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL")); sl@0: TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStateInitializing")); sl@0: iDevSoundState = EStateInitializing; sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStateInitializing: sl@0: { sl@0: if (aDevSoundEvent == EEventInitComplete && aError == KErrNone) sl@0: { sl@0: TMMFPrioritySettings priority; sl@0: priority.iPriority = KMinimumPriority; sl@0: INFO_PRINTF2(_L("Setting Priority to %d using CMMFDevSound::SetPrioritySettings"), priority.iPriority); sl@0: iMMFDevSound->SetPrioritySettings (priority); sl@0: iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ()); sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL")); sl@0: TRAPD(err, iMMFDevSound->PlayInitL()); sl@0: if (err != KErrNone) sl@0: { sl@0: StopTest (err); sl@0: break; sl@0: } sl@0: INFO_PRINTF1(_L("DevSound State: EStatePlaying")); sl@0: iDevSoundState = EStatePlaying; sl@0: StartTimer (KMicroSecsTwoSec); sl@0: } sl@0: else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: case EStatePlaying: sl@0: { sl@0: if (aDevSoundEvent == EEventBTBF) sl@0: { sl@0: if(iResume) sl@0: { sl@0: INFO_PRINTF1(_L("First Client resumed after pre-emption as expected")); sl@0: StopTest(); sl@0: break; sl@0: } sl@0: sl@0: if(!iSetVolume) sl@0: { sl@0: iMMFDevSound->SetVolume (iExVolume); sl@0: iSetVolume = ETrue; sl@0: } sl@0: sl@0: CMMFDataBuffer* buffer = static_cast (iBuffer); sl@0: TInt err = iFile.Read (buffer->Data()); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err); sl@0: StopTest(err); sl@0: break; sl@0: } sl@0: if (buffer->Data().Length ()!= buffer->RequestSize()) sl@0: { sl@0: iBuffer->SetLastBuffer(ETrue); sl@0: } sl@0: INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData")); sl@0: iMMFDevSound->PlayData(); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent); sl@0: StopTest(aError, EFail); sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: { sl@0: ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::DoTimerCallback() sl@0: { sl@0: INFO_PRINTF1(_L("TimerEvent called")); sl@0: iTimer->Cancel(); sl@0: INFO_PRINTF1(_L("Starting higher priority devsound client")); sl@0: iDevsoundToneClient->SetPriority(KMaximumPriority); sl@0: INFO_PRINTF1(_L("Initializing to play tones thru second devsound client")); sl@0: TInt err = iDevsoundToneClient->InitTonePlay(iFrequencyTone1,iDuration*KMicroSecsInOneSec); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Initializating DevSoud to play tones thru second devsound client failed with error = %d"), err); sl@0: StopTest(err); sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::PlayError(TInt aError) sl@0: { sl@0: INFO_PRINTF1(_L("========== DevSound PlayError() callback ==========")); sl@0: if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied) sl@0: { sl@0: INFO_PRINTF1(_L("========== Preempting 1st DevSound Instance==========")); sl@0: INFO_PRINTF2(_L("First DevSound client PlayError succeeded with error = %d "), aError); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("First DevSound client called PlayError and failed with error = %d "), aError); sl@0: ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied); sl@0: StopTest(aError, EFail); sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::ClientInitializeCompleteCallback(TInt aError) sl@0: { sl@0: INFO_PRINTF1(_L("==========Second DevSound client called InitializeComplete()==========")); sl@0: if (aError == KErrNone) sl@0: { sl@0: INFO_PRINTF1(_L("Starting to play tone thru second devsound client")); sl@0: TInt err = iDevsoundToneClient->PlayTone (); sl@0: if (err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Second Devsound client called PlayTone and failed with error = %d"), err); sl@0: StopTest(err); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: } sl@0: sl@0: void RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::ClientToneFinishedCallback(TInt aError) sl@0: { sl@0: INFO_PRINTF1(_L("========== Second DevSound client called ToneFinished()==========")); sl@0: if (aError == KErrUnderflow) sl@0: { sl@0: INFO_PRINTF2(_L("Second DevSound client called ToneFinished and succeeded with error = %d"), aError); sl@0: iDevSoundState = EStatePlaying; sl@0: iResume = ETrue; sl@0: TRAPD(err, iMMFDevSound->PlayInitL()); sl@0: if(err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Call PlayInitL failed after Second DevSound client called ToneFinished with error = %d"), err); sl@0: StopTest(aError); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF2(_L("Second DevSound client called ToneFinished and failed with error = %d"), aError); sl@0: StopTest(aError); sl@0: } sl@0: } sl@0: