1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/devsound/a3fintegrationtest/src/tsi_a3f_devsound_tone.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,1287 @@
1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Implementation of Integraton test step classes for A3F DevSound Tone test cases.
1.18 +//
1.19 +//
1.20 +
1.21 +#include "tsi_a3f_devsound_tone.h"
1.22 +
1.23 +/*
1.24 + *
1.25 + * RTestStepA3FDevSoundToneBase - Test step constructor
1.26 + *
1.27 + */
1.28 +RTestStepA3FDevSoundToneBase::RTestStepA3FDevSoundToneBase(const TDesC& aTestName, const TDesC& aSectName)
1.29 +:RAsyncTestStep(),
1.30 + iMMFDevSound(NULL),
1.31 + iSectName(aSectName),
1.32 + iTimer(NULL),
1.33 + iCallBack(NULL, NULL),
1.34 + iState(EStateToneStart)
1.35 + {
1.36 + // From RTestStep
1.37 + iTestStepName = aTestName; // store the name of the test case
1.38 +
1.39 + }
1.40 +
1.41 +/*
1.42 + *
1.43 + * RTestStepA3FDevSoundToneBase - Test step constructor
1.44 + *
1.45 + */
1.46 +RTestStepA3FDevSoundToneBase::RTestStepA3FDevSoundToneBase(const TDesC& aTestName)
1.47 +:RAsyncTestStep(),
1.48 + iMMFDevSound(NULL),
1.49 + iSectName(KNullDesC),
1.50 + iTimer(NULL),
1.51 + iCallBack(NULL, NULL),
1.52 + iState(EStateToneStart)
1.53 + {
1.54 + // From RTestStep
1.55 + iTestStepName = aTestName; // store the name of the test case
1.56 +
1.57 + }
1.58 +
1.59 +/*
1.60 + *
1.61 + * KickoffTestL
1.62 + * - Starts the test
1.63 + *
1.64 + */
1.65 +void RTestStepA3FDevSoundToneBase::KickoffTestL()
1.66 + {
1.67 + // Create instance of CMMFDevSound
1.68 + INFO_PRINTF1(_L("--- Creating DevSound object..."));
1.69 + iMMFDevSound = CMMFDevSound::NewL();
1.70 +
1.71 + iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
1.72 +
1.73 + DoKickoffTestL();
1.74 +
1.75 + Fsm(EEventToneStart,KErrNone); // call to start the DevSound finite state machine for tone playing
1.76 +
1.77 + }
1.78 +
1.79 +/*
1.80 + *
1.81 + * CloseTest
1.82 + *
1.83 + */
1.84 +void RTestStepA3FDevSoundToneBase::CloseTest()
1.85 + {
1.86 + if (iMMFDevSound)
1.87 + {
1.88 + INFO_PRINTF1(_L("--- Deleting DevSound object..."));
1.89 + delete iMMFDevSound;
1.90 + iMMFDevSound = NULL;
1.91 + }
1.92 +
1.93 + if (iTimer)
1.94 + {
1.95 + delete iTimer;
1.96 + iTimer = NULL;
1.97 + }
1.98 +
1.99 + }
1.100 +
1.101 +/*
1.102 + *
1.103 + * InitializeComplete
1.104 + *
1.105 + */
1.106 +void RTestStepA3FDevSoundToneBase::InitializeComplete(TInt aError)
1.107 + {
1.108 + Fsm(EEventInitCompleteTone,aError);
1.109 +
1.110 + }
1.111 +
1.112 +/*
1.113 + *
1.114 + * ToneFinished
1.115 + *
1.116 + */
1.117 +void RTestStepA3FDevSoundToneBase::ToneFinished(TInt aError)
1.118 + {
1.119 + if ((aError == KErrUnderflow))
1.120 + {
1.121 + INFO_PRINTF2(_L("DevSound called ToneFinished with error = %d as expected"), aError);
1.122 + StopTest(aError,EPass);
1.123 + }
1.124 + else
1.125 + {
1.126 + INFO_PRINTF2(_L("DevSound called ToneFinished with error = %d that was NOT expected"), aError);
1.127 + StopTest(aError);
1.128 + }
1.129 +
1.130 + }
1.131 +
1.132 +/*
1.133 + *
1.134 + * BufferToBeFilled
1.135 + *
1.136 + */
1.137 +void RTestStepA3FDevSoundToneBase::BufferToBeFilled(CMMFBuffer* /*aBuffer*/)
1.138 + {
1.139 + __ASSERT_ALWAYS(0,Panic(_L("RTestStepA3FDevSoundToneBase"),EInvalidCallbackCall));
1.140 +
1.141 + }
1.142 +
1.143 +/*
1.144 + *
1.145 + * PlayError
1.146 + *
1.147 + */
1.148 +void RTestStepA3FDevSoundToneBase::PlayError(TInt /*aError*/)
1.149 + {
1.150 + __ASSERT_ALWAYS(0,Panic(_L("RTestStepA3FDevSoundToneBase"),EInvalidCallbackCall));
1.151 +
1.152 + }
1.153 +
1.154 +/*
1.155 + *
1.156 + * RecordError
1.157 + *
1.158 + */
1.159 +
1.160 +void RTestStepA3FDevSoundToneBase::RecordError(TInt /*aError*/)
1.161 + {
1.162 + __ASSERT_ALWAYS(0,Panic(_L("RTestStepA3FDevSoundToneBase"),EInvalidCallbackCall));
1.163 +
1.164 + }
1.165 +/*
1.166 + *
1.167 + * BufferToBeEmptied
1.168 + *
1.169 + */
1.170 +
1.171 +void RTestStepA3FDevSoundToneBase::BufferToBeEmptied(CMMFBuffer* /*aBuffer*/)
1.172 + {
1.173 + __ASSERT_ALWAYS(0,Panic(_L("RTestStepA3FDevSoundToneBase"),EInvalidCallbackCall));
1.174 +
1.175 + }
1.176 +
1.177 +/*
1.178 + *
1.179 + * ConvertError
1.180 + *
1.181 + */
1.182 +void RTestStepA3FDevSoundToneBase::ConvertError(TInt /*aError*/)
1.183 + {
1.184 + __ASSERT_ALWAYS(0,Panic(_L("RTestStepA3FDevSoundToneBase"),EInvalidCallbackCall));
1.185 +
1.186 + }
1.187 +
1.188 +/*
1.189 + *
1.190 + * DeviceMessage
1.191 + *
1.192 + */
1.193 +void RTestStepA3FDevSoundToneBase::DeviceMessage(TUid /*aMessageType*/, const TDesC8& /*aMsg*/)
1.194 + {
1.195 + __ASSERT_ALWAYS(0,Panic(_L("RTestStepA3FDevSoundToneBase"),EInvalidCallbackCall));
1.196 +
1.197 + }
1.198 +
1.199 +/*
1.200 + *
1.201 + * TimerCallback
1.202 + *
1.203 + */
1.204 +TInt RTestStepA3FDevSoundToneBase::TimerCallback(TAny* aPtr)
1.205 + {
1.206 + static_cast<RTestStepA3FDevSoundToneBase*>(aPtr)->DoTimerCallback();
1.207 + return KErrNone;
1.208 +
1.209 + }
1.210 +
1.211 +/*
1.212 + *
1.213 + * DoTimerCallback
1.214 + *
1.215 + */
1.216 +void RTestStepA3FDevSoundToneBase::DoTimerCallback()
1.217 + {
1.218 + // The derived classes may provide the implementation if needed
1.219 + }
1.220 +
1.221 +/*
1.222 + *
1.223 + * ConvertDesToTMMFSampleRate
1.224 + *
1.225 + */
1.226 +TUint RTestStepA3FDevSoundToneBase::ConvertDesToTMMFSampleRate(const TDesC& aSampleRateString)
1.227 + {
1.228 + TUint rate = 0;
1.229 +
1.230 + STR_SWITCH(aSampleRateString)
1.231 +
1.232 + STR_CASE(_L("EMMFSampleRate8000Hz"))
1.233 + {
1.234 + rate = EMMFSampleRate8000Hz;
1.235 + break;
1.236 + }
1.237 + STR_CASE(_L("EMMFSampleRate11025Hz"))
1.238 + {
1.239 + rate = EMMFSampleRate11025Hz;
1.240 + break;
1.241 + }
1.242 + STR_CASE(_L("EMMFSampleRate12000Hz"))
1.243 + {
1.244 + rate = EMMFSampleRate12000Hz;
1.245 + break;
1.246 + }
1.247 + STR_CASE(_L("EMMFSampleRate16000Hz"))
1.248 + {
1.249 + rate = EMMFSampleRate16000Hz;
1.250 + break;
1.251 + }
1.252 + STR_CASE(_L("EMMFSampleRate22050Hz"))
1.253 + {
1.254 + rate = EMMFSampleRate22050Hz;
1.255 + break;
1.256 + }
1.257 + STR_CASE(_L("EMMFSampleRate24000Hz"))
1.258 + {
1.259 + rate = EMMFSampleRate24000Hz;
1.260 + break;
1.261 + }
1.262 + STR_CASE(_L("EMMFSampleRate32000Hz"))
1.263 + {
1.264 + rate = EMMFSampleRate32000Hz;
1.265 + break;
1.266 + }
1.267 + STR_CASE(_L("EMMFSampleRate44100Hz"))
1.268 + {
1.269 + rate = EMMFSampleRate44100Hz;
1.270 + break;
1.271 + }
1.272 + STR_CASE(_L("EMMFSampleRate48000Hz"))
1.273 + {
1.274 + rate = EMMFSampleRate48000Hz;
1.275 + break;
1.276 + }
1.277 + STR_CASE(_L("EMMFSampleRate64000Hz"))
1.278 + {
1.279 + rate = EMMFSampleRate64000Hz;
1.280 + break;
1.281 + }
1.282 + STR_CASE(_L("EMMFSampleRate88200Hz"))
1.283 + {
1.284 + rate = EMMFSampleRate88200Hz;
1.285 + break;
1.286 + }
1.287 + STR_CASE(_L("EMMFSampleRate96000Hz"))
1.288 + {
1.289 + rate = EMMFSampleRate96000Hz;
1.290 + break;
1.291 + }
1.292 + STR_CASE(_L("InvalidRate"))
1.293 + {
1.294 + rate = 0x90000000;
1.295 + break;
1.296 + }
1.297 +
1.298 + DEFAULT_CASE()
1.299 + {
1.300 + ERR_PRINTF1(_L("Attempt to convert invalid sample rate"));
1.301 + StopTest(KErrGeneral);
1.302 + }
1.303 +
1.304 + STR_SWITCH_END()
1.305 +
1.306 + INFO_PRINTF2(_L("Sample Rate = %S"), &aSampleRateString);
1.307 + return rate;
1.308 +
1.309 + }
1.310 +
1.311 +//
1.312 +// RStepA3FDevSoundDTMFTonePlay
1.313 +//
1.314 +
1.315 +/*
1.316 + *
1.317 + * RStepA3FDevSoundDTMFTonePlay - Test step constructor
1.318 + *
1.319 + */
1.320 +RStepA3FDevSoundDTMFTonePlay::RStepA3FDevSoundDTMFTonePlay(const TDesC& aTestName)
1.321 +:RTestStepA3FDevSoundToneBase(aTestName)
1.322 + {
1.323 + }
1.324 +
1.325 +/*
1.326 + *
1.327 + * NewL
1.328 + *
1.329 + */
1.330 +RStepA3FDevSoundDTMFTonePlay* RStepA3FDevSoundDTMFTonePlay::NewL(const TDesC& aTestName)
1.331 + {
1.332 + RStepA3FDevSoundDTMFTonePlay* self = new (ELeave) RStepA3FDevSoundDTMFTonePlay(aTestName);
1.333 + return self;
1.334 +
1.335 + }
1.336 +
1.337 +/*
1.338 + *
1.339 + * DoKickoffTestL
1.340 + *
1.341 + */
1.342 +void RStepA3FDevSoundDTMFTonePlay::DoKickoffTestL()
1.343 + {
1.344 + }
1.345 +
1.346 +/*
1.347 + *
1.348 + * Fsm
1.349 + * - Executes DTMF tone playing events of DevSound in sequence
1.350 + *
1.351 + */
1.352 +void RStepA3FDevSoundDTMFTonePlay::Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError)
1.353 + {
1.354 + switch (iState)
1.355 + {
1.356 + case EStateToneStart:
1.357 + {
1.358 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundDTMFTonePlay"),EFsmIncorrectErrorPassed));
1.359 + if (aDevSoundEvent == EEventToneStart)
1.360 + {
1.361 + // Initializing DevSound object for tone play
1.362 + INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1.363 + TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
1.364 + if (err != KErrNone)
1.365 + {
1.366 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1.367 + StopTest(err);
1.368 + break;
1.369 + }
1.370 + INFO_PRINTF1(_L("State: EStateToneInitializing"));
1.371 + iState = EStateToneInitializing;
1.372 + }
1.373 + else
1.374 + {
1.375 + ERR_PRINTF2(_L("DevSound EEventToneStart not received as expected. Received event: %d"), aDevSoundEvent);
1.376 + StopTest(aError, EFail);
1.377 + }
1.378 +
1.379 + break;
1.380 +
1.381 + }
1.382 +
1.383 + case EStateToneInitializing:
1.384 + {
1.385 + if (aDevSoundEvent == EEventInitCompleteTone && aError == KErrNone)
1.386 + {
1.387 + TPtrC dtmfString = (_L("0123456789,abcdef,*#"));
1.388 + TTimeIntervalMicroSeconds32 on(KMicroSecsInOneSec), off(KMicroSecsInOneSec), pause(0);
1.389 + // Define the duration of tone on, tone off and tone pause to be used during the DTMF tone playback operation
1.390 + INFO_PRINTF1(_L("Calling CMMFDevSound::SetDTMFLengths"));
1.391 + iMMFDevSound->SetDTMFLengths(on,off,pause);
1.392 + // Initialize the audio device and start playing the DTMF string
1.393 + INFO_PRINTF1(_L("Calling CMMFDevSound::PlayDTMFStringL"));
1.394 + TRAPD(err, iMMFDevSound->PlayDTMFStringL(dtmfString));
1.395 + if (err != KErrNone)
1.396 + {
1.397 + ERR_PRINTF2(_L("CMMFDevSound::PlayDTMFStringL left with error = %d"), err);
1.398 + StopTest(err);
1.399 + break;
1.400 + }
1.401 + INFO_PRINTF1(_L("State: EStateTonePlaying"));
1.402 + iState = EStateTonePlaying;
1.403 +
1.404 + }
1.405 + else if (aDevSoundEvent == EEventInitCompleteTone && aError != KErrNone)
1.406 + {
1.407 + ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
1.408 + StopTest(aError);
1.409 + }
1.410 + else
1.411 + {
1.412 + ERR_PRINTF2(_L("DevSound EEventInitCompleteTone not received as expected. Received event: %d"), aDevSoundEvent);
1.413 + StopTest(aError, EFail);
1.414 + }
1.415 +
1.416 + break;
1.417 +
1.418 + }
1.419 +
1.420 + default:
1.421 + {
1.422 + ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iState);
1.423 + StopTest(KErrGeneral);
1.424 + }
1.425 + }
1.426 +
1.427 + }
1.428 +
1.429 +//
1.430 +// RStepA3FDevSoundNormalAndDualTonePlay
1.431 +//
1.432 +
1.433 +/*
1.434 + *
1.435 + * RStepA3FDevSoundNormalAndDualTonePlay - Test step constructor
1.436 + *
1.437 + */
1.438 +RStepA3FDevSoundNormalAndDualTonePlay::RStepA3FDevSoundNormalAndDualTonePlay(const TDesC& aTestName, const TDesC& aSectName)
1.439 +:RTestStepA3FDevSoundToneBase(aTestName, aSectName),
1.440 + iRepeat(0),
1.441 + iDualTone(EFalse)
1.442 + {
1.443 + }
1.444 +
1.445 +/*
1.446 + *
1.447 + * NewL
1.448 + *
1.449 + */
1.450 +RStepA3FDevSoundNormalAndDualTonePlay* RStepA3FDevSoundNormalAndDualTonePlay::NewL(const TDesC& aTestName, const TDesC& aSectName)
1.451 + {
1.452 + RStepA3FDevSoundNormalAndDualTonePlay* self = new (ELeave) RStepA3FDevSoundNormalAndDualTonePlay(aTestName, aSectName);
1.453 + return self;
1.454 +
1.455 + }
1.456 +
1.457 +/*
1.458 + *
1.459 + * DoKickoffTestL
1.460 + *
1.461 + */
1.462 +void RStepA3FDevSoundNormalAndDualTonePlay::DoKickoffTestL()
1.463 + {
1.464 + //Getting the number of times the audio is to be repeated during the tone playback operation
1.465 + if (GetIntFromConfig(iSectName,_L("Repeat"),iRepeat))
1.466 + {
1.467 + INFO_PRINTF2(_L("Repeat count taken from config file: %d"),iRepeat);
1.468 + }
1.469 + else
1.470 + {
1.471 + INFO_PRINTF2(_L("Default repeat count used: %d"), iRepeat);
1.472 + }
1.473 +
1.474 + // Getting the boolean flag value indicating whether dual tone playback should occur instead of the normal tone playback
1.475 + if (GetBoolFromConfig(iSectName,_L("DualTone"),iDualTone))
1.476 + {
1.477 + INFO_PRINTF2(_L("Boolean value indicating whether to use dual tone playback taken from config file: %d"),iDualTone);
1.478 + }
1.479 + else
1.480 + {
1.481 + INFO_PRINTF2(_L("Default boolean value indicating whether to use dual tone playback used: %d"), iDualTone);
1.482 + }
1.483 +
1.484 + }
1.485 +
1.486 +/*
1.487 + *
1.488 + * Fsm
1.489 + * - Executes either the normal or dual tone playing events of DevSound in sequence
1.490 + *
1.491 + */
1.492 +void RStepA3FDevSoundNormalAndDualTonePlay::Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError)
1.493 + {
1.494 + switch (iState)
1.495 + {
1.496 + case EStateToneStart:
1.497 + {
1.498 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundNormalAndDualTonePlay"),EFsmIncorrectErrorPassed));
1.499 + if (aDevSoundEvent == EEventToneStart)
1.500 + {
1.501 + // Initializing DevSound object for tone play
1.502 + INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1.503 + TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
1.504 + if (err != KErrNone)
1.505 + {
1.506 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1.507 + StopTest(err);
1.508 + break;
1.509 + }
1.510 + INFO_PRINTF1(_L("State: EStateToneInitializing"));
1.511 + iState = EStateToneInitializing;
1.512 + }
1.513 + else
1.514 + {
1.515 + ERR_PRINTF2(_L("DevSound EEventToneStart not received as expected. Received event: %d"), aDevSoundEvent);
1.516 + StopTest(aError, EFail);
1.517 + }
1.518 +
1.519 + break;
1.520 +
1.521 + }
1.522 +
1.523 + case EStateToneInitializing:
1.524 + {
1.525 + if (aDevSoundEvent == EEventInitCompleteTone && aError == KErrNone)
1.526 + {
1.527 + TTimeIntervalMicroSeconds repeatTrailingSilence(KMicroSecsInOneSec), duration(KMicroSecsInOneSec);
1.528 + // Define the number of times the audio is to be repeated during the tone playback operation
1.529 + INFO_PRINTF1(_L("Calling CMMFDevSound::SetToneRepeats"));
1.530 + iMMFDevSound->SetToneRepeats(iRepeat, repeatTrailingSilence);
1.531 + if (iDualTone)
1.532 + {
1.533 + // Initialize audio device and start playing a dual tone
1.534 + INFO_PRINTF1(_L("Calling CMMFDevSound::PlayDualToneL"));
1.535 + TRAPD(err, iMMFDevSound->PlayDualToneL(KFrequency1, KFrequency2, duration));
1.536 + if (err != KErrNone)
1.537 + {
1.538 + ERR_PRINTF2(_L("CMMFDevSound::PlayDualToneL left with error = %d"), err);
1.539 + StopTest(err);
1.540 + break;
1.541 + }
1.542 + }
1.543 + else
1.544 + {
1.545 + // Initialize the audio device and start playing a tone
1.546 + INFO_PRINTF1(_L("Calling CMMFDevSound::PlayToneL"));
1.547 + TRAPD(err, iMMFDevSound->PlayToneL(KFrequency1, duration));
1.548 + if (err != KErrNone)
1.549 + {
1.550 + ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error = %d"), err);
1.551 + StopTest(err);
1.552 + break;
1.553 + }
1.554 + }
1.555 + INFO_PRINTF1(_L("State: EStateTonePlaying"));
1.556 + iState = EStateTonePlaying;
1.557 +
1.558 + }
1.559 + else if (aDevSoundEvent == EEventInitCompleteTone && aError != KErrNone)
1.560 + {
1.561 + ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
1.562 + StopTest(aError);
1.563 + }
1.564 + else
1.565 + {
1.566 + ERR_PRINTF2(_L("DevSound EEventInitCompleteTone not received as expected. Received event: %d"), aDevSoundEvent);
1.567 + StopTest(aError, EFail);
1.568 + }
1.569 +
1.570 + break;
1.571 +
1.572 + }
1.573 +
1.574 + default:
1.575 + {
1.576 + ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iState);
1.577 + StopTest(KErrGeneral);
1.578 + }
1.579 + }
1.580 +
1.581 + }
1.582 +
1.583 +//
1.584 +// RStepA3FDevSoundInitializeWhileTonePlaying
1.585 +//
1.586 +
1.587 +/*
1.588 + *
1.589 + * RStepA3FDevSoundInitializeWhileTonePlaying - Test step constructor
1.590 + *
1.591 + */
1.592 +RStepA3FDevSoundInitializeWhileTonePlaying::RStepA3FDevSoundInitializeWhileTonePlaying(const TDesC& aTestName)
1.593 +:RTestStepA3FDevSoundToneBase(aTestName)
1.594 + {
1.595 + }
1.596 +
1.597 +/*
1.598 + *
1.599 + * NewL
1.600 + *
1.601 + */
1.602 +RStepA3FDevSoundInitializeWhileTonePlaying* RStepA3FDevSoundInitializeWhileTonePlaying::NewL(const TDesC& aTestName)
1.603 + {
1.604 + RStepA3FDevSoundInitializeWhileTonePlaying* self = new (ELeave) RStepA3FDevSoundInitializeWhileTonePlaying(aTestName);
1.605 + return self;
1.606 +
1.607 + }
1.608 +
1.609 +/*
1.610 + *
1.611 + * DoKickoffTestL
1.612 + *
1.613 + */
1.614 +void RStepA3FDevSoundInitializeWhileTonePlaying::DoKickoffTestL()
1.615 + {
1.616 + }
1.617 +
1.618 +/*
1.619 + *
1.620 + * Fsm
1.621 + *
1.622 + */
1.623 +void RStepA3FDevSoundInitializeWhileTonePlaying::Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError)
1.624 + {
1.625 + switch (iState)
1.626 + {
1.627 + case EStateToneStart:
1.628 + {
1.629 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundInitializeWhileTonePlaying"),EFsmIncorrectErrorPassed));
1.630 + if (aDevSoundEvent == EEventToneStart)
1.631 + {
1.632 + // Initializing DevSound object for tone play
1.633 + INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1.634 + TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
1.635 + if (err != KErrNone)
1.636 + {
1.637 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1.638 + StopTest(err);
1.639 + break;
1.640 + }
1.641 + INFO_PRINTF1(_L("State: EStateToneInitializing"));
1.642 + iState = EStateToneInitializing;
1.643 + }
1.644 + else
1.645 + {
1.646 + ERR_PRINTF2(_L("DevSound EEventToneStart not received as expected. Received event: %d"), aDevSoundEvent);
1.647 + StopTest(aError, EFail);
1.648 + }
1.649 +
1.650 + break;
1.651 +
1.652 + }
1.653 +
1.654 + case EStateToneInitializing:
1.655 + {
1.656 + if (aDevSoundEvent == EEventInitCompleteTone && aError == KErrNone)
1.657 + {
1.658 + TTimeIntervalMicroSeconds duration(KMicroSecsInTenSecs);
1.659 + // Initialize the audio device and start playing a tone
1.660 + INFO_PRINTF1(_L("Calling CMMFDevSound::PlayToneL"));
1.661 + TRAPD(err, iMMFDevSound->PlayToneL(KFrequency1, duration));
1.662 + if (err != KErrNone)
1.663 + {
1.664 + ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error = %d"), err);
1.665 + StopTest(err);
1.666 + break;
1.667 + }
1.668 + INFO_PRINTF1(_L("State: EStateTonePlaying"));
1.669 + iState = EStateTonePlaying;
1.670 +
1.671 + // Calling CMMFDevSound::InitializeL again while tone playing!
1.672 + INFO_PRINTF1(_L("CMMFDevSound::InitializeL called again while tone playing!"));
1.673 + TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
1.674 + if (err == KErrNotReady)
1.675 + {
1.676 + INFO_PRINTF2(_L("CMMFDevSound::InitializeL left as expected with error = %d"), err);
1.677 + StopTest(err,EPass);
1.678 + }
1.679 + else
1.680 + {
1.681 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL did NOT leave with KErrNotReady as expected. Error = %d"), err);
1.682 + StopTest(KErrUnknown);
1.683 + }
1.684 + }
1.685 + else if (aDevSoundEvent == EEventInitCompleteTone && aError != KErrNone)
1.686 + {
1.687 + ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
1.688 + StopTest(aError);
1.689 + }
1.690 + else
1.691 + {
1.692 + ERR_PRINTF2(_L("DevSound EEventInitCompleteTone not received as expected. Received event: %d"), aDevSoundEvent);
1.693 + StopTest(aError, EFail);
1.694 + }
1.695 +
1.696 + break;
1.697 +
1.698 + }
1.699 +
1.700 + default:
1.701 + {
1.702 + ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iState);
1.703 + StopTest(KErrGeneral);
1.704 + }
1.705 + }
1.706 +
1.707 + }
1.708 +
1.709 +//
1.710 +// RStepA3FDevSoundNotSupportedPlayFixedSeq
1.711 +//
1.712 +
1.713 +/*
1.714 + *
1.715 + * RStepA3FDevSoundNotSupportedPlayFixedSeq - Test step constructor
1.716 + *
1.717 + */
1.718 +RStepA3FDevSoundNotSupportedPlayFixedSeq::RStepA3FDevSoundNotSupportedPlayFixedSeq(const TDesC& aTestName)
1.719 +:RTestStepA3FDevSoundToneBase(aTestName)
1.720 + {
1.721 + }
1.722 +
1.723 +/*
1.724 + *
1.725 + * NewL
1.726 + *
1.727 + */
1.728 +RStepA3FDevSoundNotSupportedPlayFixedSeq* RStepA3FDevSoundNotSupportedPlayFixedSeq::NewL(const TDesC& aTestName)
1.729 + {
1.730 + RStepA3FDevSoundNotSupportedPlayFixedSeq* self = new (ELeave) RStepA3FDevSoundNotSupportedPlayFixedSeq(aTestName);
1.731 + return self;
1.732 +
1.733 + }
1.734 +
1.735 +/*
1.736 + *
1.737 + * DoKickoffTestL
1.738 + *
1.739 + */
1.740 +void RStepA3FDevSoundNotSupportedPlayFixedSeq::DoKickoffTestL()
1.741 + {
1.742 + }
1.743 +
1.744 +/*
1.745 + *
1.746 + * Fsm
1.747 + *
1.748 + */
1.749 +void RStepA3FDevSoundNotSupportedPlayFixedSeq::Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError)
1.750 + {
1.751 + switch (iState)
1.752 + {
1.753 + case EStateToneStart:
1.754 + {
1.755 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundNotSupportedPlayFixedSeq"),EFsmIncorrectErrorPassed));
1.756 + if (aDevSoundEvent == EEventToneStart)
1.757 + {
1.758 + // Initializing DevSound object for tone play
1.759 + INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1.760 + TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
1.761 + if (err != KErrNone)
1.762 + {
1.763 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1.764 + StopTest(err);
1.765 + break;
1.766 + }
1.767 + INFO_PRINTF1(_L("State: EStateToneInitializing"));
1.768 + iState = EStateToneInitializing;
1.769 + }
1.770 + else
1.771 + {
1.772 + ERR_PRINTF2(_L("DevSound EEventToneStart not received as expected. Received event: %d"), aDevSoundEvent);
1.773 + StopTest(aError, EFail);
1.774 + }
1.775 +
1.776 + break;
1.777 +
1.778 + }
1.779 +
1.780 + case EStateToneInitializing:
1.781 + {
1.782 + if (aDevSoundEvent == EEventInitCompleteTone && aError == KErrNone)
1.783 + {
1.784 + TInt seqCount = iMMFDevSound->FixedSequenceCount();
1.785 + if (seqCount != 0)
1.786 + {
1.787 + ERR_PRINTF2(_L("CMMFDevSound::FixedSequenceCount() did not return 0 as always expected. It returned %d instead!"), seqCount);
1.788 + }
1.789 + else
1.790 + {
1.791 + INFO_PRINTF1(_L("CMMFDevSound::FixedSequenceCount() call returned 0 as always expected"));
1.792 + }
1.793 + // Initialize the audio device and start playing the specified pre-defined tone sequence.
1.794 + INFO_PRINTF1(_L("Calling the not supported CMMFDevSound::PlayFixedSequenceL"));
1.795 + TRAPD(err, iMMFDevSound->PlayFixedSequenceL(0));
1.796 + if (err == KErrNotSupported)
1.797 + {
1.798 + INFO_PRINTF2(_L("CMMFDevSound::PlayFixedSequenceL left as expected with error = %d"), err);
1.799 + StopTest(err,EPass);
1.800 + }
1.801 + else
1.802 + {
1.803 + ERR_PRINTF2(_L("CMMFDevSound::PlayFixedSequenceL did NOT leave with KErrNotSupported as expected. Error = %d"), err);
1.804 + StopTest(KErrUnknown);
1.805 + }
1.806 + }
1.807 + else if (aDevSoundEvent == EEventInitCompleteTone && aError != KErrNone)
1.808 + {
1.809 + ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
1.810 + StopTest(aError);
1.811 + }
1.812 + else
1.813 + {
1.814 + ERR_PRINTF2(_L("DevSound EEventInitCompleteTone not received as expected. Received event: %d"), aDevSoundEvent);
1.815 + StopTest(aError, EFail);
1.816 + }
1.817 +
1.818 + break;
1.819 +
1.820 + }
1.821 +
1.822 + default:
1.823 + {
1.824 + ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iState);
1.825 + StopTest(KErrGeneral);
1.826 + }
1.827 + }
1.828 +
1.829 + }
1.830 +
1.831 +//
1.832 +// RStepA3FDevSoundInvalidInitializeForTone
1.833 +//
1.834 +
1.835 +/*
1.836 + *
1.837 + * RStepA3FDevSoundInvalidInitializeForTone - Test step constructor
1.838 + *
1.839 + */
1.840 +RStepA3FDevSoundInvalidInitializeForTone::RStepA3FDevSoundInvalidInitializeForTone(const TDesC& aTestName)
1.841 +:RTestStepA3FDevSoundToneBase(aTestName)
1.842 + {
1.843 + }
1.844 +
1.845 +/*
1.846 + *
1.847 + * NewL
1.848 + *
1.849 + */
1.850 +RStepA3FDevSoundInvalidInitializeForTone* RStepA3FDevSoundInvalidInitializeForTone::NewL(const TDesC& aTestName)
1.851 + {
1.852 + RStepA3FDevSoundInvalidInitializeForTone* self = new (ELeave) RStepA3FDevSoundInvalidInitializeForTone(aTestName);
1.853 + return self;
1.854 +
1.855 + }
1.856 +
1.857 +/*
1.858 + *
1.859 + * DoKickoffTestL
1.860 + *
1.861 + */
1.862 +void RStepA3FDevSoundInvalidInitializeForTone::DoKickoffTestL()
1.863 + {
1.864 + }
1.865 +
1.866 +/*
1.867 + *
1.868 + * Fsm
1.869 + *
1.870 + */
1.871 +void RStepA3FDevSoundInvalidInitializeForTone::Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError)
1.872 + {
1.873 + switch (iState)
1.874 + {
1.875 + case EStateToneStart:
1.876 + {
1.877 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundInvalidInitializeForTone"),EFsmIncorrectErrorPassed));
1.878 + if (aDevSoundEvent == EEventToneStart)
1.879 + {
1.880 + TFourCC fourCCCodeMP3(KMMFFourCCCodeMP3);
1.881 + // Initializing DevSound object for tone play using invalid version of CMMFDevSound::InitializeL
1.882 + INFO_PRINTF1(_L("Calling invalid version of CMMFDevSound::InitializeL for tone play..."));
1.883 + TRAPD(err, iMMFDevSound->InitializeL(*this, fourCCCodeMP3, EMMFStateTonePlaying));
1.884 + if (err == KErrNotSupported)
1.885 + {
1.886 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL left as expected with error = %d"), err);
1.887 + StopTest(err,EPass);
1.888 + }
1.889 + else
1.890 + {
1.891 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL did NOT leave with KErrNotSupported as expected. Error = %d"), err);
1.892 + StopTest(KErrUnknown);
1.893 + }
1.894 + }
1.895 + else
1.896 + {
1.897 + ERR_PRINTF2(_L("DevSound EEventToneStart not received as expected. Received event: %d"), aDevSoundEvent);
1.898 + StopTest(aError, EFail);
1.899 + }
1.900 +
1.901 + break;
1.902 +
1.903 + }
1.904 +
1.905 + default:
1.906 + {
1.907 + ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iState);
1.908 + StopTest(KErrGeneral);
1.909 + }
1.910 + }
1.911 +
1.912 + }
1.913 +
1.914 +//
1.915 +// RStepA3FDevSoundCancelInitializeTone
1.916 +//
1.917 +
1.918 +/*
1.919 + *
1.920 + * RStepA3FDevSoundCancelInitializeTone - Test step constructor
1.921 + *
1.922 + */
1.923 +RStepA3FDevSoundCancelInitializeTone::RStepA3FDevSoundCancelInitializeTone(const TDesC& aTestName, const TDesC& aSectName)
1.924 +:RTestStepA3FDevSoundToneBase(aTestName, aSectName)
1.925 + {
1.926 + }
1.927 +
1.928 +/*
1.929 + *
1.930 + * NewL
1.931 + *
1.932 + */
1.933 +RStepA3FDevSoundCancelInitializeTone* RStepA3FDevSoundCancelInitializeTone::NewL(const TDesC& aTestName, const TDesC& aSectName)
1.934 + {
1.935 + RStepA3FDevSoundCancelInitializeTone* self = new (ELeave) RStepA3FDevSoundCancelInitializeTone(aTestName, aSectName);
1.936 + return self;
1.937 +
1.938 + }
1.939 +
1.940 +/*
1.941 + *
1.942 + * DoKickoffTestL
1.943 + *
1.944 + */
1.945 +void RStepA3FDevSoundCancelInitializeTone::DoKickoffTestL()
1.946 + {
1.947 + }
1.948 +
1.949 +/*
1.950 + *
1.951 + * InitializeComplete
1.952 + *
1.953 + */
1.954 +void RStepA3FDevSoundCancelInitializeTone::InitializeComplete(TInt aError)
1.955 + {
1.956 + INFO_PRINTF1(_L("InitializeComplete callback was received. This is not the expected behaviour"));
1.957 + INFO_PRINTF1(_L("InitializeL was not cancelled"));
1.958 + StopTest(aError, EFail);
1.959 + }
1.960 +
1.961 +/*
1.962 + *
1.963 + * DoTimerCallback
1.964 + *
1.965 + */
1.966 +void RStepA3FDevSoundCancelInitializeTone::DoTimerCallback()
1.967 + {
1.968 + iTimer->Cancel(); // only really wanted a one-shot
1.969 + INFO_PRINTF1(_L("InitializeComplete callback was not received. This is the expected behaviour"));
1.970 + INFO_PRINTF1(_L("Use SetConfigL to verify that DevSound has not been initialised"));
1.971 + TMMFCapabilities capabilities;
1.972 +
1.973 + if(!GetStringFromConfig(iSectName, _L("SampleRate"), iSampleRate))
1.974 + {
1.975 + TPtrC keyName(_L("SampleRate"));
1.976 + ERR_PRINTF3(_L("Error in getting sample rate from config file in %S section via the %S key field."), &iSectName, &keyName);
1.977 + StopTest(KErrPathNotFound);
1.978 + return;
1.979 + }
1.980 +
1.981 + capabilities.iRate = ConvertDesToTMMFSampleRate(iSampleRate);
1.982 + TRAPD(errConfig, iMMFDevSound->SetConfigL(capabilities));
1.983 + if(errConfig == KErrNotReady)
1.984 + {
1.985 + INFO_PRINTF2(_L("SetConfigL returned with %d as expected"), errConfig);
1.986 + INFO_PRINTF1(_L("InitializeL was cancelled successfully"));
1.987 + StopTest(KErrNone);
1.988 + }
1.989 + else if (errConfig == KErrNone)
1.990 + {
1.991 + INFO_PRINTF2(_L("SetConfigL returned with KErrNone %d"), errConfig);
1.992 + INFO_PRINTF1(_L("InitializeL was not cancelled successfully"));
1.993 + StopTest(errConfig, EFail);
1.994 + }
1.995 + else
1.996 + {
1.997 + INFO_PRINTF2(_L("SetConfigL returned with unexpected error %d"), errConfig);
1.998 + StopTest(errConfig, EFail);
1.999 + }
1.1000 + }
1.1001 +
1.1002 +/*
1.1003 + *
1.1004 + * Fsm
1.1005 + * - Executes Toneing events of DevSound in sequence
1.1006 + *
1.1007 + */
1.1008 +void RStepA3FDevSoundCancelInitializeTone::Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError)
1.1009 + {
1.1010 + switch (iState)
1.1011 + {
1.1012 + case EStateToneStart:
1.1013 + {
1.1014 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundCancelInitializeTone"),EFsmIncorrectErrorPassed));
1.1015 + if (aDevSoundEvent == EEventToneStart)
1.1016 + {
1.1017 + // Initializing DevSound object for TonePlaying mode
1.1018 + INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1.1019 + TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
1.1020 + if (err != KErrNone)
1.1021 + {
1.1022 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1.1023 + StopTest(err);
1.1024 + break;
1.1025 + }
1.1026 + else
1.1027 + {
1.1028 + INFO_PRINTF1(_L("State: EStateToneInitializing"));
1.1029 + iState = EStateToneInitializing;
1.1030 + INFO_PRINTF1(_L("Calling CMMFDevSound::CancelInitialize()"));
1.1031 + iMMFDevSound->CancelInitialize();
1.1032 + INFO_PRINTF1(_L("Start timer to wait for InitializeComplete"));
1.1033 + TCallBack callback (TimerCallback, this);
1.1034 + iTimer->Start(KMicroSecsInTenSecs, 0, callback);
1.1035 + }
1.1036 + }
1.1037 + else
1.1038 + {
1.1039 + ERR_PRINTF2(_L("DevSound EEventToneStart not received as expected. Received event: %d"), aDevSoundEvent);
1.1040 + StopTest(aError, EFail);
1.1041 + }
1.1042 + break;
1.1043 + }
1.1044 + default:
1.1045 + {
1.1046 + ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iState);
1.1047 + StopTest(KErrGeneral);
1.1048 + }
1.1049 + }
1.1050 +
1.1051 + }
1.1052 +
1.1053 +//
1.1054 +// RStepA3FDevSoundEmptyBuffersInitializedForTone
1.1055 +//
1.1056 +
1.1057 +/*
1.1058 + *
1.1059 + * RStepA3FDevSoundInitializeWhileTonePlaying - Test step constructor
1.1060 + *
1.1061 + */
1.1062 +RStepA3FDevSoundEmptyBuffersInitializedForTone::RStepA3FDevSoundEmptyBuffersInitializedForTone(const TDesC& aTestName, const TDesC& aSectName)
1.1063 +:RTestStepA3FDevSoundToneBase(aTestName, aSectName)
1.1064 + {
1.1065 + }
1.1066 +
1.1067 +/*
1.1068 + *
1.1069 + * NewL
1.1070 + *
1.1071 + */
1.1072 +RStepA3FDevSoundEmptyBuffersInitializedForTone* RStepA3FDevSoundEmptyBuffersInitializedForTone::NewL(const TDesC& aTestName, const TDesC& aSectName)
1.1073 + {
1.1074 + RStepA3FDevSoundEmptyBuffersInitializedForTone* self = new (ELeave) RStepA3FDevSoundEmptyBuffersInitializedForTone(aTestName, aSectName);
1.1075 + return self;
1.1076 +
1.1077 + }
1.1078 +
1.1079 +/*
1.1080 + *
1.1081 + * DoKickoffTestL
1.1082 + *
1.1083 + */
1.1084 +void RStepA3FDevSoundEmptyBuffersInitializedForTone::DoKickoffTestL()
1.1085 + {
1.1086 + }
1.1087 +
1.1088 +/*
1.1089 + *
1.1090 + * Fsm
1.1091 + *
1.1092 + */
1.1093 +void RStepA3FDevSoundEmptyBuffersInitializedForTone::Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError)
1.1094 + {
1.1095 + switch (iState)
1.1096 + {
1.1097 + case EStateToneStart:
1.1098 + {
1.1099 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundInitializeWhileTonePlaying"),EFsmIncorrectErrorPassed));
1.1100 + if (aDevSoundEvent == EEventToneStart)
1.1101 + {
1.1102 + // Initializing DevSound object for tone play
1.1103 + INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1.1104 + TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
1.1105 + if (err != KErrNone)
1.1106 + {
1.1107 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1.1108 + StopTest(err);
1.1109 + break;
1.1110 + }
1.1111 + INFO_PRINTF1(_L("State: EStateToneInitializing"));
1.1112 + iState = EStateToneInitializing;
1.1113 + }
1.1114 + else
1.1115 + {
1.1116 + ERR_PRINTF2(_L("DevSound EEventToneStart not received as expected. Received event: %d"), aDevSoundEvent);
1.1117 + StopTest(aError, EFail);
1.1118 + }
1.1119 +
1.1120 + break;
1.1121 +
1.1122 + }
1.1123 +
1.1124 + case EStateToneInitializing:
1.1125 + {
1.1126 + if (aDevSoundEvent == EEventInitCompleteTone && aError == KErrNone)
1.1127 + {
1.1128 + // Calling EmptyBuffers
1.1129 + INFO_PRINTF1(_L("Calling CMMFDevSound::EmptyBuffers()"));
1.1130 + TInt err;
1.1131 + err = iMMFDevSound->EmptyBuffers();
1.1132 + if (err == KErrNotSupported)
1.1133 + {
1.1134 + ERR_PRINTF2(_L("CMMFDevSound::EmptyBuffers() returned expected error = %d"), err);
1.1135 + StopTest();
1.1136 + }
1.1137 + else
1.1138 + {
1.1139 + ERR_PRINTF2(_L("CMMFDevSound::EmptyBuffers() did not return KErrNotSupported as expected. Returned with unexpected error = %d"), err);
1.1140 + StopTest(err);
1.1141 + }
1.1142 + }
1.1143 + else if (aDevSoundEvent == EEventInitCompleteTone && aError != KErrNone)
1.1144 + {
1.1145 + ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
1.1146 + StopTest(aError);
1.1147 + }
1.1148 + else
1.1149 + {
1.1150 + ERR_PRINTF2(_L("DevSound EEventInitCompleteTone not received as expected. Received event: %d"), aDevSoundEvent);
1.1151 + StopTest(aError, EFail);
1.1152 + }
1.1153 +
1.1154 + break;
1.1155 +
1.1156 + }
1.1157 +
1.1158 + default:
1.1159 + {
1.1160 + ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iState);
1.1161 + StopTest(KErrGeneral);
1.1162 + }
1.1163 + }
1.1164 + }
1.1165 +
1.1166 +//
1.1167 +// RStepA3FDevSoundEmptyBuffersWhileTonePlaying
1.1168 +//
1.1169 +
1.1170 +/*
1.1171 + *
1.1172 + * RStepA3FDevSoundEmptyBuffersWhileTonePlaying - Test step constructor
1.1173 + *
1.1174 + */
1.1175 +RStepA3FDevSoundEmptyBuffersWhileTonePlaying::RStepA3FDevSoundEmptyBuffersWhileTonePlaying(const TDesC& aTestName)
1.1176 +:RTestStepA3FDevSoundToneBase(aTestName)
1.1177 + {
1.1178 + }
1.1179 +
1.1180 +/*
1.1181 + *
1.1182 + * NewL
1.1183 + *
1.1184 + */
1.1185 +RStepA3FDevSoundEmptyBuffersWhileTonePlaying* RStepA3FDevSoundEmptyBuffersWhileTonePlaying::NewL(const TDesC& aTestName)
1.1186 + {
1.1187 + RStepA3FDevSoundEmptyBuffersWhileTonePlaying* self = new (ELeave) RStepA3FDevSoundEmptyBuffersWhileTonePlaying(aTestName);
1.1188 + return self;
1.1189 +
1.1190 + }
1.1191 +
1.1192 +/*
1.1193 + *
1.1194 + * DoKickoffTestL
1.1195 + *
1.1196 + */
1.1197 +void RStepA3FDevSoundEmptyBuffersWhileTonePlaying::DoKickoffTestL()
1.1198 + {
1.1199 + }
1.1200 +
1.1201 +/*
1.1202 + *
1.1203 + * Fsm
1.1204 + *
1.1205 + */
1.1206 +void RStepA3FDevSoundEmptyBuffersWhileTonePlaying::Fsm(TDevSoundToneEvents aDevSoundEvent, TInt aError)
1.1207 + {
1.1208 + switch (iState)
1.1209 + {
1.1210 + case EStateToneStart:
1.1211 + {
1.1212 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundEmptyBuffersWhileTonePlaying"),EFsmIncorrectErrorPassed));
1.1213 + if (aDevSoundEvent == EEventToneStart)
1.1214 + {
1.1215 + // Initializing DevSound object for tone play
1.1216 + INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1.1217 + TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
1.1218 + if (err != KErrNone)
1.1219 + {
1.1220 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1.1221 + StopTest(err);
1.1222 + break;
1.1223 + }
1.1224 + INFO_PRINTF1(_L("State: EStateToneInitializing"));
1.1225 + iState = EStateToneInitializing;
1.1226 + }
1.1227 + else
1.1228 + {
1.1229 + ERR_PRINTF2(_L("DevSound EEventToneStart not received as expected. Received event: %d"), aDevSoundEvent);
1.1230 + StopTest(aError, EFail);
1.1231 + }
1.1232 +
1.1233 + break;
1.1234 +
1.1235 + }
1.1236 +
1.1237 + case EStateToneInitializing:
1.1238 + {
1.1239 + if (aDevSoundEvent == EEventInitCompleteTone && aError == KErrNone)
1.1240 + {
1.1241 + TTimeIntervalMicroSeconds duration(KMicroSecsInTenSecs);
1.1242 + // Initialize the audio device and start playing a tone
1.1243 + INFO_PRINTF1(_L("Calling CMMFDevSound::PlayToneL"));
1.1244 + TRAPD(err, iMMFDevSound->PlayToneL(KFrequency1, duration));
1.1245 + if (err != KErrNone)
1.1246 + {
1.1247 + ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error = %d"), err);
1.1248 + StopTest(err);
1.1249 + break;
1.1250 + }
1.1251 + INFO_PRINTF1(_L("State: EStateTonePlaying"));
1.1252 + iState = EStateTonePlaying;
1.1253 +
1.1254 + // Calling CMMFDevSound::EmptyBuffers while tone playing
1.1255 + INFO_PRINTF1(_L("CMMFDevSound::EmptyBuffers called while tone playing"));
1.1256 + err = iMMFDevSound->EmptyBuffers();
1.1257 + if (err == KErrNotSupported)
1.1258 + {
1.1259 + INFO_PRINTF2(_L("CMMFDevSound::EmptyBuffers left as expected with error = %d"), err);
1.1260 + StopTest(err,EPass);
1.1261 + }
1.1262 + else
1.1263 + {
1.1264 + ERR_PRINTF2(_L("CMMFDevSound::EmptyBuffers did NOT leave with KErrNotSupported as expected. Error = %d"), err);
1.1265 + StopTest(KErrUnknown);
1.1266 + }
1.1267 + }
1.1268 + else if (aDevSoundEvent == EEventInitCompleteTone && aError != KErrNone)
1.1269 + {
1.1270 + ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
1.1271 + StopTest(aError);
1.1272 + }
1.1273 + else
1.1274 + {
1.1275 + ERR_PRINTF2(_L("DevSound EEventInitCompleteTone not received as expected. Received event: %d"), aDevSoundEvent);
1.1276 + StopTest(aError, EFail);
1.1277 + }
1.1278 +
1.1279 + break;
1.1280 +
1.1281 + }
1.1282 +
1.1283 + default:
1.1284 + {
1.1285 + ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iState);
1.1286 + StopTest(KErrGeneral);
1.1287 + }
1.1288 + }
1.1289 +
1.1290 + }