Update contrib.
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
17 #include "char_a3f_devsound_playtest.h"
20 *========================================================================================================
21 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0001
23 RA3FDevSoundPlaySetConfigTest::RA3FDevSoundPlaySetConfigTest(const TDesC& aTestName) :
24 RA3FDevSoundTestBase(aTestName), iSampleRate(0),
29 RA3FDevSoundPlaySetConfigTest* RA3FDevSoundPlaySetConfigTest::NewL(const TDesC& aTestName)
31 RA3FDevSoundPlaySetConfigTest* self = new (ELeave) RA3FDevSoundPlaySetConfigTest(aTestName);
35 void RA3FDevSoundPlaySetConfigTest::DoKickoffTestL()
37 if (!GetIntFromConfig(iTestStepName, KSampleRate, iSampleRate))
39 ERR_PRINTF2(KMsgErrorGetParameter, &KSampleRate);
40 StopTest(KErrNotFound);
43 if (!GetIntFromConfig(iTestStepName, KChannel, iChannels))
45 ERR_PRINTF2(KMsgErrorGetParameter, &KChannel);
46 StopTest(KErrNotFound);
50 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
52 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
53 StopTest(KErrNotFound);
56 EncodingFromStringToTFourCC(fourccCode);
59 void RA3FDevSoundPlaySetConfigTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
61 switch (iDevSoundState)
65 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetConfigLTest"), EFsmIncorrectErrorPassed));
66 if (aDevSoundEvent == EEventInitialize)
68 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
69 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
72 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
76 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
77 iDevSoundState = EStateInitializing;
81 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
82 StopTest(aError, EFail);
86 case EStateInitializing:
88 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
90 TMMFCapabilities capabilitiesSet;
91 TBuf<KMaxSampleRateStringLength> stringSampleRateSet;
92 TBuf<KMaxChannelsStringLength> stringChannelsSet;
93 SampleRateFromTIntToTMMFSampleRate (iSampleRate, iESampleRate);
94 capabilitiesSet.iRate = iESampleRate;
95 capabilitiesSet.iChannels = iChannels;
96 SampleRateFromTUintToString (capabilitiesSet.iRate, stringSampleRateSet);
97 ChannelsFromTUintToString (capabilitiesSet.iChannels, stringChannelsSet);
98 INFO_PRINTF3(_L("Settings for Sample rate an channel mode : %S %S"), &stringSampleRateSet, &stringChannelsSet);
99 INFO_PRINTF1(_L("Calling CMMFDevSound::SetConfigL"));
100 TRAPD(err, iMMFDevSound->SetConfigL(capabilitiesSet));
103 ERR_PRINTF2(_L("CMMFDevSound::SetConfigL left with error = %d"), err);
107 TMMFCapabilities capabilitiesGet;
108 TBuf<KMaxSampleRateStringLength> stringSampleRateGet;
109 TBuf<KMaxChannelsStringLength> stringChannelsGet;
110 capabilitiesGet=iMMFDevSound->Config ();
111 SampleRateFromTUintToString (capabilitiesGet.iRate, stringSampleRateGet);
112 ChannelsFromTUintToString (capabilitiesGet.iChannels, stringChannelsGet);
113 if (capabilitiesGet.iRate != capabilitiesSet.iRate || capabilitiesGet.iChannels != capabilitiesSet.iChannels)
115 ERR_PRINTF3(_L("Retrieved sample rate and channel : %S %S"), &stringSampleRateGet, &stringChannelsGet);
116 ERR_PRINTF3(_L("Expected %S %S"), &stringSampleRateSet, &stringChannelsSet);
117 StopTest(aError, EFail);
120 INFO_PRINTF1(_L("========== Test Case Successfully Completed =========="));
123 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
125 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error : %d"), aError);
130 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
131 StopTest(aError, EFail);
137 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
138 StopTest(aError, EFail);
144 *========================================================================================================
145 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0002
147 RA3FDevSoundPlaySetVolumeWhilePlayingTest::RA3FDevSoundPlaySetVolumeWhilePlayingTest(const TDesC& aTestName) :
148 RA3FDevSoundTestBase(aTestName), iVolume(0),
153 RA3FDevSoundPlaySetVolumeWhilePlayingTest* RA3FDevSoundPlaySetVolumeWhilePlayingTest::NewL(const TDesC& aTestName)
155 RA3FDevSoundPlaySetVolumeWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlaySetVolumeWhilePlayingTest(aTestName);
159 void RA3FDevSoundPlaySetVolumeWhilePlayingTest::DoKickoffTestL()
162 // Get the filename of the audio file to play
163 if (!GetStringFromConfig(iTestStepName, KFilename, filename))
165 ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
166 StopTest (KErrNotFound);
169 // open using RFile for playback
170 iFilename.Copy (filename);
171 TInt err = iFile.Open (iFs, iFilename, EFileRead);
174 ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
180 INFO_PRINTF2(_L("File under test -> %S"), &iFilename);
182 if (!GetIntFromConfig(iTestStepName, KVolume, iVolume))
184 ERR_PRINTF2(KMsgErrorGetParameter, &KVolume);
185 StopTest (KErrNotFound);
189 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
191 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
192 StopTest(KErrNotFound);
195 EncodingFromStringToTFourCC(fourccCode);
196 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
199 void RA3FDevSoundPlaySetVolumeWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
201 switch (iDevSoundState)
205 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumePlayingTest"), EFsmIncorrectErrorPassed));
206 if (aDevSoundEvent == EEventInitialize)
208 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
209 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
212 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error: %d"), err);
216 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
217 iDevSoundState = EStateInitializing;
221 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
222 StopTest(aError, EFail);
226 case EStateInitializing:
228 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
230 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
231 TRAPD(err, iMMFDevSound->PlayInitL());
237 StartTimer(KMicroSecsTwoSec);
238 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
239 iDevSoundState = EStatePlaying;
241 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
243 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
248 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
249 StopTest(aError, EFail);
255 if (aDevSoundEvent == EEventBTBF)
257 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
258 TInt err = iFile.Read (buffer->Data ());
261 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with: %d"), err);
265 if (buffer->Data().Length ()!= buffer->RequestSize ())
267 iBuffer->SetLastBuffer (ETrue);
269 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
270 iMMFDevSound->PlayData ();
273 else if (aDevSoundEvent == EEventTimerComplete)
275 INFO_PRINTF1(_L("Calling CMMFDevSound::SetVolume"));
276 iMMFDevSound->SetVolume(iVolume);
278 volumeGet=iMMFDevSound->Volume();
279 if (volumeGet == iVolume)
281 INFO_PRINTF2(_L("CMMFDevSound::SetVolume during playback succeeded with %d"), volumeGet);
285 ERR_PRINTF2(_L("CMMFDevSound::SetVolume during playback failed with %d"), volumeGet);
286 ERR_PRINTF2(_L("Expected value = %d"), iVolume);
287 StopTest(aError, EFail);
292 ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
293 StopTest(aError, EFail);
299 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
300 StopTest(aError, EFail);
305 void RA3FDevSoundPlaySetVolumeWhilePlayingTest::DoTimerCallback()
307 INFO_PRINTF1(_L("TimerEvent called"));
309 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
310 Fsm (EEventTimerComplete, KErrNone);
314 *========================================================================================================
315 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0003
317 RA3FDevSoundPlaySetVolumeTest::RA3FDevSoundPlaySetVolumeTest(const TDesC& aTestName) :
318 RA3FDevSoundTestBase(aTestName), iVolume(0)
322 RA3FDevSoundPlaySetVolumeTest* RA3FDevSoundPlaySetVolumeTest::NewL(const TDesC& aTestName)
324 RA3FDevSoundPlaySetVolumeTest* self = new (ELeave) RA3FDevSoundPlaySetVolumeTest(aTestName);
328 void RA3FDevSoundPlaySetVolumeTest::DoKickoffTestL()
330 if (!GetIntFromConfig(iTestStepName, KVolume, iVolume))
332 ERR_PRINTF2(KMsgErrorGetParameter, &KVolume);
333 StopTest(KErrNotFound);
338 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
340 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
341 StopTest(KErrNotFound);
344 EncodingFromStringToTFourCC(fourccCode);
347 void RA3FDevSoundPlaySetVolumeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
349 switch (iDevSoundState)
353 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumeTest"), EFsmIncorrectErrorPassed));
354 if (aDevSoundEvent == EEventInitialize)
356 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
357 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
360 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
364 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
365 iDevSoundState = EStateInitializing;
369 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
370 StopTest(aError, EFail);
374 case EStateInitializing:
376 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
378 INFO_PRINTF1(_L("Calling CMMFDevSound::SetVolume"));
379 iMMFDevSound->SetVolume(iVolume);
381 volumeGet = iMMFDevSound->Volume();
382 if (volumeGet == iVolume)
384 INFO_PRINTF2(_L("CMMFDevSound::SetVolume succeeded with %d"), volumeGet);
389 ERR_PRINTF2(_L("CMMFDevSound::SetVolume failed with %d"), volumeGet);
390 ERR_PRINTF2(_L("Expected value = %d"), iVolume);
391 StopTest(aError, EFail);
394 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
396 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
401 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
402 StopTest(aError, EFail);
408 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
409 StopTest(aError, EFail);
415 *========================================================================================================
416 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0004
418 RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest::RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest(const TDesC& aTestName) :
419 RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC),
424 RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest* RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest::NewL(const TDesC& aTestName)
426 RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest* self = new (ELeave) RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest(aTestName);
430 void RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest::DoKickoffTestL()
433 // Get the filename of the audio file to play
434 if (!GetStringFromConfig(iTestStepName, KFilename, filename))
436 ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
437 StopTest(KErrNotFound);
440 // open using RFile for playback
441 iFilename.Copy(filename);
442 TInt err = iFile.Open(iFs, iFilename, EFileRead);
445 ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
451 INFO_PRINTF2(_L("File under test -> %S"), &iFilename);
453 if (!GetIntFromConfig(iTestStepName, KVolume, iVolume))
455 ERR_PRINTF2(KMsgErrorGetParameter, &KVolume);
456 StopTest(KErrNotFound);
461 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
463 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
464 StopTest(KErrNotFound);
467 EncodingFromStringToTFourCC(fourccCode);
468 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
471 void RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
473 switch (iDevSoundState)
477 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest"), EFsmIncorrectErrorPassed));
478 if (aDevSoundEvent == EEventInitialize)
480 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
481 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
484 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
488 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
489 iDevSoundState = EStateInitializing;
493 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
494 StopTest(aError, EFail);
498 case EStateInitializing:
500 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
502 TRAPD(err, iMMFDevSound->PlayInitL());
503 if ( err != KErrNone)
508 StartTimer (KMicroSecsTwoSec);
509 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
510 iDevSoundState = EStatePlaying;
512 else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone)
514 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
519 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
520 StopTest (aError, EFail);
526 if (aDevSoundEvent == EEventBTBF)
528 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
529 TInt err = iFile.Read (buffer->Data ());
532 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
536 if (buffer->Data().Length ()!= buffer->RequestSize())
538 iBuffer->SetLastBuffer (ETrue);
540 INFO_PRINTF1(_L("CMMFDevSound::PlayData"));
541 iMMFDevSound->PlayData();
543 else if (aDevSoundEvent == EEventTimerComplete)
545 INFO_PRINTF1(_L("Calling CMMFDevSound::Pause"));
546 iMMFDevSound->Pause();
547 INFO_PRINTF1(_L("Calling CMMFDevSound::SetVolume"));
548 iMMFDevSound->SetVolume(iVolume);
550 volumeGet=iMMFDevSound->Volume ();
551 if (volumeGet == iVolume)
553 INFO_PRINTF2(_L("CMMFDevSound::SetVolume succeeded with %d"), volumeGet);
558 ERR_PRINTF2(_L("CMMFDevSound::SetVolume failed with %d"), volumeGet);
559 ERR_PRINTF2(_L("Expected volume: %d"), iVolume);
560 StopTest(aError, EFail);
565 ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
566 StopTest (aError, EFail);
572 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
573 StopTest(aError, EFail);
578 void RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest::DoTimerCallback()
581 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
582 Fsm (EEventTimerComplete, KErrNone);
586 *========================================================================================================
587 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0005
589 RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest::RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest(const TDesC& aTestName) :
590 RA3FDevSoundTestBase(aTestName),
591 iReinitialized(EFalse), iVolume(0)
595 RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest* RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest::NewL(const TDesC& aTestName)
597 RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest * self = new (ELeave) RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest(aTestName);
601 void RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest::DoKickoffTestL()
603 if (!GetIntFromConfig(iTestStepName, KVolume, iVolume))
605 ERR_PRINTF2(KMsgErrorGetParameter, &KVolume);
606 StopTest (KErrNotFound);
610 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
612 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
613 StopTest (KErrNotFound);
616 EncodingFromStringToTFourCC (fourccCode);
619 void RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
621 switch (iDevSoundState)
625 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest"), EFsmIncorrectErrorPassed));
626 if (aDevSoundEvent == EEventInitialize)
628 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
629 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
632 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
636 INFO_PRINTF1(_L("Calling CMMFDevSound::SetVolume"));
637 iMMFDevSound->SetVolume(iVolume);
638 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
639 iDevSoundState = EStateInitializing;
643 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
644 StopTest(aError, EFail);
648 case EStateInitializing:
650 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
654 iReinitialized = ETrue;
655 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
656 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
662 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
663 iDevSoundState = EStateInitializing;
668 volumeGet=iMMFDevSound->Volume();
669 if (volumeGet == iVolume)
671 INFO_PRINTF2(_L("CMMFDevSound::SetVolume is kept after reinitialise Devsound. Volume = %d "), volumeGet);
676 ERR_PRINTF2(_L("CMMFDevSound::SetVolume was not kept. Volume = %d"), volumeGet);
677 ERR_PRINTF2(_L("Expected value = %d"),iVolume);
678 StopTest(aError, EFail);
682 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
684 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
689 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
690 StopTest (aError, EFail);
696 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
697 StopTest (aError, EFail);
703 *========================================================================================================
704 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0006
706 RA3FDevSoundPlaySetVolumeRampWhilePlayingTest::RA3FDevSoundPlaySetVolumeRampWhilePlayingTest(const TDesC& aTestName) :
707 RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC),
708 iVolumeRamp(0), iPlayInitTwice(EFalse)
712 RA3FDevSoundPlaySetVolumeRampWhilePlayingTest* RA3FDevSoundPlaySetVolumeRampWhilePlayingTest::NewL(const TDesC& aTestName)
714 RA3FDevSoundPlaySetVolumeRampWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlaySetVolumeRampWhilePlayingTest(aTestName);
718 void RA3FDevSoundPlaySetVolumeRampWhilePlayingTest::DoKickoffTestL()
721 // Get the filename of the audio file to play
722 if (!GetStringFromConfig(iTestStepName, KFilename, filename))
724 ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
725 StopTest (KErrNotFound);
728 // open using RFile for playback
729 iFilename.Copy(filename);
730 TInt err = iFile.Open (iFs, iFilename, EFileRead);
733 ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
739 INFO_PRINTF2(_L("File under test -> %S"), &iFilename);
741 if (!GetIntFromConfig(iTestStepName, KVolumeRamp, iVolumeRamp))
743 ERR_PRINTF2(KMsgErrorGetParameter, &KVolumeRamp);
744 StopTest(KErrNotFound);
749 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
751 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
752 StopTest(KErrNotFound);
755 EncodingFromStringToTFourCC(fourccCode);
756 iTimer = CPeriodic::NewL (CActive::EPriorityHigh);
759 void RA3FDevSoundPlaySetVolumeRampWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
761 switch (iDevSoundState)
765 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumePlayingTest"), EFsmIncorrectErrorPassed));
766 if (aDevSoundEvent == EEventInitialize)
768 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
769 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
772 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
776 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
777 iDevSoundState = EStateInitializing;
781 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
782 StopTest(aError, EFail);
786 case EStateInitializing:
788 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
790 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
791 TRAPD(err, iMMFDevSound->PlayInitL());
797 StartTimer(KMicroSecsTwoSec);
798 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
799 iDevSoundState = EStatePlaying;
801 else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone)
803 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
808 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
809 StopTest(aError, EFail);
815 if (aDevSoundEvent == EEventBTBF)
817 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
818 TInt err = iFile.Read (buffer->Data ());
821 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
825 if (buffer->Data().Length ()!= buffer->RequestSize())
827 iBuffer->SetLastBuffer (ETrue);
829 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
830 iMMFDevSound->PlayData ();
832 else if (aDevSoundEvent == EEventTimerComplete)
834 INFO_PRINTF1(_L("Calling CMMFDevSound::SetVolumeRamp"));
835 iMMFDevSound->SetVolumeRamp (iVolumeRamp*KMicroSecsInOneSec);
839 ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
840 StopTest(aError, EFail);
846 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
847 StopTest(aError, EFail);
852 void RA3FDevSoundPlaySetVolumeRampWhilePlayingTest::DoTimerCallback()
854 INFO_PRINTF1(_L("TimerEvent called"));
856 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
857 Fsm(EEventTimerComplete, KErrNone);
860 void RA3FDevSoundPlaySetVolumeRampWhilePlayingTest::PlayError(TInt aError)
862 INFO_PRINTF1(_L("========== DevSound PlayError() callback =========="));
863 INFO_PRINTF3(KMsgErrorDevSoundCallback, &KPlayErrorText, aError);
864 if (iBuffer->LastBuffer ()&& aError == KErrUnderflow)
866 TInt filePosition = 0;
867 TInt err = iFile.Seek (ESeekStart, filePosition);
870 ERR_PRINTF2(_L("iFile.Seek() returned %d"), err);
877 INFO_PRINTF1(_L("Playback completed normally"));
878 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
879 TRAPD(err, iMMFDevSound->PlayInitL());
882 ERR_PRINTF2(_L("Calling again CMMFDevSound::PlayInitL left with error = %d"), err);
885 iPlayInitTwice=ETrue;
895 INFO_PRINTF1(_L("Playback completed with error"));
896 StopTest(aError, EFail);
901 *========================================================================================================
902 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0007
904 RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest::RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest(const TDesC& aTestName) :
905 RA3FDevSoundTestBase(aTestName)
909 RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest* RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest::NewL(const TDesC& aTestName)
911 RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest* self = new (ELeave) RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest(aTestName);
915 void RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest::DoKickoffTestL()
918 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
920 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
921 StopTest(KErrNotFound);
924 EncodingFromStringToTFourCC (fourccCode);
927 void RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
929 switch (iDevSoundState)
933 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest"), EFsmIncorrectErrorPassed));
934 if (aDevSoundEvent == EEventInitialize)
936 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
937 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
940 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
944 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
945 iDevSoundState = EStateInitializing;
949 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
950 StopTest (aError, EFail);
954 case EStateInitializing:
956 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
958 INFO_PRINTF1(_L("Calling CMMFDevSound::SetVolume()to set volume values beyond CMMFDevSound::MaxVolume()"));
959 TInt maxVolume = iMMFDevSound->MaxVolume();
960 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume()+ KExtraVolume);
961 TInt volumeGet = iMMFDevSound->Volume();
962 if (volumeGet == maxVolume)
964 INFO_PRINTF2(_L("Calling CMMFDevSound::SetVolume to set volume beyond CMMFDevSound::MaxVolume succeeded with %d"), volumeGet);
970 ERR_PRINTF2(_L("Calling CMMFDevSound::SetVolume to set volume beyond CMMFDevSound::MaxVolume failed with %d"), volumeGet);
971 ERR_PRINTF2(_L("Expected value = %d"), maxVolume);
972 StopTest(aError, EFail);
976 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
978 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
983 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
984 StopTest(aError, EFail);
990 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
991 StopTest(aError, EFail);
997 *========================================================================================================
998 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0008
1000 RA3FDevSoundPlaySetVolumeToNegativeTest::RA3FDevSoundPlaySetVolumeToNegativeTest(const TDesC& aTestName) :
1001 RA3FDevSoundTestBase(aTestName),
1006 RA3FDevSoundPlaySetVolumeToNegativeTest* RA3FDevSoundPlaySetVolumeToNegativeTest::NewL(const TDesC& aTestName)
1008 RA3FDevSoundPlaySetVolumeToNegativeTest* self = new (ELeave) RA3FDevSoundPlaySetVolumeToNegativeTest(aTestName);
1012 void RA3FDevSoundPlaySetVolumeToNegativeTest::DoKickoffTestL()
1014 if (!GetIntFromConfig(iTestStepName, KVolume, iVolume))
1016 ERR_PRINTF2(KMsgErrorGetParameter, &KVolume);
1017 StopTest (KErrNotFound);
1021 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
1023 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
1024 StopTest (KErrNotFound);
1027 EncodingFromStringToTFourCC (fourccCode);
1030 void RA3FDevSoundPlaySetVolumeToNegativeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
1032 switch (iDevSoundState)
1036 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumeToNegativeTest"), EFsmIncorrectErrorPassed));
1037 if (aDevSoundEvent == EEventInitialize)
1039 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1040 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
1041 if (err != KErrNone)
1043 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1047 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
1048 iDevSoundState = EStateInitializing;
1052 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
1053 StopTest(aError, EFail);
1057 case EStateInitializing:
1059 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
1061 INFO_PRINTF2(_L("Calling CMMFDevSound::SetVolume to set volume value to a negative: %d"), iVolume);
1062 iMMFDevSound->SetVolume (iVolume);
1063 if (iMMFDevSound->Volume ()== 0)
1065 INFO_PRINTF2(_L("Calling CMMFDevSound::SetVolume succeeded with %d"), iMMFDevSound->Volume());
1071 ERR_PRINTF2(_L("Calling CMMFDevSound::SetVolume failed with %d"), iMMFDevSound->Volume());
1072 ERR_PRINTF2(_L("Expected value = %d"), 0);
1073 StopTest (aError, EFail);
1077 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
1079 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
1084 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
1085 StopTest(aError, EFail);
1091 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
1092 StopTest (aError, EFail);
1098 *========================================================================================================
1099 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0009
1101 RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest::RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest(const TDesC& aTestName) :
1102 RA3FDevSoundTestBase(aTestName),
1103 iLSpeakerBalance(0), iRSpeakerBalance(0)
1107 RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest* RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest::NewL(const TDesC& aTestName)
1109 RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest* self = new (ELeave) RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest(aTestName);
1113 void RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest::DoKickoffTestL()
1115 if ( !GetIntFromConfig(iTestStepName, KLSpeakerBalance, iLSpeakerBalance) )
1117 ERR_PRINTF2(KMsgErrorGetParameter, &KLSpeakerBalance);
1118 StopTest(KErrNotFound);
1121 if ( !GetIntFromConfig(iTestStepName, KRSpeakerBalance, iRSpeakerBalance) )
1123 ERR_PRINTF2(KMsgErrorGetParameter, &KRSpeakerBalance);
1124 StopTest(KErrNotFound);
1129 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
1131 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
1132 StopTest(KErrNotFound);
1135 EncodingFromStringToTFourCC(fourccCode);
1138 void RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
1140 switch (iDevSoundState)
1144 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest"), EFsmIncorrectErrorPassed));
1145 if (aDevSoundEvent == EEventInitialize)
1147 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1148 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
1149 if (err != KErrNone)
1151 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1155 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
1156 iDevSoundState = EStateInitializing;
1160 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
1161 StopTest(aError, EFail);
1165 case EStateInitializing:
1167 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
1169 INFO_PRINTF3(_L("Calling CMMFDevSound::SetPlayBalanceL using left = %d right = %d values"), iLSpeakerBalance, iRSpeakerBalance);
1170 TRAPD(err, iMMFDevSound->SetPlayBalanceL(iLSpeakerBalance, iRSpeakerBalance));
1171 if (err == KErrNone)
1173 TInt getBalanceL, getBalanceR;
1174 TRAPD(err, iMMFDevSound->GetPlayBalanceL(getBalanceL, getBalanceR));
1175 if (err == KErrNone)
1177 if (getBalanceL == KMaxSpeakerBalanceValue && getBalanceR == KMaxSpeakerBalanceValue)
1179 INFO_PRINTF3(_L("Calling CMMFDevSound::SetPlayBalanceL to set balance values beyond 100 succeeded, left = %d right = %d values"), getBalanceL, getBalanceR);
1184 ERR_PRINTF3(_L("Calling CMMFDevSound::SetPlayBalanceL to set balance values beyond 100 failed, left = %d right = %d values"), getBalanceL, getBalanceR);
1185 ERR_PRINTF3(_L("Expected values left = %d right = %d values"), KMaxSpeakerBalanceValue, KMaxSpeakerBalanceValue);
1186 StopTest (err, EFail);
1191 ERR_PRINTF1(_L("Error in getting left and right play balance."));
1197 ERR_PRINTF1(_L("Error in setting left and right play balance."));
1201 else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone)
1203 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
1208 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
1209 StopTest(aError, EFail);
1215 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
1216 StopTest(aError, EFail);
1222 *========================================================================================================
1223 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0010
1225 RA3FDevSoundPlaySetPlayBalanceToNegativeTest::RA3FDevSoundPlaySetPlayBalanceToNegativeTest(const TDesC& aTestName) :
1226 RA3FDevSoundTestBase(aTestName),
1227 iLSpeakerBalance(0), iRSpeakerBalance(0)
1231 RA3FDevSoundPlaySetPlayBalanceToNegativeTest* RA3FDevSoundPlaySetPlayBalanceToNegativeTest::NewL(const TDesC& aTestName)
1233 RA3FDevSoundPlaySetPlayBalanceToNegativeTest* self = new (ELeave) RA3FDevSoundPlaySetPlayBalanceToNegativeTest(aTestName);
1237 void RA3FDevSoundPlaySetPlayBalanceToNegativeTest::DoKickoffTestL()
1239 if ( !GetIntFromConfig(iTestStepName, KLSpeakerBalance, iLSpeakerBalance) )
1241 ERR_PRINTF2(KMsgErrorGetParameter, &KLSpeakerBalance);
1242 StopTest(KErrNotFound);
1245 if ( !GetIntFromConfig(iTestStepName, KRSpeakerBalance, iRSpeakerBalance) )
1247 ERR_PRINTF2(KMsgErrorGetParameter, &KRSpeakerBalance);
1248 StopTest(KErrNotFound);
1253 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
1255 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
1256 StopTest(KErrNotFound);
1259 EncodingFromStringToTFourCC (fourccCode);
1262 void RA3FDevSoundPlaySetPlayBalanceToNegativeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
1264 switch (iDevSoundState)
1268 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetPlayBalanceToNegativeTest"), EFsmIncorrectErrorPassed));
1269 if (aDevSoundEvent == EEventInitialize)
1271 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1272 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
1273 if (err != KErrNone)
1275 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1279 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
1280 iDevSoundState = EStateInitializing;
1284 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
1285 StopTest (aError, EFail);
1289 case EStateInitializing:
1291 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
1293 INFO_PRINTF3(_L("Calling CMMFDevSound::SetPlayBalanceL using left = %d right = %d values"), iLSpeakerBalance, iRSpeakerBalance);
1294 TRAPD(err, iMMFDevSound->SetPlayBalanceL(iLSpeakerBalance, iRSpeakerBalance));
1295 if (err == KErrNone)
1297 TInt getBalanceL, getBalanceR;
1298 TRAPD(err, iMMFDevSound->GetPlayBalanceL(getBalanceL, getBalanceR));
1299 if (err == KErrNone)
1301 if (getBalanceL == KMinSpeakerBalanceValue && getBalanceR == KMinSpeakerBalanceValue)
1303 INFO_PRINTF3(_L("Calling CMMFDevSound::SetPlayBalanceL to set balance values to negative succeeded, left = %d right = %d values"), getBalanceL, getBalanceR);
1308 ERR_PRINTF3(_L("Calling CMMFDevSound::SetPlayBalanceL to set balance values to negative failed, left = %d right = %d values"), getBalanceL, getBalanceR);
1309 ERR_PRINTF3(_L("Expected values, left = %d right = %d values"), KMinSpeakerBalanceValue, KMinSpeakerBalanceValue);
1310 StopTest(err, EFail);
1315 ERR_PRINTF1(_L("Error in getting left and right play balance."));
1321 ERR_PRINTF1(_L("Error in setting left and right play balance."));
1325 else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone)
1327 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
1332 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
1333 StopTest (aError, EFail);
1339 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
1340 StopTest (aError, EFail);
1346 *========================================================================================================
1347 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0011
1349 RA3FDevSoundPlaySetPrioritySettingsTest::RA3FDevSoundPlaySetPrioritySettingsTest(const TDesC& aTestName) :
1350 RA3FDevSoundTestBase(aTestName), iPriority(0)
1354 RA3FDevSoundPlaySetPrioritySettingsTest* RA3FDevSoundPlaySetPrioritySettingsTest::NewL(const TDesC& aTestName)
1356 RA3FDevSoundPlaySetPrioritySettingsTest* self = new (ELeave) RA3FDevSoundPlaySetPrioritySettingsTest(aTestName);
1360 void RA3FDevSoundPlaySetPrioritySettingsTest::DoKickoffTestL()
1362 if (!GetIntFromConfig(iTestStepName, KPriority, iPriority))
1364 ERR_PRINTF2(KMsgErrorGetParameter, &KPriority);
1365 StopTest(KErrNotFound);
1370 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
1372 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
1373 StopTest(KErrNotFound);
1376 EncodingFromStringToTFourCC(fourccCode);
1379 void RA3FDevSoundPlaySetPrioritySettingsTest::Fsm(
1380 TMmfDevSoundEvent aDevSoundEvent, TInt aError)
1382 switch (iDevSoundState)
1386 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetPrioritySettingTest"), EFsmIncorrectErrorPassed));
1387 if (aDevSoundEvent == EEventInitialize)
1389 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1390 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
1391 if (err != KErrNone)
1393 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1397 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
1398 iDevSoundState = EStateInitializing;
1402 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
1403 StopTest(aError, EFail);
1407 case EStateInitializing:
1409 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
1411 TMMFPrioritySettings priority;
1412 priority.iPriority = iPriority;
1413 INFO_PRINTF2(_L("Setting Priority to %d calling CMMFDevSound::SetPrioritySettings"), iPriority);
1414 iMMFDevSound->SetPrioritySettings(priority);
1415 INFO_PRINTF1(_L("========== Test Case Successfully Completed =========="));
1418 else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone)
1420 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
1425 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
1426 StopTest (aError, EFail);
1432 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
1433 StopTest(aError, EFail);
1439 *========================================================================================================
1440 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0012
1442 RA3FDevSoundPlayCapabilitiesTest::RA3FDevSoundPlayCapabilitiesTest(const TDesC& aTestName) :
1443 RA3FDevSoundTestBase(aTestName)
1447 RA3FDevSoundPlayCapabilitiesTest* RA3FDevSoundPlayCapabilitiesTest::NewL(const TDesC& aTestName)
1449 RA3FDevSoundPlayCapabilitiesTest* self = new (ELeave) RA3FDevSoundPlayCapabilitiesTest(aTestName);
1453 void RA3FDevSoundPlayCapabilitiesTest::DoKickoffTestL()
1455 if (!GetIntFromConfig(iTestStepName, KExCapChannels, iExCapChannels))
1457 ERR_PRINTF2(KMsgErrorGetParameter, &KExCapChannels);
1458 StopTest(KErrNotFound);
1461 if (!GetIntFromConfig(iTestStepName, KExCapRate, iExCapRate))
1463 ERR_PRINTF2(KMsgErrorGetParameter, &KExCapRate);
1464 StopTest(KErrNotFound);
1468 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
1470 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
1471 StopTest (KErrNotFound);
1474 EncodingFromStringToTFourCC (fourccCode);
1477 void RA3FDevSoundPlayCapabilitiesTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
1479 switch (iDevSoundState)
1483 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesTest"), EFsmIncorrectErrorPassed));
1484 if (aDevSoundEvent == EEventInitialize)
1486 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1487 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
1488 if (err != KErrNone)
1490 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1494 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
1495 iDevSoundState = EStateInitializing;
1499 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
1500 StopTest(aError, EFail);
1504 case EStateInitializing:
1506 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
1508 INFO_PRINTF1(_L("Calling CMMFDevSound::Capabilities"));
1509 TMMFCapabilities capabilitiesGet;
1510 capabilitiesGet = iMMFDevSound->Capabilities ();
1512 INFO_PRINTF3(_L("Rate Sum:0x%x Channels Sum:0x%x"), capabilitiesGet.iRate, capabilitiesGet.iChannels);
1513 PrintSupportedCapabilities (capabilitiesGet.iRate, capabilitiesGet.iChannels);
1514 if(capabilitiesGet.iRate == iExCapRate && capabilitiesGet.iChannels == iExCapChannels)
1516 INFO_PRINTF3(_L("Capabilities returned match expected capabilities which are Sum:0x%x Channels Sum:0x%x"), capabilitiesGet.iRate, capabilitiesGet.iChannels);
1521 ERR_PRINTF1(_L("Capabilities returned do not match the expected capabilities"));
1522 ERR_PRINTF3(_L("Expected Rate Sum:0x%x Channels Sum:0x%x"), iExCapRate, iExCapChannels);
1523 StopTest (KErrNone, EFail);
1526 else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone)
1528 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
1533 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
1534 StopTest (aError, EFail);
1540 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
1541 StopTest (aError, EFail);
1547 *========================================================================================================
1548 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0013
1550 RA3FDevSoundPlayConfigTest::RA3FDevSoundPlayConfigTest(const TDesC& aTestName) :
1551 RA3FDevSoundTestBase(aTestName),iExCapRate(0),
1556 RA3FDevSoundPlayConfigTest* RA3FDevSoundPlayConfigTest::NewL(const TDesC& aTestName)
1558 RA3FDevSoundPlayConfigTest* self = new (ELeave) RA3FDevSoundPlayConfigTest(aTestName);
1562 void RA3FDevSoundPlayConfigTest::DoKickoffTestL()
1564 if (!GetIntFromConfig(iTestStepName, KExCapRate, iExCapRate))
1566 ERR_PRINTF2(KMsgErrorGetParameter, &KExCapRate);
1567 StopTest(KErrNotFound);
1570 if (!GetIntFromConfig(iTestStepName, KExCapChannels, iExCapChannels))
1572 ERR_PRINTF2(KMsgErrorGetParameter, &KExCapChannels);
1573 StopTest(KErrNotFound);
1577 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
1579 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
1580 StopTest (KErrNotFound);
1583 EncodingFromStringToTFourCC (fourccCode);
1586 void RA3FDevSoundPlayConfigTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
1588 switch (iDevSoundState)
1592 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayConfigTest"), EFsmIncorrectErrorPassed));
1593 if (aDevSoundEvent == EEventInitialize)
1595 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1596 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
1597 if (err != KErrNone)
1599 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1603 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
1604 iDevSoundState = EStateInitializing;
1608 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
1609 StopTest(aError, EFail);
1613 case EStateInitializing:
1615 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
1617 TMMFCapabilities capabilitiesGet;
1618 TBuf<KMaxSampleRateStringLength> stringSampleRateGet;
1619 TBuf<KMaxChannelsStringLength> stringChannelsGet;
1620 TBuf<KMaxSampleRateStringLength> stringSampleRateExpected;
1621 TBuf<KMaxChannelsStringLength> stringChannelsExpected;
1622 INFO_PRINTF1(_L("Calling CMMFDevSound::Config while playing"));
1623 capabilitiesGet=iMMFDevSound->Config ();
1624 SampleRateFromTUintToString (capabilitiesGet.iRate, stringSampleRateGet);
1625 ChannelsFromTUintToString (capabilitiesGet.iChannels, stringChannelsGet);
1626 SampleRateFromTUintToString (capabilitiesGet.iRate, stringSampleRateExpected);
1627 ChannelsFromTUintToString (capabilitiesGet.iChannels, stringChannelsExpected);
1628 if (stringSampleRateExpected.Compare(stringSampleRateGet) == 0)
1630 INFO_PRINTF2(_L("Sample rate value match default as expected with %S"), &stringSampleRateGet);
1631 if (stringChannelsExpected.Compare(stringChannelsGet) == 0)
1633 INFO_PRINTF2(_L("Channel mode value match default as expected with %S"), &stringChannelsGet);
1638 INFO_PRINTF2(_L("Channel mode value failed with %S"), &stringChannelsGet);
1639 ERR_PRINTF2(_L("Expected channel mode %S"), &stringChannelsExpected);
1640 StopTest(KErrNone, EFail);
1645 ERR_PRINTF2(_L("Sample rate value failed with %S"), &stringSampleRateGet);
1646 ERR_PRINTF2(_L("Expected sample rate %S"), &stringSampleRateExpected);
1647 StopTest(KErrNone, EFail);
1650 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
1652 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
1657 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
1658 StopTest(aError, EFail);
1664 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
1665 StopTest(aError, EFail);
1671 *========================================================================================================
1672 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0014
1674 RA3FDevSoundPlayGetPlayBalanceTest::RA3FDevSoundPlayGetPlayBalanceTest(const TDesC& aTestName) :
1675 RA3FDevSoundTestBase(aTestName),
1676 iExLSpeakerBalance(0),
1677 iExRSpeakerBalance(0)
1681 RA3FDevSoundPlayGetPlayBalanceTest* RA3FDevSoundPlayGetPlayBalanceTest::NewL(const TDesC& aTestName)
1683 RA3FDevSoundPlayGetPlayBalanceTest* self = new (ELeave) RA3FDevSoundPlayGetPlayBalanceTest(aTestName);
1687 void RA3FDevSoundPlayGetPlayBalanceTest::DoKickoffTestL()
1689 if (!GetIntFromConfig(iTestStepName, KExLSpeakerBalance, iExLSpeakerBalance))
1691 ERR_PRINTF2(KMsgErrorGetParameter, &KExLSpeakerBalance);
1692 StopTest(KErrNotFound);
1695 if (!GetIntFromConfig(iTestStepName, KExRSpeakerBalance, iExRSpeakerBalance))
1697 ERR_PRINTF2(KMsgErrorGetParameter, &KExRSpeakerBalance);
1698 StopTest(KErrNotFound);
1702 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
1704 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
1705 StopTest (KErrNotFound);
1708 EncodingFromStringToTFourCC(fourccCode);
1711 void RA3FDevSoundPlayGetPlayBalanceTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
1713 switch (iDevSoundState)
1717 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayGetPlayBalanceTest"), EFsmIncorrectErrorPassed));
1718 if (aDevSoundEvent == EEventInitialize)
1720 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1721 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
1722 if (err != KErrNone)
1724 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1728 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
1729 iDevSoundState = EStateInitializing;
1733 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
1734 StopTest (aError, EFail);
1738 case EStateInitializing:
1740 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
1742 TInt getBalanceL, getBalanceR;
1743 INFO_PRINTF1(_L("Calling CMMFDevSound::GetPlayBalance"));
1744 TRAPD(err, iMMFDevSound->GetPlayBalanceL(getBalanceL, getBalanceR));
1745 if (err == KErrNone)
1747 if(getBalanceL == iExLSpeakerBalance && getBalanceR == iExRSpeakerBalance)
1749 INFO_PRINTF3(_L("Balance values match expected values which are, right = %d, left = %d"), getBalanceL, getBalanceR);
1754 ERR_PRINTF3(_L("Balance values do not match expected values, left = %d right = %d"), getBalanceL, getBalanceR);
1755 ERR_PRINTF3(_L("Expected values, left = %d right = %d"), iExLSpeakerBalance, iExRSpeakerBalance);
1756 StopTest(KErrNone, EFail);
1761 ERR_PRINTF1(_L("Error in getting left and right play balance."));
1765 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
1767 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
1772 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
1773 StopTest(aError, EFail);
1779 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
1780 StopTest(aError, EFail);
1786 *========================================================================================================
1787 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0015
1789 RA3FDevSoundPlayGetSupportedInputDataTypesLTest::RA3FDevSoundPlayGetSupportedInputDataTypesLTest(const TDesC& aTestName) :
1790 RA3FDevSoundTestBase(aTestName),
1791 iCurrentTypeInTest(0)
1795 RA3FDevSoundPlayGetSupportedInputDataTypesLTest* RA3FDevSoundPlayGetSupportedInputDataTypesLTest::NewL(const TDesC& aTestName)
1797 RA3FDevSoundPlayGetSupportedInputDataTypesLTest* self = new (ELeave) RA3FDevSoundPlayGetSupportedInputDataTypesLTest(aTestName);
1801 void RA3FDevSoundPlayGetSupportedInputDataTypesLTest::DoKickoffTestL()
1804 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
1806 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
1807 StopTest (KErrNotFound);
1810 EncodingFromStringToTFourCC(fourccCode);
1813 void RA3FDevSoundPlayGetSupportedInputDataTypesLTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
1815 switch (iDevSoundState)
1819 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayGetSupportedInputDataTypesLTest"), EFsmIncorrectErrorPassed));
1820 if (aDevSoundEvent == EEventInitialize)
1822 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1823 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
1824 if (err != KErrNone)
1826 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1830 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
1831 iDevSoundState = EStateInitializing;
1835 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
1836 StopTest(aError, EFail);
1840 case EStateInitializing:
1842 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
1844 if(iCurrentTypeInTest == 0)
1846 TMMFPrioritySettings prioritySettings;
1847 INFO_PRINTF1(_L("Calling CMMFDevSound::GetSupportedInputDataTypes"));
1848 TRAPD(err,iMMFDevSound->GetSupportedInputDataTypesL(iSupportedDataTypes, prioritySettings));
1849 if (err != KErrNone)
1851 ERR_PRINTF2(_L("CMMFDevSound::GetSupportedInputDataTypes data types falied ! Left with error = %d"), err);
1855 for(TInt x = 0; x < iSupportedDataTypes.Count (); x++)
1857 TFourCC fourCC = iSupportedDataTypes[x];
1858 TBuf<KTFourCC> name;
1859 for (TInt i=0; i<= KFourCCMaxBitDisplacement; i+=K8Bits)
1861 name.Append ( (TUint8)(fourCC.FourCC() >> i));
1863 INFO_PRINTF3(_L("Supported Input Data types: 0x%x %S "), fourCC.FourCC(), &name);
1867 // Complete test when all types have been used of initialization
1868 if(iCurrentTypeInTest == iSupportedDataTypes.Count())
1870 INFO_PRINTF1(_L("========== Test Case Successfully Completed =========="));
1875 TFourCC fourCC = iSupportedDataTypes[iCurrentTypeInTest];
1876 TBuf<KTFourCC> name;
1877 for (TInt i=0; i<= KFourCCMaxBitDisplacement; i+=K8Bits)
1879 name.Append ( (TUint8)(fourCC.FourCC() >> i));
1881 INFO_PRINTF3(_L("Initializing for Input Data type: 0x%x %S "), fourCC.FourCC(), &name);
1882 TRAPD(err, iMMFDevSound->InitializeL(*this, fourCC, EMMFStatePlaying));
1883 if (err != KErrNone)
1885 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1890 iCurrentTypeInTest++;
1892 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
1894 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
1899 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
1900 StopTest(aError, EFail);
1906 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
1907 StopTest(aError, EFail);
1913 *========================================================================================================
1914 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0016
1916 RA3FDevSoundPlayMaxVolumeTest::RA3FDevSoundPlayMaxVolumeTest(const TDesC& aTestName) :
1917 RA3FDevSoundTestBase(aTestName), iExVolume(0)
1921 RA3FDevSoundPlayMaxVolumeTest* RA3FDevSoundPlayMaxVolumeTest::NewL(const TDesC& aTestName)
1923 RA3FDevSoundPlayMaxVolumeTest* self = new (ELeave) RA3FDevSoundPlayMaxVolumeTest(aTestName);
1927 void RA3FDevSoundPlayMaxVolumeTest::DoKickoffTestL()
1929 if (!GetIntFromConfig(iTestStepName, KExVolume, iExVolume))
1931 ERR_PRINTF2(KMsgErrorGetParameter, &KExVolume);
1932 StopTest(KErrNotFound);
1936 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
1938 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
1939 StopTest(KErrNotFound);
1942 EncodingFromStringToTFourCC (fourccCode);
1945 void RA3FDevSoundPlayMaxVolumeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
1947 switch (iDevSoundState)
1951 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayMaxVolumeTest"), EFsmIncorrectErrorPassed));
1952 if ( aDevSoundEvent == EEventInitialize)
1954 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1955 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
1956 if (err != KErrNone)
1958 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1962 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
1963 iDevSoundState = EStateInitializing;
1967 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
1968 StopTest(aError, EFail);
1972 case EStateInitializing:
1974 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
1976 TInt maxVolume = iMMFDevSound->MaxVolume();
1977 INFO_PRINTF1(_L("Calling CMMFDevSound::MaxVolume"));
1978 if(maxVolume == iExVolume)
1980 INFO_PRINTF2(_L("Calling CMMFDevSound::MaxVolume succeeded with the expected value %d"), maxVolume);
1985 ERR_PRINTF2(_L("Calling CMMFDevSound::MaxVolume failed with value %d"), maxVolume);
1986 ERR_PRINTF2(_L("Expected value = %d"), iExVolume);
1987 StopTest(KErrNone, EFail);
1990 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
1992 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
1997 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
1998 StopTest(aError, EFail);
2004 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
2005 StopTest(aError, EFail);
2011 *========================================================================================================
2012 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0017
2014 RA3FDevSoundPlaySamplesPlayedTest::RA3FDevSoundPlaySamplesPlayedTest(const TDesC& aTestName) :
2015 RA3FDevSoundTestBase(aTestName),
2020 RA3FDevSoundPlaySamplesPlayedTest* RA3FDevSoundPlaySamplesPlayedTest::NewL(const TDesC& aTestName)
2022 RA3FDevSoundPlaySamplesPlayedTest* self = new (ELeave) RA3FDevSoundPlaySamplesPlayedTest(aTestName);
2026 void RA3FDevSoundPlaySamplesPlayedTest::DoKickoffTestL()
2028 if (!GetIntFromConfig(iTestStepName, KExSamplesPlayed, iExSamplesPlayed))
2030 ERR_PRINTF2(KMsgErrorGetParameter, &KExSamplesPlayed);
2031 StopTest(KErrNotFound);
2035 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
2037 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
2038 StopTest(KErrNotFound);
2041 EncodingFromStringToTFourCC(fourccCode);
2044 void RA3FDevSoundPlaySamplesPlayedTest::Fsm(TMmfDevSoundEvent aDevSoundEvent,TInt aError)
2046 switch (iDevSoundState)
2050 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySamplesPlayedTest"), EFsmIncorrectErrorPassed));
2051 if (aDevSoundEvent == EEventInitialize)
2053 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
2054 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
2055 if (err != KErrNone)
2057 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
2061 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
2062 iDevSoundState = EStateInitializing;
2066 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
2067 StopTest(aError, EFail);
2071 case EStateInitializing:
2073 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
2075 INFO_PRINTF1(_L("Calling CMMFDevSound::SamplesPlayed"));
2076 TInt samplesPlayed = iMMFDevSound->SamplesPlayed();
2077 INFO_PRINTF2(_L("Samples returned by CMMFDevSound::SamplesPlayed = %d"), samplesPlayed);
2078 if(samplesPlayed == iExSamplesPlayed)
2080 INFO_PRINTF3(_L("Samples returned by CMMFDevSound::SamplesPlayed: %d matches the expected samples played: %d"), samplesPlayed, iExSamplesPlayed);
2085 ERR_PRINTF2(_L("Call to CMMFDevSound::SamplesPlayed do not match the expected value = %d"), samplesPlayed);
2086 ERR_PRINTF2(_L("Expected Samples played value = %d"), iExSamplesPlayed);
2087 StopTest(KErrNone, EFail);
2090 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
2092 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
2097 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
2098 StopTest(aError, EFail);
2104 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
2105 StopTest(aError, EFail);
2111 *========================================================================================================
2112 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0018
2114 RA3FDevSoundPlayVolumeTest::RA3FDevSoundPlayVolumeTest(const TDesC& aTestName) :
2115 RA3FDevSoundTestBase(aTestName),
2120 RA3FDevSoundPlayVolumeTest* RA3FDevSoundPlayVolumeTest::NewL(const TDesC& aTestName)
2122 RA3FDevSoundPlayVolumeTest* self = new (ELeave) RA3FDevSoundPlayVolumeTest(aTestName);
2126 void RA3FDevSoundPlayVolumeTest::DoKickoffTestL()
2128 if (!GetIntFromConfig(iTestStepName, KExVolume, iExVolume))
2130 ERR_PRINTF2(KMsgErrorGetParameter, &KExVolume);
2131 StopTest(KErrNotFound);
2135 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
2137 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
2138 StopTest(KErrNotFound);
2141 EncodingFromStringToTFourCC(fourccCode);
2144 void RA3FDevSoundPlayVolumeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
2146 switch (iDevSoundState)
2150 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayVolumeTest"), EFsmIncorrectErrorPassed));
2151 if (aDevSoundEvent == EEventInitialize)
2153 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
2154 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
2155 if (err != KErrNone)
2157 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
2161 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
2162 iDevSoundState = EStateInitializing;
2166 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
2167 StopTest(aError, EFail);
2171 case EStateInitializing:
2173 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
2175 INFO_PRINTF1(_L("Calling CMMFDevSound::Volume"));
2176 TInt volumeGet = iMMFDevSound->Volume();
2177 INFO_PRINTF2(_L("Volume returned by CMMFDevSound::Volume() = %d"), volumeGet);
2178 if(volumeGet == iExVolume)
2180 INFO_PRINTF3(_L("Volume returned by CMMFDevSound::Volume(): %d matches the default device volume: %d"), volumeGet, iExVolume);
2185 ERR_PRINTF2(_L("Default device volume failed with %d"), volumeGet);
2186 ERR_PRINTF2(_L("Expected value = % d"), iExVolume);
2187 StopTest(aError , EFail);
2194 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
2195 StopTest(aError, EFail);
2201 *========================================================================================================
2202 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0019
2204 RA3FDevSoundPlayCapabilitiesWhilePlayingTest::RA3FDevSoundPlayCapabilitiesWhilePlayingTest(const TDesC& aTestName) :
2205 RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC),
2206 iExCapChannels(0), iExCapRate(0)
2210 RA3FDevSoundPlayCapabilitiesWhilePlayingTest* RA3FDevSoundPlayCapabilitiesWhilePlayingTest::NewL(const TDesC& aTestName)
2212 RA3FDevSoundPlayCapabilitiesWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayCapabilitiesWhilePlayingTest(aTestName);
2216 void RA3FDevSoundPlayCapabilitiesWhilePlayingTest::DoKickoffTestL()
2218 if (!GetIntFromConfig(iTestStepName, KExCapChannels, iExCapChannels))
2220 ERR_PRINTF2(KMsgErrorGetParameter, &KExCapChannels);
2221 StopTest(KErrNotFound);
2224 if (!GetIntFromConfig(iTestStepName, KExCapRate, iExCapRate))
2226 ERR_PRINTF2(KMsgErrorGetParameter, &KExCapRate);
2227 StopTest(KErrNotFound);
2231 // Get the filename of the audio file to play
2232 if ( !GetStringFromConfig(iTestStepName, KFilename, filename))
2234 ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
2235 StopTest(KErrNotFound);
2238 // open using RFile for playback
2239 iFilename.Copy(filename);
2240 TInt err = iFile.Open (iFs, iFilename, EFileRead);
2241 if (err != KErrNone)
2243 ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
2249 INFO_PRINTF2(_L("File under test -> %S"), &iFilename);
2252 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
2254 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
2255 StopTest(KErrNotFound);
2258 EncodingFromStringToTFourCC(fourccCode);
2259 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
2262 void RA3FDevSoundPlayCapabilitiesWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
2264 switch (iDevSoundState)
2268 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed));
2269 if (aDevSoundEvent == EEventInitialize)
2271 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
2272 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
2273 if (err != KErrNone)
2275 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
2279 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
2280 iDevSoundState = EStateInitializing;
2284 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
2285 StopTest(aError, EFail);
2289 case EStateInitializing:
2291 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
2293 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
2294 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
2295 TRAPD(err, iMMFDevSound->PlayInitL());
2296 if (err != KErrNone)
2301 StartTimer(KMicroSecsTwoSec);
2302 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
2303 iDevSoundState = EStatePlaying;
2305 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
2307 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
2312 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
2313 StopTest(aError, EFail);
2319 if (aDevSoundEvent == EEventBTBF)
2321 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
2322 TInt err = iFile.Read (buffer->Data ());
2323 if (err != KErrNone)
2325 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
2329 if (buffer->Data().Length ()!= buffer->RequestSize())
2331 iBuffer->SetLastBuffer (ETrue);
2333 INFO_PRINTF1(_L("CMMFDevSound::PlayData()"));
2334 iMMFDevSound->PlayData();
2336 else if (aDevSoundEvent == EEventTimerComplete)
2338 TMMFCapabilities capabilitiesGet;
2339 INFO_PRINTF1(_L("Calling CMMFDevSound::Capabilities while playing"));
2340 capabilitiesGet = iMMFDevSound->Capabilities ();
2341 INFO_PRINTF3(_L("Rate Sum:0x%x Channels Sum:0x%x"), capabilitiesGet.iRate, capabilitiesGet.iChannels);
2342 PrintSupportedCapabilities (capabilitiesGet.iRate, capabilitiesGet.iChannels);
2343 if(capabilitiesGet.iRate == iExCapRate && capabilitiesGet.iChannels == iExCapChannels)
2345 INFO_PRINTF3(_L("Capabilities returned match expected capabilities which are Sum:0x%x Channels Sum:0x%x"), capabilitiesGet.iRate, capabilitiesGet.iChannels);
2349 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);
2350 ERR_PRINTF3(_L("Expected Rate Sum:0x%x Channels Sum:0x%x"), iExCapRate, iExCapChannels);
2351 StopTest (KErrNone, EFail);
2356 ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
2357 StopTest(aError, EFail);
2363 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
2364 StopTest (aError, EFail);
2369 void RA3FDevSoundPlayCapabilitiesWhilePlayingTest::DoTimerCallback()
2371 INFO_PRINTF1(_L("TimerEvent called"));
2373 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
2374 Fsm(EEventTimerComplete, KErrNone);
2378 *========================================================================================================
2379 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0020
2381 RA3FDevSoundPlayConfigWhilePlayingTest::RA3FDevSoundPlayConfigWhilePlayingTest(const TDesC& aTestName) :
2382 RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC), iExCapRate(0),
2387 RA3FDevSoundPlayConfigWhilePlayingTest* RA3FDevSoundPlayConfigWhilePlayingTest::NewL(const TDesC& aTestName)
2389 RA3FDevSoundPlayConfigWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayConfigWhilePlayingTest(aTestName);
2393 void RA3FDevSoundPlayConfigWhilePlayingTest::DoKickoffTestL()
2396 // Get the filename of the audio file to play
2397 if (!GetStringFromConfig(iTestStepName, KFilename, filename))
2399 ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
2400 StopTest(KErrNotFound);
2403 // open using RFile for playback
2404 iFilename.Copy(filename);
2405 TInt err = iFile.Open (iFs, iFilename, EFileRead);
2406 if (err != KErrNone)
2408 ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
2414 INFO_PRINTF2(_L("File under test -> %S"), &iFilename);
2416 if (!GetIntFromConfig(iTestStepName, KExCapRate, iExCapRate))
2418 ERR_PRINTF2(KMsgErrorGetParameter, &KExCapRate);
2419 StopTest(KErrNotFound);
2422 if (!GetIntFromConfig(iTestStepName, KExCapChannels, iExCapChannels))
2424 ERR_PRINTF2(KMsgErrorGetParameter, &KExCapChannels);
2425 StopTest(KErrNotFound);
2429 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
2431 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
2432 StopTest(KErrNotFound);
2435 EncodingFromStringToTFourCC(fourccCode);
2436 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
2439 void RA3FDevSoundPlayConfigWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
2441 switch (iDevSoundState)
2445 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed));
2446 if (aDevSoundEvent == EEventInitialize)
2448 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
2449 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
2450 if (err != KErrNone)
2452 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
2456 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
2457 iDevSoundState = EStateInitializing;
2461 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
2462 StopTest(aError, EFail);
2466 case EStateInitializing:
2468 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
2470 iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ());
2471 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
2472 TRAPD(err, iMMFDevSound->PlayInitL());
2473 if (err != KErrNone)
2478 StartTimer(KMicroSecsTwoSec);
2479 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
2480 iDevSoundState = EStatePlaying;
2482 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
2484 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
2489 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
2490 StopTest(aError, EFail);
2496 if (aDevSoundEvent == EEventBTBF)
2498 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
2499 TInt err = iFile.Read (buffer->Data ());
2500 if (err != KErrNone)
2502 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
2506 if (buffer->Data().Length ()!= buffer->RequestSize())
2508 iBuffer->SetLastBuffer(ETrue);
2510 INFO_PRINTF1(_L("CMMFDevSound::PlayData()"));
2511 iMMFDevSound->PlayData ();
2513 else if (aDevSoundEvent == EEventTimerComplete)
2515 TMMFCapabilities capabilitiesGet;
2516 TBuf<KMaxSampleRateStringLength> stringSampleRateGet;
2517 TBuf<KMaxChannelsStringLength> stringChannelsGet;
2518 TBuf<KMaxSampleRateStringLength> stringSampleRateExpected;
2519 TBuf<KMaxChannelsStringLength> stringChannelsExpected;
2520 INFO_PRINTF1(_L("Calling CMMFDevSound::Config while playing"));
2521 capabilitiesGet=iMMFDevSound->Config ();
2522 SampleRateFromTUintToString (capabilitiesGet.iRate, stringSampleRateGet);
2523 ChannelsFromTUintToString (capabilitiesGet.iChannels, stringChannelsGet);
2524 SampleRateFromTIntToTMMFSampleRate (iExCapRate, iExSampleRate);
2525 SampleRateFromTUintToString (iExSampleRate, stringSampleRateExpected);
2526 ChannelsFromTUintToString (iExCapChannels, stringChannelsExpected);
2527 if (stringSampleRateExpected.Compare(stringSampleRateGet) == 0)
2529 INFO_PRINTF2(_L("Sample rate value match default as expected with %S"), &stringSampleRateGet);
2530 if (stringChannelsExpected.Compare(stringChannelsGet) == 0)
2532 INFO_PRINTF2(_L("Channel mode value match default as expected with %S"), &stringChannelsGet);
2537 INFO_PRINTF2(_L("Channel mode value failed with %S"), &stringChannelsGet);
2538 ERR_PRINTF2(_L("Expected channel mode %S"), &stringChannelsExpected);
2539 StopTest(KErrNone, EFail);
2544 ERR_PRINTF2(_L("Sample rate value failed with %S"), &stringSampleRateGet);
2545 ERR_PRINTF2(_L("Expected sample rate %S"), &stringSampleRateExpected);
2546 StopTest(KErrNone, EFail);
2551 ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
2552 StopTest(aError, EFail);
2558 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
2559 StopTest(aError, EFail);
2564 void RA3FDevSoundPlayConfigWhilePlayingTest::DoTimerCallback()
2566 INFO_PRINTF1(_L("TimerEvent called"));
2568 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
2569 Fsm (EEventTimerComplete, KErrNone);
2573 *========================================================================================================
2574 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0021
2576 RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest::RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest(const TDesC& aTestName) :
2577 RA3FDevSoundTestBase(aTestName),
2578 iFilename(KNullDesC),
2579 iExLSpeakerBalance(0),
2580 iExRSpeakerBalance(0)
2584 RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest* RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest::NewL(const TDesC& aTestName)
2586 RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest(aTestName);
2590 void RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest::DoKickoffTestL()
2592 if (!GetIntFromConfig(iTestStepName, KExLSpeakerBalance, iExLSpeakerBalance))
2594 ERR_PRINTF2(KMsgErrorGetParameter, &KExLSpeakerBalance);
2595 StopTest(KErrNotFound);
2598 if (!GetIntFromConfig(iTestStepName, KExRSpeakerBalance, iExRSpeakerBalance))
2600 ERR_PRINTF2(KMsgErrorGetParameter, &KExRSpeakerBalance);
2601 StopTest(KErrNotFound);
2605 // Get the filename of the audio file to play
2606 if (!GetStringFromConfig(iTestStepName, KFilename, filename))
2608 ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
2609 StopTest(KErrNotFound);
2612 // open using RFile for playback
2613 iFilename.Copy (filename);
2614 TInt err = iFile.Open (iFs, iFilename, EFileRead);
2615 if (err != KErrNone)
2617 ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
2623 INFO_PRINTF2(_L("File under test -> %S"), &iFilename);
2626 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
2628 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
2629 StopTest(KErrNotFound);
2632 EncodingFromStringToTFourCC(fourccCode);
2633 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
2636 void RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
2638 switch (iDevSoundState)
2642 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed));
2643 if (aDevSoundEvent == EEventInitialize)
2645 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
2646 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
2647 if (err != KErrNone)
2649 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
2653 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
2654 iDevSoundState = EStateInitializing;
2658 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
2659 StopTest(aError, EFail);
2663 case EStateInitializing:
2665 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
2667 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
2668 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
2669 TRAPD(err, iMMFDevSound->PlayInitL());
2670 if (err != KErrNone)
2675 StartTimer (KMicroSecsTwoSec);
2676 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
2677 iDevSoundState = EStatePlaying;
2679 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
2681 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
2686 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
2687 StopTest(aError, EFail);
2693 if (aDevSoundEvent == EEventBTBF)
2695 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
2696 TInt err = iFile.Read (buffer->Data ());
2697 if (err != KErrNone)
2699 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
2703 if (buffer->Data().Length ()!= buffer->RequestSize())
2705 iBuffer->SetLastBuffer(ETrue);
2707 INFO_PRINTF1(_L("CMMFDevSound::PlayData()"));
2708 iMMFDevSound->PlayData ();
2710 else if (aDevSoundEvent == EEventTimerComplete)
2712 TInt getBalanceL, getBalanceR;
2713 INFO_PRINTF1(_L("Calling CMMFDevSound::GetPlayBalance while playing"));
2714 TRAPD(err, iMMFDevSound->GetPlayBalanceL(getBalanceL, getBalanceR));
2715 INFO_PRINTF3(_L("Balance returned by CMMFDevSound::GetPlayBalance left = %d right = %d"), getBalanceL, getBalanceR);
2716 if (err == KErrNone)
2718 if(getBalanceL == iExLSpeakerBalance && getBalanceR == iExRSpeakerBalance)
2720 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);
2724 ERR_PRINTF3(_L("Balance values do not match expected values, left %d right %d"), getBalanceL, getBalanceR);
2725 ERR_PRINTF3(_L("Expected values, left %d right %d"), iExLSpeakerBalance, iExRSpeakerBalance);
2726 StopTest(KErrNone, EFail);
2731 ERR_PRINTF1(_L("Error in getting left and right play balance."));
2737 ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
2738 StopTest(aError, EFail);
2744 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
2745 StopTest(aError, EFail);
2750 void RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest::DoTimerCallback()
2752 INFO_PRINTF1(_L("TimerEvent called"));
2754 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
2755 Fsm(EEventTimerComplete, KErrNone);
2759 *========================================================================================================
2760 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0022
2762 RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest::RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest(const TDesC& aTestName) :
2763 RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC)
2767 RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest* RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest::NewL(const TDesC& aTestName)
2769 RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest(aTestName);
2773 void RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest::DoKickoffTestL()
2776 // Get the filename of the audio file to play
2777 if (!GetStringFromConfig(iTestStepName, KFilename, filename))
2779 ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
2780 StopTest(KErrNotFound);
2783 // open using RFile for playback
2784 iFilename.Copy(filename);
2785 TInt err = iFile.Open (iFs, iFilename, EFileRead);
2786 if (err != KErrNone)
2788 ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
2794 INFO_PRINTF2(_L("File under test -> %S"), &iFilename);
2797 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
2799 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
2800 StopTest(KErrNotFound);
2803 EncodingFromStringToTFourCC(fourccCode);
2804 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
2807 void RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
2809 switch (iDevSoundState)
2813 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed));
2814 if (aDevSoundEvent == EEventInitialize)
2816 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
2817 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
2818 if (err != KErrNone)
2820 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
2824 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
2825 iDevSoundState = EStateInitializing;
2829 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
2830 StopTest(aError, EFail);
2834 case EStateInitializing:
2836 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
2838 iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume());
2839 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
2840 TRAPD(err, iMMFDevSound->PlayInitL());
2841 if (err != KErrNone)
2846 StartTimer(KMicroSecsTwoSec);
2847 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
2848 iDevSoundState = EStatePlaying;
2850 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
2852 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
2857 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
2858 StopTest(aError, EFail);
2864 if (aDevSoundEvent == EEventBTBF)
2866 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
2867 TInt err = iFile.Read (buffer->Data ());
2868 if (err != KErrNone)
2870 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
2874 if (buffer->Data().Length ()!= buffer->RequestSize())
2876 iBuffer->SetLastBuffer (ETrue);
2878 INFO_PRINTF1(_L("CMMFDevSound::PlayData()"));
2879 iMMFDevSound->PlayData ();
2881 else if (aDevSoundEvent == EEventTimerComplete)
2883 RArray< TFourCC > supportedDataTypes;
2884 TMMFPrioritySettings prioritySettings;
2885 TRAPD(err,iMMFDevSound->GetSupportedInputDataTypesL(supportedDataTypes, prioritySettings));
2886 if (err != KErrNone)
2888 ERR_PRINTF2(_L("Getting supported data types falied ! Left with error = %d"), err);
2892 for(TInt x = 0; x < supportedDataTypes.Count (); x++)
2894 TFourCC fourCC = supportedDataTypes[x];
2895 TBuf<KTFourCC> name;
2896 for (TInt i=0; i<= KFourCCMaxBitDisplacement; i+=K8Bits)
2898 name.Append ( (TUint8)(fourCC.FourCC() >> i));
2900 INFO_PRINTF3(_L("Supported Input Data types: 0x%x %S "), fourCC.FourCC(), &name);
2905 ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
2906 StopTest(aError, EFail);
2912 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
2913 StopTest(aError, EFail);
2918 void RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest::DoTimerCallback()
2920 INFO_PRINTF1(_L("TimerEvent called"));
2922 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
2923 Fsm(EEventTimerComplete, KErrNone);
2927 *========================================================================================================
2928 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0023
2930 RA3FDevSoundPlayMaxVolumeWhilePlayingTest::RA3FDevSoundPlayMaxVolumeWhilePlayingTest(const TDesC& aTestName) :
2931 RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC),
2936 RA3FDevSoundPlayMaxVolumeWhilePlayingTest* RA3FDevSoundPlayMaxVolumeWhilePlayingTest::NewL( const TDesC& aTestName)
2938 RA3FDevSoundPlayMaxVolumeWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayMaxVolumeWhilePlayingTest(aTestName);
2942 void RA3FDevSoundPlayMaxVolumeWhilePlayingTest::DoKickoffTestL()
2944 if (!GetIntFromConfig(iTestStepName, KExVolume, iExVolume))
2946 ERR_PRINTF2(KMsgErrorGetParameter, &KExVolume);
2947 StopTest(KErrNotFound);
2951 // Get the filename of the audio file to play
2952 if (!GetStringFromConfig(iTestStepName, KFilename, filename))
2954 ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
2955 StopTest(KErrNotFound);
2958 // open using RFile for playback
2959 iFilename.Copy(filename);
2960 TInt err = iFile.Open(iFs, iFilename, EFileRead);
2961 if (err != KErrNone)
2963 ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
2969 INFO_PRINTF2(_L("File under test -> %S"), &iFilename);
2972 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
2974 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
2975 StopTest (KErrNotFound);
2978 EncodingFromStringToTFourCC(fourccCode);
2979 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
2982 void RA3FDevSoundPlayMaxVolumeWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
2984 switch (iDevSoundState)
2988 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed));
2989 if ( aDevSoundEvent == EEventInitialize)
2991 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
2992 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
2993 if (err != KErrNone)
2995 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
2999 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
3000 iDevSoundState = EStateInitializing;
3004 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
3005 StopTest(aError, EFail);
3009 case EStateInitializing:
3011 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
3013 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume ());
3014 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
3015 TRAPD(err, iMMFDevSound->PlayInitL());
3016 if (err != KErrNone)
3021 StartTimer(KMicroSecsTwoSec);
3022 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
3023 iDevSoundState = EStatePlaying;
3025 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
3027 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
3032 ERR_PRINTF2(_L("DevSound EEventInitComplete was NOT received as expected. Received event: %d"), aDevSoundEvent);
3033 StopTest(aError, EFail);
3039 if (aDevSoundEvent == EEventBTBF)
3041 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
3042 TInt err = iFile.Read (buffer->Data ());
3043 if (err != KErrNone)
3045 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
3049 if (buffer->Data().Length ()!= buffer->RequestSize())
3051 iBuffer->SetLastBuffer(ETrue);
3053 INFO_PRINTF1(_L("CMMFDevSound::PlayData()"));
3054 iMMFDevSound->PlayData();
3056 else if (aDevSoundEvent == EEventTimerComplete)
3058 TInt maxVolume = iMMFDevSound->MaxVolume();
3059 INFO_PRINTF1(_L("Calling CMMFDevSound::MaxVolume"));
3060 if(maxVolume == iExVolume)
3062 INFO_PRINTF2(_L("Call to CMMFDevSound::MaxVolume succeeded with %d"), maxVolume);
3067 ERR_PRINTF2(_L("Call to CMMFDevSound::MaxVolume failed with %d"), maxVolume);
3068 ERR_PRINTF2(_L("Expected Max volume value = %d"), iExVolume);
3069 StopTest(KErrNone, EFail);
3074 ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
3075 StopTest(aError, EFail);
3081 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
3082 StopTest(aError, EFail);
3087 void RA3FDevSoundPlayMaxVolumeWhilePlayingTest::DoTimerCallback()
3089 INFO_PRINTF1(_L("TimerEvent called"));
3091 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
3092 Fsm (EEventTimerComplete, KErrNone);
3096 *========================================================================================================
3097 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0024
3099 RA3FDevSoundPlaySamplesPlayedWhilePlayingTest::RA3FDevSoundPlaySamplesPlayedWhilePlayingTest(const TDesC& aTestName) :
3100 RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC),
3105 RA3FDevSoundPlaySamplesPlayedWhilePlayingTest* RA3FDevSoundPlaySamplesPlayedWhilePlayingTest::NewL(const TDesC& aTestName)
3107 RA3FDevSoundPlaySamplesPlayedWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlaySamplesPlayedWhilePlayingTest(aTestName);
3111 void RA3FDevSoundPlaySamplesPlayedWhilePlayingTest::DoKickoffTestL()
3114 // Get the filename of the audio file to play
3115 if (!GetStringFromConfig(iTestStepName, KFilename, filename))
3117 ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
3118 StopTest(KErrNotFound);
3121 // open using RFile for playback
3122 iFilename.Copy(filename);
3123 TInt err = iFile.Open (iFs, iFilename, EFileRead);
3124 if (err != KErrNone)
3126 ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
3131 INFO_PRINTF2(_L("File under test -> %S"), &iFilename);
3133 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
3135 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
3136 StopTest(KErrNotFound);
3139 EncodingFromStringToTFourCC(fourccCode);
3140 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
3143 void RA3FDevSoundPlaySamplesPlayedWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
3145 switch (iDevSoundState)
3149 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed));
3150 if (aDevSoundEvent == EEventInitialize)
3152 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
3153 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
3154 if (err != KErrNone)
3156 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
3160 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
3161 iDevSoundState = EStateInitializing;
3165 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
3166 StopTest(aError, EFail);
3170 case EStateInitializing:
3172 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
3174 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
3175 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
3176 TRAPD(err, iMMFDevSound->PlayInitL());
3177 if (err != KErrNone)
3182 StartTimer(KMicroSecsTwoSec);
3183 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
3184 iDevSoundState = EStatePlaying;
3186 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
3188 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
3193 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
3194 StopTest(aError, EFail);
3200 if (aDevSoundEvent == EEventBTBF)
3202 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
3203 TInt err = iFile.Read(buffer->Data ());
3204 if (err != KErrNone)
3206 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
3210 if (buffer->Data().Length()!= buffer->RequestSize())
3212 iBuffer->SetLastBuffer(ETrue);
3214 INFO_PRINTF1(_L("CMMFDevSound::PlayData()"));
3215 iMMFDevSound->PlayData();
3217 else if (aDevSoundEvent == EEventTimerComplete)
3219 INFO_PRINTF1(_L("Calling CMMFDevSound::SamplesPlayed"));
3220 TInt samplesPlayed = iMMFDevSound->SamplesPlayed();
3221 INFO_PRINTF2(_L("Samples played so far %d"), samplesPlayed);
3222 if(samplesPlayed > 0)
3224 INFO_PRINTF2(_L("Samples returned by CMMFDevSound::SamplesPlayed: %d matches the expected value which is > 0"), samplesPlayed);
3229 ERR_PRINTF2(_L("Samples played returned an invalid value %d"), samplesPlayed);
3230 ERR_PRINTF1(_L("Expected value must be a positive value greater than 0"));
3231 StopTest(aError, EFail);
3237 ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
3238 StopTest(aError, EFail);
3244 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
3245 StopTest(aError, EFail);
3250 void RA3FDevSoundPlaySamplesPlayedWhilePlayingTest::DoTimerCallback()
3252 INFO_PRINTF1(_L("TimerEvent called"));
3254 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
3255 Fsm(EEventTimerComplete, KErrNone);
3259 *========================================================================================================
3260 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0025
3263 RA3FDevSoundPlayVolumeWhilePlayingTest::RA3FDevSoundPlayVolumeWhilePlayingTest(const TDesC& aTestName) :
3264 RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC),
3269 RA3FDevSoundPlayVolumeWhilePlayingTest* RA3FDevSoundPlayVolumeWhilePlayingTest::NewL(const TDesC& aTestName)
3271 RA3FDevSoundPlayVolumeWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayVolumeWhilePlayingTest(aTestName);
3275 void RA3FDevSoundPlayVolumeWhilePlayingTest::DoKickoffTestL()
3278 // Get the filename of the audio file to play
3279 if (!GetStringFromConfig(iTestStepName, KFilename, filename))
3281 ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
3282 StopTest(KErrNotFound);
3285 // open using RFile for playback
3286 iFilename.Copy(filename);
3287 TInt err = iFile.Open(iFs, iFilename, EFileRead);
3288 if (err != KErrNone)
3290 ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
3295 INFO_PRINTF2(_L("File under test -> %S"), &iFilename);
3297 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
3299 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
3300 StopTest(KErrNotFound);
3303 if (!GetIntFromConfig(iTestStepName, KExVolume, iExVolume))
3305 ERR_PRINTF2(KMsgErrorGetParameter, &KExVolume);
3306 StopTest(KErrNotFound);
3309 EncodingFromStringToTFourCC(fourccCode);
3310 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
3313 void RA3FDevSoundPlayVolumeWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
3315 switch (iDevSoundState)
3319 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed));
3320 if (aDevSoundEvent == EEventInitialize)
3322 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
3323 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
3324 if (err != KErrNone)
3326 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
3330 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
3331 iDevSoundState = EStateInitializing;
3335 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
3336 StopTest(aError, EFail);
3340 case EStateInitializing:
3342 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
3344 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
3345 TRAPD(err, iMMFDevSound->PlayInitL());
3346 if (err != KErrNone)
3351 StartTimer (KMicroSecsTwoSec);
3352 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
3353 iDevSoundState = EStatePlaying;
3355 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
3357 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
3362 ERR_PRINTF2(_L("DevSound EEventInitComplete NOT received as expected. Received event: %d"), aDevSoundEvent);
3363 StopTest(aError, EFail);
3369 if (aDevSoundEvent == EEventBTBF)
3371 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
3372 TInt err = iFile.Read(buffer->Data ());
3373 if (err != KErrNone)
3375 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
3379 if (buffer->Data().Length()!= buffer->RequestSize())
3381 iBuffer->SetLastBuffer(ETrue);
3383 INFO_PRINTF1(_L("CMMFDevSound::PlayData()"));
3384 iMMFDevSound->PlayData();
3386 else if (aDevSoundEvent == EEventTimerComplete)
3388 INFO_PRINTF1(_L("Calling CMMFDevSound::Volume"));
3389 TInt volumeGet = iMMFDevSound->Volume();
3390 if(volumeGet == iExVolume)
3392 INFO_PRINTF2(_L("Default device volume succeeded with = %d"), volumeGet);
3396 ERR_PRINTF2(_L("Default device volume failed with = %d"), volumeGet);
3397 ERR_PRINTF2(_L("Expected value = % d"), iExVolume);
3398 StopTest(aError , EFail);
3403 ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
3404 StopTest(aError, EFail);
3410 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
3411 StopTest(aError, EFail);
3416 void RA3FDevSoundPlayVolumeWhilePlayingTest::DoTimerCallback()
3418 INFO_PRINTF1(_L("TimerEvent called"));
3420 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
3421 Fsm(EEventTimerComplete, KErrNone);
3425 *========================================================================================================
3426 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0026
3428 RA3FDevSoundPlayTest::RA3FDevSoundPlayTest(const TDesC& aTestName) :
3429 RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC)
3433 RA3FDevSoundPlayTest* RA3FDevSoundPlayTest::NewL(const TDesC& aTestName)
3435 RA3FDevSoundPlayTest* self = new (ELeave) RA3FDevSoundPlayTest(aTestName);
3439 void RA3FDevSoundPlayTest::DoKickoffTestL()
3442 // Get the filename of the audio file to play
3443 if ( !GetStringFromConfig(iTestStepName, KFilename, filename))
3445 ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
3446 StopTest (KErrNotFound);
3449 // open using RFile for playback
3450 iFilename.Copy (filename);
3451 TInt err = iFile.Open (iFs, iFilename, EFileRead);
3452 if (err != KErrNone)
3454 ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
3459 INFO_PRINTF2(_L("File under test -> %S"), &iFilename);
3461 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
3463 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
3464 StopTest (KErrNotFound);
3467 EncodingFromStringToTFourCC (fourccCode);
3470 void RA3FDevSoundPlayTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
3472 switch (iDevSoundState)
3476 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed));
3477 if (aDevSoundEvent == EEventInitialize)
3479 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
3480 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
3481 if (err != KErrNone)
3483 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
3487 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
3488 iDevSoundState = EStateInitializing;
3492 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
3493 StopTest(aError, EFail);
3497 case EStateInitializing:
3499 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
3501 iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ());
3502 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
3503 TRAPD(err, iMMFDevSound->PlayInitL());
3504 if (err != KErrNone)
3509 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
3510 iDevSoundState = EStatePlaying;
3512 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
3514 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
3519 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
3520 StopTest(aError, EFail);
3526 if (aDevSoundEvent == EEventBTBF)
3528 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
3529 TInt err = iFile.Read (buffer->Data ());
3530 if (err != KErrNone)
3532 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
3536 if (buffer->Data().Length()!= buffer->RequestSize())
3538 iBuffer->SetLastBuffer(ETrue);
3540 INFO_PRINTF1(_L("CMMFDevSound::PlayData()"));
3541 iMMFDevSound->PlayData();
3545 ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
3546 StopTest(aError, EFail);
3552 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
3553 StopTest(aError, EFail);
3559 *========================================================================================================
3560 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0027
3562 RA3FDevSoundPlayEmptyBufferWhilePlayingTest::RA3FDevSoundPlayEmptyBufferWhilePlayingTest(const TDesC& aTestName) :
3563 RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC)
3567 RA3FDevSoundPlayEmptyBufferWhilePlayingTest* RA3FDevSoundPlayEmptyBufferWhilePlayingTest::NewL(const TDesC& aTestName)
3569 RA3FDevSoundPlayEmptyBufferWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayEmptyBufferWhilePlayingTest(aTestName);
3573 void RA3FDevSoundPlayEmptyBufferWhilePlayingTest::DoKickoffTestL()
3576 // Get the filename of the audio file to play
3577 if (!GetStringFromConfig(iTestStepName, KFilename, filename))
3579 ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
3580 StopTest(KErrNotFound);
3583 // open using RFile for playback
3584 iFilename.Copy(filename);
3585 TInt err = iFile.Open(iFs, iFilename, EFileRead);
3586 if (err != KErrNone)
3588 ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
3593 INFO_PRINTF2(_L("File under test -> %S"), &iFilename);
3596 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
3598 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
3599 StopTest(KErrNotFound);
3602 EncodingFromStringToTFourCC(fourccCode);
3603 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
3606 void RA3FDevSoundPlayEmptyBufferWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
3608 switch (iDevSoundState)
3612 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayEmptyBufferPlayingTest"), EFsmIncorrectErrorPassed));
3613 if (aDevSoundEvent == EEventInitialize)
3615 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
3616 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
3617 if (err != KErrNone)
3619 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
3623 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
3624 iDevSoundState = EStateInitializing;
3628 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
3629 StopTest(aError, EFail);
3633 case EStateInitializing:
3635 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
3637 iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ());
3638 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
3639 TRAPD(err, iMMFDevSound->PlayInitL());
3640 if (err != KErrNone)
3645 StartTimer(KMicroSecsTwoSec);
3646 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
3647 iDevSoundState = EStatePlaying;
3649 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
3651 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
3652 StopTest(aError, EFail);
3656 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
3657 StopTest(aError, EFail);
3663 if (aDevSoundEvent == EEventBTBF)
3665 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
3666 TInt err = iFile.Read(buffer->Data());
3667 if (err != KErrNone)
3669 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
3673 if (buffer->Data().Length ()!= buffer->RequestSize ())
3675 iBuffer->SetLastBuffer(ETrue);
3677 INFO_PRINTF1(_L("CMMFDevSound::PlayData()"));
3678 iMMFDevSound->PlayData();
3680 else if (aDevSoundEvent == EEventTimerComplete)
3682 INFO_PRINTF1(_L("Calling CMMFDevSound::EmptyBuffers()"));
3683 TInt err = iMMFDevSound->EmptyBuffers();
3684 if (err == KErrNone)
3686 INFO_PRINTF2(_L("Call EmptyBuffers() while playing returned error = %d"), err);
3692 ERR_PRINTF2(_L("Call EmptyBuffers() while playing returned error = %d"), err);
3693 ERR_PRINTF2(_L("Expected error = %d"), KErrNone);
3700 ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
3701 StopTest(aError, EFail);
3707 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
3708 StopTest (aError, EFail);
3713 void RA3FDevSoundPlayEmptyBufferWhilePlayingTest::DoTimerCallback()
3715 INFO_PRINTF1(_L("TimerEvent called"));
3717 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
3718 Fsm(EEventTimerComplete, KErrNone);
3722 *========================================================================================================
3723 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0028
3725 RA3FDevSoundPlayEmptyBufferBeforePlayingTest::RA3FDevSoundPlayEmptyBufferBeforePlayingTest(const TDesC& aTestName) :
3726 RA3FDevSoundTestBase(aTestName)
3730 RA3FDevSoundPlayEmptyBufferBeforePlayingTest* RA3FDevSoundPlayEmptyBufferBeforePlayingTest::NewL(const TDesC& aTestName)
3732 RA3FDevSoundPlayEmptyBufferBeforePlayingTest* self = new (ELeave) RA3FDevSoundPlayEmptyBufferBeforePlayingTest(aTestName);
3736 void RA3FDevSoundPlayEmptyBufferBeforePlayingTest::DoKickoffTestL()
3739 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
3741 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
3742 StopTest(KErrNotFound);
3745 EncodingFromStringToTFourCC(fourccCode);
3746 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
3749 void RA3FDevSoundPlayEmptyBufferBeforePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
3751 switch (iDevSoundState)
3755 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayEmptyBufferPlayingTest"), EFsmIncorrectErrorPassed));
3756 if (aDevSoundEvent == EEventInitialize)
3758 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
3759 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying)) ;
3760 if (err != KErrNone)
3762 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
3766 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
3767 iDevSoundState = EStateInitializing;
3771 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
3772 StopTest(aError, EFail);
3776 case EStateInitializing:
3778 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
3780 INFO_PRINTF1(_L("Calling CMMFDevSound::EmptyBuffers()"));
3781 TInt err = iMMFDevSound->EmptyBuffers ();
3782 if (err == KErrNotReady)
3784 INFO_PRINTF2(_L("Calling CMMFDevSound::EmptyBuffers after initialization and before playback returned with the expected error = %d"), err);
3790 ERR_PRINTF2(_L("Calling CMMFDevSound::EmptyBuffers after initialization and before playback returned with error = %d"), err);
3791 ERR_PRINTF2(_L("Expected error = %d"), KErrNotReady);
3792 StopTest(err, EFail);
3795 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
3797 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
3798 StopTest(aError, EFail);
3802 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
3803 StopTest(aError, EFail);
3809 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
3810 StopTest(aError, EFail);
3816 *========================================================================================================
3817 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0029
3819 RA3FDevSoundPlayPauseTest::RA3FDevSoundPlayPauseTest(const TDesC& aTestName) :
3820 RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC),
3821 iPaused(EFalse), iSamplesPlayedPaused(0)
3825 RA3FDevSoundPlayPauseTest* RA3FDevSoundPlayPauseTest::NewL(const TDesC& aTestName)
3827 RA3FDevSoundPlayPauseTest* self = new (ELeave) RA3FDevSoundPlayPauseTest(aTestName);
3831 void RA3FDevSoundPlayPauseTest::DoKickoffTestL()
3834 // Get the filename of the audio file to play
3835 if (!GetStringFromConfig(iTestStepName, KFilename, filename))
3837 ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
3838 StopTest(KErrNotFound);
3841 // open using RFile for playback
3842 iFilename.Copy(filename);
3843 TInt err = iFile.Open(iFs, iFilename, EFileRead);
3844 if (err != KErrNone)
3846 ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
3852 INFO_PRINTF2(_L("File under test -> %S"), &iFilename);
3855 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
3857 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
3858 StopTest(KErrNotFound);
3861 EncodingFromStringToTFourCC(fourccCode);
3862 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
3865 void RA3FDevSoundPlayPauseTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
3867 switch (iDevSoundState)
3871 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPauseTest"), EFsmIncorrectErrorPassed));
3872 if (aDevSoundEvent == EEventInitialize)
3874 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
3875 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
3876 if (err != KErrNone)
3878 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
3882 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
3883 iDevSoundState = EStateInitializing;
3887 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
3888 StopTest(aError, EFail);
3892 case EStateInitializing:
3894 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
3896 iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ());
3897 INFO_PRINTF1(_L("CMMFDevSound::PlayInitL"));
3898 TRAPD(err, iMMFDevSound->PlayInitL());
3899 if (err != KErrNone)
3904 StartTimer(KMicroSecsTwoSec);
3905 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
3906 iDevSoundState = EStatePlaying;
3908 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
3910 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
3915 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
3916 StopTest(aError, EFail);
3922 if (aDevSoundEvent == EEventBTBF)
3924 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
3925 TInt err = iFile.Read (buffer->Data ());
3926 if (err != KErrNone)
3928 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
3932 if (buffer->Data().Length()!= buffer->RequestSize())
3934 iBuffer->SetLastBuffer(ETrue);
3936 INFO_PRINTF1(_L("CMMFDevSound::PlayData"));
3937 iMMFDevSound->PlayData();
3939 else if (aDevSoundEvent == EEventTimerComplete)
3941 INFO_PRINTF1(_L("Calling CMMFDevSound::Pause"));
3942 iMMFDevSound->Pause();
3943 iDevSoundState = EStatePause;
3944 INFO_PRINTF1(_L("Calling CMMFDevSound::SamplesPlayed"));
3945 iSamplesPlayedPaused = iMMFDevSound->SamplesPlayed();
3946 INFO_PRINTF2(_L("The number of samples played is %d"), iSamplesPlayedPaused);
3950 ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
3951 StopTest(aError, EFail);
3957 if (aDevSoundEvent == EEventTimerComplete)
3959 TInt samplesPlayed = iMMFDevSound->SamplesPlayed();
3960 INFO_PRINTF2(_L("Samples returned by CMMFDevSound::SamplesPlayed = %d"), samplesPlayed);
3961 if(iSamplesPlayedPaused == samplesPlayed)
3963 INFO_PRINTF3(_L("Samples returned by CMMFDevSound::SamplesPlayed: %d matches the expected samples played: %d"), samplesPlayed, iSamplesPlayedPaused);
3968 ERR_PRINTF2(_L("Call to CMMFDevSound::SamplesPlayed do not match the expected value = %d"), samplesPlayed);
3969 ERR_PRINTF2(_L("Expected Samples played value = %d"), iSamplesPlayedPaused);
3970 StopTest(KErrNone, EFail);
3975 ERR_PRINTF2(_L("EEventTimerComplete not received as expected. Received event: %d"), aDevSoundEvent);
3976 StopTest(aError, EFail);
3982 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
3983 StopTest(aError, EFail);
3988 void RA3FDevSoundPlayPauseTest::DoTimerCallback()
3990 INFO_PRINTF1(_L("TimerEvent called"));
3993 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
3994 Fsm(EEventTimerComplete, KErrNone);
4000 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
4001 Fsm(EEventTimerComplete, KErrNone);
4006 *========================================================================================================
4007 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0030
4009 RA3FDevSoundPlayStopTest::RA3FDevSoundPlayStopTest(const TDesC& aTestName) :
4010 RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC), iStopped(EFalse)
4014 RA3FDevSoundPlayStopTest* RA3FDevSoundPlayStopTest::NewL(const TDesC& aTestName)
4016 RA3FDevSoundPlayStopTest* self = new (ELeave) RA3FDevSoundPlayStopTest(aTestName);
4020 void RA3FDevSoundPlayStopTest::DoKickoffTestL()
4023 // Get the filename of the audio file to play
4024 if (!GetStringFromConfig(iTestStepName, KFilename, filename))
4026 ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
4027 StopTest(KErrNotFound);
4030 // open using RFile for playback
4031 iFilename.Copy(filename);
4032 TInt err = iFile.Open(iFs, iFilename, EFileRead);
4033 if (err != KErrNone)
4035 ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
4041 INFO_PRINTF2(_L("File under test -> %S"), &iFilename);
4044 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
4046 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
4047 StopTest(KErrNotFound);
4050 EncodingFromStringToTFourCC(fourccCode);
4051 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
4054 void RA3FDevSoundPlayStopTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
4056 switch (iDevSoundState)
4060 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayStopTest"), EFsmIncorrectErrorPassed));
4061 if (aDevSoundEvent == EEventInitialize)
4063 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
4064 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
4065 if (err != KErrNone)
4067 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
4071 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
4072 iDevSoundState = EStateInitializing;
4076 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
4077 StopTest(aError, EFail);
4081 case EStateInitializing:
4083 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
4087 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
4088 INFO_PRINTF1(_L("CMMFDevSound::PlayInitL"));
4089 TRAPD(err, iMMFDevSound->PlayInitL());
4090 if (err != KErrNone)
4095 StartTimer(KMicroSecsTwoSec);
4096 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
4097 iDevSoundState = EStatePlaying;
4101 INFO_PRINTF1(_L("InitializeComplete returned KErrNone after calling CMMFDevSound::Stop then CMMFDevSound::InitializeL"));
4105 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
4109 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
4114 INFO_PRINTF2(_L("InitializeComplete returned %d after calling CMMFDevSound::Stop then CMMFDevSound::InitializeL"), aError);
4120 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
4121 StopTest(aError, EFail);
4127 if (aDevSoundEvent == EEventBTBF)
4129 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
4130 TInt err = iFile.Read (buffer->Data());
4131 if (err != KErrNone)
4133 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
4137 if (buffer->Data().Length ()!= buffer->RequestSize())
4139 iBuffer->SetLastBuffer(ETrue);
4141 INFO_PRINTF1(_L("CMMFDevSound::PlayData"));
4142 iMMFDevSound->PlayData();
4144 else if (aDevSoundEvent == EEventTimerComplete)
4146 INFO_PRINTF1(_L("CMMFDevSound::Stop"));
4147 iMMFDevSound->Stop();
4151 ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
4152 StopTest(aError, EFail);
4158 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
4159 StopTest(aError, EFail);
4164 void RA3FDevSoundPlayStopTest::DoTimerCallback()
4166 INFO_PRINTF1(_L("TimerEvent called"));
4169 INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
4170 Fsm(EEventTimerComplete, KErrNone);
4176 INFO_PRINTF1(_L("Initializing again after stop successful. Hence passing the test"));
4177 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
4178 if (err != KErrNone)
4180 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
4183 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
4184 iDevSoundState = EStateInitializing;
4190 *========================================================================================================
4191 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0031
4193 RA3FDevSoundPlayPreemptionTest::RA3FDevSoundPlayPreemptionTest(const TDesC& aTestName) :
4194 RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC),
4195 iOtherFilename(KNullDesC)
4199 RA3FDevSoundPlayPreemptionTest* RA3FDevSoundPlayPreemptionTest::NewL(const TDesC& aTestName)
4201 RA3FDevSoundPlayPreemptionTest* self = new (ELeave) RA3FDevSoundPlayPreemptionTest(aTestName);
4205 void RA3FDevSoundPlayPreemptionTest::DoKickoffTestL()
4208 // Get the filename of the audio file to play
4209 if (!GetStringFromConfig(iTestStepName, KFilename, filename))
4211 ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
4212 StopTest(KErrNotFound);
4215 // open using RFile for playback
4216 iFilename.Copy(filename);
4217 TInt err = iFile.Open(iFs, iFilename, EFileRead);
4218 if (err != KErrNone)
4220 ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
4224 INFO_PRINTF2(_L("File under test -> %S"), &iFilename);
4225 // Get the filename of the second devsound instance
4227 if (!GetStringFromConfig(iTestStepName, KOtherFilename, tempString))
4229 ERR_PRINTF2(KMsgErrorGetParameter, &KOtherFilename);
4230 StopTest(KErrNotFound);
4233 iOtherFilename.Copy (tempString);
4234 INFO_PRINTF2(_L("File under test -> %S"), &iOtherFilename);
4236 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
4238 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
4239 StopTest(KErrNotFound);
4242 EncodingFromStringToTFourCC(fourccCode);
4243 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
4244 iDevsoundPlayClient = CA3FDevSoundPlayClient::NewL(*this, iFourCCCode, iFs, iSuite);
4247 void RA3FDevSoundPlayPreemptionTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
4249 switch (iDevSoundState)
4253 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPreemptionTest"), EFsmIncorrectErrorPassed));
4254 if (aDevSoundEvent == EEventInitialize)
4256 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
4257 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
4258 if (err != KErrNone)
4260 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
4264 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
4265 iDevSoundState = EStateInitializing;
4269 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
4270 StopTest(aError, EFail);
4274 case EStateInitializing:
4276 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
4278 TMMFPrioritySettings priority;
4279 priority.iPriority = KMinimumPriority;
4280 INFO_PRINTF2(_L("Setting Priority to %d using CMMFDevSound::SetPrioritySettings"), priority.iPriority);
4281 iMMFDevSound->SetPrioritySettings (priority);
4282 iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ());
4283 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
4284 TRAPD(err, iMMFDevSound->PlayInitL());
4285 if (err != KErrNone)
4290 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
4291 iDevSoundState = EStatePlaying;
4292 StartTimer(KMicroSecsTwoSec);
4294 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
4296 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
4301 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
4302 StopTest(aError, EFail);
4308 if (aDevSoundEvent == EEventBTBF)
4310 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
4311 TInt err = iFile.Read (buffer->Data ());
4312 if (err != KErrNone)
4314 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
4318 if (buffer->Data().Length ()!= buffer->RequestSize())
4320 iBuffer->SetLastBuffer(ETrue);
4322 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
4323 iMMFDevSound->PlayData();
4327 ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
4328 StopTest(aError, EFail);
4334 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
4335 StopTest(aError, EFail);
4340 void RA3FDevSoundPlayPreemptionTest::DoTimerCallback()
4342 INFO_PRINTF1(_L("TimerEvent called"));
4344 INFO_PRINTF1(_L("Starting higher priority devsound client"));
4345 iDevsoundPlayClient->SetPriority(KMaximumPriority);
4346 INFO_PRINTF1(_L("Initializing to play audio thru second devsound client"));
4347 TInt err = iDevsoundPlayClient->PlayInit(iOtherFilename);
4348 if (err != KErrNone)
4350 ERR_PRINTF2(_L("Initializating DevSound to play audio thru second devsound client failed with error = %d"), err);
4355 void RA3FDevSoundPlayPreemptionTest::PlayError(TInt aError)
4357 INFO_PRINTF1(_L("========== DevSound PlayError() callback =========="));
4358 if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied)
4360 INFO_PRINTF1(_L("========== Preempting 1st DevSound Instance=========="));
4361 INFO_PRINTF2(_L("First DevSound client PlayError succeeded with error = %d "), aError);
4365 ERR_PRINTF2(_L("First DevSound client PlayError and failed with error = %d "), aError);
4366 ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied);
4367 StopTest(aError, EFail);
4371 void RA3FDevSoundPlayPreemptionTest::ClientInitializeCompleteCallback(TInt aError)
4373 INFO_PRINTF1(_L("========== Second Client DevSound InitializeComplete() callback =========="));
4374 if (aError != KErrNone)
4376 ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError);
4381 INFO_PRINTF1(_L("Starting to play audio thru second devsound client"));
4382 TInt err = iDevsoundPlayClient->PlayAudio();
4383 if (err != KErrNone)
4385 ERR_PRINTF2(_L("Starting to play audio thru second devsound client failed with error = %d"), err);
4391 void RA3FDevSoundPlayPreemptionTest::ClientBufferToBeFilledCallback(TInt aError)
4393 INFO_PRINTF1(_L("========== Second Client DevSound BufferToBeFilled() callback =========="));
4394 if (aError != KErrNone)
4396 ERR_PRINTF2(_L("Second DevSound client called BufferToBeFilled and failed with error = %d"), aError);
4401 void RA3FDevSoundPlayPreemptionTest::ClientPlayHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError)
4405 case EInvalidClientFSMEvent:
4406 ERR_PRINTF1(_L("Second devsound client received an invalid Event..."));
4408 case EInvalidClientFSMState:
4409 ERR_PRINTF1(_L("Second devsound client received an invalid State..."));
4411 case EReadFileErrorInClient:
4412 ERR_PRINTF1(_L("Second devsound client could not read to file..."));
4417 StopTest(aError, EFail);
4420 void RA3FDevSoundPlayPreemptionTest::ClientPlayErrorCallback(TInt aError, TBool aLastBuffer)
4422 INFO_PRINTF1(_L("========== Second Client DevSound PlayError() callback =========="));
4424 if (aError == KErrUnderflow && aLastBuffer)
4426 INFO_PRINTF1(_L("Second DevSound client called PlayError and completed normally"));
4431 ERR_PRINTF2(_L("Second DevSound PlayError failed with error = %d"), aError);
4432 ERR_PRINTF2(_L("Expected error = %d "), KErrUnderflow);
4433 StopTest(aError, EFail);
4438 *========================================================================================================
4439 * 3F-DEVSOUND-CHRTZ-PLAY-RAW-0032
4441 RA3FDevSoundPlayPreemptedByToneTest::RA3FDevSoundPlayPreemptedByToneTest(const TDesC& aTestName) :
4442 RA3FDevSoundTestBase(aTestName),iFilename(KNullDesC),
4443 iFrequencyTone1(0), iDuration(0)
4447 RA3FDevSoundPlayPreemptedByToneTest* RA3FDevSoundPlayPreemptedByToneTest::NewL(const TDesC& aTestName)
4449 RA3FDevSoundPlayPreemptedByToneTest* self = new (ELeave) RA3FDevSoundPlayPreemptedByToneTest(aTestName);
4453 void RA3FDevSoundPlayPreemptedByToneTest::DoKickoffTestL()
4456 // Get the filename of the audio file to play
4457 if (!GetStringFromConfig(iTestStepName, KFilename, filename))
4459 ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
4460 StopTest(KErrNotFound);
4463 // open using RFile for playback
4464 iFilename.Copy(filename);
4465 TInt err = iFile.Open(iFs, iFilename, EFileRead);
4466 if (err != KErrNone)
4468 ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
4473 INFO_PRINTF2(_L("File under test -> %S"), &iFilename);
4475 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
4477 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
4478 StopTest(KErrNotFound);
4481 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
4483 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
4484 StopTest(KErrNotFound);
4488 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
4490 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
4491 StopTest(KErrNotFound);
4494 EncodingFromStringToTFourCC(fourccCode);
4495 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
4496 iDevsoundToneClient = CA3FDevSoundToneClient::NewL(*this);
4499 void RA3FDevSoundPlayPreemptedByToneTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
4501 switch (iDevSoundState)
4505 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPreemptedByToneTest"), EFsmIncorrectErrorPassed));
4506 if (aDevSoundEvent == EEventInitialize)
4508 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
4509 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
4510 if (err != KErrNone)
4512 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
4516 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
4517 iDevSoundState = EStateInitializing;
4521 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
4522 StopTest(aError, EFail);
4526 case EStateInitializing:
4528 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
4530 TMMFPrioritySettings priority;
4531 priority.iPriority = KMinimumPriority;
4532 INFO_PRINTF2(_L("Setting Priority to %d using CMMFDevSound::SetPrioritySettings"), priority.iPriority);
4533 iMMFDevSound->SetPrioritySettings (priority);
4534 iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ());
4535 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
4536 TRAPD(err, iMMFDevSound->PlayInitL());
4537 if (err != KErrNone)
4542 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
4543 iDevSoundState = EStatePlaying;
4544 StartTimer (KMicroSecsTwoSec);
4546 else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone)
4548 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
4553 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
4554 StopTest(aError, EFail);
4560 if (aDevSoundEvent == EEventBTBF)
4562 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
4563 TInt err = iFile.Read (buffer->Data());
4564 if (err != KErrNone)
4566 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
4570 if (buffer->Data().Length ()!= buffer->RequestSize())
4572 iBuffer->SetLastBuffer(ETrue);
4574 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
4575 iMMFDevSound->PlayData();
4579 ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
4580 StopTest(aError, EFail);
4586 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
4587 StopTest(aError, EFail);
4592 void RA3FDevSoundPlayPreemptedByToneTest::DoTimerCallback()
4594 INFO_PRINTF1(_L("TimerEvent called"));
4596 INFO_PRINTF1(_L("Starting higher priority devsound client"));
4597 iDevsoundToneClient->SetPriority(KMaximumPriority);
4598 INFO_PRINTF1(_L("Initializing to play tones thru second devsound client"));
4599 TInt err = iDevsoundToneClient->InitTonePlay(iFrequencyTone1,iDuration*KMicroSecsInOneSec);
4600 if (err != KErrNone)
4602 ERR_PRINTF2(_L("Initializating DevSoud to play tones thru second devsound client failed with error = %d"), err);
4607 void RA3FDevSoundPlayPreemptedByToneTest::PlayError(TInt aError)
4609 INFO_PRINTF1(_L("========== DevSound PlayError() callback =========="));
4610 if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied)
4612 INFO_PRINTF1(_L("========== Preempting 1st DevSound Instance=========="));
4613 INFO_PRINTF2(_L("First DevSound client PlayError succeeded with error = %d "), aError);
4617 ERR_PRINTF2(_L("First DevSound client called PlayError and failed with error = %d "), aError);
4618 ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied);
4619 StopTest(aError, EFail);
4623 void RA3FDevSoundPlayPreemptedByToneTest::ClientInitializeCompleteCallback(TInt aError)
4625 INFO_PRINTF1(_L("==========Second DevSound client called InitializeComplete()=========="));
4626 if (aError == KErrNone)
4628 INFO_PRINTF1(_L("Starting to play tone thru second devsound client"));
4629 TInt err = iDevsoundToneClient->PlayTone ();
4630 if (err != KErrNone)
4632 ERR_PRINTF2(_L("Second Devsound client called PlayTone and failed with error = %d"), err);
4638 ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError);
4643 void RA3FDevSoundPlayPreemptedByToneTest::ClientToneFinishedCallback(TInt aError)
4645 INFO_PRINTF1(_L("========== Second DevSound client called ToneFinished()=========="));
4646 if (aError == KErrUnderflow)
4648 INFO_PRINTF2(_L("Second DevSound client called ToneFinished and succeeded with error = %d"), aError);
4649 StopTest(aError, EPass);
4653 ERR_PRINTF2(_L("Second DevSound client called ToneFinished and failed with error = %d"), aError);
4659 *========================================================================================================
4660 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0033
4662 RA3FDevSoundPlayPreemptedByRecordTest::RA3FDevSoundPlayPreemptedByRecordTest(const TDesC& aTestName) :
4663 RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC)
4668 RA3FDevSoundPlayPreemptedByRecordTest* RA3FDevSoundPlayPreemptedByRecordTest::NewL(const TDesC& aTestName)
4670 RA3FDevSoundPlayPreemptedByRecordTest* self = new (ELeave) RA3FDevSoundPlayPreemptedByRecordTest(aTestName);
4674 void RA3FDevSoundPlayPreemptedByRecordTest::DoKickoffTestL()
4677 // Get the filename of the audio file to play
4678 if (!GetStringFromConfig(iTestStepName, KFilename, filename))
4680 ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
4681 StopTest(KErrNotFound);
4684 // open using RFile for playback
4685 iFilename.Copy(filename);
4686 TInt err = iFile.Open(iFs, iFilename, EFileRead);
4687 if (err != KErrNone)
4689 ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
4693 // Get the filename of the audio file to record
4694 if (!GetStringFromConfig(iTestStepName, KOtherFilename, filename))
4696 ERR_PRINTF2(KMsgErrorGetParameter, &KOtherFilename);
4697 StopTest(KErrNotFound);
4701 iOtherFilename.Copy(filename);
4704 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
4706 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
4707 StopTest (KErrNotFound);
4710 EncodingFromStringToTFourCC(fourccCode);
4711 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
4712 iDevsoundRecordClient = CA3FDevSoundRecordClient::NewL(*this, iFourCCCode, iFs, iSuite);
4715 void RA3FDevSoundPlayPreemptedByRecordTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
4717 switch (iDevSoundState)
4721 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPreemptedByRecordTest"), EFsmIncorrectErrorPassed));
4722 if (aDevSoundEvent == EEventInitialize)
4724 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
4725 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
4726 if (err != KErrNone)
4728 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
4732 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
4733 iDevSoundState = EStateInitializing;
4737 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
4738 StopTest(aError, EFail);
4742 case EStateInitializing:
4744 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
4746 TMMFPrioritySettings priority;
4747 priority.iPriority = KMinimumPriority;
4748 INFO_PRINTF2(_L("Setting Priority to %d using CMMFDevSound::SetPrioritySettings"), priority.iPriority);
4749 iMMFDevSound->SetPrioritySettings (priority);
4750 iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ());
4751 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
4752 TRAPD(err, iMMFDevSound->PlayInitL());
4753 if (err != KErrNone)
4758 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
4759 iDevSoundState = EStatePlaying;
4760 StartTimer(KMicroSecsTwoSec);
4762 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
4764 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
4769 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
4770 StopTest(aError, EFail);
4776 if (aDevSoundEvent == EEventBTBF)
4778 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
4779 TInt err = iFile.Read (buffer->Data ());
4780 if (err != KErrNone)
4782 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
4786 if (buffer->Data().Length()!= buffer->RequestSize())
4788 iBuffer->SetLastBuffer(ETrue);
4790 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
4791 iMMFDevSound->PlayData();
4795 ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
4796 StopTest(aError, EFail);
4802 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
4803 StopTest(aError, EFail);
4808 void RA3FDevSoundPlayPreemptedByRecordTest::DoTimerCallback()
4810 INFO_PRINTF1(_L("TimerEvent called"));
4811 if (!iOtherClientStarted)
4813 INFO_PRINTF1(_L("Initializing higher priority devsound client..."));
4814 iDevsoundRecordClient->SetPriority (KMaximumPriority);
4815 TInt err = iDevsoundRecordClient->InitializeRecordClient (iOtherFilename);
4816 if (err != KErrNone)
4818 ERR_PRINTF1(_L("Initializating DevSoud to record audio thru second devsound client failed with error = %d"));
4821 iOtherClientStarted = ETrue;
4826 iDevsoundRecordClient->StopRecord();
4831 void RA3FDevSoundPlayPreemptedByRecordTest::PlayError(TInt aError)
4833 INFO_PRINTF1(_L("========== DevSound PlayError() callback =========="));
4834 if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied)
4836 INFO_PRINTF1(_L("========== Preempting 1st DevSound Instance=========="));
4837 INFO_PRINTF2(_L("First DevSound client PlayError succeeded with error = %d "), aError);
4841 ERR_PRINTF2(_L("First DevSound client called PlayError and failed with error = %d "), aError);
4842 ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied);
4843 StopTest(aError, EFail);
4847 void RA3FDevSoundPlayPreemptedByRecordTest::ClientInitializeCompleteCallback(TInt aError)
4849 INFO_PRINTF1(_L("========== Second Client DevSound InitializeComplete() callback =========="));
4850 if (aError != KErrNone)
4852 ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError);
4857 INFO_PRINTF2(_L("Second DevSound client called InitializeComplete with error = %d"), aError);
4858 INFO_PRINTF1(_L("Starting to record audio thru second devsound client"));
4859 TInt err = iDevsoundRecordClient->RecordAudio ();
4860 if (err != KErrNone)
4862 ERR_PRINTF2(_L("Starting to record audio thru second devsound client failed with error = %d"), err);
4868 void RA3FDevSoundPlayPreemptedByRecordTest::ClientBufferToBeEmptiedCallback(TInt aError)
4870 INFO_PRINTF1(_L("========== Second Client DevSound ClientBufferToBeEmptied() callback =========="));
4875 INFO_PRINTF1(_L("Second DevSound client called BufferToBeEmptied and received a NULL CMMFBuffer"));
4881 INFO_PRINTF1(_L("Second DevSound client called BufferToBeEmptied: Unknown behaviour: Last buffer flag set before calling CMMFDevSound->Pause()"));
4888 void RA3FDevSoundPlayPreemptedByRecordTest::ClientRecordErrorCallback(TInt aError)
4890 INFO_PRINTF1(_L("========== Second Client DevSound RecordError() callback =========="));
4891 if (aError == KErrUnderflow)
4893 INFO_PRINTF2(_L("Second DevSound client called RecordError with error = %d"), aError);
4898 void RA3FDevSoundPlayPreemptedByRecordTest::ClientRecordHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError)
4902 case EInvalidClientFSMEvent:
4904 ERR_PRINTF1(_L("Second devsound client received an invalid Event..."));
4905 StopTest(KErrNone, EFail);
4908 case EInvalidClientFSMState:
4910 ERR_PRINTF1(_L("Second devsound client received an invalid State..."));
4911 StopTest(KErrNone, EFail);
4914 case EWriteFileErrorInClient:
4916 ERR_PRINTF1(_L("Second devsound client could not write to file..."));
4917 StopTest(KErrNone, EFail);
4924 *========================================================================================================
4925 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0034
4927 RA3FDevSoundPlayRejectionTest::RA3FDevSoundPlayRejectionTest(const TDesC& aTestName) :
4928 RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC),
4929 iOtherFilename(KNullDesC)
4933 RA3FDevSoundPlayRejectionTest* RA3FDevSoundPlayRejectionTest::NewL(const TDesC& aTestName)
4935 RA3FDevSoundPlayRejectionTest* self = new (ELeave) RA3FDevSoundPlayRejectionTest(aTestName);
4939 void RA3FDevSoundPlayRejectionTest::DoKickoffTestL()
4942 // Get the filename of the audio file to play
4943 if (!GetStringFromConfig(iTestStepName, KFilename, filename))
4945 ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
4946 StopTest(KErrNotFound);
4949 // open using RFile for playback
4950 iFilename.Copy(filename);
4952 TInt err = iFile.Open(iFs, iFilename, EFileRead);
4953 if (err != KErrNone)
4955 ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
4960 INFO_PRINTF2(_L("File under test -> %S"), &iFilename);
4962 // Get the filename of the second devsound instance
4964 if (!GetStringFromConfig(iTestStepName, KOtherFilename, tempString))
4966 ERR_PRINTF2(KMsgErrorGetParameter, &KOtherFilename);
4967 StopTest(KErrNotFound);
4971 iOtherFilename.Copy (tempString);
4974 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
4976 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
4977 StopTest(KErrNotFound);
4980 EncodingFromStringToTFourCC(fourccCode);
4981 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
4982 iDevsoundPlayClient = CA3FDevSoundPlayClient::NewL(*this, iFourCCCode, iFs, iSuite);
4985 void RA3FDevSoundPlayRejectionTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
4987 switch (iDevSoundState)
4991 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayRejectionTest"), EFsmIncorrectErrorPassed));
4992 if (aDevSoundEvent == EEventInitialize)
4994 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
4995 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
4996 if (err != KErrNone)
4998 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
5002 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
5003 iDevSoundState = EStateInitializing;
5007 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
5008 StopTest(aError, EFail);
5012 case EStateInitializing:
5014 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
5016 TMMFPrioritySettings priority;
5017 priority.iPriority = KMaximumPriority;
5018 INFO_PRINTF2(_L("Setting Priority to %d using CMMFDevSound::SetPrioritySettings"), priority.iPriority);
5019 iMMFDevSound->SetPrioritySettings (priority);
5020 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
5021 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
5022 TRAPD(err, iMMFDevSound->PlayInitL());
5023 if ( err != KErrNone)
5025 INFO_PRINTF2(_L("CMMFDevSound::PlayInitL left with error = %d"), err);
5029 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
5030 iDevSoundState = EStatePlaying;
5031 StartTimer (KMicroSecsTwoSec);
5033 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
5035 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
5040 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
5041 StopTest(aError, EFail);
5047 if (aDevSoundEvent == EEventBTBF)
5049 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
5050 TInt err = iFile.Read (buffer->Data ());
5051 if (err != KErrNone)
5053 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
5057 if (buffer->Data().Length()!= buffer->RequestSize())
5059 iBuffer->SetLastBuffer (ETrue);
5061 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
5062 iMMFDevSound->PlayData();
5066 ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
5067 StopTest(aError, EFail);
5073 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
5074 StopTest(aError, EFail);
5079 void RA3FDevSoundPlayRejectionTest::DoTimerCallback()
5081 INFO_PRINTF1(_L("TimerEvent called"));
5083 INFO_PRINTF1(_L("Starting higher priority devsound client"));
5084 iDevsoundPlayClient->SetPriority(KMinimumPriority);
5085 INFO_PRINTF1(_L("Initializing to play audio thru second devsound client"));
5086 TInt err = iDevsoundPlayClient->PlayInit(iOtherFilename);
5087 if (err != KErrNone)
5089 ERR_PRINTF2(_L("Initialization to play audio thru second devsound client failed with %d"), err);
5094 void RA3FDevSoundPlayRejectionTest::ClientInitializeCompleteCallback(TInt aError)
5096 INFO_PRINTF1(_L("========== Second Client DevSound InitializeComplete() callback =========="));
5097 if (aError != KErrNone)
5099 ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError);
5104 INFO_PRINTF2(_L("Second DevSound client called InitializeComplete with error = %d"), aError);
5105 INFO_PRINTF1(_L("Starting to play audio thru second devsound client"));
5106 TInt err = iDevsoundPlayClient->PlayAudio ();
5107 if (err != KErrNone)
5109 ERR_PRINTF2(_L("Starting to play audio thru second devsound client failed with error = %d"), err);
5115 void RA3FDevSoundPlayRejectionTest::ClientPlayHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError)
5119 case EInvalidClientFSMEvent:
5120 ERR_PRINTF1(_L("Second devsound client received an invalid Event..."));
5122 case EInvalidClientFSMState:
5123 ERR_PRINTF1(_L("Second devsound client received an invalid State..."));
5125 case EReadFileErrorInClient:
5126 ERR_PRINTF1(_L("Second devsound client could not read to file..."));
5131 StopTest(aError, EFail);
5134 void RA3FDevSoundPlayRejectionTest::ClientBufferToBeFilledCallback(TInt aError)
5136 INFO_PRINTF2(_L("Second DevSound client should not call BufferToBeFilled in rejection. Error = %d"), aError);
5137 StopTest(aError, EFail);
5140 void RA3FDevSoundPlayRejectionTest::ClientPlayErrorCallback(TInt aError, TBool aLastBuffer)
5142 INFO_PRINTF1(_L("========== Second Client DevSound PlayError() callback =========="));
5144 if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied && !aLastBuffer)
5146 INFO_PRINTF1(_L("========== Rejecting 2nd DevSound Instance=========="));
5147 INFO_PRINTF2(_L("Second DevSound client PlayError succeeded with error = %d"), aError);
5151 ERR_PRINTF2(_L("Second DevSound PlayError failed with error = %d"), aError);
5152 ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied);
5153 StopTest(aError, EFail);
5158 *========================================================================================================
5159 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0035
5161 RA3FDevSoundPlayRejectedByToneTest::RA3FDevSoundPlayRejectedByToneTest(const TDesC& aTestName) :
5162 RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC)
5166 RA3FDevSoundPlayRejectedByToneTest* RA3FDevSoundPlayRejectedByToneTest::NewL(const TDesC& aTestName)
5168 RA3FDevSoundPlayRejectedByToneTest* self = new (ELeave) RA3FDevSoundPlayRejectedByToneTest(aTestName);
5172 void RA3FDevSoundPlayRejectedByToneTest::DoKickoffTestL()
5175 // Get the filename of the audio file to play
5176 if (!GetStringFromConfig(iTestStepName, KFilename, filename))
5178 ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
5179 StopTest(KErrNotFound);
5182 // open using RFile for playback
5183 iFilename.Copy (filename);
5185 INFO_PRINTF2(_L("File under test -> %S"), &iFilename);
5186 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
5188 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
5189 StopTest(KErrNotFound);
5192 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
5194 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
5195 StopTest(KErrNotFound);
5199 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
5201 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
5202 StopTest(KErrNotFound);
5205 EncodingFromStringToTFourCC(fourccCode);
5206 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
5207 iDevsoundPlayClient = CA3FDevSoundPlayClient::NewL(*this, iFourCCCode, iFs, iSuite);
5210 void RA3FDevSoundPlayRejectedByToneTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
5212 switch (iDevSoundState)
5216 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayRejectedByToneTest"), EFsmIncorrectErrorPassed));
5217 if (aDevSoundEvent == EEventInitialize)
5219 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
5220 TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
5221 if (err != KErrNone)
5223 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
5227 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
5228 iDevSoundState = EStateInitializing;
5232 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
5233 StopTest(aError, EFail);
5237 case EStateInitializing:
5239 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
5241 TMMFPrioritySettings priority;
5242 priority.iPriority = KMinimumPriority;
5243 INFO_PRINTF2(_L("Setting Priority to %d using CMMFDevSound::SetPrioritySettings"), priority.iPriority);
5244 iMMFDevSound->SetPrioritySettings (priority);
5245 iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
5246 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayToneL"));
5247 TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
5248 if (err != KErrNone)
5250 ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error =%d"), err);
5254 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
5255 iDevSoundState = EStatePlaying;
5256 StartTimer(KMicroSecsTwoSec);
5258 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
5260 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
5265 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
5266 StopTest(aError, EFail);
5272 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
5273 StopTest(aError, EFail);
5278 void RA3FDevSoundPlayRejectedByToneTest::DoTimerCallback()
5280 INFO_PRINTF1(_L("TimerEvent called"));
5282 INFO_PRINTF1(_L("Starting higher priority devsound client"));
5283 iDevsoundPlayClient->SetPriority(KMinimumPriority);
5284 INFO_PRINTF1(_L("Initializing to play audio thru second devsound client"));
5285 TInt err = iDevsoundPlayClient->PlayInit(iFilename);
5286 if (err != KErrNone)
5288 ERR_PRINTF2(_L("Initialization to play audio thru second devsound client failed with %d"), err);
5293 void RA3FDevSoundPlayRejectedByToneTest::ClientInitializeCompleteCallback(TInt aError)
5295 INFO_PRINTF1(_L("========== Second Client DevSound InitializeComplete() callback =========="));
5296 if (aError != KErrNone)
5298 ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError);
5303 INFO_PRINTF2(_L("Second DevSound client called InitializeComplete with error = %d"), aError);
5304 INFO_PRINTF1(_L("Starting to play audio thru second devsound client"));
5305 TInt err = iDevsoundPlayClient->PlayAudio ();
5306 if (err != KErrNone)
5308 ERR_PRINTF2(_L("Starting to play audio thru second devsound client failed with error = %d"), err);
5314 void RA3FDevSoundPlayRejectedByToneTest::ClientPlayHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError)
5318 case EInvalidClientFSMEvent:
5319 ERR_PRINTF1(_L("Second devsound client received an invalid Event..."));
5321 case EInvalidClientFSMState:
5322 ERR_PRINTF1(_L("Second devsound client received an invalid State..."));
5324 case EReadFileErrorInClient:
5325 ERR_PRINTF1(_L("Second devsound client could not read to file..."));
5330 StopTest(aError, EFail);
5333 void RA3FDevSoundPlayRejectedByToneTest::ClientBufferToBeFilledCallback(TInt aError)
5335 INFO_PRINTF2(_L("Second DevSound client should not call BufferToBeFilled in rejection. Error = %d"), aError);
5336 StopTest(aError, EFail);
5339 void RA3FDevSoundPlayRejectedByToneTest::ClientPlayErrorCallback(TInt aError,TBool aLastBuffer)
5341 INFO_PRINTF1(_L("========== Second Client DevSound PlayError() callback =========="));
5342 if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied && !aLastBuffer)
5344 INFO_PRINTF1(_L("========== Rejecting 2nd DevSound Instance=========="));
5345 INFO_PRINTF2(_L("Second DevSound client PlayError succeeded with error = %d"), aError);
5349 ERR_PRINTF2(_L("Second DevSound PlayError failed with error = %d"), aError);
5350 ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied);
5351 StopTest(aError, EFail);
5356 *========================================================================================================
5357 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0036
5359 RA3FDevSoundPlayRejectedByRecordTest::RA3FDevSoundPlayRejectedByRecordTest(const TDesC& aTestName) :
5360 RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC),
5361 iOtherFilename(KNullDesC), iOtherClientStarted(EFalse)
5365 RA3FDevSoundPlayRejectedByRecordTest* RA3FDevSoundPlayRejectedByRecordTest::NewL(const TDesC& aTestName)
5367 RA3FDevSoundPlayRejectedByRecordTest* self = new (ELeave) RA3FDevSoundPlayRejectedByRecordTest(aTestName);
5371 void RA3FDevSoundPlayRejectedByRecordTest::DoKickoffTestL()
5374 if (!GetStringFromConfig(iTestStepName, KFilename, filename))
5376 ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
5377 StopTest(KErrNotFound);
5380 // Open file for recording using RFile
5382 iFilename.Copy (filename);
5384 // Get the filename of the second audio file to play
5385 if (!GetStringFromConfig(iTestStepName, KOtherFilename, filename))
5387 ERR_PRINTF2(KMsgErrorGetParameter, &KOtherFilename);
5388 StopTest(KErrNotFound);
5391 INFO_PRINTF2(_L("Opening file for recording %S"), &iFilename);
5392 TInt err = iFile.Replace (iFs, iFilename, EFileWrite);
5393 if (err != KErrNone)
5395 ERR_PRINTF2(_L("Could not create output file. Error = %d"), err);
5401 iOtherFilename.Copy (filename);
5404 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
5406 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
5407 StopTest (KErrNotFound);
5410 EncodingFromStringToTFourCC(fourccCode);
5411 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
5412 iDevsoundPlayClient = CA3FDevSoundPlayClient::NewL(*this, iFourCCCode, iFs, iSuite);
5413 iAsyncWriteBTFAO = CAsyncWriteBufferToFile::NewL(iFile, iMMFDevSound, *this);
5416 void RA3FDevSoundPlayRejectedByRecordTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
5418 switch (iDevSoundState)
5422 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayRejectedByRecordTest"), EFsmIncorrectErrorPassed));
5423 if (aDevSoundEvent == EEventInitialize)
5425 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
5426 INFO_PRINTF1(_L("iMMFDevSound->InitializeL()"));
5427 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStateRecording));
5428 if (err != KErrNone)
5430 ERR_PRINTF2(_L("Initialization of DevSound failed with error : %d!"), err);
5434 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
5435 iDevSoundState = EStateInitializing;
5439 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
5440 StopTest(aError, EFail);
5444 case EStateInitializing:
5446 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
5448 INFO_PRINTF1(_L("CMMFDevSound::RecordInitL"));
5449 TRAPD(err, iMMFDevSound->RecordInitL());
5450 if (err != KErrNone)
5452 ERR_PRINTF2(_L("DevSound RecordInitL left with error = %d"), err);
5456 StartTimer(KMicroSecsTwoSec);
5457 INFO_PRINTF1(_L("DevSound State: EStateRecording"));
5458 iDevSoundState = EStateRecording;
5460 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
5462 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
5467 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
5468 StopTest(aError, EFail);
5472 case EStateRecording:
5474 if (aDevSoundEvent == EEventBTBE)
5476 // Write buffer to file
5477 INFO_PRINTF1(_L("Writing data to file"));
5478 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
5479 iAsyncWriteBTFAO->Start(buffer);
5481 else if (aDevSoundEvent == EEventTimerComplete)
5483 iMMFDevSound->Pause();
5484 INFO_PRINTF1(_L("DevSound State: EStatePause"));
5485 iDevSoundState = EStatePause;
5486 INFO_PRINTF1(_L("Recording is Paused, waiting for the last buffer callback"));
5490 ERR_PRINTF2(_L("DevSound EEventBTBE not received as expected. Received event: %d"), aDevSoundEvent);
5491 StopTest(aError, EFail);
5497 if (aDevSoundEvent == EEventBTBE)
5499 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
5500 // Continue recording data
5501 iAsyncWriteBTFAO->Start (buffer);
5505 ERR_PRINTF2(_L("DevSound EEventBTBE not received as expected. Received event: %d"), aDevSoundEvent);
5506 StopTest(aError, EFail);
5512 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
5513 StopTest(aError, EFail);
5518 void RA3FDevSoundPlayRejectedByRecordTest::DoTimerCallback()
5520 INFO_PRINTF1(_L("TimerEvent called"));
5521 if (!iOtherClientStarted)
5523 INFO_PRINTF1(_L("Starting higher priority devsound client"));
5524 iDevsoundPlayClient->SetPriority(KMinimumPriority);
5525 INFO_PRINTF1(_L("Initializing to play audio thru second devsound client"));
5526 TInt err = iDevsoundPlayClient->PlayInit(iFilename);
5527 if (err != KErrNone)
5529 ERR_PRINTF2(_L("Initialization to play audio thru second devsound client failed with %d"), err);
5532 iOtherClientStarted = ETrue;
5537 Fsm(EEventTimerComplete, KErrNone);
5541 void RA3FDevSoundPlayRejectedByRecordTest::ClientInitializeCompleteCallback(TInt aError)
5543 INFO_PRINTF1(_L("========== Second Client DevSound InitializeComplete() callback =========="));
5544 if (aError != KErrNone)
5546 ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError);
5551 INFO_PRINTF2(_L("Second DevSound client called InitializeComplete and with error = %d"), aError);
5552 INFO_PRINTF1(_L("Starting to play audio thru second devsound client"));
5553 TInt err = iDevsoundPlayClient->PlayAudio();
5554 if (err != KErrNone)
5556 ERR_PRINTF2(_L("Starting to play audio thru second devsound client failed with error = %d"), err);
5562 void RA3FDevSoundPlayRejectedByRecordTest::ClientPlayHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError)
5566 case EInvalidClientFSMEvent:
5567 ERR_PRINTF1(_L("Second devsound client received an invalid Event..."));
5569 case EInvalidClientFSMState:
5570 ERR_PRINTF1(_L("Second devsound client received an invalid State..."));
5572 case EReadFileErrorInClient:
5573 ERR_PRINTF1(_L("Second devsound client could not read to file..."));
5578 StopTest(aError, EFail);
5581 void RA3FDevSoundPlayRejectedByRecordTest::ClientBufferToBeFilledCallback(TInt aError)
5583 INFO_PRINTF2(_L("Second DevSound client should not call BufferToBeFilled in rejection. Error = %d"), aError);
5584 StopTest(aError, EFail);
5587 void RA3FDevSoundPlayRejectedByRecordTest::ClientPlayErrorCallback(TInt aError, TBool aLastBuffer)
5589 INFO_PRINTF1(_L("========== Second Client DevSound PlayError() callback =========="));
5591 if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied && !aLastBuffer)
5593 INFO_PRINTF1(_L("========== Rejecting 2nd DevSound Instance=========="));
5594 INFO_PRINTF2(_L("Second DevSound client PlayError succeeded with error = %d"), aError);
5598 ERR_PRINTF2(_L("Second DevSound PlayError failed with error = %d"), aError);
5599 ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied);
5600 StopTest(aError, EFail);
5605 *========================================================================================================
5606 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0037
5608 RA3FDevSoundPlayDataBeforePlayInitTest::RA3FDevSoundPlayDataBeforePlayInitTest(const TDesC& aTestName) :
5609 RA3FDevSoundTestBase(aTestName)
5613 RA3FDevSoundPlayDataBeforePlayInitTest* RA3FDevSoundPlayDataBeforePlayInitTest::NewL(const TDesC& aTestName)
5615 RA3FDevSoundPlayDataBeforePlayInitTest* self = new (ELeave) RA3FDevSoundPlayDataBeforePlayInitTest(aTestName);
5619 void RA3FDevSoundPlayDataBeforePlayInitTest::DoKickoffTestL()
5622 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
5624 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
5625 StopTest(KErrNotFound);
5628 EncodingFromStringToTFourCC(fourccCode);
5631 void RA3FDevSoundPlayDataBeforePlayInitTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
5633 switch (iDevSoundState)
5637 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPlayDatabeforePlayInitLTest"), EFsmIncorrectErrorPassed));
5638 if (aDevSoundEvent == EEventInitialize)
5640 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
5641 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
5642 if (err != KErrNone)
5644 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
5648 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
5649 iDevSoundState = EStateInitializing;
5653 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
5654 StopTest(aError, EFail);
5658 case EStateInitializing:
5660 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
5662 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData out of sequence"));
5663 iMMFDevSound->PlayData();
5665 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
5667 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
5672 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
5673 StopTest(aError, EFail);
5679 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
5680 StopTest(aError, EFail);
5686 *========================================================================================================
5687 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0038
5689 RA3FDevSoundPlayInitTwiceTest::RA3FDevSoundPlayInitTwiceTest(const TDesC& aTestName) :
5690 RA3FDevSoundTestBase(aTestName),iFirstPlayInitErr(KErrGeneral),
5695 RA3FDevSoundPlayInitTwiceTest* RA3FDevSoundPlayInitTwiceTest::NewL(const TDesC& aTestName)
5697 RA3FDevSoundPlayInitTwiceTest* self = new (ELeave) RA3FDevSoundPlayInitTwiceTest(aTestName);
5701 void RA3FDevSoundPlayInitTwiceTest::DoKickoffTestL()
5704 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
5706 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
5707 StopTest(KErrNotFound);
5710 EncodingFromStringToTFourCC (fourccCode);
5713 void RA3FDevSoundPlayInitTwiceTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
5715 switch (iDevSoundState)
5719 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPlayInitLTwiceTest"), EFsmIncorrectErrorPassed));
5720 if (aDevSoundEvent == EEventInitialize)
5722 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
5723 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
5724 if (err != KErrNone)
5726 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
5730 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
5731 iDevSoundState = EStateInitializing;
5735 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
5736 StopTest(aError, EFail);
5740 case EStateInitializing:
5742 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
5744 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
5745 TRAP(iFirstPlayInitErr, iMMFDevSound->PlayInitL());
5746 if (iFirstPlayInitErr != KErrNone)
5748 ERR_PRINTF2(_L("CMMFDevSound::PlayInitL left with error = %d"), iFirstPlayInitErr);
5749 StopTest(iFirstPlayInitErr);
5752 INFO_PRINTF1(_L("CMMFDevSound::PlayInitL twice (more than once)"));
5753 TRAP(iErr, iMMFDevSound->PlayInitL());
5754 if (iErr == KErrNotReady)
5756 INFO_PRINTF2(_L("CMMFDevSound::PlayInitL left with the expected error = %d"), iErr);
5761 ERR_PRINTF2(_L("Second CMMFDevSound::PlayInitL did NOT leave with the expected error = %d"), iErr);
5762 ERR_PRINTF2(_L("Expected error = %d"), KErrNotReady);
5763 StopTest(iErr, EFail);
5767 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
5769 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
5774 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
5775 StopTest(aError, EFail);
5781 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
5782 StopTest(aError, EFail);
5787 void RA3FDevSoundPlayInitTwiceTest::BufferToBeFilled(CMMFBuffer* /*aBuffer*/)
5789 INFO_PRINTF1(_L("========== DevSound BufferToBeFilled() callback =========="));
5790 if (iErr == KErrNotReady && iFirstPlayInitErr == KErrNone)
5792 INFO_PRINTF1(_L("BufferToBeFilled is called because the leave generated due to second CMMFDevSound::PlayInitL is ignored"));
5798 *========================================================================================================
5799 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0039
5801 RA3FDevSoundPlayARNTest::RA3FDevSoundPlayARNTest(const TDesC& aTestName) :
5802 RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC),
5803 iOtherFilename(KNullDesC)
5807 RA3FDevSoundPlayARNTest* RA3FDevSoundPlayARNTest::NewL(const TDesC& aTestName)
5809 RA3FDevSoundPlayARNTest* self = new (ELeave) RA3FDevSoundPlayARNTest(aTestName);
5813 void RA3FDevSoundPlayARNTest::DoKickoffTestL()
5817 // Get the filename of the audio file to play
5818 if (!GetStringFromConfig(iTestStepName, KFilename, filename))
5820 ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
5821 StopTest(KErrNotFound);
5824 // open using RFile for playback
5825 iFilename.Copy(filename);
5826 TInt err = iFile.Open(iFs, iFilename, EFileRead);
5827 if (err != KErrNone)
5829 ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
5833 INFO_PRINTF2(_L("File under test -> %S"), &iFilename);
5834 // Get the filename of the second devsound instance
5836 if (!GetStringFromConfig(iTestStepName, KOtherFilename, tempString))
5838 ERR_PRINTF2(KMsgErrorGetParameter, &KOtherFilename);
5839 StopTest(KErrNotFound);
5842 iOtherFilename.Copy (tempString);
5843 INFO_PRINTF2(_L("File under test -> %S"), &iOtherFilename);
5845 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
5847 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
5848 StopTest(KErrNotFound);
5851 EncodingFromStringToTFourCC(fourccCode);
5852 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
5853 iDevsoundPlayClient = CA3FDevSoundPlayClient::NewL(*this, iFourCCCode, iFs, iSuite);
5856 void RA3FDevSoundPlayARNTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
5858 switch (iDevSoundState)
5862 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPreemptionTest"), EFsmIncorrectErrorPassed));
5863 if (aDevSoundEvent == EEventInitialize)
5865 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
5866 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
5867 if (err != KErrNone)
5869 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
5873 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
5874 iDevSoundState = EStateInitializing;
5878 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
5879 StopTest(aError, EFail);
5883 case EStateInitializing:
5885 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
5887 TMMFPrioritySettings priority;
5888 priority.iPriority = KMinimumPriority;
5889 INFO_PRINTF2(_L("Setting Priority to %d using CMMFDevSound::SetPrioritySettings"), priority.iPriority);
5890 iMMFDevSound->SetPrioritySettings (priority);
5891 iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ());
5892 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
5893 TRAPD(err, iMMFDevSound->PlayInitL());
5894 if (err != KErrNone)
5899 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
5900 INFO_PRINTF1(_L("Registering first client"));
5901 iMMFDevSound->RegisterAsClient(KMMFEventCategoryAudioResourceAvailable);
5902 iDevSoundState = EStatePlaying;
5903 StartTimer(KMicroSecsTwoSec);
5905 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
5907 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
5912 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
5913 StopTest(aError, EFail);
5919 if (aDevSoundEvent == EEventBTBF)
5921 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
5922 TInt err = iFile.Read (buffer->Data ());
5923 if (err != KErrNone)
5925 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
5929 if (buffer->Data().Length ()!= buffer->RequestSize())
5931 iBuffer->SetLastBuffer(ETrue);
5933 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
5934 iMMFDevSound->PlayData();
5938 ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
5939 StopTest(aError, EFail);
5943 case EStateResumePlaying:
5945 // if (aDevSoundEvent == KMMFEventCategoryAudioResourceAvailable)
5946 if (aDevSoundEvent == EResourceAvailable)
5948 INFO_PRINTF1(_L("First Client Received Notification as expected"));
5949 //INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
5950 //iMMFDevSound->PlayData ();
5955 ERR_PRINTF2(_L("DevSound KMMFEventCategoryAudioResourceAvailable not received as expected. Received event: %d"), aDevSoundEvent);
5956 StopTest(aError, EFail);
5962 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
5963 StopTest(KErrGeneral);
5968 void RA3FDevSoundPlayARNTest::DoTimerCallback()
5972 INFO_PRINTF1(_L("TimerEvent called"));
5974 INFO_PRINTF1(_L("Starting higher priority devsound client"));
5975 iDevsoundPlayClient->SetPriority(KMaximumPriority);
5976 INFO_PRINTF1(_L("Initializing to play audio thru second devsound client"));
5977 TInt err = iDevsoundPlayClient->PlayInit(iOtherFilename);
5978 if (err != KErrNone)
5980 ERR_PRINTF2(_L("Initializating DevSound to play audio thru second devsound client failed with error = %d"), err);
5987 INFO_PRINTF1(_L("Deleting second devsound client"));
5988 iDevsoundPlayClient->DeleteClient();
5989 iDevSoundState = EStateResumePlaying;
5993 void RA3FDevSoundPlayARNTest::PlayError(TInt aError)
5995 INFO_PRINTF1(_L("========== DevSound PlayError() callback =========="));
5996 if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied)
5998 INFO_PRINTF1(_L("========== Preempting 1st DevSound Instance=========="));
5999 INFO_PRINTF2(_L("First DevSound client PlayError succeeded with error = %d "), aError);
6003 ERR_PRINTF2(_L("First DevSound client PlayError and failed with error = %d "), aError);
6004 ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied);
6005 StopTest(aError, EFail);
6009 void RA3FDevSoundPlayARNTest::ClientInitializeCompleteCallback(TInt aError)
6011 INFO_PRINTF1(_L("========== Second Client DevSound InitializeComplete() callback =========="));
6012 if (aError != KErrNone)
6014 ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError);
6019 INFO_PRINTF1(_L("Starting to play audio thru second devsound client"));
6020 TInt err = iDevsoundPlayClient->PlayAudio();
6021 if (err != KErrNone)
6023 ERR_PRINTF2(_L("Starting to play audio thru second devsound client failed with error = %d"), err);
6029 void RA3FDevSoundPlayARNTest::ClientBufferToBeFilledCallback(TInt aError)
6031 INFO_PRINTF1(_L("========== Second Client DevSound BufferToBeFilled() callback =========="));
6032 if (aError != KErrNone)
6034 ERR_PRINTF2(_L("Second DevSound client called BufferToBeFilled and failed with error = %d"), aError);
6039 void RA3FDevSoundPlayARNTest::ClientPlayHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError)
6043 case EInvalidClientFSMEvent:
6044 ERR_PRINTF1(_L("Second devsound client received an invalid Event..."));
6046 case EInvalidClientFSMState:
6047 ERR_PRINTF1(_L("Second devsound client received an invalid State..."));
6049 case EReadFileErrorInClient:
6050 ERR_PRINTF1(_L("Second devsound client could not read to file..."));
6055 StopTest(aError, EFail);
6058 void RA3FDevSoundPlayARNTest::ClientPlayErrorCallback(TInt aError, TBool aLastBuffer)
6060 INFO_PRINTF1(_L("========== Second Client DevSound PlayError() callback =========="));
6062 if (aError == KErrUnderflow && aLastBuffer)
6064 INFO_PRINTF1(_L("Second DevSound client called PlayError and completed normally"));
6065 iDevSoundState = EStateResumePlaying;
6070 ERR_PRINTF2(_L("Second DevSound PlayError failed with error = %d"), aError);
6071 ERR_PRINTF2(_L("Expected error = %d "), KErrUnderflow);
6072 StopTest(aError, EFail);
6077 *========================================================================================================
6078 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0040
6080 RA3FDevSoundImmediatePauseAfterCreation::RA3FDevSoundImmediatePauseAfterCreation(const TDesC& aTestName) :
6081 RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC)
6085 RA3FDevSoundImmediatePauseAfterCreation* RA3FDevSoundImmediatePauseAfterCreation::NewL(const TDesC& aTestName)
6087 RA3FDevSoundImmediatePauseAfterCreation* self = new (ELeave) RA3FDevSoundImmediatePauseAfterCreation(aTestName);
6091 void RA3FDevSoundImmediatePauseAfterCreation::DoKickoffTestL()
6093 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
6096 void RA3FDevSoundImmediatePauseAfterCreation::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
6098 switch (iDevSoundState)
6102 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundImmediatePauseAfterCreation"), EFsmIncorrectErrorPassed));
6103 if (aDevSoundEvent == EEventInitialize)
6105 INFO_PRINTF1(_L("Calling CMMFDevSound::Pause"));
6107 iMMFDevSound->Pause();
6108 StartTimer(KMicroSecsInOneSec);
6110 iDevSoundState = EStatePause;
6114 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
6115 StopTest(aError, EFail);
6122 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
6123 StopTest(aError, EFail);
6128 void RA3FDevSoundImmediatePauseAfterCreation::DoTimerCallback()
6130 INFO_PRINTF1(_L("TimerEvent called"));
6132 INFO_PRINTF1(_L("Pause did not panic DevSound"));
6138 *========================================================================================================
6139 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0041
6141 RA3FDevSoundPlayEmptyBuffersWhilePlayingTest::RA3FDevSoundPlayEmptyBuffersWhilePlayingTest(const TDesC& aTestName) :
6142 RA3FDevSoundTestBase(aTestName), iVolume(0),
6143 iFilename(KNullDesC)
6147 RA3FDevSoundPlayEmptyBuffersWhilePlayingTest* RA3FDevSoundPlayEmptyBuffersWhilePlayingTest::NewL(const TDesC& aTestName)
6149 RA3FDevSoundPlayEmptyBuffersWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayEmptyBuffersWhilePlayingTest(aTestName);
6153 void RA3FDevSoundPlayEmptyBuffersWhilePlayingTest::DoKickoffTestL()
6156 // Get the filename of the audio file to play
6157 if (!GetStringFromConfig(iTestStepName, KFilename, filename))
6159 ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
6160 StopTest (KErrNotFound);
6163 // open using RFile for playback
6164 iFilename.Copy (filename);
6165 TInt err = iFile.Open (iFs, iFilename, EFileRead);
6166 if (err != KErrNone)
6168 ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
6174 INFO_PRINTF2(_L("File under test -> %S"), &iFilename);
6176 if (!GetIntFromConfig(iTestStepName, KVolume, iVolume))
6178 ERR_PRINTF2(KMsgErrorGetParameter, &KVolume);
6179 StopTest (KErrNotFound);
6183 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
6185 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
6186 StopTest(KErrNotFound);
6189 EncodingFromStringToTFourCC(fourccCode);
6192 void RA3FDevSoundPlayEmptyBuffersWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
6194 switch (iDevSoundState)
6198 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumePlayingTest"), EFsmIncorrectErrorPassed));
6199 if (aDevSoundEvent == EEventInitialize)
6201 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
6202 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
6203 if (err != KErrNone)
6205 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error: %d"), err);
6209 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
6210 iDevSoundState = EStateInitializing;
6214 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
6215 StopTest(aError, EFail);
6219 case EStateInitializing:
6221 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
6223 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
6224 TRAPD(err, iMMFDevSound->PlayInitL());
6225 if (err != KErrNone)
6230 iDevSoundState = EStatePlaying;
6232 else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
6234 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
6239 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
6240 StopTest(aError, EFail);
6246 if (aDevSoundEvent == EEventBTBF)
6251 INFO_PRINTF2(_L("BTBF count = %d, Calling CMMFDevSound::EmptyBuffers"),iBtbfCount);
6252 iMMFDevSound->EmptyBuffers();
6257 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
6258 TInt err = iFile.Read (buffer->Data ());
6259 if (err != KErrNone)
6261 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with: %d"), err);
6265 if (buffer->Data().Length ()!= buffer->RequestSize ())
6267 iBuffer->SetLastBuffer (ETrue);
6269 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
6270 iMMFDevSound->PlayData ();
6277 ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
6278 StopTest(aError, EFail);
6284 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
6285 StopTest(aError, EFail);
6291 *========================================================================================================
6292 * 3F-DEVSOUND-CHRTZ-PLAY-RAW-0042
6294 RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest(const TDesC& aTestName) :
6295 RA3FDevSoundTestBase(aTestName),iFilename(KNullDesC),
6296 iExVolume(0), iFrequencyTone1(0), iDuration(0),
6297 iSetVolume(EFalse), iResume(EFalse)
6301 RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest* RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::NewL(const TDesC& aTestName)
6303 RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest* self = new (ELeave) RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest(aTestName);
6307 void RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::DoKickoffTestL()
6310 // Get the filename of the audio file to play
6311 if (!GetStringFromConfig(iTestStepName, KFilename, filename))
6313 ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
6314 StopTest(KErrNotFound);
6317 // open using RFile for playback
6318 iFilename.Copy(filename);
6319 TInt err = iFile.Open(iFs, iFilename, EFileRead);
6320 if (err != KErrNone)
6322 ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
6327 INFO_PRINTF2(_L("File under test -> %S"), &iFilename);
6329 if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
6331 ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
6332 StopTest(KErrNotFound);
6335 if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
6337 ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
6338 StopTest(KErrNotFound);
6342 if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
6344 ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
6345 StopTest(KErrNotFound);
6349 if (!GetIntFromConfig(iTestStepName, KExVolume, iExVolume))
6351 ERR_PRINTF2(KMsgErrorGetParameter, &KExVolume);
6352 StopTest(KErrNotFound);
6356 EncodingFromStringToTFourCC(fourccCode);
6357 iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
6358 iDevsoundToneClient = CA3FDevSoundToneClient::NewL(*this);
6361 void RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
6363 switch (iDevSoundState)
6367 __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPreemptedByToneTest"), EFsmIncorrectErrorPassed));
6368 if (aDevSoundEvent == EEventInitialize)
6370 INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
6371 TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
6372 if (err != KErrNone)
6374 ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
6378 INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
6379 iDevSoundState = EStateInitializing;
6383 ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
6384 StopTest(aError, EFail);
6388 case EStateInitializing:
6390 if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
6392 TMMFPrioritySettings priority;
6393 priority.iPriority = KMinimumPriority;
6394 INFO_PRINTF2(_L("Setting Priority to %d using CMMFDevSound::SetPrioritySettings"), priority.iPriority);
6395 iMMFDevSound->SetPrioritySettings (priority);
6396 iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ());
6397 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
6398 TRAPD(err, iMMFDevSound->PlayInitL());
6399 if (err != KErrNone)
6404 INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
6405 iDevSoundState = EStatePlaying;
6406 StartTimer (KMicroSecsTwoSec);
6408 else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone)
6410 ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
6415 ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
6416 StopTest(aError, EFail);
6422 if (aDevSoundEvent == EEventBTBF)
6426 INFO_PRINTF1(_L("First Client resumed after pre-emption as expected"));
6433 iMMFDevSound->SetVolume (iExVolume);
6437 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
6438 TInt err = iFile.Read (buffer->Data());
6439 if (err != KErrNone)
6441 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
6445 if (buffer->Data().Length ()!= buffer->RequestSize())
6447 iBuffer->SetLastBuffer(ETrue);
6449 INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
6450 iMMFDevSound->PlayData();
6454 ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
6455 StopTest(aError, EFail);
6461 ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
6462 StopTest(aError, EFail);
6467 void RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::DoTimerCallback()
6469 INFO_PRINTF1(_L("TimerEvent called"));
6471 INFO_PRINTF1(_L("Starting higher priority devsound client"));
6472 iDevsoundToneClient->SetPriority(KMaximumPriority);
6473 INFO_PRINTF1(_L("Initializing to play tones thru second devsound client"));
6474 TInt err = iDevsoundToneClient->InitTonePlay(iFrequencyTone1,iDuration*KMicroSecsInOneSec);
6475 if (err != KErrNone)
6477 ERR_PRINTF2(_L("Initializating DevSoud to play tones thru second devsound client failed with error = %d"), err);
6482 void RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::PlayError(TInt aError)
6484 INFO_PRINTF1(_L("========== DevSound PlayError() callback =========="));
6485 if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied)
6487 INFO_PRINTF1(_L("========== Preempting 1st DevSound Instance=========="));
6488 INFO_PRINTF2(_L("First DevSound client PlayError succeeded with error = %d "), aError);
6492 ERR_PRINTF2(_L("First DevSound client called PlayError and failed with error = %d "), aError);
6493 ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied);
6494 StopTest(aError, EFail);
6498 void RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::ClientInitializeCompleteCallback(TInt aError)
6500 INFO_PRINTF1(_L("==========Second DevSound client called InitializeComplete()=========="));
6501 if (aError == KErrNone)
6503 INFO_PRINTF1(_L("Starting to play tone thru second devsound client"));
6504 TInt err = iDevsoundToneClient->PlayTone ();
6505 if (err != KErrNone)
6507 ERR_PRINTF2(_L("Second Devsound client called PlayTone and failed with error = %d"), err);
6513 ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError);
6518 void RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::ClientToneFinishedCallback(TInt aError)
6520 INFO_PRINTF1(_L("========== Second DevSound client called ToneFinished()=========="));
6521 if (aError == KErrUnderflow)
6523 INFO_PRINTF2(_L("Second DevSound client called ToneFinished and succeeded with error = %d"), aError);
6524 iDevSoundState = EStatePlaying;
6526 TRAPD(err, iMMFDevSound->PlayInitL());
6529 ERR_PRINTF2(_L("Call PlayInitL failed after Second DevSound client called ToneFinished with error = %d"), err);
6535 ERR_PRINTF2(_L("Second DevSound client called ToneFinished and failed with error = %d"), aError);