os/mm/devsound/a3fcharacterisationtest/src/char_a3f_devsound_playtest.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/devsound/a3fcharacterisationtest/src/char_a3f_devsound_playtest.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,6539 @@
     1.4 +// Copyright (c) 2008-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 +//
    1.18 +
    1.19 +// User includes
    1.20 +#include "char_a3f_devsound_playtest.h"
    1.21 +
    1.22 +/*
    1.23 + *========================================================================================================
    1.24 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0001
    1.25 + */
    1.26 +RA3FDevSoundPlaySetConfigTest::RA3FDevSoundPlaySetConfigTest(const TDesC& aTestName) :
    1.27 +	RA3FDevSoundTestBase(aTestName), iSampleRate(0),
    1.28 +	iChannels(0)
    1.29 +	{
    1.30 +	}
    1.31 +
    1.32 +RA3FDevSoundPlaySetConfigTest* RA3FDevSoundPlaySetConfigTest::NewL(const TDesC& aTestName)
    1.33 +	{
    1.34 +	RA3FDevSoundPlaySetConfigTest* self = new (ELeave) RA3FDevSoundPlaySetConfigTest(aTestName);
    1.35 +	return self;
    1.36 +	}
    1.37 +
    1.38 +void RA3FDevSoundPlaySetConfigTest::DoKickoffTestL()
    1.39 +	{
    1.40 +	if (!GetIntFromConfig(iTestStepName, KSampleRate, iSampleRate))
    1.41 +		{
    1.42 +		ERR_PRINTF2(KMsgErrorGetParameter, &KSampleRate);
    1.43 +		StopTest(KErrNotFound);
    1.44 +		return;
    1.45 +		}
    1.46 +	if (!GetIntFromConfig(iTestStepName, KChannel, iChannels))
    1.47 +		{
    1.48 +		ERR_PRINTF2(KMsgErrorGetParameter, &KChannel);
    1.49 +		StopTest(KErrNotFound);
    1.50 +		return;
    1.51 +		}
    1.52 +	TPtrC fourccCode;
    1.53 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
    1.54 +		{
    1.55 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
    1.56 +		StopTest(KErrNotFound);
    1.57 +		return;
    1.58 +		}
    1.59 +	EncodingFromStringToTFourCC(fourccCode);
    1.60 +	}
    1.61 +
    1.62 +void RA3FDevSoundPlaySetConfigTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
    1.63 +	{
    1.64 +	switch (iDevSoundState)
    1.65 +		{
    1.66 +		case EStateCreated:
    1.67 +			{
    1.68 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetConfigLTest"), EFsmIncorrectErrorPassed));
    1.69 +			if (aDevSoundEvent == EEventInitialize)
    1.70 +				{
    1.71 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
    1.72 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
    1.73 +				if (err != KErrNone)
    1.74 +					{
    1.75 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
    1.76 +					StopTest(err);
    1.77 +					break;
    1.78 +					}
    1.79 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
    1.80 +				iDevSoundState = EStateInitializing;
    1.81 +				}
    1.82 +			else
    1.83 +				{
    1.84 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
    1.85 +				StopTest(aError, EFail);
    1.86 +				}
    1.87 +			break;
    1.88 +			}
    1.89 +		case EStateInitializing:
    1.90 +			{
    1.91 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
    1.92 +				{
    1.93 +				TMMFCapabilities capabilitiesSet;
    1.94 +				TBuf<KMaxSampleRateStringLength> stringSampleRateSet;
    1.95 +				TBuf<KMaxChannelsStringLength> stringChannelsSet;
    1.96 +				SampleRateFromTIntToTMMFSampleRate (iSampleRate, iESampleRate);
    1.97 +				capabilitiesSet.iRate = iESampleRate;
    1.98 +				capabilitiesSet.iChannels = iChannels;
    1.99 +				SampleRateFromTUintToString (capabilitiesSet.iRate,	stringSampleRateSet);
   1.100 +				ChannelsFromTUintToString (capabilitiesSet.iChannels, stringChannelsSet);
   1.101 +				INFO_PRINTF3(_L("Settings for Sample rate an channel mode : %S %S"), &stringSampleRateSet, &stringChannelsSet);
   1.102 +				INFO_PRINTF1(_L("Calling CMMFDevSound::SetConfigL"));
   1.103 +				TRAPD(err, iMMFDevSound->SetConfigL(capabilitiesSet));
   1.104 +				if (err != KErrNone)
   1.105 +					{
   1.106 +					ERR_PRINTF2(_L("CMMFDevSound::SetConfigL left with error = %d"), err);
   1.107 +					StopTest(err);
   1.108 +					break;
   1.109 +					}
   1.110 +				TMMFCapabilities capabilitiesGet;
   1.111 +				TBuf<KMaxSampleRateStringLength> stringSampleRateGet;
   1.112 +				TBuf<KMaxChannelsStringLength> stringChannelsGet;
   1.113 +				capabilitiesGet=iMMFDevSound->Config ();
   1.114 +				SampleRateFromTUintToString (capabilitiesGet.iRate, stringSampleRateGet);
   1.115 +				ChannelsFromTUintToString (capabilitiesGet.iChannels, stringChannelsGet);
   1.116 +				if (capabilitiesGet.iRate != capabilitiesSet.iRate || capabilitiesGet.iChannels != capabilitiesSet.iChannels)
   1.117 +					{
   1.118 +					ERR_PRINTF3(_L("Retrieved sample rate and channel : %S %S"), &stringSampleRateGet, &stringChannelsGet);
   1.119 +					ERR_PRINTF3(_L("Expected %S %S"), &stringSampleRateSet, &stringChannelsSet);
   1.120 +					StopTest(aError, EFail);
   1.121 +					break;
   1.122 +					}
   1.123 +				INFO_PRINTF1(_L("========== Test Case Successfully Completed =========="));
   1.124 +				StopTest();
   1.125 +				}
   1.126 +			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
   1.127 +				{
   1.128 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error : %d"), aError);
   1.129 +				StopTest(aError);
   1.130 +				}
   1.131 +			else
   1.132 +				{
   1.133 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
   1.134 +				StopTest(aError, EFail);
   1.135 +				}
   1.136 +			break;
   1.137 +			}
   1.138 +		default:
   1.139 +			{
   1.140 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
   1.141 +			StopTest(aError, EFail);
   1.142 +			}
   1.143 +		}
   1.144 +	}
   1.145 +
   1.146 +/*
   1.147 + *========================================================================================================
   1.148 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0002
   1.149 + */
   1.150 +RA3FDevSoundPlaySetVolumeWhilePlayingTest::RA3FDevSoundPlaySetVolumeWhilePlayingTest(const TDesC& aTestName) :
   1.151 +	RA3FDevSoundTestBase(aTestName), iVolume(0),
   1.152 +	iFilename(KNullDesC)
   1.153 +	{
   1.154 +	}
   1.155 +
   1.156 +RA3FDevSoundPlaySetVolumeWhilePlayingTest* RA3FDevSoundPlaySetVolumeWhilePlayingTest::NewL(const TDesC& aTestName)
   1.157 +	{
   1.158 +	RA3FDevSoundPlaySetVolumeWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlaySetVolumeWhilePlayingTest(aTestName);
   1.159 +	return self;
   1.160 +	}
   1.161 +
   1.162 +void RA3FDevSoundPlaySetVolumeWhilePlayingTest::DoKickoffTestL()
   1.163 +	{
   1.164 +	TPtrC filename;
   1.165 +	// Get the filename of the audio file to play
   1.166 +	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
   1.167 +		{
   1.168 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
   1.169 +		StopTest (KErrNotFound);
   1.170 +		return;
   1.171 +		}
   1.172 +	// open using RFile for playback
   1.173 +	iFilename.Copy (filename);
   1.174 +	TInt err = iFile.Open (iFs, iFilename, EFileRead);
   1.175 +	if (err != KErrNone)
   1.176 +		{
   1.177 +		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
   1.178 +		iFs.Close();
   1.179 +		StopTest(err);
   1.180 +		return;
   1.181 +		}
   1.182 +
   1.183 +	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
   1.184 +
   1.185 +	if (!GetIntFromConfig(iTestStepName, KVolume, iVolume))
   1.186 +		{
   1.187 +		ERR_PRINTF2(KMsgErrorGetParameter, &KVolume);
   1.188 +		StopTest (KErrNotFound);
   1.189 +		return;
   1.190 +		}
   1.191 +	TPtrC fourccCode;
   1.192 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
   1.193 +		{
   1.194 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
   1.195 +		StopTest(KErrNotFound);
   1.196 +		return;
   1.197 +		}
   1.198 +	EncodingFromStringToTFourCC(fourccCode);
   1.199 +	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
   1.200 +	}
   1.201 +
   1.202 +void RA3FDevSoundPlaySetVolumeWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
   1.203 +	{
   1.204 +	switch (iDevSoundState)
   1.205 +		{
   1.206 +		case EStateCreated:
   1.207 +			{
   1.208 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumePlayingTest"), EFsmIncorrectErrorPassed));
   1.209 +			if (aDevSoundEvent == EEventInitialize)
   1.210 +				{
   1.211 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
   1.212 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
   1.213 +				if (err != KErrNone)
   1.214 +					{
   1.215 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error: %d"), err);
   1.216 +					StopTest(err);
   1.217 +					break;
   1.218 +					}
   1.219 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
   1.220 +				iDevSoundState = EStateInitializing;
   1.221 +				}
   1.222 +			else
   1.223 +				{
   1.224 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
   1.225 +				StopTest(aError, EFail);
   1.226 +				}
   1.227 +			break;
   1.228 +			}
   1.229 +		case EStateInitializing:
   1.230 +			{
   1.231 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
   1.232 +				{
   1.233 +				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
   1.234 +				TRAPD(err, iMMFDevSound->PlayInitL());
   1.235 +				if (err != KErrNone)
   1.236 +					{
   1.237 +					StopTest(err);
   1.238 +					break;
   1.239 +					}
   1.240 +				StartTimer(KMicroSecsTwoSec);
   1.241 +				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
   1.242 +				iDevSoundState = EStatePlaying;
   1.243 +				}
   1.244 +			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
   1.245 +				{
   1.246 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
   1.247 +				StopTest(aError);
   1.248 +				}
   1.249 +			else
   1.250 +				{
   1.251 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
   1.252 +				StopTest(aError, EFail);
   1.253 +				}
   1.254 +			break;
   1.255 +			}
   1.256 +		case EStatePlaying:
   1.257 +			{
   1.258 +			if (aDevSoundEvent == EEventBTBF)
   1.259 +				{
   1.260 +				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
   1.261 +				TInt err = iFile.Read (buffer->Data ());
   1.262 +				if (err != KErrNone)
   1.263 +					{
   1.264 +					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with: %d"), err);
   1.265 +					StopTest(err);
   1.266 +					break;
   1.267 +					}
   1.268 +				if (buffer->Data().Length ()!= buffer->RequestSize ())
   1.269 +					{
   1.270 +					iBuffer->SetLastBuffer (ETrue);
   1.271 +					}
   1.272 +				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
   1.273 +				iMMFDevSound->PlayData ();
   1.274 +				}
   1.275 +
   1.276 +			else if (aDevSoundEvent == EEventTimerComplete)
   1.277 +				{
   1.278 +				INFO_PRINTF1(_L("Calling CMMFDevSound::SetVolume"));
   1.279 +				iMMFDevSound->SetVolume(iVolume);
   1.280 +				TInt volumeGet;
   1.281 +				volumeGet=iMMFDevSound->Volume();
   1.282 +				if (volumeGet == iVolume)
   1.283 +					{
   1.284 +					INFO_PRINTF2(_L("CMMFDevSound::SetVolume during playback succeeded with %d"), volumeGet);
   1.285 +					}
   1.286 +				else
   1.287 +					{
   1.288 +					ERR_PRINTF2(_L("CMMFDevSound::SetVolume during playback failed with %d"), volumeGet);
   1.289 +					ERR_PRINTF2(_L("Expected value = %d"), iVolume);
   1.290 +					StopTest(aError, EFail);
   1.291 +					}
   1.292 +				}
   1.293 +			else
   1.294 +				{
   1.295 +				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
   1.296 +				StopTest(aError, EFail);
   1.297 +				}
   1.298 +			break;
   1.299 +			}
   1.300 +		default:
   1.301 +			{
   1.302 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
   1.303 +			StopTest(aError, EFail);
   1.304 +			}
   1.305 +		}
   1.306 +	}
   1.307 +
   1.308 +void RA3FDevSoundPlaySetVolumeWhilePlayingTest::DoTimerCallback()
   1.309 +	{
   1.310 +	INFO_PRINTF1(_L("TimerEvent called"));
   1.311 +	iTimer->Cancel();
   1.312 +	INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
   1.313 +	Fsm (EEventTimerComplete, KErrNone);
   1.314 +	}
   1.315 +
   1.316 +/*
   1.317 + *========================================================================================================
   1.318 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0003
   1.319 + */
   1.320 +RA3FDevSoundPlaySetVolumeTest::RA3FDevSoundPlaySetVolumeTest(const TDesC& aTestName) :
   1.321 +	RA3FDevSoundTestBase(aTestName), iVolume(0)
   1.322 +	{
   1.323 +	}
   1.324 +
   1.325 +RA3FDevSoundPlaySetVolumeTest* RA3FDevSoundPlaySetVolumeTest::NewL(const TDesC& aTestName)
   1.326 +	{
   1.327 +	RA3FDevSoundPlaySetVolumeTest* self = new (ELeave) RA3FDevSoundPlaySetVolumeTest(aTestName);
   1.328 +	return self;
   1.329 +	}
   1.330 +
   1.331 +void RA3FDevSoundPlaySetVolumeTest::DoKickoffTestL()
   1.332 +	{
   1.333 +	if (!GetIntFromConfig(iTestStepName, KVolume, iVolume))
   1.334 +		{
   1.335 +		ERR_PRINTF2(KMsgErrorGetParameter, &KVolume);
   1.336 +		StopTest(KErrNotFound);
   1.337 +		return;
   1.338 +		}
   1.339 +
   1.340 +	TPtrC fourccCode;
   1.341 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
   1.342 +		{
   1.343 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
   1.344 +		StopTest(KErrNotFound);
   1.345 +		return;
   1.346 +		}
   1.347 +	EncodingFromStringToTFourCC(fourccCode);
   1.348 +	}
   1.349 +
   1.350 +void RA3FDevSoundPlaySetVolumeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
   1.351 +	{
   1.352 +	switch (iDevSoundState)
   1.353 +		{
   1.354 +		case EStateCreated:
   1.355 +			{
   1.356 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumeTest"), EFsmIncorrectErrorPassed));
   1.357 +			if (aDevSoundEvent == EEventInitialize)
   1.358 +				{
   1.359 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
   1.360 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
   1.361 +				if (err != KErrNone)
   1.362 +					{
   1.363 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
   1.364 +					StopTest(err);
   1.365 +					break;
   1.366 +					}
   1.367 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
   1.368 +				iDevSoundState = EStateInitializing;
   1.369 +				}
   1.370 +			else
   1.371 +				{
   1.372 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
   1.373 +				StopTest(aError, EFail);
   1.374 +				}
   1.375 +			break;
   1.376 +			}
   1.377 +		case EStateInitializing:
   1.378 +			{
   1.379 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
   1.380 +				{
   1.381 +				INFO_PRINTF1(_L("Calling CMMFDevSound::SetVolume"));
   1.382 +				iMMFDevSound->SetVolume(iVolume);
   1.383 +				TInt volumeGet;
   1.384 +				volumeGet = iMMFDevSound->Volume();
   1.385 +				if (volumeGet == iVolume)
   1.386 +					{
   1.387 +					INFO_PRINTF2(_L("CMMFDevSound::SetVolume succeeded with %d"), volumeGet);
   1.388 +					StopTest();
   1.389 +					}
   1.390 +				else
   1.391 +					{
   1.392 +					ERR_PRINTF2(_L("CMMFDevSound::SetVolume failed with %d"), volumeGet);
   1.393 +					ERR_PRINTF2(_L("Expected value = %d"), iVolume);
   1.394 +					StopTest(aError, EFail);
   1.395 +					}
   1.396 +				}
   1.397 +		else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
   1.398 +				{
   1.399 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
   1.400 +				StopTest(aError);
   1.401 +				}
   1.402 +			else
   1.403 +				{
   1.404 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
   1.405 +				StopTest(aError, EFail);
   1.406 +				}
   1.407 +			break;
   1.408 +			}
   1.409 +		default:
   1.410 +			{
   1.411 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
   1.412 +			StopTest(aError, EFail);
   1.413 +			}
   1.414 +		}
   1.415 +	}
   1.416 +
   1.417 +/*
   1.418 + *========================================================================================================
   1.419 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0004
   1.420 + */
   1.421 +RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest::RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest(const TDesC& aTestName) :
   1.422 +	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC),
   1.423 +	iVolume(0)
   1.424 +	{
   1.425 +	}
   1.426 +
   1.427 +RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest* RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest::NewL(const TDesC& aTestName)
   1.428 +	{
   1.429 +	RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest* self = new (ELeave) RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest(aTestName);
   1.430 +	return self;
   1.431 +	}
   1.432 +
   1.433 +void RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest::DoKickoffTestL()
   1.434 +	{
   1.435 +	TPtrC filename;
   1.436 +	// Get the filename of the audio file to play
   1.437 +	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
   1.438 +		{
   1.439 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
   1.440 +		StopTest(KErrNotFound);
   1.441 +		return;
   1.442 +		}
   1.443 +	// open using RFile for playback
   1.444 +	iFilename.Copy(filename);
   1.445 +	TInt err = iFile.Open(iFs, iFilename, EFileRead);
   1.446 +	if (err != KErrNone)
   1.447 +		{
   1.448 +		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
   1.449 +		iFs.Close();
   1.450 +		StopTest(err);
   1.451 +		return;
   1.452 +		}
   1.453 +
   1.454 +	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
   1.455 +
   1.456 +	if (!GetIntFromConfig(iTestStepName, KVolume, iVolume))
   1.457 +		{
   1.458 +		ERR_PRINTF2(KMsgErrorGetParameter, &KVolume);
   1.459 +		StopTest(KErrNotFound);
   1.460 +		return;
   1.461 +		}
   1.462 +
   1.463 +	TPtrC fourccCode;
   1.464 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
   1.465 +		{
   1.466 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
   1.467 +		StopTest(KErrNotFound);
   1.468 +		return;
   1.469 +		}
   1.470 +	EncodingFromStringToTFourCC(fourccCode);
   1.471 +	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
   1.472 +	}
   1.473 +
   1.474 +void RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
   1.475 +	{
   1.476 +	switch (iDevSoundState)
   1.477 +		{
   1.478 +		case EStateCreated:
   1.479 +			{
   1.480 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest"), EFsmIncorrectErrorPassed));
   1.481 +			if (aDevSoundEvent == EEventInitialize)
   1.482 +				{
   1.483 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
   1.484 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
   1.485 +				if (err != KErrNone)
   1.486 +					{
   1.487 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
   1.488 +					StopTest(err);
   1.489 +					break;
   1.490 +					}
   1.491 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
   1.492 +				iDevSoundState = EStateInitializing;
   1.493 +				}
   1.494 +			else
   1.495 +				{
   1.496 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
   1.497 +				StopTest(aError, EFail);
   1.498 +				}
   1.499 +			break;
   1.500 +			}
   1.501 +		case EStateInitializing:
   1.502 +			{
   1.503 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
   1.504 +				{
   1.505 +				TRAPD(err, iMMFDevSound->PlayInitL());
   1.506 +				if ( err != KErrNone)
   1.507 +					{
   1.508 +					StopTest (err);
   1.509 +					break;
   1.510 +					}
   1.511 +				StartTimer (KMicroSecsTwoSec);
   1.512 +				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
   1.513 +				iDevSoundState = EStatePlaying;
   1.514 +				}
   1.515 +			else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone)
   1.516 +				{
   1.517 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
   1.518 +				StopTest (aError);
   1.519 +				}
   1.520 +			else
   1.521 +				{
   1.522 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
   1.523 +				StopTest (aError, EFail);
   1.524 +				}
   1.525 +			break;
   1.526 +			}
   1.527 +		case EStatePlaying:
   1.528 +			{
   1.529 +			if (aDevSoundEvent == EEventBTBF)
   1.530 +				{
   1.531 +				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
   1.532 +				TInt err = iFile.Read (buffer->Data ());
   1.533 +				if (err != KErrNone)
   1.534 +					{
   1.535 +					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
   1.536 +					StopTest(err);
   1.537 +					break;
   1.538 +					}
   1.539 +				if (buffer->Data().Length ()!= buffer->RequestSize())
   1.540 +					{
   1.541 +					iBuffer->SetLastBuffer (ETrue);
   1.542 +					}
   1.543 +				INFO_PRINTF1(_L("CMMFDevSound::PlayData"));
   1.544 +				iMMFDevSound->PlayData();
   1.545 +				}
   1.546 +			else if (aDevSoundEvent == EEventTimerComplete)
   1.547 +				{
   1.548 +				INFO_PRINTF1(_L("Calling CMMFDevSound::Pause"));
   1.549 +				iMMFDevSound->Pause();
   1.550 +				INFO_PRINTF1(_L("Calling CMMFDevSound::SetVolume"));
   1.551 +				iMMFDevSound->SetVolume(iVolume);
   1.552 +				TInt volumeGet;
   1.553 +				volumeGet=iMMFDevSound->Volume ();
   1.554 +				if (volumeGet == iVolume)
   1.555 +					{
   1.556 +					INFO_PRINTF2(_L("CMMFDevSound::SetVolume succeeded with %d"), volumeGet);
   1.557 +					StopTest();
   1.558 +					}
   1.559 +				else
   1.560 +					{
   1.561 +					ERR_PRINTF2(_L("CMMFDevSound::SetVolume failed with %d"), volumeGet);
   1.562 +					ERR_PRINTF2(_L("Expected volume: %d"), iVolume);
   1.563 +					StopTest(aError, EFail);
   1.564 +					}
   1.565 +				}
   1.566 +			else
   1.567 +				{
   1.568 +				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
   1.569 +				StopTest (aError, EFail);
   1.570 +				}
   1.571 +			break;
   1.572 +			}
   1.573 +		default:
   1.574 +			{
   1.575 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
   1.576 +			StopTest(aError, EFail);
   1.577 +			}
   1.578 +		}
   1.579 +	}
   1.580 +
   1.581 +void RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest::DoTimerCallback()
   1.582 +	{
   1.583 +	iTimer->Cancel();
   1.584 +	INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
   1.585 +	Fsm (EEventTimerComplete, KErrNone);
   1.586 +	}
   1.587 +
   1.588 +/*
   1.589 + *========================================================================================================
   1.590 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0005
   1.591 + */
   1.592 +RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest::RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest(const TDesC& aTestName) :
   1.593 +	RA3FDevSoundTestBase(aTestName), 
   1.594 +	iReinitialized(EFalse), iVolume(0)
   1.595 +	{
   1.596 +	}
   1.597 +
   1.598 +RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest* RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest::NewL(const TDesC& aTestName)
   1.599 +	{
   1.600 +	RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest	* self = new (ELeave) RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest(aTestName);
   1.601 +	return self;
   1.602 +	}
   1.603 +
   1.604 +void RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest::DoKickoffTestL()
   1.605 +	{
   1.606 +	if (!GetIntFromConfig(iTestStepName, KVolume, iVolume))
   1.607 +		{
   1.608 +		ERR_PRINTF2(KMsgErrorGetParameter, &KVolume);
   1.609 +		StopTest (KErrNotFound);
   1.610 +		return;
   1.611 +		}
   1.612 +	TPtrC fourccCode;
   1.613 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
   1.614 +		{
   1.615 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
   1.616 +		StopTest (KErrNotFound);
   1.617 +		return;
   1.618 +		}
   1.619 +	EncodingFromStringToTFourCC (fourccCode);
   1.620 +	}
   1.621 +
   1.622 +void RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
   1.623 +	{
   1.624 +	switch (iDevSoundState)
   1.625 +		{
   1.626 +		case EStateCreated:
   1.627 +			{
   1.628 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest"), EFsmIncorrectErrorPassed));
   1.629 +			if (aDevSoundEvent == EEventInitialize)
   1.630 +				{
   1.631 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
   1.632 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
   1.633 +				if (err != KErrNone)
   1.634 +					{
   1.635 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
   1.636 +					StopTest(err);
   1.637 +					break;
   1.638 +					}
   1.639 +				INFO_PRINTF1(_L("Calling CMMFDevSound::SetVolume"));
   1.640 +				iMMFDevSound->SetVolume(iVolume);
   1.641 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
   1.642 +				iDevSoundState = EStateInitializing;
   1.643 +				}
   1.644 +			else
   1.645 +				{
   1.646 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
   1.647 +				StopTest(aError, EFail);
   1.648 +				}
   1.649 +			break;
   1.650 +			}
   1.651 +		case EStateInitializing:
   1.652 +			{
   1.653 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
   1.654 +				{
   1.655 +				if (!iReinitialized)
   1.656 +					{
   1.657 +					iReinitialized = ETrue;
   1.658 +					INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
   1.659 +					TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
   1.660 +					if (err != KErrNone)
   1.661 +						{
   1.662 +						StopTest(err);
   1.663 +						break;
   1.664 +						}
   1.665 +					INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
   1.666 +					iDevSoundState = EStateInitializing;
   1.667 +					}
   1.668 +				else
   1.669 +					{
   1.670 +					TInt volumeGet;
   1.671 +					volumeGet=iMMFDevSound->Volume();
   1.672 +					if (volumeGet == iVolume)
   1.673 +						{
   1.674 +						INFO_PRINTF2(_L("CMMFDevSound::SetVolume is kept after reinitialise Devsound. Volume = %d "), volumeGet);
   1.675 +						StopTest();
   1.676 +						}
   1.677 +					else
   1.678 +						{
   1.679 +						ERR_PRINTF2(_L("CMMFDevSound::SetVolume was not kept. Volume = %d"), volumeGet);
   1.680 +						ERR_PRINTF2(_L("Expected value = %d"),iVolume);
   1.681 +						StopTest(aError, EFail);
   1.682 +						}
   1.683 +					}
   1.684 +				}
   1.685 +			else if (aDevSoundEvent == EEventInitComplete && 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 EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
   1.693 +					StopTest (aError, EFail);
   1.694 +					}
   1.695 +			break;
   1.696 +			}
   1.697 +		default:
   1.698 +			{
   1.699 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
   1.700 +			StopTest (aError, EFail);
   1.701 +			}
   1.702 +		}
   1.703 +	}
   1.704 +
   1.705 +/*
   1.706 + *========================================================================================================
   1.707 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0006
   1.708 + */
   1.709 +RA3FDevSoundPlaySetVolumeRampWhilePlayingTest::RA3FDevSoundPlaySetVolumeRampWhilePlayingTest(const TDesC& aTestName) :
   1.710 +	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC),
   1.711 +	iVolumeRamp(0), iPlayInitTwice(EFalse)
   1.712 +	{
   1.713 +	}
   1.714 +
   1.715 +RA3FDevSoundPlaySetVolumeRampWhilePlayingTest* RA3FDevSoundPlaySetVolumeRampWhilePlayingTest::NewL(const TDesC& aTestName)
   1.716 +	{
   1.717 +	RA3FDevSoundPlaySetVolumeRampWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlaySetVolumeRampWhilePlayingTest(aTestName);
   1.718 +	return self;
   1.719 +	}
   1.720 +
   1.721 +void RA3FDevSoundPlaySetVolumeRampWhilePlayingTest::DoKickoffTestL()
   1.722 +	{
   1.723 +	TPtrC filename;
   1.724 +	// Get the filename of the audio file to play
   1.725 +	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
   1.726 +		{
   1.727 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
   1.728 +		StopTest (KErrNotFound);
   1.729 +		return;
   1.730 +		}
   1.731 +	// open using RFile for playback
   1.732 +	iFilename.Copy(filename);
   1.733 +	TInt err = iFile.Open (iFs, iFilename, EFileRead);
   1.734 +	if (err != KErrNone)
   1.735 +		{
   1.736 +		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
   1.737 +		iFs.Close();
   1.738 +		StopTest(err);
   1.739 +		return;
   1.740 +		}
   1.741 +
   1.742 +	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
   1.743 +
   1.744 +	if (!GetIntFromConfig(iTestStepName, KVolumeRamp, iVolumeRamp))
   1.745 +		{
   1.746 +		ERR_PRINTF2(KMsgErrorGetParameter, &KVolumeRamp);
   1.747 +		StopTest(KErrNotFound);
   1.748 +		return;
   1.749 +		}
   1.750 +
   1.751 +	TPtrC fourccCode;
   1.752 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
   1.753 +		{
   1.754 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
   1.755 +		StopTest(KErrNotFound);
   1.756 +		return;
   1.757 +		}
   1.758 +	EncodingFromStringToTFourCC(fourccCode);
   1.759 +	iTimer = CPeriodic::NewL (CActive::EPriorityHigh);
   1.760 +	}
   1.761 +
   1.762 +void RA3FDevSoundPlaySetVolumeRampWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
   1.763 +	{
   1.764 +	switch (iDevSoundState)
   1.765 +		{
   1.766 +		case EStateCreated:
   1.767 +			{
   1.768 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumePlayingTest"), EFsmIncorrectErrorPassed));
   1.769 +			if (aDevSoundEvent == EEventInitialize)
   1.770 +				{
   1.771 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
   1.772 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
   1.773 +				if (err != KErrNone)
   1.774 +					{
   1.775 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
   1.776 +					StopTest(err);
   1.777 +					break;
   1.778 +					}
   1.779 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
   1.780 +				iDevSoundState = EStateInitializing;
   1.781 +				}
   1.782 +			else
   1.783 +				{
   1.784 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
   1.785 +				StopTest(aError, EFail);
   1.786 +				}
   1.787 +			break;
   1.788 +			}
   1.789 +		case EStateInitializing:
   1.790 +			{
   1.791 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
   1.792 +				{
   1.793 +				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
   1.794 +				TRAPD(err, iMMFDevSound->PlayInitL());
   1.795 +				if (err != KErrNone)
   1.796 +					{
   1.797 +					StopTest (err);
   1.798 +					break;
   1.799 +					}
   1.800 +				StartTimer(KMicroSecsTwoSec);
   1.801 +				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
   1.802 +				iDevSoundState = EStatePlaying;
   1.803 +				}
   1.804 +			else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone)
   1.805 +				{
   1.806 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
   1.807 +				StopTest (aError);
   1.808 +				}
   1.809 +			else
   1.810 +				{
   1.811 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
   1.812 +				StopTest(aError, EFail);
   1.813 +				}
   1.814 +			break;
   1.815 +			}
   1.816 +		case EStatePlaying:
   1.817 +			{
   1.818 +			if (aDevSoundEvent == EEventBTBF)
   1.819 +				{
   1.820 +				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
   1.821 +				TInt err = iFile.Read (buffer->Data ());
   1.822 +				if (err != KErrNone)
   1.823 +					{
   1.824 +					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
   1.825 +					StopTest(err);
   1.826 +					break;
   1.827 +					}
   1.828 +				if (buffer->Data().Length ()!= buffer->RequestSize())
   1.829 +					{
   1.830 +					iBuffer->SetLastBuffer (ETrue);
   1.831 +					}
   1.832 +				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
   1.833 +				iMMFDevSound->PlayData ();
   1.834 +				}
   1.835 +			else if (aDevSoundEvent == EEventTimerComplete)
   1.836 +				{
   1.837 +				INFO_PRINTF1(_L("Calling CMMFDevSound::SetVolumeRamp"));
   1.838 +				iMMFDevSound->SetVolumeRamp (iVolumeRamp*KMicroSecsInOneSec);
   1.839 +				}
   1.840 +			else
   1.841 +				{
   1.842 +				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
   1.843 +				StopTest(aError, EFail);
   1.844 +				}
   1.845 +			break;
   1.846 +			}
   1.847 +		default:
   1.848 +			{
   1.849 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
   1.850 +			StopTest(aError, EFail);
   1.851 +			}
   1.852 +		}
   1.853 +	}
   1.854 +
   1.855 +void RA3FDevSoundPlaySetVolumeRampWhilePlayingTest::DoTimerCallback()
   1.856 +	{
   1.857 +	INFO_PRINTF1(_L("TimerEvent called"));
   1.858 +	iTimer->Cancel();
   1.859 +	INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
   1.860 +	Fsm(EEventTimerComplete, KErrNone);
   1.861 +	}
   1.862 +
   1.863 +void RA3FDevSoundPlaySetVolumeRampWhilePlayingTest::PlayError(TInt aError)
   1.864 +	{
   1.865 +	INFO_PRINTF1(_L("========== DevSound PlayError() callback =========="));
   1.866 +	INFO_PRINTF3(KMsgErrorDevSoundCallback, &KPlayErrorText, aError);
   1.867 +	if (iBuffer->LastBuffer ()&& aError == KErrUnderflow)
   1.868 +		{
   1.869 +		TInt filePosition = 0;
   1.870 +		TInt err = iFile.Seek (ESeekStart, filePosition);
   1.871 +		if (err != KErrNone)
   1.872 +			{
   1.873 +			ERR_PRINTF2(_L("iFile.Seek() returned %d"), err);
   1.874 +			StopTest(err);
   1.875 +			}
   1.876 +		else
   1.877 +			{
   1.878 +			if (!iPlayInitTwice)
   1.879 +				{
   1.880 +				INFO_PRINTF1(_L("Playback completed normally"));
   1.881 +				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
   1.882 +				TRAPD(err, iMMFDevSound->PlayInitL());
   1.883 +				if (err != KErrNone)
   1.884 +					{
   1.885 +					ERR_PRINTF2(_L("Calling again CMMFDevSound::PlayInitL left with error = %d"), err);
   1.886 +					StopTest(err);
   1.887 +					}
   1.888 +				iPlayInitTwice=ETrue;
   1.889 +				}
   1.890 +			else
   1.891 +				{
   1.892 +				StopTest(err);
   1.893 +				}
   1.894 +			}
   1.895 +		}
   1.896 +	else
   1.897 +		{
   1.898 +		INFO_PRINTF1(_L("Playback completed with error"));
   1.899 +		StopTest(aError, EFail);
   1.900 +		}
   1.901 +	}
   1.902 +
   1.903 +/*
   1.904 + *========================================================================================================
   1.905 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0007
   1.906 + */
   1.907 +RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest::RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest(const TDesC& aTestName) :
   1.908 +	RA3FDevSoundTestBase(aTestName)
   1.909 +	{
   1.910 +	}
   1.911 +
   1.912 +RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest* RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest::NewL(const TDesC& aTestName)
   1.913 +	{
   1.914 +	RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest* self = new (ELeave) RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest(aTestName);
   1.915 +	return self;
   1.916 +	}
   1.917 +
   1.918 +void RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest::DoKickoffTestL()
   1.919 +	{
   1.920 +	TPtrC fourccCode;
   1.921 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
   1.922 +		{
   1.923 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
   1.924 +		StopTest(KErrNotFound);
   1.925 +		return;
   1.926 +		}
   1.927 +	EncodingFromStringToTFourCC (fourccCode);
   1.928 +	}
   1.929 +
   1.930 +void RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
   1.931 +	{
   1.932 +	switch (iDevSoundState)
   1.933 +		{
   1.934 +		case EStateCreated:
   1.935 +			{
   1.936 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest"), EFsmIncorrectErrorPassed));
   1.937 +			if (aDevSoundEvent == EEventInitialize)
   1.938 +				{
   1.939 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
   1.940 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
   1.941 +				if (err != KErrNone)
   1.942 +					{
   1.943 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
   1.944 +					StopTest(err);
   1.945 +					break;
   1.946 +					}
   1.947 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
   1.948 +				iDevSoundState = EStateInitializing;
   1.949 +				}
   1.950 +			else
   1.951 +				{
   1.952 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
   1.953 +				StopTest (aError, EFail);
   1.954 +				}
   1.955 +			break;
   1.956 +			}
   1.957 +		case EStateInitializing:
   1.958 +			{
   1.959 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
   1.960 +				{
   1.961 +				INFO_PRINTF1(_L("Calling CMMFDevSound::SetVolume()to set volume values beyond CMMFDevSound::MaxVolume()"));
   1.962 +				TInt maxVolume = iMMFDevSound->MaxVolume();
   1.963 +				iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume()+ KExtraVolume);
   1.964 +				TInt volumeGet = iMMFDevSound->Volume();
   1.965 +				if (volumeGet == maxVolume)
   1.966 +					{
   1.967 +					INFO_PRINTF2(_L("Calling CMMFDevSound::SetVolume to set volume beyond CMMFDevSound::MaxVolume succeeded with %d"), volumeGet);
   1.968 +					StopTest();
   1.969 +					break;
   1.970 +					}
   1.971 +				else
   1.972 +					{
   1.973 +					ERR_PRINTF2(_L("Calling CMMFDevSound::SetVolume to set volume beyond CMMFDevSound::MaxVolume failed with %d"), volumeGet);
   1.974 +					ERR_PRINTF2(_L("Expected value = %d"), maxVolume);
   1.975 +					StopTest(aError, EFail);
   1.976 +					break;
   1.977 +					}
   1.978 +				}
   1.979 +			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
   1.980 +				{
   1.981 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
   1.982 +				StopTest(aError);
   1.983 +				}
   1.984 +			else
   1.985 +				{
   1.986 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
   1.987 +				StopTest(aError, EFail);
   1.988 +				}
   1.989 +			break;
   1.990 +			}
   1.991 +		default:
   1.992 +			{
   1.993 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
   1.994 +			StopTest(aError, EFail);
   1.995 +			}
   1.996 +		}
   1.997 +	}
   1.998 +
   1.999 +/*
  1.1000 + *========================================================================================================
  1.1001 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0008
  1.1002 + */
  1.1003 +RA3FDevSoundPlaySetVolumeToNegativeTest::RA3FDevSoundPlaySetVolumeToNegativeTest(const TDesC& aTestName) :
  1.1004 +	RA3FDevSoundTestBase(aTestName),
  1.1005 +	iVolume(0)
  1.1006 +	{
  1.1007 +	}
  1.1008 +
  1.1009 +RA3FDevSoundPlaySetVolumeToNegativeTest* RA3FDevSoundPlaySetVolumeToNegativeTest::NewL(const TDesC& aTestName)
  1.1010 +	{
  1.1011 +	RA3FDevSoundPlaySetVolumeToNegativeTest* self = new (ELeave) RA3FDevSoundPlaySetVolumeToNegativeTest(aTestName);
  1.1012 +	return self;
  1.1013 +	}
  1.1014 +
  1.1015 +void RA3FDevSoundPlaySetVolumeToNegativeTest::DoKickoffTestL()
  1.1016 +	{
  1.1017 +	if (!GetIntFromConfig(iTestStepName, KVolume, iVolume))
  1.1018 +		{
  1.1019 +		ERR_PRINTF2(KMsgErrorGetParameter, &KVolume);
  1.1020 +		StopTest (KErrNotFound);
  1.1021 +		return;
  1.1022 +		}
  1.1023 +	TPtrC fourccCode;
  1.1024 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.1025 +		{
  1.1026 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.1027 +		StopTest (KErrNotFound);
  1.1028 +		return;
  1.1029 +		}
  1.1030 +	EncodingFromStringToTFourCC (fourccCode);
  1.1031 +	}
  1.1032 +
  1.1033 +void RA3FDevSoundPlaySetVolumeToNegativeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.1034 +	{
  1.1035 +	switch (iDevSoundState)
  1.1036 +		{
  1.1037 +		case EStateCreated:
  1.1038 +			{
  1.1039 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumeToNegativeTest"), EFsmIncorrectErrorPassed));
  1.1040 +			if (aDevSoundEvent == EEventInitialize)
  1.1041 +				{
  1.1042 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.1043 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.1044 +				if (err != KErrNone)
  1.1045 +					{
  1.1046 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.1047 +					StopTest(err);
  1.1048 +					break;
  1.1049 +					}
  1.1050 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.1051 +				iDevSoundState = EStateInitializing;
  1.1052 +				}
  1.1053 +			else
  1.1054 +				{
  1.1055 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.1056 +				StopTest(aError, EFail);
  1.1057 +				}
  1.1058 +			break;
  1.1059 +			}
  1.1060 +		case EStateInitializing:
  1.1061 +			{
  1.1062 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.1063 +				{
  1.1064 +				INFO_PRINTF2(_L("Calling CMMFDevSound::SetVolume to set volume value to a negative: %d"), iVolume);
  1.1065 +				iMMFDevSound->SetVolume (iVolume);
  1.1066 +				if (iMMFDevSound->Volume ()== 0)
  1.1067 +					{
  1.1068 +					INFO_PRINTF2(_L("Calling CMMFDevSound::SetVolume succeeded with %d"), iMMFDevSound->Volume());
  1.1069 +					StopTest();
  1.1070 +					break;
  1.1071 +					}
  1.1072 +				else
  1.1073 +					{
  1.1074 +					ERR_PRINTF2(_L("Calling CMMFDevSound::SetVolume failed with %d"), iMMFDevSound->Volume());
  1.1075 +					ERR_PRINTF2(_L("Expected value = %d"), 0);
  1.1076 +					StopTest (aError, EFail);
  1.1077 +					break;
  1.1078 +					}
  1.1079 +				}
  1.1080 +			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.1081 +				{
  1.1082 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.1083 +				StopTest (aError);
  1.1084 +				}
  1.1085 +			else
  1.1086 +				{
  1.1087 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.1088 +				StopTest(aError, EFail);
  1.1089 +				}
  1.1090 +			break;
  1.1091 +			}
  1.1092 +		default:
  1.1093 +			{
  1.1094 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.1095 +			StopTest (aError, EFail);
  1.1096 +			}
  1.1097 +		}
  1.1098 +	}
  1.1099 +
  1.1100 +/*
  1.1101 + *========================================================================================================
  1.1102 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0009
  1.1103 + */
  1.1104 +RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest::RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest(const TDesC& aTestName) :
  1.1105 +	RA3FDevSoundTestBase(aTestName), 
  1.1106 +	iLSpeakerBalance(0), iRSpeakerBalance(0)
  1.1107 +	{
  1.1108 +	}
  1.1109 +
  1.1110 +RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest* RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest::NewL(const TDesC& aTestName)
  1.1111 +	{
  1.1112 +	RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest* self = new (ELeave) RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest(aTestName);
  1.1113 +	return self;
  1.1114 +	}
  1.1115 +
  1.1116 +void RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest::DoKickoffTestL()
  1.1117 +	{
  1.1118 +	if ( !GetIntFromConfig(iTestStepName, KLSpeakerBalance, iLSpeakerBalance) )
  1.1119 +		{
  1.1120 +		ERR_PRINTF2(KMsgErrorGetParameter, &KLSpeakerBalance);
  1.1121 +		StopTest(KErrNotFound);
  1.1122 +		return;
  1.1123 +		}
  1.1124 +	if ( !GetIntFromConfig(iTestStepName, KRSpeakerBalance, iRSpeakerBalance) )
  1.1125 +		{
  1.1126 +		ERR_PRINTF2(KMsgErrorGetParameter, &KRSpeakerBalance);
  1.1127 +		StopTest(KErrNotFound);
  1.1128 +		return;
  1.1129 +		}
  1.1130 +	
  1.1131 +	TPtrC fourccCode;
  1.1132 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.1133 +		{
  1.1134 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.1135 +		StopTest(KErrNotFound);
  1.1136 +		return;
  1.1137 +		}
  1.1138 +	EncodingFromStringToTFourCC(fourccCode);
  1.1139 +	}
  1.1140 +
  1.1141 +void RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.1142 +	{
  1.1143 +	switch (iDevSoundState)
  1.1144 +		{
  1.1145 +		case EStateCreated:
  1.1146 +			{
  1.1147 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest"), EFsmIncorrectErrorPassed));
  1.1148 +			if (aDevSoundEvent == EEventInitialize)
  1.1149 +				{
  1.1150 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.1151 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.1152 +				if (err != KErrNone)
  1.1153 +					{
  1.1154 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.1155 +					StopTest(err);
  1.1156 +					break;
  1.1157 +					}
  1.1158 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.1159 +				iDevSoundState = EStateInitializing;
  1.1160 +				}
  1.1161 +			else
  1.1162 +				{
  1.1163 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.1164 +				StopTest(aError, EFail);
  1.1165 +				}
  1.1166 +			break;
  1.1167 +			}
  1.1168 +		case EStateInitializing:
  1.1169 +			{
  1.1170 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.1171 +				{
  1.1172 +				INFO_PRINTF3(_L("Calling CMMFDevSound::SetPlayBalanceL using left = %d right = %d values"), iLSpeakerBalance, iRSpeakerBalance);
  1.1173 +				TRAPD(err, iMMFDevSound->SetPlayBalanceL(iLSpeakerBalance, iRSpeakerBalance));
  1.1174 +				if (err == KErrNone)
  1.1175 +					{
  1.1176 +					TInt getBalanceL, getBalanceR;
  1.1177 +					TRAPD(err, iMMFDevSound->GetPlayBalanceL(getBalanceL, getBalanceR));
  1.1178 +					if (err == KErrNone)
  1.1179 +						{
  1.1180 +						if (getBalanceL == KMaxSpeakerBalanceValue && getBalanceR == KMaxSpeakerBalanceValue)
  1.1181 +							{
  1.1182 +							INFO_PRINTF3(_L("Calling CMMFDevSound::SetPlayBalanceL to set balance values beyond 100 succeeded, left = %d right = %d values"), getBalanceL, getBalanceR);
  1.1183 +							StopTest();
  1.1184 +							}
  1.1185 +						else
  1.1186 +							{
  1.1187 +							ERR_PRINTF3(_L("Calling CMMFDevSound::SetPlayBalanceL to set balance values beyond 100 failed, left = %d right = %d values"), getBalanceL, getBalanceR);
  1.1188 +							ERR_PRINTF3(_L("Expected values left = %d right = %d values"), KMaxSpeakerBalanceValue, KMaxSpeakerBalanceValue);
  1.1189 +							StopTest (err, EFail);
  1.1190 +							}
  1.1191 +						}
  1.1192 +					else
  1.1193 +						{
  1.1194 +						ERR_PRINTF1(_L("Error in getting left and right play balance."));
  1.1195 +						StopTest (err);
  1.1196 +						}
  1.1197 +					}
  1.1198 +				else
  1.1199 +					{
  1.1200 +					ERR_PRINTF1(_L("Error in setting left and right play balance."));
  1.1201 +					StopTest (err);
  1.1202 +					}
  1.1203 +				}
  1.1204 +			else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.1205 +				{
  1.1206 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.1207 +				StopTest (aError);
  1.1208 +				}
  1.1209 +			else
  1.1210 +				{
  1.1211 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.1212 +				StopTest(aError, EFail);
  1.1213 +				}
  1.1214 +			break;
  1.1215 +			}
  1.1216 +		default:
  1.1217 +			{
  1.1218 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.1219 +			StopTest(aError, EFail);
  1.1220 +			}
  1.1221 +		}
  1.1222 +	}
  1.1223 +
  1.1224 +/*
  1.1225 + *========================================================================================================
  1.1226 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0010
  1.1227 + */
  1.1228 +RA3FDevSoundPlaySetPlayBalanceToNegativeTest::RA3FDevSoundPlaySetPlayBalanceToNegativeTest(const TDesC& aTestName) :
  1.1229 +	RA3FDevSoundTestBase(aTestName), 
  1.1230 +	iLSpeakerBalance(0), iRSpeakerBalance(0)
  1.1231 +	{
  1.1232 +	}
  1.1233 +
  1.1234 +RA3FDevSoundPlaySetPlayBalanceToNegativeTest* RA3FDevSoundPlaySetPlayBalanceToNegativeTest::NewL(const TDesC& aTestName)
  1.1235 +	{
  1.1236 +	RA3FDevSoundPlaySetPlayBalanceToNegativeTest* self = new (ELeave) RA3FDevSoundPlaySetPlayBalanceToNegativeTest(aTestName);
  1.1237 +	return self;
  1.1238 +	}
  1.1239 +
  1.1240 +void RA3FDevSoundPlaySetPlayBalanceToNegativeTest::DoKickoffTestL()
  1.1241 +	{
  1.1242 +	if ( !GetIntFromConfig(iTestStepName, KLSpeakerBalance, iLSpeakerBalance) )
  1.1243 +		{
  1.1244 +		ERR_PRINTF2(KMsgErrorGetParameter, &KLSpeakerBalance);
  1.1245 +		StopTest(KErrNotFound);
  1.1246 +		return;
  1.1247 +		}
  1.1248 +	if ( !GetIntFromConfig(iTestStepName, KRSpeakerBalance, iRSpeakerBalance) )
  1.1249 +		{
  1.1250 +		ERR_PRINTF2(KMsgErrorGetParameter, &KRSpeakerBalance);
  1.1251 +		StopTest(KErrNotFound);
  1.1252 +		return;
  1.1253 +		}
  1.1254 +	
  1.1255 +	TPtrC fourccCode;
  1.1256 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.1257 +		{
  1.1258 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.1259 +		StopTest(KErrNotFound);
  1.1260 +		return;
  1.1261 +		}
  1.1262 +	EncodingFromStringToTFourCC (fourccCode);
  1.1263 +	}
  1.1264 +
  1.1265 +void RA3FDevSoundPlaySetPlayBalanceToNegativeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.1266 +	{
  1.1267 +	switch (iDevSoundState)
  1.1268 +		{
  1.1269 +		case EStateCreated:
  1.1270 +			{
  1.1271 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetPlayBalanceToNegativeTest"), EFsmIncorrectErrorPassed));
  1.1272 +			if (aDevSoundEvent == EEventInitialize)
  1.1273 +				{
  1.1274 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.1275 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.1276 +				if (err != KErrNone)
  1.1277 +					{
  1.1278 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.1279 +					StopTest(err);
  1.1280 +					break;
  1.1281 +					}
  1.1282 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.1283 +				iDevSoundState = EStateInitializing;
  1.1284 +				}
  1.1285 +			else
  1.1286 +				{
  1.1287 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.1288 +				StopTest (aError, EFail);
  1.1289 +				}
  1.1290 +			break;
  1.1291 +			}
  1.1292 +		case EStateInitializing:
  1.1293 +			{
  1.1294 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.1295 +				{
  1.1296 +				INFO_PRINTF3(_L("Calling CMMFDevSound::SetPlayBalanceL using left = %d right = %d values"), iLSpeakerBalance, iRSpeakerBalance);
  1.1297 +				TRAPD(err, iMMFDevSound->SetPlayBalanceL(iLSpeakerBalance, iRSpeakerBalance));
  1.1298 +				if (err == KErrNone)
  1.1299 +					{
  1.1300 +					TInt getBalanceL, getBalanceR;
  1.1301 +					TRAPD(err, iMMFDevSound->GetPlayBalanceL(getBalanceL, getBalanceR));
  1.1302 +					if (err == KErrNone)
  1.1303 +						{
  1.1304 +						if (getBalanceL == KMinSpeakerBalanceValue && getBalanceR == KMinSpeakerBalanceValue)
  1.1305 +							{
  1.1306 +							INFO_PRINTF3(_L("Calling CMMFDevSound::SetPlayBalanceL to set balance values to negative succeeded, left = %d right = %d values"), getBalanceL, getBalanceR);
  1.1307 +							StopTest();
  1.1308 +							}
  1.1309 +						else
  1.1310 +							{
  1.1311 +							ERR_PRINTF3(_L("Calling CMMFDevSound::SetPlayBalanceL to set balance values to negative failed, left = %d right = %d values"), getBalanceL, getBalanceR);
  1.1312 +							ERR_PRINTF3(_L("Expected values, left = %d right = %d values"), KMinSpeakerBalanceValue, KMinSpeakerBalanceValue);
  1.1313 +							StopTest(err, EFail);
  1.1314 +							}
  1.1315 +						}
  1.1316 +					else
  1.1317 +						{
  1.1318 +						ERR_PRINTF1(_L("Error in getting left and right play balance."));
  1.1319 +						StopTest (err);
  1.1320 +						}
  1.1321 +					}
  1.1322 +				else
  1.1323 +					{
  1.1324 +					ERR_PRINTF1(_L("Error in setting left and right play balance."));
  1.1325 +					StopTest (err);
  1.1326 +					}
  1.1327 +				}
  1.1328 +			else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.1329 +				{
  1.1330 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.1331 +				StopTest (aError);
  1.1332 +				}
  1.1333 +			else
  1.1334 +				{
  1.1335 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.1336 +				StopTest (aError, EFail);
  1.1337 +				}
  1.1338 +			break;
  1.1339 +			}
  1.1340 +		default:
  1.1341 +			{
  1.1342 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.1343 +			StopTest (aError, EFail);
  1.1344 +			}
  1.1345 +		}
  1.1346 +	}
  1.1347 +
  1.1348 +/*
  1.1349 + *========================================================================================================
  1.1350 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0011
  1.1351 + */
  1.1352 +RA3FDevSoundPlaySetPrioritySettingsTest::RA3FDevSoundPlaySetPrioritySettingsTest(const TDesC& aTestName) :
  1.1353 +	RA3FDevSoundTestBase(aTestName), iPriority(0)
  1.1354 +	{
  1.1355 +	}
  1.1356 +
  1.1357 +RA3FDevSoundPlaySetPrioritySettingsTest* RA3FDevSoundPlaySetPrioritySettingsTest::NewL(const TDesC& aTestName)
  1.1358 +	{
  1.1359 +	RA3FDevSoundPlaySetPrioritySettingsTest* self = new (ELeave) RA3FDevSoundPlaySetPrioritySettingsTest(aTestName);
  1.1360 +	return self;
  1.1361 +	}
  1.1362 +
  1.1363 +void RA3FDevSoundPlaySetPrioritySettingsTest::DoKickoffTestL()
  1.1364 +	{
  1.1365 +	if (!GetIntFromConfig(iTestStepName, KPriority, iPriority))
  1.1366 +		{
  1.1367 +		ERR_PRINTF2(KMsgErrorGetParameter, &KPriority);
  1.1368 +		StopTest(KErrNotFound);
  1.1369 +		return;
  1.1370 +		}
  1.1371 +
  1.1372 +	TPtrC fourccCode;
  1.1373 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.1374 +		{
  1.1375 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.1376 +		StopTest(KErrNotFound);
  1.1377 +		return;
  1.1378 +		}
  1.1379 +	EncodingFromStringToTFourCC(fourccCode);
  1.1380 +	}
  1.1381 +
  1.1382 +void RA3FDevSoundPlaySetPrioritySettingsTest::Fsm(
  1.1383 +		TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.1384 +	{
  1.1385 +	switch (iDevSoundState)
  1.1386 +		{
  1.1387 +		case EStateCreated:
  1.1388 +			{
  1.1389 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetPrioritySettingTest"), EFsmIncorrectErrorPassed));
  1.1390 +			if (aDevSoundEvent == EEventInitialize)
  1.1391 +				{
  1.1392 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.1393 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.1394 +				if (err != KErrNone)
  1.1395 +					{
  1.1396 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.1397 +					StopTest(err);
  1.1398 +					break;
  1.1399 +					}
  1.1400 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.1401 +				iDevSoundState = EStateInitializing;
  1.1402 +				}
  1.1403 +			else
  1.1404 +				{
  1.1405 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.1406 +				StopTest(aError, EFail);
  1.1407 +				}
  1.1408 +			break;
  1.1409 +			}
  1.1410 +		case EStateInitializing:
  1.1411 +			{
  1.1412 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.1413 +				{
  1.1414 +				TMMFPrioritySettings priority;
  1.1415 +				priority.iPriority = iPriority;
  1.1416 +				INFO_PRINTF2(_L("Setting Priority to %d calling  CMMFDevSound::SetPrioritySettings"), iPriority);
  1.1417 +				iMMFDevSound->SetPrioritySettings(priority);
  1.1418 +				INFO_PRINTF1(_L("========== Test Case Successfully Completed =========="));
  1.1419 +				StopTest();
  1.1420 +				}
  1.1421 +			else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.1422 +				{
  1.1423 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.1424 +				StopTest (aError);
  1.1425 +				}
  1.1426 +			else
  1.1427 +				{
  1.1428 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.1429 +				StopTest (aError, EFail);
  1.1430 +				}
  1.1431 +			break;
  1.1432 +			}
  1.1433 +		default:
  1.1434 +			{
  1.1435 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.1436 +			StopTest(aError, EFail);
  1.1437 +			}
  1.1438 +		}
  1.1439 +	}
  1.1440 +
  1.1441 +/*
  1.1442 + *========================================================================================================
  1.1443 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0012
  1.1444 + */
  1.1445 +RA3FDevSoundPlayCapabilitiesTest::RA3FDevSoundPlayCapabilitiesTest(const TDesC& aTestName) :
  1.1446 +	RA3FDevSoundTestBase(aTestName)
  1.1447 +	{
  1.1448 +	}
  1.1449 +
  1.1450 +RA3FDevSoundPlayCapabilitiesTest* RA3FDevSoundPlayCapabilitiesTest::NewL(const TDesC& aTestName)
  1.1451 +	{
  1.1452 +	RA3FDevSoundPlayCapabilitiesTest* self = new (ELeave) RA3FDevSoundPlayCapabilitiesTest(aTestName);
  1.1453 +	return self;
  1.1454 +	}
  1.1455 +
  1.1456 +void RA3FDevSoundPlayCapabilitiesTest::DoKickoffTestL()
  1.1457 +	{
  1.1458 +	if (!GetIntFromConfig(iTestStepName, KExCapChannels, iExCapChannels))
  1.1459 +		{
  1.1460 +		ERR_PRINTF2(KMsgErrorGetParameter, &KExCapChannels);
  1.1461 +		StopTest(KErrNotFound);
  1.1462 +		return;
  1.1463 +		}
  1.1464 +	if (!GetIntFromConfig(iTestStepName, KExCapRate, iExCapRate))
  1.1465 +		{
  1.1466 +		ERR_PRINTF2(KMsgErrorGetParameter, &KExCapRate);
  1.1467 +		StopTest(KErrNotFound);
  1.1468 +		return;
  1.1469 +		}
  1.1470 +	TPtrC fourccCode;
  1.1471 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.1472 +		{
  1.1473 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.1474 +		StopTest (KErrNotFound);
  1.1475 +		return;
  1.1476 +		}
  1.1477 +	EncodingFromStringToTFourCC (fourccCode);
  1.1478 +	}
  1.1479 +
  1.1480 +void RA3FDevSoundPlayCapabilitiesTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.1481 +	{
  1.1482 +	switch (iDevSoundState)
  1.1483 +		{
  1.1484 +		case EStateCreated:
  1.1485 +			{
  1.1486 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesTest"), EFsmIncorrectErrorPassed));
  1.1487 +			if (aDevSoundEvent == EEventInitialize)
  1.1488 +				{
  1.1489 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.1490 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.1491 +				if (err != KErrNone)
  1.1492 +					{
  1.1493 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.1494 +					StopTest(err);
  1.1495 +					break;
  1.1496 +					}
  1.1497 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.1498 +				iDevSoundState = EStateInitializing;
  1.1499 +				}
  1.1500 +			else
  1.1501 +				{
  1.1502 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.1503 +				StopTest(aError, EFail);
  1.1504 +				}
  1.1505 +			break;
  1.1506 +			}
  1.1507 +		case EStateInitializing:
  1.1508 +			{
  1.1509 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.1510 +				{
  1.1511 +				INFO_PRINTF1(_L("Calling CMMFDevSound::Capabilities"));
  1.1512 +				TMMFCapabilities capabilitiesGet;
  1.1513 +				capabilitiesGet = iMMFDevSound->Capabilities ();
  1.1514 +
  1.1515 +				INFO_PRINTF3(_L("Rate Sum:0x%x Channels Sum:0x%x"), capabilitiesGet.iRate, capabilitiesGet.iChannels);
  1.1516 +				PrintSupportedCapabilities (capabilitiesGet.iRate, capabilitiesGet.iChannels);
  1.1517 +				if(capabilitiesGet.iRate == iExCapRate && capabilitiesGet.iChannels == iExCapChannels)
  1.1518 +					{
  1.1519 +					INFO_PRINTF3(_L("Capabilities returned match expected capabilities which are Sum:0x%x Channels Sum:0x%x"), capabilitiesGet.iRate, capabilitiesGet.iChannels);
  1.1520 +					StopTest ();
  1.1521 +					}
  1.1522 +				else
  1.1523 +					{
  1.1524 +					ERR_PRINTF1(_L("Capabilities returned do not match the expected capabilities"));
  1.1525 +					ERR_PRINTF3(_L("Expected Rate Sum:0x%x Channels Sum:0x%x"), iExCapRate, iExCapChannels);
  1.1526 +					StopTest (KErrNone, EFail);
  1.1527 +					}
  1.1528 +				}
  1.1529 +			else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.1530 +				{
  1.1531 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.1532 +				StopTest (aError);
  1.1533 +				}
  1.1534 +			else
  1.1535 +				{
  1.1536 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.1537 +				StopTest (aError, EFail);
  1.1538 +				}
  1.1539 +			break;
  1.1540 +			}
  1.1541 +		default:
  1.1542 +			{
  1.1543 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.1544 +			StopTest (aError, EFail);
  1.1545 +			}
  1.1546 +		}
  1.1547 +	}
  1.1548 +
  1.1549 +/*
  1.1550 + *========================================================================================================
  1.1551 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0013
  1.1552 + */
  1.1553 +RA3FDevSoundPlayConfigTest::RA3FDevSoundPlayConfigTest(const TDesC& aTestName) :
  1.1554 +	RA3FDevSoundTestBase(aTestName),iExCapRate(0),
  1.1555 +	iExCapChannels(0)
  1.1556 +	{
  1.1557 +	}
  1.1558 +
  1.1559 +RA3FDevSoundPlayConfigTest* RA3FDevSoundPlayConfigTest::NewL(const TDesC& aTestName)
  1.1560 +	{
  1.1561 +	RA3FDevSoundPlayConfigTest* self = new (ELeave) RA3FDevSoundPlayConfigTest(aTestName);
  1.1562 +	return self;
  1.1563 +	}
  1.1564 +
  1.1565 +void RA3FDevSoundPlayConfigTest::DoKickoffTestL()
  1.1566 +	{
  1.1567 +	if (!GetIntFromConfig(iTestStepName, KExCapRate, iExCapRate))
  1.1568 +				{
  1.1569 +				ERR_PRINTF2(KMsgErrorGetParameter, &KExCapRate);
  1.1570 +				StopTest(KErrNotFound);
  1.1571 +				return;
  1.1572 +				}
  1.1573 +		if (!GetIntFromConfig(iTestStepName, KExCapChannels, iExCapChannels))
  1.1574 +			{
  1.1575 +			ERR_PRINTF2(KMsgErrorGetParameter, &KExCapChannels);
  1.1576 +			StopTest(KErrNotFound);
  1.1577 +			return;
  1.1578 +			}
  1.1579 +	TPtrC fourccCode;
  1.1580 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.1581 +		{
  1.1582 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.1583 +		StopTest (KErrNotFound);
  1.1584 +		return;
  1.1585 +		}
  1.1586 +	EncodingFromStringToTFourCC (fourccCode);
  1.1587 +	}
  1.1588 +
  1.1589 +void RA3FDevSoundPlayConfigTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.1590 +	{
  1.1591 +	switch (iDevSoundState)
  1.1592 +		{
  1.1593 +		case EStateCreated:
  1.1594 +			{
  1.1595 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayConfigTest"), EFsmIncorrectErrorPassed));
  1.1596 +			if (aDevSoundEvent == EEventInitialize)
  1.1597 +				{
  1.1598 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.1599 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.1600 +				if (err != KErrNone)
  1.1601 +					{
  1.1602 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.1603 +					StopTest(err);
  1.1604 +					break;
  1.1605 +					}
  1.1606 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.1607 +				iDevSoundState = EStateInitializing;
  1.1608 +				}
  1.1609 +			else
  1.1610 +				{
  1.1611 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.1612 +				StopTest(aError, EFail);
  1.1613 +				}
  1.1614 +			break;
  1.1615 +			}
  1.1616 +		case EStateInitializing:
  1.1617 +			{
  1.1618 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.1619 +				{
  1.1620 +				TMMFCapabilities capabilitiesGet;
  1.1621 +				TBuf<KMaxSampleRateStringLength> stringSampleRateGet;
  1.1622 +				TBuf<KMaxChannelsStringLength> stringChannelsGet;
  1.1623 +				TBuf<KMaxSampleRateStringLength> stringSampleRateExpected;
  1.1624 +				TBuf<KMaxChannelsStringLength> stringChannelsExpected;
  1.1625 +				INFO_PRINTF1(_L("Calling CMMFDevSound::Config while playing"));
  1.1626 +				capabilitiesGet=iMMFDevSound->Config ();
  1.1627 +				SampleRateFromTUintToString (capabilitiesGet.iRate, stringSampleRateGet);
  1.1628 +				ChannelsFromTUintToString (capabilitiesGet.iChannels, stringChannelsGet);
  1.1629 +				SampleRateFromTUintToString (capabilitiesGet.iRate, stringSampleRateExpected);
  1.1630 +				ChannelsFromTUintToString (capabilitiesGet.iChannels, stringChannelsExpected);
  1.1631 +				if (stringSampleRateExpected.Compare(stringSampleRateGet) == 0)
  1.1632 +					{
  1.1633 +					INFO_PRINTF2(_L("Sample rate value match default as expected with %S"), &stringSampleRateGet);
  1.1634 +					if (stringChannelsExpected.Compare(stringChannelsGet) == 0)
  1.1635 +						{
  1.1636 +						INFO_PRINTF2(_L("Channel mode value match default as expected with %S"), &stringChannelsGet);
  1.1637 +						StopTest();
  1.1638 +						}
  1.1639 +					else
  1.1640 +						{
  1.1641 +						INFO_PRINTF2(_L("Channel mode value failed with %S"), &stringChannelsGet);
  1.1642 +						ERR_PRINTF2(_L("Expected channel mode %S"), &stringChannelsExpected);
  1.1643 +						StopTest(KErrNone, EFail);
  1.1644 +						}
  1.1645 +					}
  1.1646 +				else
  1.1647 +					{
  1.1648 +					ERR_PRINTF2(_L("Sample rate value failed with %S"), &stringSampleRateGet);
  1.1649 +					ERR_PRINTF2(_L("Expected sample rate %S"), &stringSampleRateExpected);
  1.1650 +					StopTest(KErrNone, EFail);
  1.1651 +					}
  1.1652 +				}
  1.1653 +			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.1654 +				{
  1.1655 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.1656 +				StopTest(aError);
  1.1657 +				}
  1.1658 +			else
  1.1659 +				{
  1.1660 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.1661 +				StopTest(aError, EFail);
  1.1662 +				}
  1.1663 +			break;
  1.1664 +			}
  1.1665 +		default:
  1.1666 +			{
  1.1667 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.1668 +			StopTest(aError, EFail);
  1.1669 +			}
  1.1670 +		}
  1.1671 +	}
  1.1672 +
  1.1673 +/*
  1.1674 + *========================================================================================================
  1.1675 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0014
  1.1676 + */
  1.1677 +RA3FDevSoundPlayGetPlayBalanceTest::RA3FDevSoundPlayGetPlayBalanceTest(const TDesC& aTestName) :
  1.1678 +	RA3FDevSoundTestBase(aTestName),
  1.1679 +	iExLSpeakerBalance(0),
  1.1680 +	iExRSpeakerBalance(0)
  1.1681 +	{
  1.1682 +	}
  1.1683 +
  1.1684 +RA3FDevSoundPlayGetPlayBalanceTest* RA3FDevSoundPlayGetPlayBalanceTest::NewL(const TDesC& aTestName)
  1.1685 +	{
  1.1686 +	RA3FDevSoundPlayGetPlayBalanceTest* self = new (ELeave) RA3FDevSoundPlayGetPlayBalanceTest(aTestName);
  1.1687 +	return self;
  1.1688 +	}
  1.1689 +
  1.1690 +void RA3FDevSoundPlayGetPlayBalanceTest::DoKickoffTestL()
  1.1691 +	{
  1.1692 +	if (!GetIntFromConfig(iTestStepName, KExLSpeakerBalance, iExLSpeakerBalance))
  1.1693 +		{
  1.1694 +		ERR_PRINTF2(KMsgErrorGetParameter, &KExLSpeakerBalance);
  1.1695 +		StopTest(KErrNotFound);
  1.1696 +		return;
  1.1697 +		}
  1.1698 +	if (!GetIntFromConfig(iTestStepName, KExRSpeakerBalance, iExRSpeakerBalance))
  1.1699 +		{
  1.1700 +		ERR_PRINTF2(KMsgErrorGetParameter, &KExRSpeakerBalance);
  1.1701 +		StopTest(KErrNotFound);
  1.1702 +		return;
  1.1703 +		}
  1.1704 +	TPtrC fourccCode;
  1.1705 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.1706 +		{
  1.1707 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.1708 +		StopTest (KErrNotFound);
  1.1709 +		return;
  1.1710 +		}
  1.1711 +	EncodingFromStringToTFourCC(fourccCode);
  1.1712 +	}
  1.1713 +
  1.1714 +void RA3FDevSoundPlayGetPlayBalanceTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.1715 +	{
  1.1716 +	switch (iDevSoundState)
  1.1717 +		{
  1.1718 +		case EStateCreated:
  1.1719 +			{
  1.1720 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayGetPlayBalanceTest"), EFsmIncorrectErrorPassed));
  1.1721 +			if (aDevSoundEvent == EEventInitialize)
  1.1722 +				{
  1.1723 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.1724 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.1725 +				if (err != KErrNone)
  1.1726 +					{
  1.1727 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.1728 +					StopTest(err);
  1.1729 +					break;
  1.1730 +					}
  1.1731 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.1732 +				iDevSoundState = EStateInitializing;
  1.1733 +				}
  1.1734 +			else
  1.1735 +				{
  1.1736 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.1737 +				StopTest (aError, EFail);
  1.1738 +				}
  1.1739 +			break;
  1.1740 +			}
  1.1741 +		case EStateInitializing:
  1.1742 +			{
  1.1743 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.1744 +				{
  1.1745 +				TInt getBalanceL, getBalanceR;
  1.1746 +				INFO_PRINTF1(_L("Calling CMMFDevSound::GetPlayBalance"));
  1.1747 +				TRAPD(err, iMMFDevSound->GetPlayBalanceL(getBalanceL, getBalanceR));
  1.1748 +				if (err == KErrNone)
  1.1749 +					{
  1.1750 +					if(getBalanceL == iExLSpeakerBalance && getBalanceR == iExRSpeakerBalance)
  1.1751 +						{
  1.1752 +						INFO_PRINTF3(_L("Balance values match expected values which are, right = %d, left = %d"), getBalanceL, getBalanceR);
  1.1753 +						StopTest();
  1.1754 +						}
  1.1755 +					else
  1.1756 +						{
  1.1757 +						ERR_PRINTF3(_L("Balance values do not match expected values, left = %d right = %d"), getBalanceL, getBalanceR);
  1.1758 +						ERR_PRINTF3(_L("Expected values, left = %d right = %d"), iExLSpeakerBalance, iExRSpeakerBalance);
  1.1759 +						StopTest(KErrNone, EFail);
  1.1760 +						}
  1.1761 +					}
  1.1762 +				else
  1.1763 +					{
  1.1764 +					ERR_PRINTF1(_L("Error in getting left and right play balance."));
  1.1765 +					StopTest(err);
  1.1766 +					}
  1.1767 +				}
  1.1768 +			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.1769 +				{
  1.1770 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.1771 +				StopTest(aError);
  1.1772 +				}
  1.1773 +			else
  1.1774 +				{
  1.1775 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.1776 +				StopTest(aError, EFail);
  1.1777 +				}
  1.1778 +			break;
  1.1779 +			}
  1.1780 +		default:
  1.1781 +			{
  1.1782 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.1783 +			StopTest(aError, EFail);
  1.1784 +			}
  1.1785 +		}
  1.1786 +	}
  1.1787 +
  1.1788 +/*
  1.1789 + *========================================================================================================
  1.1790 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0015
  1.1791 + */
  1.1792 +RA3FDevSoundPlayGetSupportedInputDataTypesLTest::RA3FDevSoundPlayGetSupportedInputDataTypesLTest(const TDesC& aTestName) :
  1.1793 +	RA3FDevSoundTestBase(aTestName),
  1.1794 +	iCurrentTypeInTest(0)
  1.1795 +	{
  1.1796 +	}
  1.1797 +
  1.1798 +RA3FDevSoundPlayGetSupportedInputDataTypesLTest* RA3FDevSoundPlayGetSupportedInputDataTypesLTest::NewL(const TDesC& aTestName)
  1.1799 +	{
  1.1800 +	RA3FDevSoundPlayGetSupportedInputDataTypesLTest* self = new (ELeave) RA3FDevSoundPlayGetSupportedInputDataTypesLTest(aTestName);
  1.1801 +	return self;
  1.1802 +	}
  1.1803 +
  1.1804 +void RA3FDevSoundPlayGetSupportedInputDataTypesLTest::DoKickoffTestL()
  1.1805 +	{
  1.1806 +	TPtrC fourccCode;
  1.1807 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.1808 +		{
  1.1809 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.1810 +		StopTest (KErrNotFound);
  1.1811 +		return;
  1.1812 +		}
  1.1813 +	EncodingFromStringToTFourCC(fourccCode);
  1.1814 +	}
  1.1815 +
  1.1816 +void RA3FDevSoundPlayGetSupportedInputDataTypesLTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.1817 +	{
  1.1818 +	switch (iDevSoundState)
  1.1819 +		{
  1.1820 +		case EStateCreated:
  1.1821 +			{
  1.1822 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayGetSupportedInputDataTypesLTest"), EFsmIncorrectErrorPassed));
  1.1823 +			if (aDevSoundEvent == EEventInitialize)
  1.1824 +				{
  1.1825 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.1826 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.1827 +				if (err != KErrNone)
  1.1828 +					{
  1.1829 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.1830 +					StopTest(err);
  1.1831 +					break;
  1.1832 +					}
  1.1833 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.1834 +				iDevSoundState = EStateInitializing;
  1.1835 +				}
  1.1836 +			else
  1.1837 +				{
  1.1838 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.1839 +				StopTest(aError, EFail);
  1.1840 +				}
  1.1841 +			break;
  1.1842 +			}
  1.1843 +		case EStateInitializing:
  1.1844 +			{
  1.1845 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.1846 +				{
  1.1847 +				if(iCurrentTypeInTest == 0)
  1.1848 +					{
  1.1849 +					TMMFPrioritySettings prioritySettings;
  1.1850 +					INFO_PRINTF1(_L("Calling CMMFDevSound::GetSupportedInputDataTypes"));
  1.1851 +					TRAPD(err,iMMFDevSound->GetSupportedInputDataTypesL(iSupportedDataTypes, prioritySettings));
  1.1852 +					if (err != KErrNone)
  1.1853 +						{
  1.1854 +						ERR_PRINTF2(_L("CMMFDevSound::GetSupportedInputDataTypes data types falied ! Left with error = %d"), err);
  1.1855 +						StopTest (err);
  1.1856 +						break;
  1.1857 +						}
  1.1858 +					for(TInt x = 0; x < iSupportedDataTypes.Count (); x++)
  1.1859 +						{
  1.1860 +						TFourCC fourCC = iSupportedDataTypes[x];
  1.1861 +						TBuf<KTFourCC> name;
  1.1862 +						for (TInt i=0; i<= KFourCCMaxBitDisplacement; i+=K8Bits)
  1.1863 +							{
  1.1864 +							name.Append ( (TUint8)(fourCC.FourCC() >> i));
  1.1865 +							}
  1.1866 +						INFO_PRINTF3(_L("Supported Input Data types: 0x%x  %S "), fourCC.FourCC(), &name);
  1.1867 +						}
  1.1868 +					}
  1.1869 +				
  1.1870 +				// Complete test when all types have been used of initialization
  1.1871 +				if(iCurrentTypeInTest == iSupportedDataTypes.Count())
  1.1872 +					{
  1.1873 +					INFO_PRINTF1(_L("========== Test Case Successfully Completed =========="));
  1.1874 +					StopTest();
  1.1875 +					}
  1.1876 +				else
  1.1877 +					{
  1.1878 +					TFourCC fourCC = iSupportedDataTypes[iCurrentTypeInTest];
  1.1879 +					TBuf<KTFourCC> name;
  1.1880 +					for (TInt i=0; i<= KFourCCMaxBitDisplacement; i+=K8Bits)
  1.1881 +						{
  1.1882 +						name.Append ( (TUint8)(fourCC.FourCC() >> i));
  1.1883 +						}
  1.1884 +					INFO_PRINTF3(_L("Initializing for Input Data type: 0x%x  %S "), fourCC.FourCC(), &name);
  1.1885 +					TRAPD(err, iMMFDevSound->InitializeL(*this, fourCC, EMMFStatePlaying));
  1.1886 +					if (err != KErrNone)
  1.1887 +						{
  1.1888 +						ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.1889 +						StopTest(err);
  1.1890 +						break;
  1.1891 +						}
  1.1892 +					}
  1.1893 +				iCurrentTypeInTest++;
  1.1894 +				}
  1.1895 +			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.1896 +				{
  1.1897 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.1898 +				StopTest(aError);
  1.1899 +				}
  1.1900 +			else
  1.1901 +				{
  1.1902 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.1903 +				StopTest(aError, EFail);
  1.1904 +				}
  1.1905 +			break;
  1.1906 +			}
  1.1907 +		default:
  1.1908 +			{
  1.1909 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.1910 +			StopTest(aError, EFail);
  1.1911 +			}
  1.1912 +		}
  1.1913 +	}
  1.1914 +
  1.1915 +/*
  1.1916 + *========================================================================================================
  1.1917 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0016
  1.1918 + */
  1.1919 +RA3FDevSoundPlayMaxVolumeTest::RA3FDevSoundPlayMaxVolumeTest(const TDesC& aTestName) :
  1.1920 +	RA3FDevSoundTestBase(aTestName), iExVolume(0)
  1.1921 +	{
  1.1922 +	}
  1.1923 +
  1.1924 +RA3FDevSoundPlayMaxVolumeTest* RA3FDevSoundPlayMaxVolumeTest::NewL(const TDesC& aTestName)
  1.1925 +	{
  1.1926 +	RA3FDevSoundPlayMaxVolumeTest* self = new (ELeave) RA3FDevSoundPlayMaxVolumeTest(aTestName);
  1.1927 +	return self;
  1.1928 +	}
  1.1929 +
  1.1930 +void RA3FDevSoundPlayMaxVolumeTest::DoKickoffTestL()
  1.1931 +	{
  1.1932 +	if (!GetIntFromConfig(iTestStepName, KExVolume, iExVolume))
  1.1933 +		{
  1.1934 +		ERR_PRINTF2(KMsgErrorGetParameter, &KExVolume);
  1.1935 +		StopTest(KErrNotFound);
  1.1936 +		return;
  1.1937 +		}
  1.1938 +	TPtrC fourccCode;
  1.1939 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.1940 +		{
  1.1941 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.1942 +		StopTest(KErrNotFound);
  1.1943 +		return;
  1.1944 +		}
  1.1945 +	EncodingFromStringToTFourCC (fourccCode);
  1.1946 +	}
  1.1947 +
  1.1948 +void RA3FDevSoundPlayMaxVolumeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.1949 +	{
  1.1950 +	switch (iDevSoundState)
  1.1951 +		{
  1.1952 +		case EStateCreated:
  1.1953 +			{
  1.1954 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayMaxVolumeTest"), EFsmIncorrectErrorPassed));
  1.1955 +			if ( aDevSoundEvent == EEventInitialize)
  1.1956 +				{
  1.1957 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.1958 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.1959 +				if (err != KErrNone)
  1.1960 +					{
  1.1961 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.1962 +					StopTest(err);
  1.1963 +					break;
  1.1964 +					}
  1.1965 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.1966 +				iDevSoundState = EStateInitializing;
  1.1967 +				}
  1.1968 +			else
  1.1969 +				{
  1.1970 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.1971 +				StopTest(aError, EFail);
  1.1972 +				}
  1.1973 +			break;
  1.1974 +			}
  1.1975 +		case EStateInitializing:
  1.1976 +			{
  1.1977 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.1978 +				{
  1.1979 +				TInt maxVolume = iMMFDevSound->MaxVolume();
  1.1980 +				INFO_PRINTF1(_L("Calling CMMFDevSound::MaxVolume"));
  1.1981 +				if(maxVolume == iExVolume)
  1.1982 +					{
  1.1983 +					INFO_PRINTF2(_L("Calling CMMFDevSound::MaxVolume succeeded with the expected value %d"), maxVolume);
  1.1984 +					StopTest();
  1.1985 +					}
  1.1986 +				else
  1.1987 +					{
  1.1988 +					ERR_PRINTF2(_L("Calling CMMFDevSound::MaxVolume failed with value %d"), maxVolume);
  1.1989 +					ERR_PRINTF2(_L("Expected value = %d"), iExVolume);
  1.1990 +					StopTest(KErrNone, EFail);
  1.1991 +					}
  1.1992 +				}
  1.1993 +			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.1994 +				{
  1.1995 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.1996 +				StopTest(aError);
  1.1997 +				}
  1.1998 +			else
  1.1999 +				{
  1.2000 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.2001 +				StopTest(aError, EFail);
  1.2002 +				}
  1.2003 +			break;
  1.2004 +			}
  1.2005 +		default:
  1.2006 +			{
  1.2007 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.2008 +			StopTest(aError, EFail);
  1.2009 +			}
  1.2010 +		}
  1.2011 +	}
  1.2012 +
  1.2013 +/*
  1.2014 + *========================================================================================================
  1.2015 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0017
  1.2016 + */
  1.2017 +RA3FDevSoundPlaySamplesPlayedTest::RA3FDevSoundPlaySamplesPlayedTest(const TDesC& aTestName) :
  1.2018 +	RA3FDevSoundTestBase(aTestName),
  1.2019 +	iExSamplesPlayed(0)
  1.2020 +	{
  1.2021 +	}
  1.2022 +
  1.2023 +RA3FDevSoundPlaySamplesPlayedTest* RA3FDevSoundPlaySamplesPlayedTest::NewL(const TDesC& aTestName)
  1.2024 +	{
  1.2025 +	RA3FDevSoundPlaySamplesPlayedTest* self = new (ELeave) RA3FDevSoundPlaySamplesPlayedTest(aTestName);
  1.2026 +	return self;
  1.2027 +	}
  1.2028 +
  1.2029 +void RA3FDevSoundPlaySamplesPlayedTest::DoKickoffTestL()
  1.2030 +	{
  1.2031 +	if (!GetIntFromConfig(iTestStepName, KExSamplesPlayed, iExSamplesPlayed))
  1.2032 +		{
  1.2033 +		ERR_PRINTF2(KMsgErrorGetParameter, &KExSamplesPlayed);
  1.2034 +		StopTest(KErrNotFound);
  1.2035 +		return;
  1.2036 +		}
  1.2037 +	TPtrC fourccCode;
  1.2038 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.2039 +		{
  1.2040 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.2041 +		StopTest(KErrNotFound);
  1.2042 +		return;
  1.2043 +		}
  1.2044 +	EncodingFromStringToTFourCC(fourccCode);
  1.2045 +	}
  1.2046 +
  1.2047 +void RA3FDevSoundPlaySamplesPlayedTest::Fsm(TMmfDevSoundEvent aDevSoundEvent,TInt aError)
  1.2048 +	{
  1.2049 +	switch (iDevSoundState)
  1.2050 +		{
  1.2051 +		case EStateCreated:
  1.2052 +			{
  1.2053 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySamplesPlayedTest"), EFsmIncorrectErrorPassed));
  1.2054 +			if (aDevSoundEvent == EEventInitialize)
  1.2055 +				{
  1.2056 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.2057 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.2058 +				if (err != KErrNone)
  1.2059 +					{
  1.2060 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.2061 +					StopTest(err);
  1.2062 +					break;
  1.2063 +					}
  1.2064 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.2065 +				iDevSoundState = EStateInitializing;
  1.2066 +				}
  1.2067 +			else
  1.2068 +				{
  1.2069 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.2070 +				StopTest(aError, EFail);
  1.2071 +				}
  1.2072 +			break;
  1.2073 +			}
  1.2074 +		case EStateInitializing:
  1.2075 +			{
  1.2076 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.2077 +				{
  1.2078 +				INFO_PRINTF1(_L("Calling CMMFDevSound::SamplesPlayed"));
  1.2079 +				TInt samplesPlayed = iMMFDevSound->SamplesPlayed();
  1.2080 +				INFO_PRINTF2(_L("Samples returned by CMMFDevSound::SamplesPlayed = %d"), samplesPlayed);
  1.2081 +				if(samplesPlayed == iExSamplesPlayed)
  1.2082 +					{
  1.2083 +					INFO_PRINTF3(_L("Samples returned by CMMFDevSound::SamplesPlayed: %d matches the expected samples played: %d"), samplesPlayed, iExSamplesPlayed);
  1.2084 +					StopTest();
  1.2085 +					}
  1.2086 +				else
  1.2087 +					{
  1.2088 +					ERR_PRINTF2(_L("Call to CMMFDevSound::SamplesPlayed do not match the expected value = %d"), samplesPlayed);
  1.2089 +					ERR_PRINTF2(_L("Expected Samples played value = %d"), iExSamplesPlayed);
  1.2090 +					StopTest(KErrNone, EFail);
  1.2091 +					}
  1.2092 +				}
  1.2093 +			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.2094 +				{
  1.2095 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.2096 +				StopTest(aError);
  1.2097 +				}
  1.2098 +			else
  1.2099 +				{
  1.2100 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.2101 +				StopTest(aError, EFail);
  1.2102 +				}
  1.2103 +			break;
  1.2104 +			}
  1.2105 +		default:
  1.2106 +			{
  1.2107 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.2108 +			StopTest(aError, EFail);
  1.2109 +			}
  1.2110 +		}
  1.2111 +	}
  1.2112 +
  1.2113 +/*
  1.2114 + *========================================================================================================
  1.2115 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0018
  1.2116 + */
  1.2117 +RA3FDevSoundPlayVolumeTest::RA3FDevSoundPlayVolumeTest(const TDesC& aTestName) :
  1.2118 +	RA3FDevSoundTestBase(aTestName),
  1.2119 +	iExVolume(0)
  1.2120 +	{
  1.2121 +	}
  1.2122 +
  1.2123 +RA3FDevSoundPlayVolumeTest* RA3FDevSoundPlayVolumeTest::NewL(const TDesC& aTestName)
  1.2124 +	{
  1.2125 +	RA3FDevSoundPlayVolumeTest* self = new (ELeave) RA3FDevSoundPlayVolumeTest(aTestName);
  1.2126 +	return self;
  1.2127 +	}
  1.2128 +
  1.2129 +void RA3FDevSoundPlayVolumeTest::DoKickoffTestL()
  1.2130 +	{
  1.2131 +	if (!GetIntFromConfig(iTestStepName, KExVolume, iExVolume))
  1.2132 +		{
  1.2133 +		ERR_PRINTF2(KMsgErrorGetParameter, &KExVolume);
  1.2134 +		StopTest(KErrNotFound);
  1.2135 +		return;
  1.2136 +		}
  1.2137 +	TPtrC fourccCode;
  1.2138 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.2139 +		{
  1.2140 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.2141 +		StopTest(KErrNotFound);
  1.2142 +		return;
  1.2143 +		}
  1.2144 +	EncodingFromStringToTFourCC(fourccCode);
  1.2145 +	}
  1.2146 +
  1.2147 +void RA3FDevSoundPlayVolumeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.2148 +	{
  1.2149 +	switch (iDevSoundState)
  1.2150 +		{
  1.2151 +		case EStateCreated:
  1.2152 +			{
  1.2153 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayVolumeTest"), EFsmIncorrectErrorPassed));
  1.2154 +			if (aDevSoundEvent == EEventInitialize)
  1.2155 +				{
  1.2156 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.2157 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.2158 +				if (err != KErrNone)
  1.2159 +					{
  1.2160 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.2161 +					StopTest(err);
  1.2162 +					break;
  1.2163 +					}
  1.2164 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.2165 +				iDevSoundState = EStateInitializing;
  1.2166 +				}
  1.2167 +			else
  1.2168 +				{
  1.2169 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.2170 +				StopTest(aError, EFail);
  1.2171 +				}
  1.2172 +			break;
  1.2173 +			}
  1.2174 +		case EStateInitializing:
  1.2175 +			{
  1.2176 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.2177 +				{
  1.2178 +				INFO_PRINTF1(_L("Calling CMMFDevSound::Volume"));
  1.2179 +				TInt volumeGet = iMMFDevSound->Volume();
  1.2180 +				INFO_PRINTF2(_L("Volume returned by CMMFDevSound::Volume() = %d"), volumeGet);
  1.2181 +				if(volumeGet == iExVolume)
  1.2182 +					{
  1.2183 +					INFO_PRINTF3(_L("Volume returned by CMMFDevSound::Volume(): %d  matches the default device volume: %d"), volumeGet, iExVolume);
  1.2184 +					StopTest();
  1.2185 +					}
  1.2186 +				else
  1.2187 +					{
  1.2188 +					ERR_PRINTF2(_L("Default device volume failed with %d"), volumeGet);
  1.2189 +					ERR_PRINTF2(_L("Expected value = % d"), iExVolume);
  1.2190 +					StopTest(aError , EFail);
  1.2191 +					}
  1.2192 +				}
  1.2193 +			break;
  1.2194 +			}
  1.2195 +		default:
  1.2196 +			{
  1.2197 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.2198 +			StopTest(aError, EFail);
  1.2199 +			}
  1.2200 +		}
  1.2201 +	}
  1.2202 +
  1.2203 +/*
  1.2204 + *========================================================================================================
  1.2205 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0019
  1.2206 + */
  1.2207 +RA3FDevSoundPlayCapabilitiesWhilePlayingTest::RA3FDevSoundPlayCapabilitiesWhilePlayingTest(const TDesC& aTestName) :
  1.2208 +	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC),
  1.2209 +	iExCapChannels(0), iExCapRate(0)
  1.2210 +	{
  1.2211 +	}
  1.2212 +
  1.2213 +RA3FDevSoundPlayCapabilitiesWhilePlayingTest* RA3FDevSoundPlayCapabilitiesWhilePlayingTest::NewL(const TDesC& aTestName)
  1.2214 +	{
  1.2215 +	RA3FDevSoundPlayCapabilitiesWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayCapabilitiesWhilePlayingTest(aTestName);
  1.2216 +	return self;
  1.2217 +	}
  1.2218 +
  1.2219 +void RA3FDevSoundPlayCapabilitiesWhilePlayingTest::DoKickoffTestL()
  1.2220 +	{
  1.2221 +	if (!GetIntFromConfig(iTestStepName, KExCapChannels, iExCapChannels))
  1.2222 +		{
  1.2223 +		ERR_PRINTF2(KMsgErrorGetParameter, &KExCapChannels);
  1.2224 +		StopTest(KErrNotFound);
  1.2225 +		return;
  1.2226 +		}
  1.2227 +	if (!GetIntFromConfig(iTestStepName, KExCapRate, iExCapRate))
  1.2228 +		{
  1.2229 +		ERR_PRINTF2(KMsgErrorGetParameter, &KExCapRate);
  1.2230 +		StopTest(KErrNotFound);
  1.2231 +		return;
  1.2232 +		}
  1.2233 +	TPtrC filename;
  1.2234 +	// Get the filename of the audio file to play
  1.2235 +	if ( !GetStringFromConfig(iTestStepName, KFilename, filename))
  1.2236 +		{
  1.2237 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
  1.2238 +		StopTest(KErrNotFound);
  1.2239 +		return;
  1.2240 +		}
  1.2241 +	// open using RFile for playback
  1.2242 +	iFilename.Copy(filename);
  1.2243 +	TInt err = iFile.Open (iFs, iFilename, EFileRead);
  1.2244 +	if (err != KErrNone)
  1.2245 +		{
  1.2246 +		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
  1.2247 +		iFs.Close();
  1.2248 +		StopTest(err);
  1.2249 +		return;
  1.2250 +		}
  1.2251 +
  1.2252 +	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
  1.2253 +
  1.2254 +	TPtrC fourccCode;
  1.2255 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.2256 +		{
  1.2257 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.2258 +		StopTest(KErrNotFound);
  1.2259 +		return;
  1.2260 +		}
  1.2261 +	EncodingFromStringToTFourCC(fourccCode);
  1.2262 +	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
  1.2263 +	}
  1.2264 +
  1.2265 +void RA3FDevSoundPlayCapabilitiesWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.2266 +	{
  1.2267 +	switch (iDevSoundState)
  1.2268 +		{
  1.2269 +		case EStateCreated:
  1.2270 +			{
  1.2271 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed));
  1.2272 +			if (aDevSoundEvent == EEventInitialize)
  1.2273 +				{
  1.2274 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.2275 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.2276 +				if (err != KErrNone)
  1.2277 +					{
  1.2278 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.2279 +					StopTest(err);
  1.2280 +					break;
  1.2281 +					}
  1.2282 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.2283 +				iDevSoundState = EStateInitializing;
  1.2284 +				}
  1.2285 +			else
  1.2286 +				{
  1.2287 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.2288 +				StopTest(aError, EFail);
  1.2289 +				}
  1.2290 +			break;
  1.2291 +			}
  1.2292 +		case EStateInitializing:
  1.2293 +			{
  1.2294 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.2295 +				{
  1.2296 +				iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
  1.2297 +				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
  1.2298 +				TRAPD(err, iMMFDevSound->PlayInitL());
  1.2299 +				if (err != KErrNone)
  1.2300 +					{
  1.2301 +					StopTest(err);
  1.2302 +					break;
  1.2303 +					}
  1.2304 +				StartTimer(KMicroSecsTwoSec);
  1.2305 +				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
  1.2306 +				iDevSoundState = EStatePlaying;
  1.2307 +				}
  1.2308 +			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.2309 +				{
  1.2310 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.2311 +				StopTest(aError);
  1.2312 +				}
  1.2313 +			else
  1.2314 +				{
  1.2315 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.2316 +				StopTest(aError, EFail);
  1.2317 +				}
  1.2318 +			break;
  1.2319 +			}
  1.2320 +		case EStatePlaying:
  1.2321 +			{
  1.2322 +			if (aDevSoundEvent == EEventBTBF)
  1.2323 +				{
  1.2324 +				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
  1.2325 +				TInt err = iFile.Read (buffer->Data ());
  1.2326 +				if (err != KErrNone)
  1.2327 +					{
  1.2328 +					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
  1.2329 +					StopTest(err);
  1.2330 +					break;
  1.2331 +					}
  1.2332 +				if (buffer->Data().Length ()!= buffer->RequestSize())
  1.2333 +					{
  1.2334 +					iBuffer->SetLastBuffer (ETrue);
  1.2335 +					}
  1.2336 +				INFO_PRINTF1(_L("CMMFDevSound::PlayData()"));
  1.2337 +				iMMFDevSound->PlayData();
  1.2338 +				}
  1.2339 +			else if (aDevSoundEvent == EEventTimerComplete)
  1.2340 +				{
  1.2341 +				TMMFCapabilities capabilitiesGet;
  1.2342 +				INFO_PRINTF1(_L("Calling CMMFDevSound::Capabilities while playing"));
  1.2343 +				capabilitiesGet = iMMFDevSound->Capabilities ();
  1.2344 +				INFO_PRINTF3(_L("Rate Sum:0x%x Channels Sum:0x%x"), capabilitiesGet.iRate, capabilitiesGet.iChannels);
  1.2345 +				PrintSupportedCapabilities (capabilitiesGet.iRate, capabilitiesGet.iChannels);
  1.2346 +				if(capabilitiesGet.iRate == iExCapRate && capabilitiesGet.iChannels == iExCapChannels)
  1.2347 +					{
  1.2348 +					INFO_PRINTF3(_L("Capabilities returned match expected capabilities which are Sum:0x%x Channels Sum:0x%x"), capabilitiesGet.iRate, capabilitiesGet.iChannels);
  1.2349 +					}
  1.2350 +				else
  1.2351 +					{
  1.2352 +					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);
  1.2353 +					ERR_PRINTF3(_L("Expected Rate Sum:0x%x Channels Sum:0x%x"), iExCapRate, iExCapChannels);
  1.2354 +					StopTest (KErrNone, EFail);
  1.2355 +					}
  1.2356 +				}
  1.2357 +			else
  1.2358 +				{
  1.2359 +				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
  1.2360 +				StopTest(aError, EFail);
  1.2361 +				}
  1.2362 +			break;
  1.2363 +			}
  1.2364 +		default:
  1.2365 +			{
  1.2366 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.2367 +			StopTest (aError, EFail);
  1.2368 +			}
  1.2369 +		}
  1.2370 +	}
  1.2371 +
  1.2372 +void RA3FDevSoundPlayCapabilitiesWhilePlayingTest::DoTimerCallback()
  1.2373 +	{
  1.2374 +	INFO_PRINTF1(_L("TimerEvent called"));
  1.2375 +	iTimer->Cancel();
  1.2376 +	INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
  1.2377 +	Fsm(EEventTimerComplete, KErrNone);
  1.2378 +	}
  1.2379 +
  1.2380 +/*
  1.2381 + *========================================================================================================
  1.2382 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0020
  1.2383 + */
  1.2384 +RA3FDevSoundPlayConfigWhilePlayingTest::RA3FDevSoundPlayConfigWhilePlayingTest(const TDesC& aTestName) :
  1.2385 +	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC), iExCapRate(0),
  1.2386 +	iExCapChannels(0)
  1.2387 +	{
  1.2388 +	}
  1.2389 +
  1.2390 +RA3FDevSoundPlayConfigWhilePlayingTest* RA3FDevSoundPlayConfigWhilePlayingTest::NewL(const TDesC& aTestName)
  1.2391 +	{
  1.2392 +	RA3FDevSoundPlayConfigWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayConfigWhilePlayingTest(aTestName);
  1.2393 +	return self;
  1.2394 +	}
  1.2395 +
  1.2396 +void RA3FDevSoundPlayConfigWhilePlayingTest::DoKickoffTestL()
  1.2397 +	{
  1.2398 +	TPtrC filename;
  1.2399 +	// Get the filename of the audio file to play
  1.2400 +	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
  1.2401 +		{
  1.2402 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
  1.2403 +		StopTest(KErrNotFound);
  1.2404 +		return;
  1.2405 +		}
  1.2406 +	// open using RFile for playback
  1.2407 +	iFilename.Copy(filename);
  1.2408 +	TInt err = iFile.Open (iFs, iFilename, EFileRead);
  1.2409 +	if (err != KErrNone)
  1.2410 +		{
  1.2411 +		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
  1.2412 +		iFs.Close();
  1.2413 +		StopTest(err);
  1.2414 +		return;
  1.2415 +		}
  1.2416 +	
  1.2417 +	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
  1.2418 +
  1.2419 +	if (!GetIntFromConfig(iTestStepName, KExCapRate, iExCapRate))
  1.2420 +			{
  1.2421 +			ERR_PRINTF2(KMsgErrorGetParameter, &KExCapRate);
  1.2422 +			StopTest(KErrNotFound);
  1.2423 +			return;
  1.2424 +			}
  1.2425 +	if (!GetIntFromConfig(iTestStepName, KExCapChannels, iExCapChannels))
  1.2426 +		{
  1.2427 +		ERR_PRINTF2(KMsgErrorGetParameter, &KExCapChannels);
  1.2428 +		StopTest(KErrNotFound);
  1.2429 +		return;
  1.2430 +		}
  1.2431 +	TPtrC fourccCode;
  1.2432 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.2433 +		{
  1.2434 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.2435 +		StopTest(KErrNotFound);
  1.2436 +		return;
  1.2437 +		}
  1.2438 +	EncodingFromStringToTFourCC(fourccCode);
  1.2439 +	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
  1.2440 +	}
  1.2441 +
  1.2442 +void RA3FDevSoundPlayConfigWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.2443 +	{
  1.2444 +	switch (iDevSoundState)
  1.2445 +		{
  1.2446 +		case EStateCreated:
  1.2447 +			{
  1.2448 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed));
  1.2449 +			if (aDevSoundEvent == EEventInitialize)
  1.2450 +				{
  1.2451 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.2452 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.2453 +				if (err != KErrNone)
  1.2454 +					{
  1.2455 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.2456 +					StopTest(err);
  1.2457 +					break;
  1.2458 +					}
  1.2459 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.2460 +				iDevSoundState = EStateInitializing;
  1.2461 +				}
  1.2462 +			else
  1.2463 +				{
  1.2464 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.2465 +				StopTest(aError, EFail);
  1.2466 +				}
  1.2467 +			break;
  1.2468 +			}
  1.2469 +		case EStateInitializing:
  1.2470 +			{
  1.2471 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.2472 +				{
  1.2473 +				iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ());
  1.2474 +				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
  1.2475 +				TRAPD(err, iMMFDevSound->PlayInitL());
  1.2476 +				if (err != KErrNone)
  1.2477 +					{
  1.2478 +					StopTest (err);
  1.2479 +					break;
  1.2480 +					}
  1.2481 +				StartTimer(KMicroSecsTwoSec);
  1.2482 +				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
  1.2483 +				iDevSoundState = EStatePlaying;
  1.2484 +				}
  1.2485 +			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.2486 +				{
  1.2487 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.2488 +				StopTest(aError);
  1.2489 +				}
  1.2490 +			else
  1.2491 +				{
  1.2492 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.2493 +				StopTest(aError, EFail);
  1.2494 +				}
  1.2495 +			break;
  1.2496 +			}
  1.2497 +		case EStatePlaying:
  1.2498 +			{
  1.2499 +			if (aDevSoundEvent == EEventBTBF)
  1.2500 +				{
  1.2501 +				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
  1.2502 +				TInt err = iFile.Read (buffer->Data ());
  1.2503 +				if (err != KErrNone)
  1.2504 +					{
  1.2505 +					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
  1.2506 +					StopTest(err);
  1.2507 +					break;
  1.2508 +					}
  1.2509 +				if (buffer->Data().Length ()!= buffer->RequestSize())
  1.2510 +					{
  1.2511 +					iBuffer->SetLastBuffer(ETrue);
  1.2512 +					}
  1.2513 +				INFO_PRINTF1(_L("CMMFDevSound::PlayData()"));
  1.2514 +				iMMFDevSound->PlayData ();
  1.2515 +				}
  1.2516 +			else if (aDevSoundEvent == EEventTimerComplete)
  1.2517 +				{
  1.2518 +				TMMFCapabilities capabilitiesGet;
  1.2519 +				TBuf<KMaxSampleRateStringLength> stringSampleRateGet;
  1.2520 +				TBuf<KMaxChannelsStringLength> stringChannelsGet;
  1.2521 +				TBuf<KMaxSampleRateStringLength> stringSampleRateExpected;
  1.2522 +				TBuf<KMaxChannelsStringLength> stringChannelsExpected;
  1.2523 +				INFO_PRINTF1(_L("Calling CMMFDevSound::Config while playing"));
  1.2524 +				capabilitiesGet=iMMFDevSound->Config ();
  1.2525 +				SampleRateFromTUintToString (capabilitiesGet.iRate, stringSampleRateGet);
  1.2526 +				ChannelsFromTUintToString (capabilitiesGet.iChannels, stringChannelsGet);
  1.2527 +				SampleRateFromTIntToTMMFSampleRate (iExCapRate, iExSampleRate);
  1.2528 +				SampleRateFromTUintToString (iExSampleRate, stringSampleRateExpected);
  1.2529 +				ChannelsFromTUintToString (iExCapChannels, stringChannelsExpected);
  1.2530 +				if (stringSampleRateExpected.Compare(stringSampleRateGet) == 0)
  1.2531 +					{
  1.2532 +					INFO_PRINTF2(_L("Sample rate value match default as expected with %S"), &stringSampleRateGet);
  1.2533 +					if (stringChannelsExpected.Compare(stringChannelsGet) == 0)
  1.2534 +						{
  1.2535 +						INFO_PRINTF2(_L("Channel mode value match default as expected with %S"), &stringChannelsGet);
  1.2536 +						StopTest();
  1.2537 +						}
  1.2538 +					else
  1.2539 +						{
  1.2540 +						INFO_PRINTF2(_L("Channel mode value failed with %S"), &stringChannelsGet);
  1.2541 +						ERR_PRINTF2(_L("Expected channel mode %S"), &stringChannelsExpected);
  1.2542 +						StopTest(KErrNone, EFail);
  1.2543 +						}
  1.2544 +					}
  1.2545 +				else
  1.2546 +					{
  1.2547 +					ERR_PRINTF2(_L("Sample rate value failed with %S"), &stringSampleRateGet);
  1.2548 +					ERR_PRINTF2(_L("Expected sample rate %S"), &stringSampleRateExpected);
  1.2549 +					StopTest(KErrNone, EFail);
  1.2550 +					}
  1.2551 +				}
  1.2552 +			else
  1.2553 +				{
  1.2554 +				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
  1.2555 +				StopTest(aError, EFail);
  1.2556 +				}
  1.2557 +			break;
  1.2558 +			}
  1.2559 +		default:
  1.2560 +			{
  1.2561 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.2562 +			StopTest(aError, EFail);
  1.2563 +			}
  1.2564 +		}
  1.2565 +	}
  1.2566 +
  1.2567 +void RA3FDevSoundPlayConfigWhilePlayingTest::DoTimerCallback()
  1.2568 +	{
  1.2569 +	INFO_PRINTF1(_L("TimerEvent called"));
  1.2570 +	iTimer->Cancel();
  1.2571 +	INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
  1.2572 +	Fsm (EEventTimerComplete, KErrNone);
  1.2573 +	}
  1.2574 +
  1.2575 +/*
  1.2576 + *========================================================================================================
  1.2577 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0021
  1.2578 + */
  1.2579 +RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest::RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest(const TDesC& aTestName) :
  1.2580 +	RA3FDevSoundTestBase(aTestName), 
  1.2581 +	iFilename(KNullDesC),
  1.2582 +	iExLSpeakerBalance(0),
  1.2583 +	iExRSpeakerBalance(0)
  1.2584 +	{
  1.2585 +	}
  1.2586 +
  1.2587 +RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest* RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest::NewL(const TDesC& aTestName)
  1.2588 +	{
  1.2589 +	RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest(aTestName);
  1.2590 +	return self;
  1.2591 +	}
  1.2592 +
  1.2593 +void RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest::DoKickoffTestL()
  1.2594 +	{
  1.2595 +	if (!GetIntFromConfig(iTestStepName, KExLSpeakerBalance, iExLSpeakerBalance))
  1.2596 +		{
  1.2597 +		ERR_PRINTF2(KMsgErrorGetParameter, &KExLSpeakerBalance);
  1.2598 +		StopTest(KErrNotFound);
  1.2599 +		return;
  1.2600 +		}
  1.2601 +	if (!GetIntFromConfig(iTestStepName, KExRSpeakerBalance, iExRSpeakerBalance))
  1.2602 +		{
  1.2603 +		ERR_PRINTF2(KMsgErrorGetParameter, &KExRSpeakerBalance);
  1.2604 +		StopTest(KErrNotFound);
  1.2605 +		return;
  1.2606 +		}
  1.2607 +	TPtrC filename;
  1.2608 +	// Get the filename of the audio file to play
  1.2609 +	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
  1.2610 +		{
  1.2611 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
  1.2612 +		StopTest(KErrNotFound);
  1.2613 +		return;
  1.2614 +		}
  1.2615 +	// open using RFile for playback
  1.2616 +	iFilename.Copy (filename);
  1.2617 +	TInt err = iFile.Open (iFs, iFilename, EFileRead);
  1.2618 +	if (err != KErrNone)
  1.2619 +		{
  1.2620 +		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
  1.2621 +		iFs.Close();
  1.2622 +		StopTest(err);
  1.2623 +		return;
  1.2624 +		}
  1.2625 +
  1.2626 +	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
  1.2627 +
  1.2628 +	TPtrC fourccCode;
  1.2629 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.2630 +		{
  1.2631 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.2632 +		StopTest(KErrNotFound);
  1.2633 +		return;
  1.2634 +		}
  1.2635 +	EncodingFromStringToTFourCC(fourccCode);
  1.2636 +	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
  1.2637 +	}
  1.2638 +
  1.2639 +void RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.2640 +	{
  1.2641 +	switch (iDevSoundState)
  1.2642 +		{
  1.2643 +		case EStateCreated:
  1.2644 +			{
  1.2645 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed));
  1.2646 +			if (aDevSoundEvent == EEventInitialize)
  1.2647 +				{
  1.2648 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.2649 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.2650 +				if (err != KErrNone)
  1.2651 +					{
  1.2652 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.2653 +					StopTest(err);
  1.2654 +					break;
  1.2655 +					}
  1.2656 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.2657 +				iDevSoundState = EStateInitializing;
  1.2658 +				}
  1.2659 +			else
  1.2660 +				{
  1.2661 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.2662 +				StopTest(aError, EFail);
  1.2663 +				}
  1.2664 +			break;
  1.2665 +			}
  1.2666 +		case EStateInitializing:
  1.2667 +			{
  1.2668 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.2669 +				{
  1.2670 +				iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
  1.2671 +				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
  1.2672 +				TRAPD(err, iMMFDevSound->PlayInitL());
  1.2673 +				if (err != KErrNone)
  1.2674 +					{
  1.2675 +					StopTest (err);
  1.2676 +					break;
  1.2677 +					}
  1.2678 +				StartTimer (KMicroSecsTwoSec);
  1.2679 +				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
  1.2680 +				iDevSoundState = EStatePlaying;
  1.2681 +				}
  1.2682 +			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.2683 +				{
  1.2684 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.2685 +				StopTest(aError);
  1.2686 +				}
  1.2687 +			else
  1.2688 +				{
  1.2689 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.2690 +				StopTest(aError, EFail);
  1.2691 +				}
  1.2692 +			break;
  1.2693 +			}
  1.2694 +		case EStatePlaying:
  1.2695 +			{
  1.2696 +			if (aDevSoundEvent == EEventBTBF)
  1.2697 +				{
  1.2698 +				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
  1.2699 +				TInt err = iFile.Read (buffer->Data ());
  1.2700 +				if (err != KErrNone)
  1.2701 +					{
  1.2702 +					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
  1.2703 +					StopTest(err);
  1.2704 +					break;
  1.2705 +					}
  1.2706 +				if (buffer->Data().Length ()!= buffer->RequestSize())
  1.2707 +					{
  1.2708 +					iBuffer->SetLastBuffer(ETrue);
  1.2709 +					}
  1.2710 +				INFO_PRINTF1(_L("CMMFDevSound::PlayData()"));
  1.2711 +				iMMFDevSound->PlayData ();
  1.2712 +				}
  1.2713 +			else if (aDevSoundEvent == EEventTimerComplete)
  1.2714 +				{
  1.2715 +				TInt getBalanceL, getBalanceR;
  1.2716 +				INFO_PRINTF1(_L("Calling CMMFDevSound::GetPlayBalance while playing"));
  1.2717 +				TRAPD(err, iMMFDevSound->GetPlayBalanceL(getBalanceL, getBalanceR));
  1.2718 +				INFO_PRINTF3(_L("Balance returned by CMMFDevSound::GetPlayBalance left = %d right = %d"), getBalanceL, getBalanceR);
  1.2719 +				if (err == KErrNone)
  1.2720 +					{
  1.2721 +					if(getBalanceL == iExLSpeakerBalance && getBalanceR == iExRSpeakerBalance)
  1.2722 +						{
  1.2723 +						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);
  1.2724 +						}
  1.2725 +					else
  1.2726 +						{
  1.2727 +						ERR_PRINTF3(_L("Balance values do not match expected values, left %d right %d"), getBalanceL, getBalanceR);
  1.2728 +						ERR_PRINTF3(_L("Expected values, left %d right %d"), iExLSpeakerBalance, iExRSpeakerBalance);
  1.2729 +						StopTest(KErrNone, EFail);
  1.2730 +						}
  1.2731 +					}
  1.2732 +				else
  1.2733 +					{
  1.2734 +					ERR_PRINTF1(_L("Error in getting left and right play balance."));
  1.2735 +					StopTest(err);
  1.2736 +					}
  1.2737 +				}
  1.2738 +			else
  1.2739 +				{
  1.2740 +				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
  1.2741 +				StopTest(aError, EFail);
  1.2742 +				}
  1.2743 +			break;
  1.2744 +			}
  1.2745 +		default:
  1.2746 +			{
  1.2747 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.2748 +			StopTest(aError, EFail);
  1.2749 +			}
  1.2750 +		}
  1.2751 +	}
  1.2752 +
  1.2753 +void RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest::DoTimerCallback()
  1.2754 +	{
  1.2755 +	INFO_PRINTF1(_L("TimerEvent called"));
  1.2756 +	iTimer->Cancel();
  1.2757 +	INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
  1.2758 +	Fsm(EEventTimerComplete, KErrNone);
  1.2759 +	}
  1.2760 +
  1.2761 +/*
  1.2762 + *========================================================================================================
  1.2763 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0022
  1.2764 + */
  1.2765 +RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest::RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest(const TDesC& aTestName) :
  1.2766 +	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC)
  1.2767 +	{
  1.2768 +	}
  1.2769 +
  1.2770 +RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest* RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest::NewL(const TDesC& aTestName)
  1.2771 +	{
  1.2772 +	RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest(aTestName);
  1.2773 +	return self;
  1.2774 +	}
  1.2775 +
  1.2776 +void RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest::DoKickoffTestL()
  1.2777 +	{
  1.2778 +	TPtrC filename;
  1.2779 +	// Get the filename of the audio file to play
  1.2780 +	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
  1.2781 +		{
  1.2782 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
  1.2783 +		StopTest(KErrNotFound);
  1.2784 +		return;
  1.2785 +		}
  1.2786 +	// open using RFile for playback
  1.2787 +	iFilename.Copy(filename);
  1.2788 +	TInt err = iFile.Open (iFs, iFilename, EFileRead);
  1.2789 +	if (err != KErrNone)
  1.2790 +		{
  1.2791 +		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
  1.2792 +		iFs.Close();
  1.2793 +		StopTest(err);
  1.2794 +		return;
  1.2795 +		}
  1.2796 +
  1.2797 +	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
  1.2798 +
  1.2799 +	TPtrC fourccCode;
  1.2800 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.2801 +		{
  1.2802 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.2803 +		StopTest(KErrNotFound);
  1.2804 +		return;
  1.2805 +		}
  1.2806 +	EncodingFromStringToTFourCC(fourccCode);
  1.2807 +	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
  1.2808 +	}
  1.2809 +
  1.2810 +void RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.2811 +	{
  1.2812 +	switch (iDevSoundState)
  1.2813 +		{
  1.2814 +		case EStateCreated:
  1.2815 +			{
  1.2816 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed));
  1.2817 +			if (aDevSoundEvent == EEventInitialize)
  1.2818 +				{
  1.2819 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.2820 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.2821 +				if (err != KErrNone)
  1.2822 +					{
  1.2823 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.2824 +					StopTest(err);
  1.2825 +					break;
  1.2826 +					}
  1.2827 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.2828 +				iDevSoundState = EStateInitializing;
  1.2829 +				}
  1.2830 +			else
  1.2831 +				{
  1.2832 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.2833 +				StopTest(aError, EFail);
  1.2834 +				}
  1.2835 +			break;
  1.2836 +			}
  1.2837 +		case EStateInitializing:
  1.2838 +			{
  1.2839 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.2840 +				{
  1.2841 +				iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume());
  1.2842 +				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
  1.2843 +				TRAPD(err, iMMFDevSound->PlayInitL());
  1.2844 +				if (err != KErrNone)
  1.2845 +					{
  1.2846 +					StopTest (err);
  1.2847 +					break;
  1.2848 +					}
  1.2849 +				StartTimer(KMicroSecsTwoSec);
  1.2850 +				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
  1.2851 +				iDevSoundState = EStatePlaying;
  1.2852 +				}
  1.2853 +			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.2854 +				{
  1.2855 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.2856 +				StopTest(aError);
  1.2857 +				}
  1.2858 +			else
  1.2859 +				{
  1.2860 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.2861 +				StopTest(aError, EFail);
  1.2862 +				}
  1.2863 +			break;
  1.2864 +			}
  1.2865 +		case EStatePlaying:
  1.2866 +			{
  1.2867 +			if (aDevSoundEvent == EEventBTBF)
  1.2868 +				{
  1.2869 +				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
  1.2870 +				TInt err = iFile.Read (buffer->Data ());
  1.2871 +				if (err != KErrNone)
  1.2872 +					{
  1.2873 +					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
  1.2874 +					StopTest(err);
  1.2875 +					break;
  1.2876 +					}
  1.2877 +				if (buffer->Data().Length ()!= buffer->RequestSize())
  1.2878 +					{
  1.2879 +					iBuffer->SetLastBuffer (ETrue);
  1.2880 +					}
  1.2881 +				INFO_PRINTF1(_L("CMMFDevSound::PlayData()"));
  1.2882 +				iMMFDevSound->PlayData ();
  1.2883 +				}
  1.2884 +			else if (aDevSoundEvent == EEventTimerComplete)
  1.2885 +				{
  1.2886 +				RArray< TFourCC > supportedDataTypes;
  1.2887 +				TMMFPrioritySettings prioritySettings;
  1.2888 +				TRAPD(err,iMMFDevSound->GetSupportedInputDataTypesL(supportedDataTypes, prioritySettings));
  1.2889 +				if (err != KErrNone)
  1.2890 +					{
  1.2891 +					ERR_PRINTF2(_L("Getting supported data types falied ! Left with error = %d"), err);
  1.2892 +					StopTest(err);
  1.2893 +					break;
  1.2894 +					}
  1.2895 +				for(TInt x = 0; x < supportedDataTypes.Count (); x++)
  1.2896 +					{
  1.2897 +					TFourCC fourCC = supportedDataTypes[x];
  1.2898 +					TBuf<KTFourCC> name;
  1.2899 +					for (TInt i=0; i<= KFourCCMaxBitDisplacement; i+=K8Bits)
  1.2900 +						{
  1.2901 +						name.Append ( (TUint8)(fourCC.FourCC() >> i));
  1.2902 +						}
  1.2903 +					INFO_PRINTF3(_L("Supported Input Data types: 0x%x  %S "), fourCC.FourCC(), &name);
  1.2904 +					}
  1.2905 +				}
  1.2906 +			else
  1.2907 +				{
  1.2908 +				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
  1.2909 +				StopTest(aError, EFail);
  1.2910 +				}
  1.2911 +			break;
  1.2912 +			}
  1.2913 +		default:
  1.2914 +			{
  1.2915 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.2916 +			StopTest(aError, EFail);
  1.2917 +			}
  1.2918 +		}
  1.2919 +	}
  1.2920 +
  1.2921 +void RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest::DoTimerCallback()
  1.2922 +	{
  1.2923 +	INFO_PRINTF1(_L("TimerEvent called"));
  1.2924 +	iTimer->Cancel();
  1.2925 +	INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
  1.2926 +	Fsm(EEventTimerComplete, KErrNone);
  1.2927 +	}
  1.2928 +
  1.2929 +/*
  1.2930 + *========================================================================================================
  1.2931 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0023
  1.2932 + */
  1.2933 +RA3FDevSoundPlayMaxVolumeWhilePlayingTest::RA3FDevSoundPlayMaxVolumeWhilePlayingTest(const TDesC& aTestName) :
  1.2934 +	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC),
  1.2935 +	iExVolume(0)
  1.2936 +	{
  1.2937 +	}
  1.2938 +
  1.2939 +RA3FDevSoundPlayMaxVolumeWhilePlayingTest* RA3FDevSoundPlayMaxVolumeWhilePlayingTest::NewL(	const TDesC& aTestName)
  1.2940 +	{
  1.2941 +	RA3FDevSoundPlayMaxVolumeWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayMaxVolumeWhilePlayingTest(aTestName);
  1.2942 +	return self;
  1.2943 +	}
  1.2944 +
  1.2945 +void RA3FDevSoundPlayMaxVolumeWhilePlayingTest::DoKickoffTestL()
  1.2946 +	{
  1.2947 +	if (!GetIntFromConfig(iTestStepName, KExVolume, iExVolume))
  1.2948 +		{
  1.2949 +		ERR_PRINTF2(KMsgErrorGetParameter, &KExVolume);
  1.2950 +		StopTest(KErrNotFound);
  1.2951 +		return;
  1.2952 +		}
  1.2953 +	TPtrC filename;
  1.2954 +	// Get the filename of the audio file to play
  1.2955 +	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
  1.2956 +		{
  1.2957 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
  1.2958 +		StopTest(KErrNotFound);
  1.2959 +		return;
  1.2960 +		}
  1.2961 +	// open using RFile for playback
  1.2962 +	iFilename.Copy(filename);
  1.2963 +	TInt err = iFile.Open(iFs, iFilename, EFileRead);
  1.2964 +	if (err != KErrNone)
  1.2965 +		{
  1.2966 +		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
  1.2967 +		iFs.Close();
  1.2968 +		StopTest(err);
  1.2969 +		return;
  1.2970 +		}
  1.2971 +
  1.2972 +	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
  1.2973 +
  1.2974 +	TPtrC fourccCode;
  1.2975 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.2976 +		{
  1.2977 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.2978 +		StopTest (KErrNotFound);
  1.2979 +		return;
  1.2980 +		}
  1.2981 +	EncodingFromStringToTFourCC(fourccCode);
  1.2982 +	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
  1.2983 +	}
  1.2984 +
  1.2985 +void RA3FDevSoundPlayMaxVolumeWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.2986 +	{
  1.2987 +	switch (iDevSoundState)
  1.2988 +		{
  1.2989 +		case EStateCreated:
  1.2990 +			{
  1.2991 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed));
  1.2992 +			if ( aDevSoundEvent == EEventInitialize)
  1.2993 +				{
  1.2994 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.2995 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.2996 +				if (err != KErrNone)
  1.2997 +					{
  1.2998 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.2999 +					StopTest(err);
  1.3000 +					break;
  1.3001 +					}
  1.3002 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.3003 +				iDevSoundState = EStateInitializing;
  1.3004 +				}
  1.3005 +			else
  1.3006 +				{
  1.3007 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.3008 +				StopTest(aError, EFail);
  1.3009 +				}
  1.3010 +			break;
  1.3011 +			}
  1.3012 +		case EStateInitializing:
  1.3013 +			{
  1.3014 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.3015 +				{
  1.3016 +				iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume ());
  1.3017 +				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
  1.3018 +				TRAPD(err, iMMFDevSound->PlayInitL());
  1.3019 +				if (err != KErrNone)
  1.3020 +					{
  1.3021 +					StopTest(err);
  1.3022 +					break;
  1.3023 +					}
  1.3024 +				StartTimer(KMicroSecsTwoSec);
  1.3025 +				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
  1.3026 +				iDevSoundState = EStatePlaying;
  1.3027 +				}
  1.3028 +			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.3029 +				{
  1.3030 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.3031 +				StopTest(aError);
  1.3032 +				}
  1.3033 +			else
  1.3034 +				{
  1.3035 +				ERR_PRINTF2(_L("DevSound EEventInitComplete was NOT received as expected. Received event: %d"), aDevSoundEvent);
  1.3036 +				StopTest(aError, EFail);
  1.3037 +				}
  1.3038 +			break;
  1.3039 +			}
  1.3040 +		case EStatePlaying:
  1.3041 +			{
  1.3042 +			if (aDevSoundEvent == EEventBTBF)
  1.3043 +				{
  1.3044 +				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
  1.3045 +				TInt err = iFile.Read (buffer->Data ());
  1.3046 +				if (err != KErrNone)
  1.3047 +					{
  1.3048 +					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
  1.3049 +					StopTest(err);
  1.3050 +					break;
  1.3051 +					}
  1.3052 +				if (buffer->Data().Length ()!= buffer->RequestSize())
  1.3053 +					{
  1.3054 +					iBuffer->SetLastBuffer(ETrue);
  1.3055 +					}
  1.3056 +				INFO_PRINTF1(_L("CMMFDevSound::PlayData()"));
  1.3057 +				iMMFDevSound->PlayData();
  1.3058 +				}
  1.3059 +			else if (aDevSoundEvent == EEventTimerComplete)
  1.3060 +				{
  1.3061 +				TInt maxVolume = iMMFDevSound->MaxVolume();
  1.3062 +				INFO_PRINTF1(_L("Calling CMMFDevSound::MaxVolume"));
  1.3063 +				if(maxVolume == iExVolume)
  1.3064 +					{
  1.3065 +					INFO_PRINTF2(_L("Call to CMMFDevSound::MaxVolume succeeded with %d"), maxVolume);
  1.3066 +					StopTest();
  1.3067 +					}
  1.3068 +				else
  1.3069 +					{
  1.3070 +					ERR_PRINTF2(_L("Call to CMMFDevSound::MaxVolume failed with %d"), maxVolume);
  1.3071 +					ERR_PRINTF2(_L("Expected Max volume value = %d"), iExVolume);
  1.3072 +					StopTest(KErrNone, EFail);
  1.3073 +					}
  1.3074 +				}
  1.3075 +			else
  1.3076 +				{
  1.3077 +				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
  1.3078 +				StopTest(aError, EFail);
  1.3079 +				}
  1.3080 +			break;
  1.3081 +			}
  1.3082 +		default:
  1.3083 +			{
  1.3084 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.3085 +			StopTest(aError, EFail);
  1.3086 +			}
  1.3087 +		}
  1.3088 +	}
  1.3089 +
  1.3090 +void RA3FDevSoundPlayMaxVolumeWhilePlayingTest::DoTimerCallback()
  1.3091 +	{
  1.3092 +	INFO_PRINTF1(_L("TimerEvent called"));
  1.3093 +	iTimer->Cancel();
  1.3094 +	INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
  1.3095 +	Fsm (EEventTimerComplete, KErrNone);
  1.3096 +	}
  1.3097 +
  1.3098 +/*
  1.3099 + *========================================================================================================
  1.3100 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0024
  1.3101 + */
  1.3102 +RA3FDevSoundPlaySamplesPlayedWhilePlayingTest::RA3FDevSoundPlaySamplesPlayedWhilePlayingTest(const TDesC& aTestName) :
  1.3103 +	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC),
  1.3104 +	iExSamplesPlayed(0)
  1.3105 +	{
  1.3106 +	}
  1.3107 +
  1.3108 +RA3FDevSoundPlaySamplesPlayedWhilePlayingTest* RA3FDevSoundPlaySamplesPlayedWhilePlayingTest::NewL(const TDesC& aTestName)
  1.3109 +	{
  1.3110 +	RA3FDevSoundPlaySamplesPlayedWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlaySamplesPlayedWhilePlayingTest(aTestName);
  1.3111 +	return self;
  1.3112 +	}
  1.3113 +
  1.3114 +void RA3FDevSoundPlaySamplesPlayedWhilePlayingTest::DoKickoffTestL()
  1.3115 +	{
  1.3116 +	TPtrC filename;
  1.3117 +	// Get the filename of the audio file to play
  1.3118 +	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
  1.3119 +		{
  1.3120 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
  1.3121 +		StopTest(KErrNotFound);
  1.3122 +		return;
  1.3123 +		}
  1.3124 +	// open using RFile for playback
  1.3125 +	iFilename.Copy(filename);
  1.3126 +	TInt err = iFile.Open (iFs, iFilename, EFileRead);
  1.3127 +	if (err != KErrNone)
  1.3128 +		{
  1.3129 +		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
  1.3130 +		iFs.Close();
  1.3131 +		StopTest(err);
  1.3132 +		return;
  1.3133 +		}
  1.3134 +	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
  1.3135 +	TPtrC fourccCode;
  1.3136 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.3137 +		{
  1.3138 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.3139 +		StopTest(KErrNotFound);
  1.3140 +		return;
  1.3141 +		}
  1.3142 +	EncodingFromStringToTFourCC(fourccCode);
  1.3143 +	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
  1.3144 +	}
  1.3145 +
  1.3146 +void RA3FDevSoundPlaySamplesPlayedWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.3147 +	{
  1.3148 +	switch (iDevSoundState)
  1.3149 +		{
  1.3150 +		case EStateCreated:
  1.3151 +			{
  1.3152 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed));
  1.3153 +			if (aDevSoundEvent == EEventInitialize)
  1.3154 +				{
  1.3155 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.3156 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.3157 +				if (err != KErrNone)
  1.3158 +					{
  1.3159 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.3160 +					StopTest(err);
  1.3161 +					break;
  1.3162 +					}
  1.3163 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.3164 +				iDevSoundState = EStateInitializing;
  1.3165 +				}
  1.3166 +			else
  1.3167 +				{
  1.3168 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.3169 +				StopTest(aError, EFail);
  1.3170 +				}
  1.3171 +			break;
  1.3172 +			}
  1.3173 +		case EStateInitializing:
  1.3174 +			{
  1.3175 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.3176 +				{
  1.3177 +				iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
  1.3178 +				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
  1.3179 +				TRAPD(err, iMMFDevSound->PlayInitL());
  1.3180 +				if (err != KErrNone)
  1.3181 +					{
  1.3182 +					StopTest(err);
  1.3183 +					break;
  1.3184 +					}
  1.3185 +				StartTimer(KMicroSecsTwoSec);
  1.3186 +				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
  1.3187 +				iDevSoundState = EStatePlaying;
  1.3188 +				}
  1.3189 +			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.3190 +				{
  1.3191 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.3192 +				StopTest(aError);
  1.3193 +				}
  1.3194 +			else
  1.3195 +				{
  1.3196 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.3197 +				StopTest(aError, EFail);
  1.3198 +				}
  1.3199 +			break;
  1.3200 +			}
  1.3201 +		case EStatePlaying:
  1.3202 +			{
  1.3203 +			if (aDevSoundEvent == EEventBTBF)
  1.3204 +				{
  1.3205 +				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
  1.3206 +				TInt err = iFile.Read(buffer->Data ());
  1.3207 +				if (err != KErrNone)
  1.3208 +					{
  1.3209 +					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
  1.3210 +					StopTest (err);
  1.3211 +					break;
  1.3212 +					}
  1.3213 +				if (buffer->Data().Length()!= buffer->RequestSize())
  1.3214 +					{
  1.3215 +					iBuffer->SetLastBuffer(ETrue);
  1.3216 +					}
  1.3217 +				INFO_PRINTF1(_L("CMMFDevSound::PlayData()"));
  1.3218 +				iMMFDevSound->PlayData();
  1.3219 +				}
  1.3220 +			else if (aDevSoundEvent == EEventTimerComplete)
  1.3221 +				{
  1.3222 +				INFO_PRINTF1(_L("Calling CMMFDevSound::SamplesPlayed"));
  1.3223 +				TInt samplesPlayed = iMMFDevSound->SamplesPlayed();
  1.3224 +				INFO_PRINTF2(_L("Samples played so far %d"), samplesPlayed);
  1.3225 +				if(samplesPlayed > 0)
  1.3226 +					{
  1.3227 +					INFO_PRINTF2(_L("Samples returned by CMMFDevSound::SamplesPlayed: %d matches the expected value which is > 0"), samplesPlayed);
  1.3228 +					StopTest();
  1.3229 +					}
  1.3230 +				else
  1.3231 +					{
  1.3232 +					ERR_PRINTF2(_L("Samples played returned an invalid value %d"), samplesPlayed);
  1.3233 +					ERR_PRINTF1(_L("Expected value must be a positive value greater than 0"));
  1.3234 +					StopTest(aError, EFail);
  1.3235 +					
  1.3236 +					}
  1.3237 +				}
  1.3238 +			else
  1.3239 +				{
  1.3240 +				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
  1.3241 +				StopTest(aError, EFail);
  1.3242 +				}
  1.3243 +			break;
  1.3244 +			}
  1.3245 +		default:
  1.3246 +			{
  1.3247 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.3248 +			StopTest(aError, EFail);
  1.3249 +			}
  1.3250 +		}
  1.3251 +	}
  1.3252 +
  1.3253 +void RA3FDevSoundPlaySamplesPlayedWhilePlayingTest::DoTimerCallback()
  1.3254 +	{
  1.3255 +	INFO_PRINTF1(_L("TimerEvent called"));
  1.3256 +	iTimer->Cancel();
  1.3257 +	INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
  1.3258 +	Fsm(EEventTimerComplete, KErrNone);
  1.3259 +	}
  1.3260 +
  1.3261 +/*
  1.3262 + *========================================================================================================
  1.3263 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0025
  1.3264 + */
  1.3265 +
  1.3266 +RA3FDevSoundPlayVolumeWhilePlayingTest::RA3FDevSoundPlayVolumeWhilePlayingTest(const TDesC& aTestName) :
  1.3267 +	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC), 
  1.3268 +	iExVolume(0)
  1.3269 +	{
  1.3270 +	}
  1.3271 +
  1.3272 +RA3FDevSoundPlayVolumeWhilePlayingTest* RA3FDevSoundPlayVolumeWhilePlayingTest::NewL(const TDesC& aTestName)
  1.3273 +	{
  1.3274 +	RA3FDevSoundPlayVolumeWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayVolumeWhilePlayingTest(aTestName);
  1.3275 +	return self;
  1.3276 +	}
  1.3277 +
  1.3278 +void RA3FDevSoundPlayVolumeWhilePlayingTest::DoKickoffTestL()
  1.3279 +	{
  1.3280 +	TPtrC filename;
  1.3281 +	// Get the filename of the audio file to play
  1.3282 +	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
  1.3283 +		{
  1.3284 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
  1.3285 +		StopTest(KErrNotFound);
  1.3286 +		return;
  1.3287 +		}
  1.3288 +	// open using RFile for playback
  1.3289 +	iFilename.Copy(filename);
  1.3290 +	TInt err = iFile.Open(iFs, iFilename, EFileRead);
  1.3291 +	if (err != KErrNone)
  1.3292 +		{
  1.3293 +		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
  1.3294 +		iFs.Close();
  1.3295 +		StopTest(err);
  1.3296 +		return;
  1.3297 +		}
  1.3298 +	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
  1.3299 +	TPtrC fourccCode;
  1.3300 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.3301 +		{
  1.3302 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.3303 +		StopTest(KErrNotFound);
  1.3304 +		return;
  1.3305 +		}
  1.3306 +	if (!GetIntFromConfig(iTestStepName, KExVolume, iExVolume))
  1.3307 +		{
  1.3308 +		ERR_PRINTF2(KMsgErrorGetParameter, &KExVolume);
  1.3309 +		StopTest(KErrNotFound);
  1.3310 +		return;
  1.3311 +		}
  1.3312 +	EncodingFromStringToTFourCC(fourccCode);
  1.3313 +	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
  1.3314 +	}
  1.3315 +
  1.3316 +void RA3FDevSoundPlayVolumeWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.3317 +	{
  1.3318 +	switch (iDevSoundState)
  1.3319 +		{
  1.3320 +		case EStateCreated:
  1.3321 +			{
  1.3322 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed));
  1.3323 +			if (aDevSoundEvent == EEventInitialize)
  1.3324 +				{
  1.3325 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.3326 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.3327 +				if (err != KErrNone)
  1.3328 +					{
  1.3329 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.3330 +					StopTest(err);
  1.3331 +					break;
  1.3332 +					}
  1.3333 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.3334 +				iDevSoundState = EStateInitializing;
  1.3335 +				}
  1.3336 +			else
  1.3337 +				{
  1.3338 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.3339 +				StopTest(aError, EFail);
  1.3340 +				}
  1.3341 +			break;
  1.3342 +			}
  1.3343 +		case EStateInitializing:
  1.3344 +			{
  1.3345 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.3346 +				{
  1.3347 +				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
  1.3348 +				TRAPD(err, iMMFDevSound->PlayInitL());
  1.3349 +				if (err != KErrNone)
  1.3350 +					{
  1.3351 +					StopTest(err);
  1.3352 +					break;
  1.3353 +					}
  1.3354 +				StartTimer (KMicroSecsTwoSec);
  1.3355 +				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
  1.3356 +				iDevSoundState = EStatePlaying;
  1.3357 +				}
  1.3358 +			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.3359 +					{
  1.3360 +					ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.3361 +					StopTest(aError);
  1.3362 +					}
  1.3363 +				else
  1.3364 +					{
  1.3365 +					ERR_PRINTF2(_L("DevSound EEventInitComplete NOT received as expected. Received event: %d"), aDevSoundEvent);
  1.3366 +					StopTest(aError, EFail);
  1.3367 +					}
  1.3368 +			break;
  1.3369 +			}
  1.3370 +		case EStatePlaying:
  1.3371 +			{
  1.3372 +			if (aDevSoundEvent == EEventBTBF)
  1.3373 +				{
  1.3374 +				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
  1.3375 +				TInt err = iFile.Read(buffer->Data ());
  1.3376 +				if (err != KErrNone)
  1.3377 +					{
  1.3378 +					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
  1.3379 +					StopTest(err);
  1.3380 +					break;
  1.3381 +					}
  1.3382 +				if (buffer->Data().Length()!= buffer->RequestSize())
  1.3383 +					{
  1.3384 +					iBuffer->SetLastBuffer(ETrue);
  1.3385 +					}
  1.3386 +				INFO_PRINTF1(_L("CMMFDevSound::PlayData()"));
  1.3387 +				iMMFDevSound->PlayData();
  1.3388 +				}
  1.3389 +			else if (aDevSoundEvent == EEventTimerComplete)
  1.3390 +				{
  1.3391 +				INFO_PRINTF1(_L("Calling CMMFDevSound::Volume"));
  1.3392 +				TInt volumeGet = iMMFDevSound->Volume();
  1.3393 +				if(volumeGet == iExVolume)
  1.3394 +					{
  1.3395 +					INFO_PRINTF2(_L("Default device volume succeeded with = %d"), volumeGet);
  1.3396 +					}
  1.3397 +				else
  1.3398 +					{
  1.3399 +					ERR_PRINTF2(_L("Default device volume failed with = %d"), volumeGet);
  1.3400 +					ERR_PRINTF2(_L("Expected value = % d"), iExVolume);
  1.3401 +					StopTest(aError , EFail);
  1.3402 +					}
  1.3403 +				}
  1.3404 +			else
  1.3405 +				{
  1.3406 +				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
  1.3407 +				StopTest(aError, EFail);
  1.3408 +				}
  1.3409 +			break;
  1.3410 +			}
  1.3411 +		default:
  1.3412 +			{
  1.3413 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.3414 +			StopTest(aError, EFail);
  1.3415 +			}
  1.3416 +		}
  1.3417 +	}
  1.3418 +
  1.3419 +void RA3FDevSoundPlayVolumeWhilePlayingTest::DoTimerCallback()
  1.3420 +	{
  1.3421 +	INFO_PRINTF1(_L("TimerEvent called"));
  1.3422 +	iTimer->Cancel();
  1.3423 +	INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
  1.3424 +	Fsm(EEventTimerComplete, KErrNone);
  1.3425 +	}
  1.3426 +
  1.3427 +/*
  1.3428 + *========================================================================================================
  1.3429 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0026
  1.3430 + */
  1.3431 +RA3FDevSoundPlayTest::RA3FDevSoundPlayTest(const TDesC& aTestName) :
  1.3432 +	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC)
  1.3433 +	{
  1.3434 +	}
  1.3435 +
  1.3436 +RA3FDevSoundPlayTest* RA3FDevSoundPlayTest::NewL(const TDesC& aTestName)
  1.3437 +	{
  1.3438 +	RA3FDevSoundPlayTest* self = new (ELeave) RA3FDevSoundPlayTest(aTestName);
  1.3439 +	return self;
  1.3440 +	}
  1.3441 +
  1.3442 +void RA3FDevSoundPlayTest::DoKickoffTestL()
  1.3443 +	{
  1.3444 +	TPtrC filename;
  1.3445 +	// Get the filename of the audio file to play
  1.3446 +	if ( !GetStringFromConfig(iTestStepName, KFilename, filename))
  1.3447 +		{
  1.3448 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
  1.3449 +		StopTest (KErrNotFound);
  1.3450 +		return;
  1.3451 +		}
  1.3452 +	// open using RFile for playback
  1.3453 +	iFilename.Copy (filename);
  1.3454 +	TInt err = iFile.Open (iFs, iFilename, EFileRead);
  1.3455 +	if (err != KErrNone)
  1.3456 +		{
  1.3457 +		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
  1.3458 +		iFs.Close();
  1.3459 +		StopTest(err);
  1.3460 +		return;
  1.3461 +		}
  1.3462 +	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
  1.3463 +	TPtrC fourccCode;
  1.3464 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.3465 +		{
  1.3466 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.3467 +		StopTest (KErrNotFound);
  1.3468 +		return;
  1.3469 +		}
  1.3470 +	EncodingFromStringToTFourCC (fourccCode);
  1.3471 +	}
  1.3472 +
  1.3473 +void RA3FDevSoundPlayTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.3474 +	{
  1.3475 +	switch (iDevSoundState)
  1.3476 +		{
  1.3477 +		case EStateCreated:
  1.3478 +			{
  1.3479 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed));
  1.3480 +			if (aDevSoundEvent == EEventInitialize)
  1.3481 +				{
  1.3482 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.3483 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.3484 +				if (err != KErrNone)
  1.3485 +					{
  1.3486 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.3487 +					StopTest (err);
  1.3488 +					break;
  1.3489 +					}
  1.3490 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.3491 +				iDevSoundState = EStateInitializing;
  1.3492 +				}
  1.3493 +			else
  1.3494 +				{
  1.3495 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.3496 +				StopTest(aError, EFail);
  1.3497 +				}
  1.3498 +			break;
  1.3499 +			}
  1.3500 +		case EStateInitializing:
  1.3501 +			{
  1.3502 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.3503 +				{
  1.3504 +				iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ());
  1.3505 +				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
  1.3506 +				TRAPD(err, iMMFDevSound->PlayInitL());
  1.3507 +				if (err != KErrNone)
  1.3508 +					{
  1.3509 +					StopTest(err);
  1.3510 +					break;
  1.3511 +					}
  1.3512 +				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
  1.3513 +				iDevSoundState = EStatePlaying;
  1.3514 +				}
  1.3515 +			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.3516 +				{
  1.3517 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.3518 +				StopTest(aError);
  1.3519 +				}
  1.3520 +			else
  1.3521 +				{
  1.3522 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.3523 +				StopTest(aError, EFail);
  1.3524 +				}
  1.3525 +			break;
  1.3526 +			}
  1.3527 +		case EStatePlaying:
  1.3528 +			{
  1.3529 +			if (aDevSoundEvent == EEventBTBF)
  1.3530 +				{
  1.3531 +				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
  1.3532 +				TInt err = iFile.Read (buffer->Data ());
  1.3533 +				if (err != KErrNone)
  1.3534 +					{
  1.3535 +					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
  1.3536 +					StopTest(err);
  1.3537 +					break;
  1.3538 +					}
  1.3539 +				if (buffer->Data().Length()!= buffer->RequestSize())
  1.3540 +					{
  1.3541 +					iBuffer->SetLastBuffer(ETrue);
  1.3542 +					}
  1.3543 +				INFO_PRINTF1(_L("CMMFDevSound::PlayData()"));
  1.3544 +				iMMFDevSound->PlayData();
  1.3545 +				}
  1.3546 +			else
  1.3547 +				{
  1.3548 +				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
  1.3549 +				StopTest(aError, EFail);
  1.3550 +				}
  1.3551 +			break;
  1.3552 +			}
  1.3553 +		default:
  1.3554 +			{
  1.3555 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.3556 +			StopTest(aError, EFail);
  1.3557 +			}
  1.3558 +		}
  1.3559 +	}
  1.3560 +
  1.3561 +/*
  1.3562 + *========================================================================================================
  1.3563 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0027
  1.3564 + */
  1.3565 +RA3FDevSoundPlayEmptyBufferWhilePlayingTest::RA3FDevSoundPlayEmptyBufferWhilePlayingTest(const TDesC& aTestName) :
  1.3566 +	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC)
  1.3567 +	{
  1.3568 +	}
  1.3569 +
  1.3570 +RA3FDevSoundPlayEmptyBufferWhilePlayingTest* RA3FDevSoundPlayEmptyBufferWhilePlayingTest::NewL(const TDesC& aTestName)
  1.3571 +	{
  1.3572 +	RA3FDevSoundPlayEmptyBufferWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayEmptyBufferWhilePlayingTest(aTestName);
  1.3573 +	return self;
  1.3574 +	}
  1.3575 +
  1.3576 +void RA3FDevSoundPlayEmptyBufferWhilePlayingTest::DoKickoffTestL()
  1.3577 +	{
  1.3578 +	TPtrC filename;
  1.3579 +	// Get the filename of the audio file to play
  1.3580 +	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
  1.3581 +		{
  1.3582 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
  1.3583 +		StopTest(KErrNotFound);
  1.3584 +		return;
  1.3585 +		}
  1.3586 +	// open using RFile for playback
  1.3587 +	iFilename.Copy(filename);
  1.3588 +	TInt err = iFile.Open(iFs, iFilename, EFileRead);
  1.3589 +	if (err != KErrNone)
  1.3590 +		{
  1.3591 +		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
  1.3592 +		StopTest(err);
  1.3593 +		return;
  1.3594 +		}
  1.3595 +
  1.3596 +	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
  1.3597 +
  1.3598 +	TPtrC fourccCode;
  1.3599 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.3600 +		{
  1.3601 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.3602 +		StopTest(KErrNotFound);
  1.3603 +		return;
  1.3604 +		}
  1.3605 +	EncodingFromStringToTFourCC(fourccCode);
  1.3606 +	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
  1.3607 +	}
  1.3608 +
  1.3609 +void RA3FDevSoundPlayEmptyBufferWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.3610 +	{
  1.3611 +	switch (iDevSoundState)
  1.3612 +		{
  1.3613 +		case EStateCreated:
  1.3614 +			{
  1.3615 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayEmptyBufferPlayingTest"), EFsmIncorrectErrorPassed));
  1.3616 +			if (aDevSoundEvent == EEventInitialize)
  1.3617 +				{
  1.3618 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.3619 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.3620 +				if (err != KErrNone)
  1.3621 +					{
  1.3622 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.3623 +					StopTest(err);
  1.3624 +					break;
  1.3625 +					}
  1.3626 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.3627 +				iDevSoundState = EStateInitializing;
  1.3628 +				}
  1.3629 +			else
  1.3630 +				{
  1.3631 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.3632 +				StopTest(aError, EFail);
  1.3633 +				}
  1.3634 +			break;
  1.3635 +			}
  1.3636 +		case EStateInitializing:
  1.3637 +			{
  1.3638 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.3639 +				{
  1.3640 +				iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ());
  1.3641 +				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
  1.3642 +				TRAPD(err, iMMFDevSound->PlayInitL());
  1.3643 +				if (err != KErrNone)
  1.3644 +					{
  1.3645 +					StopTest(err);
  1.3646 +					break;
  1.3647 +					}
  1.3648 +				StartTimer(KMicroSecsTwoSec);
  1.3649 +				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
  1.3650 +				iDevSoundState = EStatePlaying;
  1.3651 +				}
  1.3652 +			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.3653 +				{
  1.3654 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.3655 +				StopTest(aError, EFail);
  1.3656 +				}
  1.3657 +			else
  1.3658 +				{
  1.3659 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.3660 +				StopTest(aError, EFail);
  1.3661 +				}
  1.3662 +			break;
  1.3663 +			}
  1.3664 +		case EStatePlaying:
  1.3665 +			{
  1.3666 +			if (aDevSoundEvent == EEventBTBF)
  1.3667 +				{
  1.3668 +				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
  1.3669 +				TInt err = iFile.Read(buffer->Data());
  1.3670 +				if (err != KErrNone)
  1.3671 +					{
  1.3672 +					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
  1.3673 +					StopTest(err);
  1.3674 +					break;
  1.3675 +					}
  1.3676 +				if (buffer->Data().Length ()!= buffer->RequestSize ())
  1.3677 +					{
  1.3678 +					iBuffer->SetLastBuffer(ETrue);
  1.3679 +					}
  1.3680 +				INFO_PRINTF1(_L("CMMFDevSound::PlayData()"));
  1.3681 +				iMMFDevSound->PlayData();
  1.3682 +				}
  1.3683 +			else if (aDevSoundEvent == EEventTimerComplete)
  1.3684 +				{
  1.3685 +				INFO_PRINTF1(_L("Calling CMMFDevSound::EmptyBuffers()"));
  1.3686 +				TInt err = iMMFDevSound->EmptyBuffers();
  1.3687 +				if (err == KErrNone)
  1.3688 +					{
  1.3689 +					INFO_PRINTF2(_L("Call EmptyBuffers() while playing returned error = %d"), err);
  1.3690 +					StopTest();
  1.3691 +					break;
  1.3692 +					}
  1.3693 +				else
  1.3694 +					{
  1.3695 +					ERR_PRINTF2(_L("Call EmptyBuffers() while playing returned  error = %d"), err);
  1.3696 +					ERR_PRINTF2(_L("Expected error = %d"), KErrNone);
  1.3697 +					StopTest(err);
  1.3698 +					break;
  1.3699 +					}
  1.3700 +				}
  1.3701 +			else
  1.3702 +				{
  1.3703 +				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
  1.3704 +				StopTest(aError, EFail);
  1.3705 +				}
  1.3706 +			break;
  1.3707 +			}
  1.3708 +		default:
  1.3709 +			{
  1.3710 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.3711 +			StopTest (aError, EFail);
  1.3712 +			}
  1.3713 +		}
  1.3714 +	}
  1.3715 +
  1.3716 +void RA3FDevSoundPlayEmptyBufferWhilePlayingTest::DoTimerCallback()
  1.3717 +	{
  1.3718 +	INFO_PRINTF1(_L("TimerEvent called"));
  1.3719 +	iTimer->Cancel();
  1.3720 +	INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
  1.3721 +	Fsm(EEventTimerComplete, KErrNone);
  1.3722 +	}
  1.3723 +
  1.3724 +/*
  1.3725 + *========================================================================================================
  1.3726 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0028
  1.3727 + */
  1.3728 +RA3FDevSoundPlayEmptyBufferBeforePlayingTest::RA3FDevSoundPlayEmptyBufferBeforePlayingTest(const TDesC& aTestName) :
  1.3729 +	RA3FDevSoundTestBase(aTestName)
  1.3730 +	{
  1.3731 +	}
  1.3732 +
  1.3733 +RA3FDevSoundPlayEmptyBufferBeforePlayingTest* RA3FDevSoundPlayEmptyBufferBeforePlayingTest::NewL(const TDesC& aTestName)
  1.3734 +	{
  1.3735 +	RA3FDevSoundPlayEmptyBufferBeforePlayingTest* self = new (ELeave) RA3FDevSoundPlayEmptyBufferBeforePlayingTest(aTestName);
  1.3736 +	return self;
  1.3737 +	}
  1.3738 +
  1.3739 +void RA3FDevSoundPlayEmptyBufferBeforePlayingTest::DoKickoffTestL()
  1.3740 +	{
  1.3741 +	TPtrC fourccCode;
  1.3742 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.3743 +		{
  1.3744 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.3745 +		StopTest(KErrNotFound);
  1.3746 +		return;
  1.3747 +		}
  1.3748 +	EncodingFromStringToTFourCC(fourccCode);
  1.3749 +	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
  1.3750 +	}
  1.3751 +
  1.3752 +void RA3FDevSoundPlayEmptyBufferBeforePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.3753 +	{
  1.3754 +	switch (iDevSoundState)
  1.3755 +		{
  1.3756 +		case EStateCreated:
  1.3757 +			{
  1.3758 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayEmptyBufferPlayingTest"), EFsmIncorrectErrorPassed));
  1.3759 +			if (aDevSoundEvent == EEventInitialize)
  1.3760 +				{
  1.3761 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.3762 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying))	;
  1.3763 +				if (err != KErrNone)
  1.3764 +					{
  1.3765 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.3766 +					StopTest(err);
  1.3767 +					break;
  1.3768 +					}
  1.3769 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.3770 +				iDevSoundState = EStateInitializing;
  1.3771 +				}
  1.3772 +			else
  1.3773 +				{
  1.3774 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.3775 +				StopTest(aError, EFail);
  1.3776 +				}
  1.3777 +			break;
  1.3778 +			}
  1.3779 +		case EStateInitializing:
  1.3780 +			{
  1.3781 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.3782 +				{
  1.3783 +				INFO_PRINTF1(_L("Calling CMMFDevSound::EmptyBuffers()"));
  1.3784 +				TInt err = iMMFDevSound->EmptyBuffers ();
  1.3785 +				if (err == KErrNotReady)
  1.3786 +					{
  1.3787 +					INFO_PRINTF2(_L("Calling CMMFDevSound::EmptyBuffers after initialization and before playback returned with the expected error = %d"), err);
  1.3788 +					StopTest();
  1.3789 +					break;
  1.3790 +					}
  1.3791 +				else
  1.3792 +					{
  1.3793 +					ERR_PRINTF2(_L("Calling CMMFDevSound::EmptyBuffers after initialization and before playback returned with error = %d"), err);
  1.3794 +					ERR_PRINTF2(_L("Expected error = %d"), KErrNotReady);
  1.3795 +					StopTest(err, EFail);
  1.3796 +					}
  1.3797 +				}
  1.3798 +			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.3799 +				{
  1.3800 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.3801 +				StopTest(aError, EFail);
  1.3802 +				}
  1.3803 +			else
  1.3804 +				{
  1.3805 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.3806 +				StopTest(aError, EFail);
  1.3807 +				}
  1.3808 +			break;
  1.3809 +			}
  1.3810 +		default:
  1.3811 +			{
  1.3812 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.3813 +			StopTest(aError, EFail);
  1.3814 +			}
  1.3815 +		}
  1.3816 +	}
  1.3817 +
  1.3818 +/*
  1.3819 + *========================================================================================================
  1.3820 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0029
  1.3821 + */
  1.3822 +RA3FDevSoundPlayPauseTest::RA3FDevSoundPlayPauseTest(const TDesC& aTestName) :
  1.3823 +	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC),
  1.3824 +	iPaused(EFalse), iSamplesPlayedPaused(0)
  1.3825 +	{
  1.3826 +	}
  1.3827 +
  1.3828 +RA3FDevSoundPlayPauseTest* RA3FDevSoundPlayPauseTest::NewL(const TDesC& aTestName)
  1.3829 +	{
  1.3830 +	RA3FDevSoundPlayPauseTest* self = new (ELeave) RA3FDevSoundPlayPauseTest(aTestName);
  1.3831 +	return self;
  1.3832 +	}
  1.3833 +
  1.3834 +void RA3FDevSoundPlayPauseTest::DoKickoffTestL()
  1.3835 +	{
  1.3836 +	TPtrC filename;
  1.3837 +	// Get the filename of the audio file to play
  1.3838 +	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
  1.3839 +		{
  1.3840 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
  1.3841 +		StopTest(KErrNotFound);
  1.3842 +		return;
  1.3843 +		}
  1.3844 +	// open using RFile for playback
  1.3845 +	iFilename.Copy(filename);
  1.3846 +	TInt err = iFile.Open(iFs, iFilename, EFileRead);
  1.3847 +	if (err != KErrNone)
  1.3848 +		{
  1.3849 +		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
  1.3850 +		iFs.Close();
  1.3851 +		StopTest(err);
  1.3852 +		return;
  1.3853 +		}
  1.3854 +
  1.3855 +	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
  1.3856 +
  1.3857 +	TPtrC fourccCode;
  1.3858 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.3859 +		{
  1.3860 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.3861 +		StopTest(KErrNotFound);
  1.3862 +		return;
  1.3863 +		}
  1.3864 +	EncodingFromStringToTFourCC(fourccCode);
  1.3865 +	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
  1.3866 +	}
  1.3867 +
  1.3868 +void RA3FDevSoundPlayPauseTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.3869 +	{
  1.3870 +	switch (iDevSoundState)
  1.3871 +		{
  1.3872 +		case EStateCreated:
  1.3873 +			{
  1.3874 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPauseTest"), EFsmIncorrectErrorPassed));
  1.3875 +			if (aDevSoundEvent == EEventInitialize)
  1.3876 +				{
  1.3877 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.3878 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.3879 +				if (err != KErrNone)
  1.3880 +					{
  1.3881 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.3882 +					StopTest(err);
  1.3883 +					break;
  1.3884 +					}
  1.3885 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.3886 +				iDevSoundState = EStateInitializing;
  1.3887 +				}
  1.3888 +			else
  1.3889 +				{
  1.3890 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.3891 +				StopTest(aError, EFail);
  1.3892 +				}
  1.3893 +			break;
  1.3894 +			}
  1.3895 +		case EStateInitializing:
  1.3896 +			{
  1.3897 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.3898 +				{
  1.3899 +				iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ());
  1.3900 +				INFO_PRINTF1(_L("CMMFDevSound::PlayInitL"));
  1.3901 +				TRAPD(err, iMMFDevSound->PlayInitL());
  1.3902 +				if (err != KErrNone)
  1.3903 +					{
  1.3904 +					StopTest (err);
  1.3905 +					break;
  1.3906 +					}
  1.3907 +				StartTimer(KMicroSecsTwoSec);
  1.3908 +				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
  1.3909 +				iDevSoundState = EStatePlaying;
  1.3910 +				}
  1.3911 +			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.3912 +				{
  1.3913 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.3914 +				StopTest(aError);
  1.3915 +				}
  1.3916 +			else
  1.3917 +				{
  1.3918 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.3919 +				StopTest(aError, EFail);
  1.3920 +				}
  1.3921 +			break;
  1.3922 +			}
  1.3923 +		case EStatePlaying:
  1.3924 +			{
  1.3925 +			if (aDevSoundEvent == EEventBTBF)
  1.3926 +				{
  1.3927 +				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
  1.3928 +				TInt err = iFile.Read (buffer->Data ());
  1.3929 +				if (err != KErrNone)
  1.3930 +					{
  1.3931 +					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
  1.3932 +					StopTest(err);
  1.3933 +					break;
  1.3934 +					}
  1.3935 +				if (buffer->Data().Length()!= buffer->RequestSize())
  1.3936 +					{
  1.3937 +					iBuffer->SetLastBuffer(ETrue);
  1.3938 +					}
  1.3939 +				INFO_PRINTF1(_L("CMMFDevSound::PlayData"));
  1.3940 +				iMMFDevSound->PlayData();
  1.3941 +				}
  1.3942 +			else if (aDevSoundEvent == EEventTimerComplete)
  1.3943 +				{
  1.3944 +				INFO_PRINTF1(_L("Calling CMMFDevSound::Pause"));
  1.3945 +				iMMFDevSound->Pause();
  1.3946 +				iDevSoundState = EStatePause;
  1.3947 +				INFO_PRINTF1(_L("Calling CMMFDevSound::SamplesPlayed"));
  1.3948 +				iSamplesPlayedPaused = iMMFDevSound->SamplesPlayed();
  1.3949 +				INFO_PRINTF2(_L("The number of samples played is %d"), iSamplesPlayedPaused);
  1.3950 +				}
  1.3951 +			else
  1.3952 +				{
  1.3953 +				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
  1.3954 +				StopTest(aError, EFail);
  1.3955 +				}
  1.3956 +			break;
  1.3957 +			}
  1.3958 +		case EStatePause:
  1.3959 +			{
  1.3960 +			if (aDevSoundEvent == EEventTimerComplete)
  1.3961 +				{
  1.3962 +				TInt samplesPlayed = iMMFDevSound->SamplesPlayed();
  1.3963 +				INFO_PRINTF2(_L("Samples returned by CMMFDevSound::SamplesPlayed = %d"), samplesPlayed);
  1.3964 +				if(iSamplesPlayedPaused == samplesPlayed)
  1.3965 +					{
  1.3966 +					INFO_PRINTF3(_L("Samples returned by CMMFDevSound::SamplesPlayed: %d matches the expected samples played: %d"), samplesPlayed, iSamplesPlayedPaused);
  1.3967 +					StopTest();
  1.3968 +					}
  1.3969 +				else
  1.3970 +					{
  1.3971 +					ERR_PRINTF2(_L("Call to CMMFDevSound::SamplesPlayed do not match the expected value = %d"), samplesPlayed);
  1.3972 +					ERR_PRINTF2(_L("Expected Samples played value = %d"), iSamplesPlayedPaused);
  1.3973 +					StopTest(KErrNone, EFail);
  1.3974 +					}
  1.3975 +				}
  1.3976 +			else
  1.3977 +				{
  1.3978 +				ERR_PRINTF2(_L("EEventTimerComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.3979 +				StopTest(aError, EFail);
  1.3980 +				}
  1.3981 +			break;
  1.3982 +			}
  1.3983 +		default:
  1.3984 +			{
  1.3985 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.3986 +			StopTest(aError, EFail);
  1.3987 +			}
  1.3988 +		}
  1.3989 +	}
  1.3990 +
  1.3991 +void RA3FDevSoundPlayPauseTest::DoTimerCallback()
  1.3992 +	{
  1.3993 +	INFO_PRINTF1(_L("TimerEvent called"));
  1.3994 +	if (!iPaused)
  1.3995 +		{
  1.3996 +		INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
  1.3997 +		Fsm(EEventTimerComplete, KErrNone);
  1.3998 +		iPaused = ETrue;
  1.3999 +		}
  1.4000 +	else
  1.4001 +		{
  1.4002 +		iTimer->Cancel();
  1.4003 +		INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
  1.4004 +		Fsm(EEventTimerComplete, KErrNone);
  1.4005 +		}
  1.4006 +	}
  1.4007 +
  1.4008 +/*
  1.4009 + *========================================================================================================
  1.4010 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0030
  1.4011 + */
  1.4012 +RA3FDevSoundPlayStopTest::RA3FDevSoundPlayStopTest(const TDesC& aTestName) :
  1.4013 +	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC), iStopped(EFalse)
  1.4014 +	{
  1.4015 +	}
  1.4016 +
  1.4017 +RA3FDevSoundPlayStopTest* RA3FDevSoundPlayStopTest::NewL(const TDesC& aTestName)
  1.4018 +	{
  1.4019 +	RA3FDevSoundPlayStopTest* self = new (ELeave) RA3FDevSoundPlayStopTest(aTestName);
  1.4020 +	return self;
  1.4021 +	}
  1.4022 +
  1.4023 +void RA3FDevSoundPlayStopTest::DoKickoffTestL()
  1.4024 +	{
  1.4025 +	TPtrC filename;
  1.4026 +	// Get the filename of the audio file to play
  1.4027 +	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
  1.4028 +		{
  1.4029 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
  1.4030 +		StopTest(KErrNotFound);
  1.4031 +		return;
  1.4032 +		}
  1.4033 +	// open using RFile for playback
  1.4034 +	iFilename.Copy(filename);
  1.4035 +	TInt err = iFile.Open(iFs, iFilename, EFileRead);
  1.4036 +	if (err != KErrNone)
  1.4037 +		{
  1.4038 +		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
  1.4039 +		iFs.Close();
  1.4040 +		StopTest(err);
  1.4041 +		return;
  1.4042 +		}
  1.4043 +
  1.4044 +	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
  1.4045 +
  1.4046 +	TPtrC fourccCode;
  1.4047 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.4048 +		{
  1.4049 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.4050 +		StopTest(KErrNotFound);
  1.4051 +		return;
  1.4052 +		}
  1.4053 +	EncodingFromStringToTFourCC(fourccCode);
  1.4054 +	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
  1.4055 +	}
  1.4056 +
  1.4057 +void RA3FDevSoundPlayStopTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.4058 +	{
  1.4059 +	switch (iDevSoundState)
  1.4060 +		{
  1.4061 +		case EStateCreated:
  1.4062 +			{
  1.4063 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayStopTest"), EFsmIncorrectErrorPassed));
  1.4064 +			if (aDevSoundEvent == EEventInitialize)
  1.4065 +				{
  1.4066 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.4067 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.4068 +				if (err != KErrNone)
  1.4069 +					{
  1.4070 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.4071 +					StopTest(err);
  1.4072 +					break;
  1.4073 +					}
  1.4074 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.4075 +				iDevSoundState = EStateInitializing;
  1.4076 +				}
  1.4077 +			else
  1.4078 +				{
  1.4079 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.4080 +				StopTest(aError, EFail);
  1.4081 +				}
  1.4082 +			break;
  1.4083 +			}
  1.4084 +		case EStateInitializing:
  1.4085 +			{
  1.4086 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.4087 +				{
  1.4088 +				if (!iStopped)
  1.4089 +					{
  1.4090 +					iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
  1.4091 +					INFO_PRINTF1(_L("CMMFDevSound::PlayInitL"));
  1.4092 +					TRAPD(err, iMMFDevSound->PlayInitL());
  1.4093 +					if (err != KErrNone)
  1.4094 +						{
  1.4095 +						StopTest(err);
  1.4096 +						break;
  1.4097 +						}
  1.4098 +					StartTimer(KMicroSecsTwoSec);
  1.4099 +					INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
  1.4100 +					iDevSoundState = EStatePlaying;
  1.4101 +					}
  1.4102 +				else
  1.4103 +					{
  1.4104 +					INFO_PRINTF1(_L("InitializeComplete returned KErrNone after calling CMMFDevSound::Stop then CMMFDevSound::InitializeL"));
  1.4105 +					StopTest();
  1.4106 +					}
  1.4107 +				}
  1.4108 +			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.4109 +				{
  1.4110 +				if (!iStopped)
  1.4111 +					{
  1.4112 +					ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.4113 +					StopTest(aError);
  1.4114 +					}
  1.4115 +				else
  1.4116 +					{
  1.4117 +					INFO_PRINTF2(_L("InitializeComplete returned %d after calling CMMFDevSound::Stop then CMMFDevSound::InitializeL"), aError);
  1.4118 +					StopTest(aError);
  1.4119 +					}
  1.4120 +				}
  1.4121 +			else
  1.4122 +				{
  1.4123 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.4124 +				StopTest(aError, EFail);
  1.4125 +				}
  1.4126 +			break;
  1.4127 +			}
  1.4128 +		case EStatePlaying:
  1.4129 +			{
  1.4130 +			if (aDevSoundEvent == EEventBTBF)
  1.4131 +				{
  1.4132 +				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
  1.4133 +				TInt err = iFile.Read (buffer->Data());
  1.4134 +				if (err != KErrNone)
  1.4135 +					{
  1.4136 +					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
  1.4137 +					StopTest(err);
  1.4138 +					break;
  1.4139 +					}
  1.4140 +				if (buffer->Data().Length ()!= buffer->RequestSize())
  1.4141 +					{
  1.4142 +					iBuffer->SetLastBuffer(ETrue);
  1.4143 +					}
  1.4144 +				INFO_PRINTF1(_L("CMMFDevSound::PlayData"));
  1.4145 +				iMMFDevSound->PlayData();
  1.4146 +				}
  1.4147 +			else if (aDevSoundEvent == EEventTimerComplete)
  1.4148 +				{
  1.4149 +				INFO_PRINTF1(_L("CMMFDevSound::Stop"));
  1.4150 +				iMMFDevSound->Stop();
  1.4151 +				}
  1.4152 +			else
  1.4153 +				{
  1.4154 +				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
  1.4155 +				StopTest(aError, EFail);
  1.4156 +				}
  1.4157 +			break;
  1.4158 +			}
  1.4159 +		default:
  1.4160 +			{
  1.4161 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.4162 +			StopTest(aError, EFail);
  1.4163 +			}
  1.4164 +		}
  1.4165 +	}
  1.4166 +
  1.4167 +void RA3FDevSoundPlayStopTest::DoTimerCallback()
  1.4168 +	{
  1.4169 +	INFO_PRINTF1(_L("TimerEvent called"));
  1.4170 +	if (!iStopped)
  1.4171 +		{
  1.4172 +		INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
  1.4173 +		Fsm(EEventTimerComplete, KErrNone);
  1.4174 +		iStopped = ETrue;
  1.4175 +		}
  1.4176 +	else
  1.4177 +		{
  1.4178 +		iTimer->Cancel();
  1.4179 +		INFO_PRINTF1(_L("Initializing again after stop successful. Hence passing the test"));
  1.4180 +		TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.4181 +		if (err != KErrNone)
  1.4182 +			{
  1.4183 +			ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.4184 +			StopTest(err);
  1.4185 +			}
  1.4186 +		INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.4187 +		iDevSoundState = EStateInitializing;
  1.4188 +		}
  1.4189 +	}
  1.4190 +
  1.4191 +
  1.4192 +/*
  1.4193 + *========================================================================================================
  1.4194 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0031
  1.4195 + */
  1.4196 +RA3FDevSoundPlayPreemptionTest::RA3FDevSoundPlayPreemptionTest(const TDesC& aTestName) :
  1.4197 +	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC),
  1.4198 +	iOtherFilename(KNullDesC)
  1.4199 +	{
  1.4200 +	}
  1.4201 +
  1.4202 +RA3FDevSoundPlayPreemptionTest* RA3FDevSoundPlayPreemptionTest::NewL(const TDesC& aTestName)
  1.4203 +	{
  1.4204 +	RA3FDevSoundPlayPreemptionTest* self = new (ELeave) RA3FDevSoundPlayPreemptionTest(aTestName);
  1.4205 +	return self;
  1.4206 +	}
  1.4207 +
  1.4208 +void RA3FDevSoundPlayPreemptionTest::DoKickoffTestL()
  1.4209 +	{
  1.4210 +	TPtrC filename;
  1.4211 +	// Get the filename of the audio file to play
  1.4212 +	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
  1.4213 +		{
  1.4214 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
  1.4215 +		StopTest(KErrNotFound);
  1.4216 +		return;
  1.4217 +		}
  1.4218 +	// open using RFile for playback
  1.4219 +	iFilename.Copy(filename);
  1.4220 +	TInt err = iFile.Open(iFs, iFilename, EFileRead);
  1.4221 +	if (err != KErrNone)
  1.4222 +		{
  1.4223 +		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
  1.4224 +		StopTest(err);
  1.4225 +		return;
  1.4226 +		}
  1.4227 +	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
  1.4228 +	// Get the filename of the second devsound instance
  1.4229 +	TPtrC tempString;
  1.4230 +	if (!GetStringFromConfig(iTestStepName, KOtherFilename, tempString))
  1.4231 +		{
  1.4232 +		ERR_PRINTF2(KMsgErrorGetParameter, &KOtherFilename);
  1.4233 +		StopTest(KErrNotFound);
  1.4234 +		return;
  1.4235 +		}
  1.4236 +	iOtherFilename.Copy (tempString);
  1.4237 +	INFO_PRINTF2(_L("File under test  -> %S"), &iOtherFilename);
  1.4238 +	TPtrC fourccCode;
  1.4239 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.4240 +		{
  1.4241 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.4242 +		StopTest(KErrNotFound);
  1.4243 +		return;
  1.4244 +		}
  1.4245 +	EncodingFromStringToTFourCC(fourccCode);
  1.4246 +	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
  1.4247 +	iDevsoundPlayClient = CA3FDevSoundPlayClient::NewL(*this, iFourCCCode, iFs, iSuite);
  1.4248 +	}
  1.4249 +
  1.4250 +void RA3FDevSoundPlayPreemptionTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.4251 +	{
  1.4252 +	switch (iDevSoundState)
  1.4253 +		{
  1.4254 +		case EStateCreated:
  1.4255 +			{
  1.4256 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPreemptionTest"), EFsmIncorrectErrorPassed));
  1.4257 +			if (aDevSoundEvent == EEventInitialize)
  1.4258 +				{
  1.4259 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.4260 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.4261 +				if (err != KErrNone)
  1.4262 +					{
  1.4263 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.4264 +					StopTest(err);
  1.4265 +					break;
  1.4266 +					}
  1.4267 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.4268 +				iDevSoundState = EStateInitializing;
  1.4269 +				}
  1.4270 +			else
  1.4271 +				{
  1.4272 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.4273 +				StopTest(aError, EFail);
  1.4274 +				}
  1.4275 +			break;
  1.4276 +			}
  1.4277 +		case EStateInitializing:
  1.4278 +			{
  1.4279 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.4280 +				{
  1.4281 +				TMMFPrioritySettings priority;
  1.4282 +				priority.iPriority = KMinimumPriority;
  1.4283 +				INFO_PRINTF2(_L("Setting Priority to %d using CMMFDevSound::SetPrioritySettings"), priority.iPriority);
  1.4284 +				iMMFDevSound->SetPrioritySettings (priority);
  1.4285 +				iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ());
  1.4286 +				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
  1.4287 +				TRAPD(err, iMMFDevSound->PlayInitL());
  1.4288 +				if (err != KErrNone)
  1.4289 +					{
  1.4290 +					StopTest(err);
  1.4291 +					break;
  1.4292 +					}
  1.4293 +				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
  1.4294 +				iDevSoundState = EStatePlaying;
  1.4295 +				StartTimer(KMicroSecsTwoSec);
  1.4296 +				}
  1.4297 +			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.4298 +				{
  1.4299 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.4300 +				StopTest(aError);
  1.4301 +				}
  1.4302 +			else
  1.4303 +				{
  1.4304 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.4305 +				StopTest(aError, EFail);
  1.4306 +				}
  1.4307 +			break;
  1.4308 +			}
  1.4309 +		case EStatePlaying:
  1.4310 +			{
  1.4311 +			if (aDevSoundEvent == EEventBTBF)
  1.4312 +				{
  1.4313 +				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
  1.4314 +				TInt err = iFile.Read (buffer->Data ());
  1.4315 +				if (err != KErrNone)
  1.4316 +					{
  1.4317 +					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
  1.4318 +					StopTest (err);
  1.4319 +					break;
  1.4320 +					}
  1.4321 +				if (buffer->Data().Length ()!= buffer->RequestSize())
  1.4322 +					{
  1.4323 +					iBuffer->SetLastBuffer(ETrue);
  1.4324 +					}
  1.4325 +				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
  1.4326 +				iMMFDevSound->PlayData();
  1.4327 +				}
  1.4328 +			else
  1.4329 +				{
  1.4330 +				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
  1.4331 +				StopTest(aError, EFail);
  1.4332 +				}
  1.4333 +			break;
  1.4334 +			}
  1.4335 +		default:
  1.4336 +			{
  1.4337 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.4338 +			StopTest(aError, EFail);
  1.4339 +			}
  1.4340 +		}
  1.4341 +	}
  1.4342 +
  1.4343 +void RA3FDevSoundPlayPreemptionTest::DoTimerCallback()
  1.4344 +	{
  1.4345 +	INFO_PRINTF1(_L("TimerEvent called"));
  1.4346 +	iTimer->Cancel();
  1.4347 +	INFO_PRINTF1(_L("Starting higher priority devsound client"));
  1.4348 +	iDevsoundPlayClient->SetPriority(KMaximumPriority);
  1.4349 +	INFO_PRINTF1(_L("Initializing to play audio thru second devsound client"));
  1.4350 +	TInt err = iDevsoundPlayClient->PlayInit(iOtherFilename);
  1.4351 +	if (err != KErrNone)
  1.4352 +		{
  1.4353 +		ERR_PRINTF2(_L("Initializating DevSound to play audio thru second devsound client failed with error = %d"), err);
  1.4354 +		StopTest(err);
  1.4355 +		}
  1.4356 +	}
  1.4357 +
  1.4358 +void RA3FDevSoundPlayPreemptionTest::PlayError(TInt aError)
  1.4359 +	{
  1.4360 +	INFO_PRINTF1(_L("========== DevSound PlayError() callback =========="));
  1.4361 +	if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied)
  1.4362 +		{
  1.4363 +		INFO_PRINTF1(_L("========== Preempting 1st DevSound Instance=========="));
  1.4364 +		INFO_PRINTF2(_L("First DevSound client PlayError succeeded with error = %d "), aError);
  1.4365 +		}
  1.4366 +	else
  1.4367 +		{
  1.4368 +		ERR_PRINTF2(_L("First DevSound client PlayError and failed with error = %d "), aError);
  1.4369 +		ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied);
  1.4370 +		StopTest(aError, EFail);
  1.4371 +		}
  1.4372 +	}
  1.4373 +
  1.4374 +void RA3FDevSoundPlayPreemptionTest::ClientInitializeCompleteCallback(TInt aError)                               
  1.4375 +	{
  1.4376 +	INFO_PRINTF1(_L("========== Second Client DevSound InitializeComplete() callback =========="));
  1.4377 +	if (aError != KErrNone)
  1.4378 +		{
  1.4379 +		ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError);
  1.4380 +		StopTest(aError);
  1.4381 +		}
  1.4382 +	else
  1.4383 +		{
  1.4384 +		INFO_PRINTF1(_L("Starting to play audio thru second devsound client"));
  1.4385 +		TInt err = iDevsoundPlayClient->PlayAudio();
  1.4386 +		if (err != KErrNone)
  1.4387 +			{
  1.4388 +			ERR_PRINTF2(_L("Starting to play audio thru second devsound client failed with error = %d"), err);
  1.4389 +			StopTest(err);
  1.4390 +			}
  1.4391 +		}
  1.4392 +	}
  1.4393 +
  1.4394 +void RA3FDevSoundPlayPreemptionTest::ClientBufferToBeFilledCallback(TInt aError)
  1.4395 +	{
  1.4396 +	INFO_PRINTF1(_L("========== Second Client DevSound BufferToBeFilled() callback =========="));
  1.4397 +	if (aError != KErrNone)
  1.4398 +		{
  1.4399 +		ERR_PRINTF2(_L("Second DevSound client called BufferToBeFilled and failed with error = %d"), aError);
  1.4400 +		StopTest(aError);
  1.4401 +		}
  1.4402 +	}
  1.4403 +
  1.4404 +void RA3FDevSoundPlayPreemptionTest::ClientPlayHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError)
  1.4405 +	{
  1.4406 +	switch (aError)
  1.4407 +		{
  1.4408 +		case EInvalidClientFSMEvent:
  1.4409 +			ERR_PRINTF1(_L("Second devsound client received an invalid Event..."));
  1.4410 +			break;
  1.4411 +		case EInvalidClientFSMState:
  1.4412 +			ERR_PRINTF1(_L("Second devsound client received an invalid State..."));
  1.4413 +			break;
  1.4414 +		case EReadFileErrorInClient:
  1.4415 +			ERR_PRINTF1(_L("Second devsound client could not read to file..."));
  1.4416 +			break;
  1.4417 +		default:
  1.4418 +			break;
  1.4419 +		}
  1.4420 +	StopTest(aError, EFail);
  1.4421 +	}
  1.4422 +
  1.4423 +void RA3FDevSoundPlayPreemptionTest::ClientPlayErrorCallback(TInt aError, TBool aLastBuffer)
  1.4424 +	{
  1.4425 +	INFO_PRINTF1(_L("========== Second Client DevSound PlayError() callback =========="));
  1.4426 +
  1.4427 +	if (aError == KErrUnderflow && aLastBuffer)
  1.4428 +		{
  1.4429 +		INFO_PRINTF1(_L("Second DevSound client called PlayError and completed normally"));
  1.4430 +		StopTest();
  1.4431 +		}
  1.4432 +	else
  1.4433 +		{
  1.4434 +		ERR_PRINTF2(_L("Second DevSound PlayError failed with error = %d"), aError);
  1.4435 +		ERR_PRINTF2(_L("Expected error = %d "), KErrUnderflow);
  1.4436 +		StopTest(aError, EFail);
  1.4437 +		}
  1.4438 +	}
  1.4439 +
  1.4440 +/*
  1.4441 + *========================================================================================================
  1.4442 + * 3F-DEVSOUND-CHRTZ-PLAY-RAW-0032
  1.4443 + */
  1.4444 +RA3FDevSoundPlayPreemptedByToneTest::RA3FDevSoundPlayPreemptedByToneTest(const TDesC& aTestName) :
  1.4445 +	RA3FDevSoundTestBase(aTestName),iFilename(KNullDesC),
  1.4446 +	iFrequencyTone1(0), iDuration(0)
  1.4447 +	{
  1.4448 +	}
  1.4449 +
  1.4450 +RA3FDevSoundPlayPreemptedByToneTest* RA3FDevSoundPlayPreemptedByToneTest::NewL(const TDesC& aTestName)
  1.4451 +	{
  1.4452 +	RA3FDevSoundPlayPreemptedByToneTest* self = new (ELeave) RA3FDevSoundPlayPreemptedByToneTest(aTestName);
  1.4453 +	return self;
  1.4454 +	}
  1.4455 +
  1.4456 +void RA3FDevSoundPlayPreemptedByToneTest::DoKickoffTestL()
  1.4457 +	{
  1.4458 +	TPtrC filename;
  1.4459 +	// Get the filename of the audio file to play
  1.4460 +	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
  1.4461 +		{
  1.4462 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
  1.4463 +		StopTest(KErrNotFound);
  1.4464 +		return;
  1.4465 +		}
  1.4466 +	// open using RFile for playback
  1.4467 +	iFilename.Copy(filename);
  1.4468 +	TInt err = iFile.Open(iFs, iFilename, EFileRead);
  1.4469 +	if (err != KErrNone)
  1.4470 +		{
  1.4471 +		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
  1.4472 +		StopTest(err);
  1.4473 +		return;
  1.4474 +		}
  1.4475 +
  1.4476 +	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
  1.4477 +
  1.4478 +	if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
  1.4479 +		{
  1.4480 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
  1.4481 +		StopTest(KErrNotFound);
  1.4482 +		return;
  1.4483 +		}
  1.4484 +	if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
  1.4485 +		{
  1.4486 +		ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
  1.4487 +		StopTest(KErrNotFound);
  1.4488 +		return;
  1.4489 +		}
  1.4490 +	TPtrC fourccCode;
  1.4491 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.4492 +		{
  1.4493 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.4494 +		StopTest(KErrNotFound);
  1.4495 +		return;
  1.4496 +		}
  1.4497 +	EncodingFromStringToTFourCC(fourccCode);
  1.4498 +	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
  1.4499 +	iDevsoundToneClient = CA3FDevSoundToneClient::NewL(*this);
  1.4500 +	}
  1.4501 +
  1.4502 +void RA3FDevSoundPlayPreemptedByToneTest::Fsm(TMmfDevSoundEvent aDevSoundEvent,	TInt aError)
  1.4503 +	{
  1.4504 +	switch (iDevSoundState)
  1.4505 +		{
  1.4506 +		case EStateCreated:
  1.4507 +			{
  1.4508 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPreemptedByToneTest"), EFsmIncorrectErrorPassed));
  1.4509 +			if (aDevSoundEvent == EEventInitialize)
  1.4510 +				{
  1.4511 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.4512 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.4513 +				if (err != KErrNone)
  1.4514 +					{
  1.4515 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.4516 +					StopTest(err);
  1.4517 +					break;
  1.4518 +					}
  1.4519 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.4520 +				iDevSoundState = EStateInitializing;
  1.4521 +				}
  1.4522 +			else
  1.4523 +				{
  1.4524 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.4525 +				StopTest(aError, EFail);
  1.4526 +				}
  1.4527 +			break;
  1.4528 +			}
  1.4529 +		case EStateInitializing:
  1.4530 +			{
  1.4531 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.4532 +				{
  1.4533 +				TMMFPrioritySettings priority;
  1.4534 +				priority.iPriority = KMinimumPriority;
  1.4535 +				INFO_PRINTF2(_L("Setting Priority to %d using CMMFDevSound::SetPrioritySettings"), priority.iPriority);
  1.4536 +				iMMFDevSound->SetPrioritySettings (priority);
  1.4537 +				iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ());
  1.4538 +				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
  1.4539 +				TRAPD(err, iMMFDevSound->PlayInitL());
  1.4540 +				if (err != KErrNone)
  1.4541 +					{
  1.4542 +					StopTest (err);
  1.4543 +					break;
  1.4544 +					}
  1.4545 +				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
  1.4546 +				iDevSoundState = EStatePlaying;
  1.4547 +				StartTimer (KMicroSecsTwoSec);
  1.4548 +				}
  1.4549 +			else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.4550 +				{
  1.4551 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.4552 +				StopTest(aError);
  1.4553 +				}
  1.4554 +			else
  1.4555 +				{
  1.4556 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.4557 +				StopTest(aError, EFail);
  1.4558 +				}
  1.4559 +			break;
  1.4560 +			}
  1.4561 +		case EStatePlaying:
  1.4562 +			{
  1.4563 +			if (aDevSoundEvent == EEventBTBF)
  1.4564 +				{
  1.4565 +				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
  1.4566 +				TInt err = iFile.Read (buffer->Data());
  1.4567 +				if (err != KErrNone)
  1.4568 +					{
  1.4569 +					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
  1.4570 +					StopTest(err);
  1.4571 +					break;
  1.4572 +					}
  1.4573 +				if (buffer->Data().Length ()!= buffer->RequestSize())
  1.4574 +					{
  1.4575 +					iBuffer->SetLastBuffer(ETrue);
  1.4576 +					}
  1.4577 +				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
  1.4578 +				iMMFDevSound->PlayData();
  1.4579 +				}
  1.4580 +			else
  1.4581 +				{
  1.4582 +				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
  1.4583 +				StopTest(aError, EFail);
  1.4584 +				}
  1.4585 +			break;
  1.4586 +			}
  1.4587 +		default:
  1.4588 +			{
  1.4589 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.4590 +			StopTest(aError, EFail);
  1.4591 +			}
  1.4592 +		}
  1.4593 +	}
  1.4594 +
  1.4595 +void RA3FDevSoundPlayPreemptedByToneTest::DoTimerCallback()
  1.4596 +	{
  1.4597 +	INFO_PRINTF1(_L("TimerEvent called"));
  1.4598 +	iTimer->Cancel();
  1.4599 +	INFO_PRINTF1(_L("Starting higher priority devsound client"));
  1.4600 +	iDevsoundToneClient->SetPriority(KMaximumPriority);
  1.4601 +	INFO_PRINTF1(_L("Initializing to play tones thru second devsound client"));
  1.4602 +	TInt err = iDevsoundToneClient->InitTonePlay(iFrequencyTone1,iDuration*KMicroSecsInOneSec);
  1.4603 +	if (err != KErrNone)
  1.4604 +		{
  1.4605 +		ERR_PRINTF2(_L("Initializating DevSoud to play tones thru second devsound client failed with error = %d"), err);
  1.4606 +		StopTest(err);
  1.4607 +		}
  1.4608 +	}
  1.4609 +
  1.4610 +void RA3FDevSoundPlayPreemptedByToneTest::PlayError(TInt aError)
  1.4611 +	{
  1.4612 +	INFO_PRINTF1(_L("========== DevSound PlayError() callback =========="));
  1.4613 +	if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied)
  1.4614 +		{
  1.4615 +		INFO_PRINTF1(_L("========== Preempting 1st DevSound Instance=========="));
  1.4616 +		INFO_PRINTF2(_L("First DevSound client PlayError succeeded with error = %d "), aError);
  1.4617 +		}
  1.4618 +	else
  1.4619 +		{
  1.4620 +		ERR_PRINTF2(_L("First DevSound client called PlayError and failed with error = %d "), aError);
  1.4621 +		ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied);
  1.4622 +		StopTest(aError, EFail);
  1.4623 +		}
  1.4624 +	}
  1.4625 +
  1.4626 +void RA3FDevSoundPlayPreemptedByToneTest::ClientInitializeCompleteCallback(TInt aError)
  1.4627 +	{
  1.4628 +	INFO_PRINTF1(_L("==========Second DevSound client called InitializeComplete()=========="));
  1.4629 +	if (aError == KErrNone)
  1.4630 +		{
  1.4631 +		INFO_PRINTF1(_L("Starting to play tone thru second devsound client"));
  1.4632 +		TInt err = iDevsoundToneClient->PlayTone ();
  1.4633 +		if (err != KErrNone)
  1.4634 +			{
  1.4635 +			ERR_PRINTF2(_L("Second Devsound client called PlayTone and failed with error = %d"), err);
  1.4636 +			StopTest(err);
  1.4637 +			}
  1.4638 +		}
  1.4639 +	else
  1.4640 +		{
  1.4641 +		ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError);
  1.4642 +		StopTest(aError);
  1.4643 +		}
  1.4644 +	}
  1.4645 +
  1.4646 +void RA3FDevSoundPlayPreemptedByToneTest::ClientToneFinishedCallback(TInt aError)
  1.4647 +	{
  1.4648 +	INFO_PRINTF1(_L("========== Second  DevSound client called ToneFinished()=========="));
  1.4649 +	if (aError == KErrUnderflow)
  1.4650 +		{
  1.4651 +		INFO_PRINTF2(_L("Second DevSound client called ToneFinished and succeeded with error = %d"), aError);
  1.4652 +		StopTest(aError, EPass);
  1.4653 +		}
  1.4654 +	else
  1.4655 +		{
  1.4656 +		ERR_PRINTF2(_L("Second DevSound client called ToneFinished and failed with error = %d"), aError);
  1.4657 +		StopTest(aError);
  1.4658 +		}
  1.4659 +	}
  1.4660 +
  1.4661 +/*
  1.4662 + *========================================================================================================
  1.4663 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0033
  1.4664 + */
  1.4665 +RA3FDevSoundPlayPreemptedByRecordTest::RA3FDevSoundPlayPreemptedByRecordTest(const TDesC& aTestName) :
  1.4666 +	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC)
  1.4667 +
  1.4668 +	{
  1.4669 +	}
  1.4670 +
  1.4671 +RA3FDevSoundPlayPreemptedByRecordTest* RA3FDevSoundPlayPreemptedByRecordTest::NewL(const TDesC& aTestName)
  1.4672 +	{
  1.4673 +	RA3FDevSoundPlayPreemptedByRecordTest* self = new (ELeave) RA3FDevSoundPlayPreemptedByRecordTest(aTestName);
  1.4674 +	return self;
  1.4675 +	}
  1.4676 +
  1.4677 +void RA3FDevSoundPlayPreemptedByRecordTest::DoKickoffTestL()
  1.4678 +	{
  1.4679 +	TPtrC filename;
  1.4680 +	// Get the filename of the audio file to play
  1.4681 +	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
  1.4682 +		{
  1.4683 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
  1.4684 +		StopTest(KErrNotFound);
  1.4685 +		return;
  1.4686 +		}
  1.4687 +	// open using RFile for playback
  1.4688 +	iFilename.Copy(filename);
  1.4689 +	TInt err = iFile.Open(iFs, iFilename, EFileRead);
  1.4690 +	if (err != KErrNone)
  1.4691 +		{
  1.4692 +		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
  1.4693 +		StopTest(err);
  1.4694 +		return;
  1.4695 +		}
  1.4696 +	// Get the filename of the audio file to record
  1.4697 +	if (!GetStringFromConfig(iTestStepName, KOtherFilename, filename))
  1.4698 +		{
  1.4699 +		ERR_PRINTF2(KMsgErrorGetParameter, &KOtherFilename);
  1.4700 +		StopTest(KErrNotFound);
  1.4701 +		return;
  1.4702 +		}
  1.4703 +
  1.4704 +	iOtherFilename.Copy(filename);
  1.4705 +
  1.4706 +	TPtrC fourccCode;
  1.4707 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.4708 +		{
  1.4709 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.4710 +		StopTest (KErrNotFound);
  1.4711 +		return;
  1.4712 +		}
  1.4713 +	EncodingFromStringToTFourCC(fourccCode);
  1.4714 +	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
  1.4715 +	iDevsoundRecordClient = CA3FDevSoundRecordClient::NewL(*this, iFourCCCode, iFs, iSuite);
  1.4716 +	}
  1.4717 +
  1.4718 +void RA3FDevSoundPlayPreemptedByRecordTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.4719 +	{
  1.4720 +	switch (iDevSoundState)
  1.4721 +		{
  1.4722 +		case EStateCreated:
  1.4723 +			{
  1.4724 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPreemptedByRecordTest"), EFsmIncorrectErrorPassed));
  1.4725 +			if (aDevSoundEvent == EEventInitialize)
  1.4726 +				{
  1.4727 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.4728 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.4729 +				if (err != KErrNone)
  1.4730 +					{
  1.4731 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.4732 +					StopTest(err);
  1.4733 +					break;
  1.4734 +					}
  1.4735 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.4736 +				iDevSoundState = EStateInitializing;
  1.4737 +				}
  1.4738 +			else
  1.4739 +				{
  1.4740 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.4741 +				StopTest(aError, EFail);
  1.4742 +				}
  1.4743 +			break;
  1.4744 +			}
  1.4745 +		case EStateInitializing:
  1.4746 +			{
  1.4747 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.4748 +				{
  1.4749 +				TMMFPrioritySettings priority;
  1.4750 +				priority.iPriority = KMinimumPriority;
  1.4751 +				INFO_PRINTF2(_L("Setting Priority to %d using CMMFDevSound::SetPrioritySettings"), priority.iPriority);
  1.4752 +				iMMFDevSound->SetPrioritySettings (priority);
  1.4753 +				iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ());
  1.4754 +				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
  1.4755 +				TRAPD(err, iMMFDevSound->PlayInitL());
  1.4756 +				if (err != KErrNone)
  1.4757 +					{
  1.4758 +					StopTest(err);
  1.4759 +					break;
  1.4760 +					}
  1.4761 +				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
  1.4762 +				iDevSoundState = EStatePlaying;
  1.4763 +				StartTimer(KMicroSecsTwoSec);
  1.4764 +				}
  1.4765 +			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.4766 +				{
  1.4767 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.4768 +				StopTest(aError);
  1.4769 +				}
  1.4770 +			else
  1.4771 +				{
  1.4772 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.4773 +				StopTest(aError, EFail);
  1.4774 +				}
  1.4775 +			break;
  1.4776 +			}
  1.4777 +		case EStatePlaying:
  1.4778 +			{
  1.4779 +			if (aDevSoundEvent == EEventBTBF)
  1.4780 +				{
  1.4781 +				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
  1.4782 +				TInt err = iFile.Read (buffer->Data ());
  1.4783 +				if (err != KErrNone)
  1.4784 +					{
  1.4785 +					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
  1.4786 +					StopTest(err);
  1.4787 +					break;
  1.4788 +					}
  1.4789 +				if (buffer->Data().Length()!= buffer->RequestSize())
  1.4790 +					{
  1.4791 +					iBuffer->SetLastBuffer(ETrue);
  1.4792 +					}
  1.4793 +				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
  1.4794 +				iMMFDevSound->PlayData();
  1.4795 +				}
  1.4796 +			else
  1.4797 +				{
  1.4798 +				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
  1.4799 +				StopTest(aError, EFail);
  1.4800 +				}
  1.4801 +			break;
  1.4802 +			}
  1.4803 +		default:
  1.4804 +			{
  1.4805 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.4806 +			StopTest(aError, EFail);
  1.4807 +			}
  1.4808 +		}
  1.4809 +	}
  1.4810 +
  1.4811 +void RA3FDevSoundPlayPreemptedByRecordTest::DoTimerCallback()
  1.4812 +	{
  1.4813 +	INFO_PRINTF1(_L("TimerEvent called"));
  1.4814 +	if (!iOtherClientStarted)
  1.4815 +		{
  1.4816 +		INFO_PRINTF1(_L("Initializing higher priority devsound client..."));
  1.4817 +		iDevsoundRecordClient->SetPriority (KMaximumPriority);
  1.4818 +		TInt err = iDevsoundRecordClient->InitializeRecordClient (iOtherFilename);
  1.4819 +		if (err != KErrNone)
  1.4820 +			{
  1.4821 +			ERR_PRINTF1(_L("Initializating DevSoud to record audio thru second devsound client failed with error = %d"));
  1.4822 +			StopTest(err);
  1.4823 +			}
  1.4824 +		iOtherClientStarted = ETrue;
  1.4825 +		}
  1.4826 +	else
  1.4827 +		{
  1.4828 +		iTimer->Cancel();
  1.4829 +		iDevsoundRecordClient->StopRecord();
  1.4830 +		StopTest();
  1.4831 +		}
  1.4832 +	}
  1.4833 +
  1.4834 +void RA3FDevSoundPlayPreemptedByRecordTest::PlayError(TInt aError)
  1.4835 +	{
  1.4836 +	INFO_PRINTF1(_L("========== DevSound PlayError() callback =========="));
  1.4837 +	if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied)
  1.4838 +		{
  1.4839 +		INFO_PRINTF1(_L("========== Preempting 1st DevSound Instance=========="));
  1.4840 +		INFO_PRINTF2(_L("First DevSound client PlayError succeeded with error = %d "), aError);
  1.4841 +		}
  1.4842 +	else
  1.4843 +		{
  1.4844 +		ERR_PRINTF2(_L("First DevSound client called PlayError and failed with error = %d "), aError);
  1.4845 +		ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied);
  1.4846 +		StopTest(aError, EFail);
  1.4847 +		}
  1.4848 +	}
  1.4849 +
  1.4850 +void RA3FDevSoundPlayPreemptedByRecordTest::ClientInitializeCompleteCallback(TInt aError)
  1.4851 +	{
  1.4852 +	INFO_PRINTF1(_L("========== Second Client DevSound InitializeComplete() callback =========="));
  1.4853 +	if (aError != KErrNone)
  1.4854 +		{
  1.4855 +		ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError);
  1.4856 +		StopTest(aError);
  1.4857 +		}
  1.4858 +	else
  1.4859 +		{
  1.4860 +		INFO_PRINTF2(_L("Second DevSound client called InitializeComplete with error = %d"), aError);
  1.4861 +		INFO_PRINTF1(_L("Starting to record audio thru second devsound client"));
  1.4862 +		TInt err = iDevsoundRecordClient->RecordAudio ();
  1.4863 +		if (err != KErrNone)
  1.4864 +			{
  1.4865 +			ERR_PRINTF2(_L("Starting to record audio thru second devsound client failed with error = %d"), err);
  1.4866 +			StopTest(err);
  1.4867 +			}
  1.4868 +		}
  1.4869 +	}
  1.4870 +
  1.4871 +void RA3FDevSoundPlayPreemptedByRecordTest::ClientBufferToBeEmptiedCallback(TInt aError)
  1.4872 +	{
  1.4873 +	INFO_PRINTF1(_L("========== Second Client DevSound ClientBufferToBeEmptied() callback =========="));
  1.4874 +	switch (aError)
  1.4875 +		{
  1.4876 +		case KErrGeneral:
  1.4877 +			{
  1.4878 +			INFO_PRINTF1(_L("Second DevSound client called BufferToBeEmptied and received a NULL CMMFBuffer"));
  1.4879 +			StopTest(aError);
  1.4880 +			break;
  1.4881 +			}
  1.4882 +		case KErrUnknown:
  1.4883 +			{
  1.4884 +			INFO_PRINTF1(_L("Second DevSound client called BufferToBeEmptied: Unknown behaviour: Last buffer flag set before calling CMMFDevSound->Pause()"));
  1.4885 +			StopTest(aError);
  1.4886 +			break;
  1.4887 +			}
  1.4888 +		}
  1.4889 +	}
  1.4890 +
  1.4891 +void RA3FDevSoundPlayPreemptedByRecordTest::ClientRecordErrorCallback(TInt aError)
  1.4892 +	{
  1.4893 +	INFO_PRINTF1(_L("========== Second Client DevSound RecordError() callback =========="));
  1.4894 +	if (aError == KErrUnderflow)
  1.4895 +		{
  1.4896 +		INFO_PRINTF2(_L("Second DevSound client called RecordError with error = %d"), aError);
  1.4897 +		StopTest(aError);
  1.4898 +		}
  1.4899 +	}
  1.4900 +
  1.4901 +void RA3FDevSoundPlayPreemptedByRecordTest::ClientRecordHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError)
  1.4902 +	{
  1.4903 +	switch (aError)
  1.4904 +		{
  1.4905 +		case EInvalidClientFSMEvent:
  1.4906 +			{
  1.4907 +			ERR_PRINTF1(_L("Second devsound client received an invalid Event..."));
  1.4908 +			StopTest(KErrNone, EFail);
  1.4909 +			break;
  1.4910 +			}
  1.4911 +		case EInvalidClientFSMState:
  1.4912 +			{
  1.4913 +			ERR_PRINTF1(_L("Second devsound client received an invalid State..."));
  1.4914 +			StopTest(KErrNone, EFail);
  1.4915 +			break;
  1.4916 +			}
  1.4917 +		case EWriteFileErrorInClient:
  1.4918 +			{
  1.4919 +			ERR_PRINTF1(_L("Second devsound client could not write to file..."));
  1.4920 +			StopTest(KErrNone, EFail);
  1.4921 +			break;
  1.4922 +			}
  1.4923 +		}
  1.4924 +	}
  1.4925 +
  1.4926 +/*
  1.4927 + *========================================================================================================
  1.4928 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0034
  1.4929 + */
  1.4930 +RA3FDevSoundPlayRejectionTest::RA3FDevSoundPlayRejectionTest(const TDesC& aTestName) :
  1.4931 +	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC),
  1.4932 +	iOtherFilename(KNullDesC)
  1.4933 +	{
  1.4934 +	}
  1.4935 +
  1.4936 +RA3FDevSoundPlayRejectionTest* RA3FDevSoundPlayRejectionTest::NewL(const TDesC& aTestName)
  1.4937 +	{
  1.4938 +	RA3FDevSoundPlayRejectionTest* self = new (ELeave) RA3FDevSoundPlayRejectionTest(aTestName);
  1.4939 +	return self;
  1.4940 +	}
  1.4941 +
  1.4942 +void RA3FDevSoundPlayRejectionTest::DoKickoffTestL()
  1.4943 +	{
  1.4944 +	TPtrC filename;
  1.4945 +	// Get the filename of the audio file to play
  1.4946 +	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
  1.4947 +		{
  1.4948 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
  1.4949 +		StopTest(KErrNotFound);
  1.4950 +		return;
  1.4951 +		}
  1.4952 +	// open using RFile for playback
  1.4953 +	iFilename.Copy(filename);
  1.4954 +
  1.4955 +	TInt err = iFile.Open(iFs, iFilename, EFileRead);
  1.4956 +	if (err != KErrNone)
  1.4957 +		{
  1.4958 +		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
  1.4959 +		StopTest(err);
  1.4960 +		return;
  1.4961 +		}
  1.4962 +
  1.4963 +	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
  1.4964 +
  1.4965 +	// Get the filename of the second devsound instance
  1.4966 +	TPtrC tempString;
  1.4967 +	if (!GetStringFromConfig(iTestStepName, KOtherFilename, tempString))
  1.4968 +		{
  1.4969 +		ERR_PRINTF2(KMsgErrorGetParameter, &KOtherFilename);
  1.4970 +		StopTest(KErrNotFound);
  1.4971 +		return;
  1.4972 +		}
  1.4973 +	
  1.4974 +	iOtherFilename.Copy (tempString);
  1.4975 +
  1.4976 +	TPtrC fourccCode;
  1.4977 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.4978 +		{
  1.4979 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.4980 +		StopTest(KErrNotFound);
  1.4981 +		return;
  1.4982 +		}
  1.4983 +	EncodingFromStringToTFourCC(fourccCode);
  1.4984 +	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
  1.4985 +	iDevsoundPlayClient = CA3FDevSoundPlayClient::NewL(*this, iFourCCCode, iFs, iSuite);
  1.4986 +	}
  1.4987 +
  1.4988 +void RA3FDevSoundPlayRejectionTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.4989 +	{
  1.4990 +	switch (iDevSoundState)
  1.4991 +		{
  1.4992 +		case EStateCreated:
  1.4993 +			{
  1.4994 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayRejectionTest"), EFsmIncorrectErrorPassed));
  1.4995 +			if (aDevSoundEvent == EEventInitialize)
  1.4996 +				{
  1.4997 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.4998 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.4999 +				if (err != KErrNone)
  1.5000 +					{
  1.5001 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.5002 +					StopTest(err);
  1.5003 +					break;
  1.5004 +					}
  1.5005 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.5006 +				iDevSoundState = EStateInitializing;
  1.5007 +				}
  1.5008 +			else
  1.5009 +				{
  1.5010 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.5011 +				StopTest(aError, EFail);
  1.5012 +				}
  1.5013 +			break;
  1.5014 +			}
  1.5015 +		case EStateInitializing:
  1.5016 +			{
  1.5017 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.5018 +				{
  1.5019 +				TMMFPrioritySettings priority;
  1.5020 +				priority.iPriority = KMaximumPriority;
  1.5021 +				INFO_PRINTF2(_L("Setting Priority to %d using CMMFDevSound::SetPrioritySettings"), priority.iPriority);
  1.5022 +				iMMFDevSound->SetPrioritySettings (priority);
  1.5023 +				iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
  1.5024 +				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
  1.5025 +				TRAPD(err, iMMFDevSound->PlayInitL());
  1.5026 +				if ( err != KErrNone)
  1.5027 +					{
  1.5028 +					INFO_PRINTF2(_L("CMMFDevSound::PlayInitL left with error = %d"), err);
  1.5029 +					StopTest(err);
  1.5030 +					break;
  1.5031 +					}
  1.5032 +				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
  1.5033 +				iDevSoundState = EStatePlaying;
  1.5034 +				StartTimer (KMicroSecsTwoSec);
  1.5035 +				}
  1.5036 +			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.5037 +				{
  1.5038 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.5039 +				StopTest(aError);
  1.5040 +				}
  1.5041 +			else
  1.5042 +				{
  1.5043 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.5044 +				StopTest(aError, EFail);
  1.5045 +				}
  1.5046 +			break;
  1.5047 +			}
  1.5048 +		case EStatePlaying:
  1.5049 +			{
  1.5050 +			if (aDevSoundEvent == EEventBTBF)
  1.5051 +				{
  1.5052 +				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
  1.5053 +				TInt err = iFile.Read (buffer->Data ());
  1.5054 +				if (err != KErrNone)
  1.5055 +					{
  1.5056 +					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
  1.5057 +					StopTest(err);
  1.5058 +					break;
  1.5059 +					}
  1.5060 +				if (buffer->Data().Length()!= buffer->RequestSize())
  1.5061 +					{
  1.5062 +					iBuffer->SetLastBuffer (ETrue);
  1.5063 +					}
  1.5064 +				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
  1.5065 +				iMMFDevSound->PlayData();
  1.5066 +				}
  1.5067 +			else
  1.5068 +				{
  1.5069 +				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
  1.5070 +				StopTest(aError, EFail);
  1.5071 +				}
  1.5072 +			break;
  1.5073 +			}
  1.5074 +		default:
  1.5075 +			{
  1.5076 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.5077 +			StopTest(aError, EFail);
  1.5078 +			}
  1.5079 +		}
  1.5080 +	}
  1.5081 +
  1.5082 +void RA3FDevSoundPlayRejectionTest::DoTimerCallback()
  1.5083 +	{
  1.5084 +	INFO_PRINTF1(_L("TimerEvent called"));
  1.5085 +	iTimer->Cancel();
  1.5086 +	INFO_PRINTF1(_L("Starting higher priority devsound client"));
  1.5087 +	iDevsoundPlayClient->SetPriority(KMinimumPriority);
  1.5088 +	INFO_PRINTF1(_L("Initializing to play audio thru second devsound client"));
  1.5089 +	TInt err = iDevsoundPlayClient->PlayInit(iOtherFilename);
  1.5090 +	if (err != KErrNone)
  1.5091 +		{
  1.5092 +		ERR_PRINTF2(_L("Initialization to play audio thru second devsound client failed with %d"), err);
  1.5093 +		StopTest(err);
  1.5094 +		}
  1.5095 +	}
  1.5096 +
  1.5097 +void RA3FDevSoundPlayRejectionTest::ClientInitializeCompleteCallback(TInt aError)
  1.5098 +	{
  1.5099 +	INFO_PRINTF1(_L("========== Second Client DevSound InitializeComplete() callback =========="));
  1.5100 +	if (aError != KErrNone)
  1.5101 +		{
  1.5102 +		ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError);
  1.5103 +		StopTest(aError);
  1.5104 +		}
  1.5105 +	else
  1.5106 +		{
  1.5107 +		INFO_PRINTF2(_L("Second DevSound client called InitializeComplete with error = %d"), aError);
  1.5108 +		INFO_PRINTF1(_L("Starting to play audio thru second devsound client"));
  1.5109 +		TInt err = iDevsoundPlayClient->PlayAudio ();
  1.5110 +		if (err != KErrNone)
  1.5111 +			{
  1.5112 +			ERR_PRINTF2(_L("Starting to play audio thru second devsound client failed with error = %d"), err);
  1.5113 +			StopTest(err);
  1.5114 +			}
  1.5115 +		}
  1.5116 +	}
  1.5117 +
  1.5118 +void RA3FDevSoundPlayRejectionTest::ClientPlayHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError)
  1.5119 +	{
  1.5120 +	switch (aError)
  1.5121 +		{
  1.5122 +		case EInvalidClientFSMEvent:
  1.5123 +			ERR_PRINTF1(_L("Second devsound client received an invalid Event..."));
  1.5124 +			break;
  1.5125 +		case EInvalidClientFSMState:
  1.5126 +			ERR_PRINTF1(_L("Second devsound client received an invalid State..."));
  1.5127 +			break;
  1.5128 +		case EReadFileErrorInClient:
  1.5129 +			ERR_PRINTF1(_L("Second devsound client could not read to file..."));
  1.5130 +			break;
  1.5131 +		default:
  1.5132 +			break;
  1.5133 +		}
  1.5134 +	StopTest(aError, EFail);
  1.5135 +	}
  1.5136 +
  1.5137 +void RA3FDevSoundPlayRejectionTest::ClientBufferToBeFilledCallback(TInt aError)
  1.5138 +	{
  1.5139 +	INFO_PRINTF2(_L("Second DevSound client should not call BufferToBeFilled in rejection. Error = %d"), aError);
  1.5140 +	StopTest(aError, EFail);
  1.5141 +	}
  1.5142 +
  1.5143 +void RA3FDevSoundPlayRejectionTest::ClientPlayErrorCallback(TInt aError, TBool aLastBuffer)
  1.5144 +	{
  1.5145 +	INFO_PRINTF1(_L("========== Second Client DevSound PlayError() callback =========="));
  1.5146 +
  1.5147 +	if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied && !aLastBuffer)
  1.5148 +		{
  1.5149 +		INFO_PRINTF1(_L("========== Rejecting 2nd DevSound Instance=========="));
  1.5150 +		INFO_PRINTF2(_L("Second DevSound client PlayError succeeded with error = %d"), aError);
  1.5151 +		}
  1.5152 +	else
  1.5153 +		{
  1.5154 +		ERR_PRINTF2(_L("Second DevSound PlayError failed with error = %d"), aError);
  1.5155 +		ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied);
  1.5156 +		StopTest(aError, EFail);
  1.5157 +		}
  1.5158 +	}
  1.5159 +
  1.5160 +/*
  1.5161 + *========================================================================================================
  1.5162 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0035
  1.5163 + */
  1.5164 +RA3FDevSoundPlayRejectedByToneTest::RA3FDevSoundPlayRejectedByToneTest(const TDesC& aTestName) :
  1.5165 +	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC)
  1.5166 +	{
  1.5167 +	}
  1.5168 +
  1.5169 +RA3FDevSoundPlayRejectedByToneTest* RA3FDevSoundPlayRejectedByToneTest::NewL(const TDesC& aTestName)
  1.5170 +	{
  1.5171 +	RA3FDevSoundPlayRejectedByToneTest* self = new (ELeave) RA3FDevSoundPlayRejectedByToneTest(aTestName);
  1.5172 +	return self;
  1.5173 +	}
  1.5174 +
  1.5175 +void RA3FDevSoundPlayRejectedByToneTest::DoKickoffTestL()
  1.5176 +	{
  1.5177 +	TPtrC filename;
  1.5178 +	// Get the filename of the audio file to play
  1.5179 +	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
  1.5180 +		{
  1.5181 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
  1.5182 +		StopTest(KErrNotFound);
  1.5183 +		return;
  1.5184 +		}
  1.5185 +	// open using RFile for playback
  1.5186 +	iFilename.Copy (filename);
  1.5187 +
  1.5188 +	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
  1.5189 +	if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
  1.5190 +		{
  1.5191 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
  1.5192 +		StopTest(KErrNotFound);
  1.5193 +		return;
  1.5194 +		}
  1.5195 +	if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
  1.5196 +		{
  1.5197 +		ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
  1.5198 +		StopTest(KErrNotFound);
  1.5199 +		return;
  1.5200 +		}
  1.5201 +	TPtrC fourccCode;
  1.5202 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.5203 +		{
  1.5204 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.5205 +		StopTest(KErrNotFound);
  1.5206 +		return;
  1.5207 +		}
  1.5208 +	EncodingFromStringToTFourCC(fourccCode);
  1.5209 +	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
  1.5210 +	iDevsoundPlayClient = CA3FDevSoundPlayClient::NewL(*this, iFourCCCode, iFs, iSuite);
  1.5211 +	}
  1.5212 +
  1.5213 +void RA3FDevSoundPlayRejectedByToneTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.5214 +	{
  1.5215 +	switch (iDevSoundState)
  1.5216 +		{
  1.5217 +		case EStateCreated:
  1.5218 +			{
  1.5219 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayRejectedByToneTest"), EFsmIncorrectErrorPassed));
  1.5220 +			if (aDevSoundEvent == EEventInitialize)
  1.5221 +				{
  1.5222 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.5223 +				TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
  1.5224 +				if (err != KErrNone)
  1.5225 +					{
  1.5226 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.5227 +					StopTest(err);
  1.5228 +					break;
  1.5229 +					}
  1.5230 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.5231 +				iDevSoundState = EStateInitializing;
  1.5232 +				}
  1.5233 +			else
  1.5234 +				{
  1.5235 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.5236 +				StopTest(aError, EFail);
  1.5237 +				}
  1.5238 +			break;
  1.5239 +			}
  1.5240 +		case EStateInitializing:
  1.5241 +			{
  1.5242 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.5243 +				{
  1.5244 +				TMMFPrioritySettings priority;
  1.5245 +				priority.iPriority = KMinimumPriority;
  1.5246 +				INFO_PRINTF2(_L("Setting Priority to %d using CMMFDevSound::SetPrioritySettings"), priority.iPriority);
  1.5247 +				iMMFDevSound->SetPrioritySettings (priority);
  1.5248 +				iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
  1.5249 +				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayToneL"));
  1.5250 +				TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
  1.5251 +				if (err != KErrNone)
  1.5252 +					{
  1.5253 +					ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error =%d"), err);
  1.5254 +					StopTest(err);
  1.5255 +					break;
  1.5256 +					}
  1.5257 +				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
  1.5258 +				iDevSoundState = EStatePlaying;
  1.5259 +				StartTimer(KMicroSecsTwoSec);
  1.5260 +				}
  1.5261 +			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.5262 +					{
  1.5263 +					ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.5264 +					StopTest(aError);
  1.5265 +					}
  1.5266 +				else
  1.5267 +					{
  1.5268 +					ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.5269 +					StopTest(aError, EFail);
  1.5270 +					}
  1.5271 +			break;
  1.5272 +			}
  1.5273 +		default:
  1.5274 +			{
  1.5275 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.5276 +			StopTest(aError, EFail);
  1.5277 +			}
  1.5278 +		}
  1.5279 +	}
  1.5280 +
  1.5281 +void RA3FDevSoundPlayRejectedByToneTest::DoTimerCallback()
  1.5282 +	{
  1.5283 +	INFO_PRINTF1(_L("TimerEvent called"));
  1.5284 +	iTimer->Cancel();
  1.5285 +	INFO_PRINTF1(_L("Starting higher priority devsound client"));
  1.5286 +	iDevsoundPlayClient->SetPriority(KMinimumPriority);
  1.5287 +	INFO_PRINTF1(_L("Initializing to play audio thru second devsound client"));
  1.5288 +	TInt err = iDevsoundPlayClient->PlayInit(iFilename);
  1.5289 +	if (err != KErrNone)
  1.5290 +		{
  1.5291 +		ERR_PRINTF2(_L("Initialization to play audio thru second devsound client failed with %d"), err);
  1.5292 +		StopTest(err);
  1.5293 +		}
  1.5294 +	}
  1.5295 +
  1.5296 +void RA3FDevSoundPlayRejectedByToneTest::ClientInitializeCompleteCallback(TInt aError)
  1.5297 +	{
  1.5298 +	INFO_PRINTF1(_L("========== Second Client DevSound InitializeComplete() callback =========="));
  1.5299 +	if (aError != KErrNone)
  1.5300 +		{
  1.5301 +		ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError);
  1.5302 +		StopTest (aError);
  1.5303 +		}
  1.5304 +	else
  1.5305 +		{
  1.5306 +		INFO_PRINTF2(_L("Second DevSound client called InitializeComplete with error = %d"), aError);
  1.5307 +		INFO_PRINTF1(_L("Starting to play audio thru second devsound client"));
  1.5308 +		TInt err = iDevsoundPlayClient->PlayAudio ();
  1.5309 +		if (err != KErrNone)
  1.5310 +			{
  1.5311 +			ERR_PRINTF2(_L("Starting to play audio thru second devsound client failed with error = %d"), err);
  1.5312 +			StopTest(err);
  1.5313 +			}
  1.5314 +		}
  1.5315 +	}
  1.5316 +
  1.5317 +void RA3FDevSoundPlayRejectedByToneTest::ClientPlayHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError)
  1.5318 +	{
  1.5319 +	switch (aError)
  1.5320 +		{
  1.5321 +		case EInvalidClientFSMEvent:
  1.5322 +			ERR_PRINTF1(_L("Second devsound client received an invalid Event..."));
  1.5323 +			break;
  1.5324 +		case EInvalidClientFSMState:
  1.5325 +			ERR_PRINTF1(_L("Second devsound client received an invalid State..."));
  1.5326 +			break;
  1.5327 +		case EReadFileErrorInClient:
  1.5328 +			ERR_PRINTF1(_L("Second devsound client could not read to file..."));
  1.5329 +			break;
  1.5330 +		default:
  1.5331 +			break;
  1.5332 +		}
  1.5333 +	StopTest(aError, EFail);
  1.5334 +	}
  1.5335 +
  1.5336 +void RA3FDevSoundPlayRejectedByToneTest::ClientBufferToBeFilledCallback(TInt aError)
  1.5337 +	{
  1.5338 +	INFO_PRINTF2(_L("Second DevSound client should not call BufferToBeFilled in rejection. Error = %d"), aError);
  1.5339 +	StopTest(aError, EFail);
  1.5340 +	}
  1.5341 +
  1.5342 +void RA3FDevSoundPlayRejectedByToneTest::ClientPlayErrorCallback(TInt aError,TBool aLastBuffer)
  1.5343 +	{
  1.5344 +	INFO_PRINTF1(_L("========== Second Client DevSound PlayError() callback =========="));
  1.5345 +	if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied && !aLastBuffer)
  1.5346 +		{
  1.5347 +		INFO_PRINTF1(_L("========== Rejecting 2nd DevSound Instance=========="));
  1.5348 +		INFO_PRINTF2(_L("Second DevSound client PlayError succeeded with error = %d"), aError);
  1.5349 +		}
  1.5350 +	else
  1.5351 +		{
  1.5352 +		ERR_PRINTF2(_L("Second DevSound PlayError failed with error = %d"), aError);
  1.5353 +		ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied);
  1.5354 +		StopTest(aError, EFail);
  1.5355 +		}
  1.5356 +	}
  1.5357 +
  1.5358 +/*
  1.5359 + *========================================================================================================
  1.5360 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0036
  1.5361 + */
  1.5362 +RA3FDevSoundPlayRejectedByRecordTest::RA3FDevSoundPlayRejectedByRecordTest(const TDesC& aTestName) :
  1.5363 +	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC), 
  1.5364 +	iOtherFilename(KNullDesC), iOtherClientStarted(EFalse)
  1.5365 +	{
  1.5366 +	}
  1.5367 +
  1.5368 +RA3FDevSoundPlayRejectedByRecordTest* RA3FDevSoundPlayRejectedByRecordTest::NewL(const TDesC& aTestName)
  1.5369 +	{
  1.5370 +	RA3FDevSoundPlayRejectedByRecordTest* self = new (ELeave) RA3FDevSoundPlayRejectedByRecordTest(aTestName);
  1.5371 +	return self;
  1.5372 +	}
  1.5373 +
  1.5374 +void RA3FDevSoundPlayRejectedByRecordTest::DoKickoffTestL()
  1.5375 +	{
  1.5376 +	TPtrC filename;
  1.5377 +	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
  1.5378 +		{
  1.5379 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
  1.5380 +		StopTest(KErrNotFound);
  1.5381 +		return;
  1.5382 +		}
  1.5383 +	// Open file for recording using RFile 
  1.5384 +	
  1.5385 +	iFilename.Copy (filename);
  1.5386 +	
  1.5387 +	// Get the filename of the second audio file to play
  1.5388 +	if (!GetStringFromConfig(iTestStepName, KOtherFilename, filename))
  1.5389 +		{
  1.5390 +		ERR_PRINTF2(KMsgErrorGetParameter, &KOtherFilename);
  1.5391 +		StopTest(KErrNotFound);
  1.5392 +		return;
  1.5393 +		}
  1.5394 +	INFO_PRINTF2(_L("Opening file for recording %S"), &iFilename);
  1.5395 +	TInt err = iFile.Replace (iFs, iFilename, EFileWrite);
  1.5396 +	if (err != KErrNone)
  1.5397 +		{
  1.5398 +		ERR_PRINTF2(_L("Could not create output file. Error = %d"), err);
  1.5399 +		iFs.Close();
  1.5400 +		StopTest(err);
  1.5401 +		return;
  1.5402 +		}
  1.5403 +
  1.5404 +	iOtherFilename.Copy (filename);
  1.5405 +
  1.5406 +	TPtrC fourccCode;
  1.5407 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.5408 +		{
  1.5409 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.5410 +		StopTest (KErrNotFound);
  1.5411 +		return;
  1.5412 +		}
  1.5413 +	EncodingFromStringToTFourCC(fourccCode);
  1.5414 +	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
  1.5415 +	iDevsoundPlayClient = CA3FDevSoundPlayClient::NewL(*this, iFourCCCode, iFs, iSuite);
  1.5416 +	iAsyncWriteBTFAO = CAsyncWriteBufferToFile::NewL(iFile, iMMFDevSound, *this);
  1.5417 +	}
  1.5418 +
  1.5419 +void RA3FDevSoundPlayRejectedByRecordTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.5420 +	{
  1.5421 +	switch (iDevSoundState)
  1.5422 +		{
  1.5423 +		case EStateCreated:
  1.5424 +			{
  1.5425 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayRejectedByRecordTest"), EFsmIncorrectErrorPassed));
  1.5426 +			if (aDevSoundEvent == EEventInitialize)
  1.5427 +				{
  1.5428 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.5429 +				INFO_PRINTF1(_L("iMMFDevSound->InitializeL()"));
  1.5430 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStateRecording));
  1.5431 +				if (err != KErrNone)
  1.5432 +					{
  1.5433 +					ERR_PRINTF2(_L("Initialization of DevSound failed with error : %d!"), err);
  1.5434 +					StopTest(err);
  1.5435 +					break;
  1.5436 +					}
  1.5437 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.5438 +				iDevSoundState = EStateInitializing;
  1.5439 +				}
  1.5440 +			else
  1.5441 +				{
  1.5442 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.5443 +				StopTest(aError, EFail);
  1.5444 +				}
  1.5445 +			break;
  1.5446 +			}
  1.5447 +		case EStateInitializing:
  1.5448 +			{
  1.5449 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.5450 +				{
  1.5451 +				INFO_PRINTF1(_L("CMMFDevSound::RecordInitL"));
  1.5452 +				TRAPD(err, iMMFDevSound->RecordInitL());
  1.5453 +				if (err != KErrNone)
  1.5454 +					{
  1.5455 +					ERR_PRINTF2(_L("DevSound RecordInitL left with error = %d"), err);
  1.5456 +					StopTest(err);
  1.5457 +					break;
  1.5458 +					}
  1.5459 +				StartTimer(KMicroSecsTwoSec);
  1.5460 +				INFO_PRINTF1(_L("DevSound State: EStateRecording"));
  1.5461 +				iDevSoundState = EStateRecording;
  1.5462 +				}
  1.5463 +			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.5464 +				{
  1.5465 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.5466 +				StopTest(aError);
  1.5467 +				}
  1.5468 +			else
  1.5469 +				{
  1.5470 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.5471 +				StopTest(aError, EFail);
  1.5472 +				}
  1.5473 +			break;
  1.5474 +			}
  1.5475 +		case EStateRecording:
  1.5476 +			{
  1.5477 +			if (aDevSoundEvent == EEventBTBE)
  1.5478 +				{
  1.5479 +				// Write buffer to file
  1.5480 +				INFO_PRINTF1(_L("Writing data to file"));
  1.5481 +				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
  1.5482 +				iAsyncWriteBTFAO->Start(buffer);
  1.5483 +				}
  1.5484 +			else if (aDevSoundEvent == EEventTimerComplete)
  1.5485 +				{
  1.5486 +				iMMFDevSound->Pause();
  1.5487 +				INFO_PRINTF1(_L("DevSound State: EStatePause"));
  1.5488 +				iDevSoundState = EStatePause;
  1.5489 +				INFO_PRINTF1(_L("Recording is Paused, waiting for the last buffer callback"));
  1.5490 +				}
  1.5491 +			else
  1.5492 +				{
  1.5493 +				ERR_PRINTF2(_L("DevSound EEventBTBE not received as expected. Received event: %d"), aDevSoundEvent);
  1.5494 +				StopTest(aError, EFail);
  1.5495 +				}
  1.5496 +			break;
  1.5497 +			}
  1.5498 +		case EStatePause:
  1.5499 +			{
  1.5500 +			if (aDevSoundEvent == EEventBTBE)
  1.5501 +				{
  1.5502 +				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
  1.5503 +				// Continue recording data
  1.5504 +				iAsyncWriteBTFAO->Start (buffer);
  1.5505 +				}
  1.5506 +			else
  1.5507 +				{
  1.5508 +				ERR_PRINTF2(_L("DevSound EEventBTBE not received as expected. Received event: %d"), aDevSoundEvent);
  1.5509 +				StopTest(aError, EFail);
  1.5510 +				}
  1.5511 +			break;
  1.5512 +			}
  1.5513 +		default:
  1.5514 +			{
  1.5515 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.5516 +			StopTest(aError, EFail);
  1.5517 +			}
  1.5518 +		}
  1.5519 +	}
  1.5520 +
  1.5521 +void RA3FDevSoundPlayRejectedByRecordTest::DoTimerCallback()
  1.5522 +	{
  1.5523 +	INFO_PRINTF1(_L("TimerEvent called"));
  1.5524 +	if (!iOtherClientStarted)
  1.5525 +		{
  1.5526 +		INFO_PRINTF1(_L("Starting higher priority devsound client"));
  1.5527 +		iDevsoundPlayClient->SetPriority(KMinimumPriority);
  1.5528 +		INFO_PRINTF1(_L("Initializing to play audio thru second devsound client"));
  1.5529 +		TInt err = iDevsoundPlayClient->PlayInit(iFilename);
  1.5530 +		if (err != KErrNone)
  1.5531 +			{
  1.5532 +			ERR_PRINTF2(_L("Initialization to play audio thru second devsound client failed with %d"), err);
  1.5533 +			StopTest(err);
  1.5534 +			}
  1.5535 +		iOtherClientStarted = ETrue;
  1.5536 +		}
  1.5537 +	else
  1.5538 +		{
  1.5539 +		iTimer->Cancel();
  1.5540 +		Fsm(EEventTimerComplete, KErrNone);
  1.5541 +		}
  1.5542 +	}
  1.5543 +
  1.5544 +void RA3FDevSoundPlayRejectedByRecordTest::ClientInitializeCompleteCallback(TInt aError)
  1.5545 +	{
  1.5546 +	INFO_PRINTF1(_L("========== Second Client DevSound InitializeComplete() callback =========="));
  1.5547 +	if (aError != KErrNone)
  1.5548 +		{
  1.5549 +		ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError);
  1.5550 +		StopTest(aError);
  1.5551 +		}
  1.5552 +	else
  1.5553 +		{
  1.5554 +		INFO_PRINTF2(_L("Second DevSound client called InitializeComplete and with error = %d"), aError);
  1.5555 +		INFO_PRINTF1(_L("Starting to play audio thru second devsound client"));
  1.5556 +		TInt err = iDevsoundPlayClient->PlayAudio();
  1.5557 +		if (err != KErrNone)
  1.5558 +			{
  1.5559 +			ERR_PRINTF2(_L("Starting to play audio thru second devsound client failed with error = %d"), err);
  1.5560 +			StopTest(err);
  1.5561 +			}
  1.5562 +		}
  1.5563 +	}
  1.5564 +
  1.5565 +void RA3FDevSoundPlayRejectedByRecordTest::ClientPlayHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError)
  1.5566 +	{
  1.5567 +	switch (aError)
  1.5568 +		{
  1.5569 +		case EInvalidClientFSMEvent:
  1.5570 +			ERR_PRINTF1(_L("Second devsound client received an invalid Event..."));
  1.5571 +			break;
  1.5572 +		case EInvalidClientFSMState:
  1.5573 +			ERR_PRINTF1(_L("Second devsound client received an invalid State..."));
  1.5574 +			break;
  1.5575 +		case EReadFileErrorInClient:
  1.5576 +			ERR_PRINTF1(_L("Second devsound client could not read to file..."));
  1.5577 +			break;
  1.5578 +		default:
  1.5579 +			break;
  1.5580 +		}
  1.5581 +	StopTest(aError, EFail);
  1.5582 +	}
  1.5583 +
  1.5584 +void RA3FDevSoundPlayRejectedByRecordTest::ClientBufferToBeFilledCallback(TInt aError)
  1.5585 +	{
  1.5586 +	INFO_PRINTF2(_L("Second DevSound client should not call BufferToBeFilled in rejection. Error = %d"), aError);
  1.5587 +	StopTest(aError, EFail);
  1.5588 +	}
  1.5589 +
  1.5590 +void RA3FDevSoundPlayRejectedByRecordTest::ClientPlayErrorCallback(TInt aError, TBool aLastBuffer)
  1.5591 +	{
  1.5592 +	INFO_PRINTF1(_L("========== Second Client DevSound PlayError() callback =========="));
  1.5593 +
  1.5594 +	if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied && !aLastBuffer)
  1.5595 +		{
  1.5596 +		INFO_PRINTF1(_L("========== Rejecting 2nd DevSound Instance=========="));
  1.5597 +		INFO_PRINTF2(_L("Second DevSound client PlayError succeeded with error = %d"), aError);
  1.5598 +		}
  1.5599 +	else
  1.5600 +		{
  1.5601 +		ERR_PRINTF2(_L("Second DevSound PlayError failed with error = %d"), aError);
  1.5602 +		ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied);
  1.5603 +		StopTest(aError, EFail);
  1.5604 +		}
  1.5605 +	}
  1.5606 +
  1.5607 +/*
  1.5608 + *========================================================================================================
  1.5609 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0037
  1.5610 + */
  1.5611 +RA3FDevSoundPlayDataBeforePlayInitTest::RA3FDevSoundPlayDataBeforePlayInitTest(const TDesC& aTestName) :
  1.5612 +	RA3FDevSoundTestBase(aTestName)
  1.5613 +	{
  1.5614 +	}
  1.5615 +
  1.5616 +RA3FDevSoundPlayDataBeforePlayInitTest* RA3FDevSoundPlayDataBeforePlayInitTest::NewL(const TDesC& aTestName)
  1.5617 +	{
  1.5618 +	RA3FDevSoundPlayDataBeforePlayInitTest* self = new (ELeave) RA3FDevSoundPlayDataBeforePlayInitTest(aTestName);
  1.5619 +	return self;
  1.5620 +	}
  1.5621 +
  1.5622 +void RA3FDevSoundPlayDataBeforePlayInitTest::DoKickoffTestL()
  1.5623 +	{
  1.5624 +	TPtrC fourccCode;
  1.5625 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.5626 +		{
  1.5627 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.5628 +		StopTest(KErrNotFound);
  1.5629 +		return;
  1.5630 +		}
  1.5631 +	EncodingFromStringToTFourCC(fourccCode);
  1.5632 +	}
  1.5633 +
  1.5634 +void RA3FDevSoundPlayDataBeforePlayInitTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.5635 +	{
  1.5636 +	switch (iDevSoundState)
  1.5637 +		{
  1.5638 +		case EStateCreated:
  1.5639 +			{
  1.5640 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPlayDatabeforePlayInitLTest"), EFsmIncorrectErrorPassed));
  1.5641 +			if (aDevSoundEvent == EEventInitialize)
  1.5642 +				{
  1.5643 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.5644 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.5645 +				if (err != KErrNone)
  1.5646 +					{
  1.5647 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.5648 +					StopTest(err);
  1.5649 +					break;
  1.5650 +					}
  1.5651 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.5652 +				iDevSoundState = EStateInitializing;
  1.5653 +				}
  1.5654 +			else
  1.5655 +				{
  1.5656 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.5657 +				StopTest(aError, EFail);
  1.5658 +				}
  1.5659 +			break;
  1.5660 +			}
  1.5661 +		case EStateInitializing:
  1.5662 +			{
  1.5663 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.5664 +				{
  1.5665 +				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData out of sequence"));
  1.5666 +				iMMFDevSound->PlayData();
  1.5667 +				}
  1.5668 +			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.5669 +				{
  1.5670 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.5671 +				StopTest(aError);
  1.5672 +				}
  1.5673 +			else
  1.5674 +				{
  1.5675 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.5676 +				StopTest(aError, EFail);
  1.5677 +				}
  1.5678 +			break;
  1.5679 +			}
  1.5680 +		default:
  1.5681 +			{
  1.5682 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.5683 +			StopTest(aError, EFail);
  1.5684 +			}
  1.5685 +		}
  1.5686 +	}
  1.5687 +
  1.5688 +/*
  1.5689 + *========================================================================================================
  1.5690 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0038
  1.5691 + */
  1.5692 +RA3FDevSoundPlayInitTwiceTest::RA3FDevSoundPlayInitTwiceTest(const TDesC& aTestName) :
  1.5693 +	RA3FDevSoundTestBase(aTestName),iFirstPlayInitErr(KErrGeneral),
  1.5694 +	iErr(KErrGeneral)
  1.5695 +	{
  1.5696 +	}
  1.5697 +
  1.5698 +RA3FDevSoundPlayInitTwiceTest* RA3FDevSoundPlayInitTwiceTest::NewL(const TDesC& aTestName)
  1.5699 +	{
  1.5700 +	RA3FDevSoundPlayInitTwiceTest* self = new (ELeave) RA3FDevSoundPlayInitTwiceTest(aTestName);
  1.5701 +	return self;
  1.5702 +	}
  1.5703 +
  1.5704 +void RA3FDevSoundPlayInitTwiceTest::DoKickoffTestL()
  1.5705 +	{
  1.5706 +	TPtrC fourccCode;
  1.5707 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.5708 +		{
  1.5709 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.5710 +		StopTest(KErrNotFound);
  1.5711 +		return;
  1.5712 +		}
  1.5713 +	EncodingFromStringToTFourCC (fourccCode);
  1.5714 +	}
  1.5715 +
  1.5716 +void RA3FDevSoundPlayInitTwiceTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.5717 +	{
  1.5718 +	switch (iDevSoundState)
  1.5719 +		{
  1.5720 +		case EStateCreated:
  1.5721 +			{
  1.5722 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPlayInitLTwiceTest"), EFsmIncorrectErrorPassed));
  1.5723 +			if (aDevSoundEvent == EEventInitialize)
  1.5724 +				{
  1.5725 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.5726 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.5727 +				if (err != KErrNone)
  1.5728 +					{
  1.5729 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.5730 +					StopTest(err);
  1.5731 +					break;
  1.5732 +					}
  1.5733 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.5734 +				iDevSoundState = EStateInitializing;
  1.5735 +				}
  1.5736 +			else
  1.5737 +				{
  1.5738 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.5739 +				StopTest(aError, EFail);
  1.5740 +				}
  1.5741 +			break;
  1.5742 +			}
  1.5743 +		case EStateInitializing:
  1.5744 +			{
  1.5745 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.5746 +				{
  1.5747 +				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
  1.5748 +				TRAP(iFirstPlayInitErr, iMMFDevSound->PlayInitL());
  1.5749 +				if (iFirstPlayInitErr != KErrNone)
  1.5750 +					{
  1.5751 +					ERR_PRINTF2(_L("CMMFDevSound::PlayInitL left with error = %d"), iFirstPlayInitErr);
  1.5752 +					StopTest(iFirstPlayInitErr);
  1.5753 +					break;
  1.5754 +					}
  1.5755 +				INFO_PRINTF1(_L("CMMFDevSound::PlayInitL twice (more than once)"));
  1.5756 +				TRAP(iErr, iMMFDevSound->PlayInitL());
  1.5757 +				if (iErr == KErrNotReady)
  1.5758 +					{
  1.5759 +					INFO_PRINTF2(_L("CMMFDevSound::PlayInitL left with the expected error = %d"), iErr);
  1.5760 +					break;
  1.5761 +					}
  1.5762 +				else
  1.5763 +					{
  1.5764 +					ERR_PRINTF2(_L("Second CMMFDevSound::PlayInitL did NOT leave with the expected error = %d"), iErr);
  1.5765 +					ERR_PRINTF2(_L("Expected error = %d"), KErrNotReady);
  1.5766 +					StopTest(iErr, EFail);
  1.5767 +					break;
  1.5768 +					}
  1.5769 +				}
  1.5770 +			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.5771 +				{
  1.5772 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.5773 +				StopTest(aError);
  1.5774 +				}
  1.5775 +			else
  1.5776 +				{
  1.5777 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.5778 +				StopTest(aError, EFail);
  1.5779 +				}
  1.5780 +			break;
  1.5781 +			}
  1.5782 +		default:
  1.5783 +			{
  1.5784 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.5785 +			StopTest(aError, EFail);
  1.5786 +			}
  1.5787 +		}
  1.5788 +	}
  1.5789 +
  1.5790 +void RA3FDevSoundPlayInitTwiceTest::BufferToBeFilled(CMMFBuffer* /*aBuffer*/)
  1.5791 +	{
  1.5792 +	INFO_PRINTF1(_L("========== DevSound BufferToBeFilled() callback =========="));
  1.5793 +	if (iErr == KErrNotReady && iFirstPlayInitErr == KErrNone)
  1.5794 +		{
  1.5795 +		INFO_PRINTF1(_L("BufferToBeFilled is called because the leave generated due to second CMMFDevSound::PlayInitL is ignored"));
  1.5796 +		StopTest();
  1.5797 +		}
  1.5798 +	}
  1.5799 +
  1.5800 +/*
  1.5801 + *========================================================================================================
  1.5802 + * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0039
  1.5803 + */
  1.5804 +RA3FDevSoundPlayARNTest::RA3FDevSoundPlayARNTest(const TDesC& aTestName) :
  1.5805 +	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC),
  1.5806 +	iOtherFilename(KNullDesC)
  1.5807 +	{
  1.5808 +	}
  1.5809 +
  1.5810 +RA3FDevSoundPlayARNTest* RA3FDevSoundPlayARNTest::NewL(const TDesC& aTestName)
  1.5811 +	{
  1.5812 +	RA3FDevSoundPlayARNTest* self = new (ELeave) RA3FDevSoundPlayARNTest(aTestName);
  1.5813 +	return self;
  1.5814 +	}
  1.5815 +
  1.5816 +void RA3FDevSoundPlayARNTest::DoKickoffTestL()
  1.5817 +	{
  1.5818 +	iRepeat = EFalse;
  1.5819 +	TPtrC filename;
  1.5820 +	// Get the filename of the audio file to play
  1.5821 +	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
  1.5822 +		{
  1.5823 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
  1.5824 +		StopTest(KErrNotFound);
  1.5825 +		return;
  1.5826 +		}
  1.5827 +	// open using RFile for playback
  1.5828 +	iFilename.Copy(filename);
  1.5829 +	TInt err = iFile.Open(iFs, iFilename, EFileRead);
  1.5830 +	if (err != KErrNone)
  1.5831 +		{
  1.5832 +		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
  1.5833 +		StopTest(err);
  1.5834 +		return;
  1.5835 +		}
  1.5836 +	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
  1.5837 +	// Get the filename of the second devsound instance
  1.5838 +	TPtrC tempString;
  1.5839 +	if (!GetStringFromConfig(iTestStepName, KOtherFilename, tempString))
  1.5840 +		{
  1.5841 +		ERR_PRINTF2(KMsgErrorGetParameter, &KOtherFilename);
  1.5842 +		StopTest(KErrNotFound);
  1.5843 +		return;
  1.5844 +		}
  1.5845 +	iOtherFilename.Copy (tempString);
  1.5846 +	INFO_PRINTF2(_L("File under test  -> %S"), &iOtherFilename);
  1.5847 +	TPtrC fourccCode;
  1.5848 +	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.5849 +		{
  1.5850 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.5851 +		StopTest(KErrNotFound);
  1.5852 +		return;
  1.5853 +		}
  1.5854 +	EncodingFromStringToTFourCC(fourccCode);
  1.5855 +	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
  1.5856 +	iDevsoundPlayClient = CA3FDevSoundPlayClient::NewL(*this, iFourCCCode, iFs, iSuite);
  1.5857 +	}
  1.5858 +
  1.5859 +void RA3FDevSoundPlayARNTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.5860 +	{
  1.5861 +	switch (iDevSoundState)
  1.5862 +		{
  1.5863 +		case EStateCreated:
  1.5864 +			{
  1.5865 +			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPreemptionTest"), EFsmIncorrectErrorPassed));
  1.5866 +			if (aDevSoundEvent == EEventInitialize)
  1.5867 +				{
  1.5868 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.5869 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.5870 +				if (err != KErrNone)
  1.5871 +					{
  1.5872 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.5873 +					StopTest(err);
  1.5874 +					break;
  1.5875 +					}
  1.5876 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.5877 +				iDevSoundState = EStateInitializing;
  1.5878 +				}
  1.5879 +			else
  1.5880 +				{
  1.5881 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.5882 +				StopTest(aError, EFail);
  1.5883 +				}
  1.5884 +			break;
  1.5885 +			}
  1.5886 +		case EStateInitializing:
  1.5887 +			{
  1.5888 +			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.5889 +				{
  1.5890 +				TMMFPrioritySettings priority;
  1.5891 +				priority.iPriority = KMinimumPriority;
  1.5892 +				INFO_PRINTF2(_L("Setting Priority to %d using CMMFDevSound::SetPrioritySettings"), priority.iPriority);
  1.5893 +				iMMFDevSound->SetPrioritySettings (priority);
  1.5894 +				iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ());
  1.5895 +				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
  1.5896 +				TRAPD(err, iMMFDevSound->PlayInitL());
  1.5897 +				if (err != KErrNone)
  1.5898 +					{
  1.5899 +					StopTest(err);
  1.5900 +					break;
  1.5901 +					}
  1.5902 +				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
  1.5903 +				INFO_PRINTF1(_L("Registering first client"));
  1.5904 +				iMMFDevSound->RegisterAsClient(KMMFEventCategoryAudioResourceAvailable);
  1.5905 +				iDevSoundState = EStatePlaying;
  1.5906 +				StartTimer(KMicroSecsTwoSec);
  1.5907 +				}
  1.5908 +			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.5909 +				{
  1.5910 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.5911 +				StopTest(aError);
  1.5912 +				}
  1.5913 +			else
  1.5914 +				{
  1.5915 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.5916 +				StopTest(aError, EFail);
  1.5917 +				}
  1.5918 +			break;
  1.5919 +			}
  1.5920 +		case EStatePlaying:
  1.5921 +			{
  1.5922 +			if (aDevSoundEvent == EEventBTBF)
  1.5923 +				{
  1.5924 +				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
  1.5925 +				TInt err = iFile.Read (buffer->Data ());
  1.5926 +				if (err != KErrNone)
  1.5927 +					{
  1.5928 +					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
  1.5929 +					StopTest (err);
  1.5930 +					break;
  1.5931 +					}
  1.5932 +				if (buffer->Data().Length ()!= buffer->RequestSize())
  1.5933 +					{
  1.5934 +					iBuffer->SetLastBuffer(ETrue);
  1.5935 +					}
  1.5936 +				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
  1.5937 +				iMMFDevSound->PlayData();
  1.5938 +				}
  1.5939 +			else
  1.5940 +				{
  1.5941 +				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
  1.5942 +				StopTest(aError, EFail);
  1.5943 +				}
  1.5944 +			break;
  1.5945 +			}
  1.5946 +		case EStateResumePlaying:
  1.5947 +			{
  1.5948 +//			if (aDevSoundEvent == KMMFEventCategoryAudioResourceAvailable)
  1.5949 +			if (aDevSoundEvent == EResourceAvailable)
  1.5950 +				{
  1.5951 +				INFO_PRINTF1(_L("First Client Received Notification as expected"));
  1.5952 +				//INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
  1.5953 +				//iMMFDevSound->PlayData ();
  1.5954 +				StopTest();
  1.5955 +				}
  1.5956 +			else
  1.5957 +				{
  1.5958 +				ERR_PRINTF2(_L("DevSound KMMFEventCategoryAudioResourceAvailable not received as expected. Received event: %d"), aDevSoundEvent);
  1.5959 +				StopTest(aError, EFail);
  1.5960 +				}
  1.5961 +			break;
  1.5962 +			}
  1.5963 +		default:
  1.5964 +			{
  1.5965 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.5966 +			StopTest(KErrGeneral);
  1.5967 +			}
  1.5968 +		}
  1.5969 +	}
  1.5970 +
  1.5971 +void RA3FDevSoundPlayARNTest::DoTimerCallback()
  1.5972 +	{
  1.5973 +	if(!iRepeat)
  1.5974 +		{
  1.5975 +		INFO_PRINTF1(_L("TimerEvent called"));
  1.5976 +		//iTimer->Cancel();
  1.5977 +		INFO_PRINTF1(_L("Starting higher priority devsound client"));
  1.5978 +		iDevsoundPlayClient->SetPriority(KMaximumPriority);
  1.5979 +		INFO_PRINTF1(_L("Initializing to play audio thru second devsound client"));
  1.5980 +		TInt err = iDevsoundPlayClient->PlayInit(iOtherFilename);
  1.5981 +		if (err != KErrNone)
  1.5982 +			{
  1.5983 +			ERR_PRINTF2(_L("Initializating DevSound to play audio thru second devsound client failed with error = %d"), err);
  1.5984 +			StopTest(err);
  1.5985 +			}
  1.5986 +		iRepeat = ETrue;
  1.5987 +		}
  1.5988 +	else
  1.5989 +		{
  1.5990 +		INFO_PRINTF1(_L("Deleting second devsound client"));
  1.5991 +		iDevsoundPlayClient->DeleteClient();
  1.5992 +		iDevSoundState = EStateResumePlaying;
  1.5993 +		}
  1.5994 +	}
  1.5995 +
  1.5996 +void RA3FDevSoundPlayARNTest::PlayError(TInt aError)
  1.5997 +	{
  1.5998 +	INFO_PRINTF1(_L("========== DevSound PlayError() callback =========="));
  1.5999 +	if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied)
  1.6000 +		{
  1.6001 +		INFO_PRINTF1(_L("========== Preempting 1st DevSound Instance=========="));
  1.6002 +		INFO_PRINTF2(_L("First DevSound client PlayError succeeded with error = %d "), aError);
  1.6003 +		}
  1.6004 +	else
  1.6005 +		{
  1.6006 +		ERR_PRINTF2(_L("First DevSound client PlayError and failed with error = %d "), aError);
  1.6007 +		ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied);
  1.6008 +		StopTest(aError, EFail);
  1.6009 +		}
  1.6010 +	}
  1.6011 +
  1.6012 +void RA3FDevSoundPlayARNTest::ClientInitializeCompleteCallback(TInt aError)                               
  1.6013 +	{
  1.6014 +	INFO_PRINTF1(_L("========== Second Client DevSound InitializeComplete() callback =========="));
  1.6015 +	if (aError != KErrNone)
  1.6016 +		{
  1.6017 +		ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError);
  1.6018 +		StopTest(aError);
  1.6019 +		}
  1.6020 +	else
  1.6021 +		{
  1.6022 +		INFO_PRINTF1(_L("Starting to play audio thru second devsound client"));
  1.6023 +		TInt err = iDevsoundPlayClient->PlayAudio();
  1.6024 +		if (err != KErrNone)
  1.6025 +			{
  1.6026 +			ERR_PRINTF2(_L("Starting to play audio thru second devsound client failed with error = %d"), err);
  1.6027 +			StopTest(err);
  1.6028 +			}
  1.6029 +		}
  1.6030 +	}
  1.6031 +
  1.6032 +void RA3FDevSoundPlayARNTest::ClientBufferToBeFilledCallback(TInt aError)
  1.6033 +	{
  1.6034 +	INFO_PRINTF1(_L("========== Second Client DevSound BufferToBeFilled() callback =========="));
  1.6035 +	if (aError != KErrNone)
  1.6036 +		{
  1.6037 +		ERR_PRINTF2(_L("Second DevSound client called BufferToBeFilled and failed with error = %d"), aError);
  1.6038 +		StopTest(aError);
  1.6039 +		}
  1.6040 +	}
  1.6041 +
  1.6042 +void RA3FDevSoundPlayARNTest::ClientPlayHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError)
  1.6043 +	{
  1.6044 +	switch (aError)
  1.6045 +		{
  1.6046 +		case EInvalidClientFSMEvent:
  1.6047 +			ERR_PRINTF1(_L("Second devsound client received an invalid Event..."));
  1.6048 +			break;
  1.6049 +		case EInvalidClientFSMState:
  1.6050 +			ERR_PRINTF1(_L("Second devsound client received an invalid State..."));
  1.6051 +			break;
  1.6052 +		case EReadFileErrorInClient:
  1.6053 +			ERR_PRINTF1(_L("Second devsound client could not read to file..."));
  1.6054 +			break;
  1.6055 +		default:
  1.6056 +			break;
  1.6057 +		}
  1.6058 +	StopTest(aError, EFail);
  1.6059 +	}
  1.6060 +
  1.6061 +void RA3FDevSoundPlayARNTest::ClientPlayErrorCallback(TInt aError, TBool aLastBuffer)
  1.6062 +	{
  1.6063 +	INFO_PRINTF1(_L("========== Second Client DevSound PlayError() callback =========="));
  1.6064 +
  1.6065 +	if (aError == KErrUnderflow && aLastBuffer)
  1.6066 +		{
  1.6067 +		INFO_PRINTF1(_L("Second DevSound client called PlayError and completed normally"));
  1.6068 +		iDevSoundState = EStateResumePlaying;
  1.6069 +		//StopTest();
  1.6070 +		}
  1.6071 +	else
  1.6072 +		{
  1.6073 +		ERR_PRINTF2(_L("Second DevSound PlayError failed with error = %d"), aError);
  1.6074 +		ERR_PRINTF2(_L("Expected error = %d "), KErrUnderflow);
  1.6075 +		StopTest(aError, EFail);
  1.6076 +		}
  1.6077 +	}	
  1.6078 +
  1.6079 +	/*
  1.6080 +	 *========================================================================================================
  1.6081 +	 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0040
  1.6082 +	 */                                      
  1.6083 +	RA3FDevSoundImmediatePauseAfterCreation::RA3FDevSoundImmediatePauseAfterCreation(const TDesC& aTestName) :
  1.6084 +	    RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC)
  1.6085 +	    {
  1.6086 +	    }
  1.6087 +
  1.6088 +	RA3FDevSoundImmediatePauseAfterCreation* RA3FDevSoundImmediatePauseAfterCreation::NewL(const TDesC& aTestName)
  1.6089 +	    {
  1.6090 +	    RA3FDevSoundImmediatePauseAfterCreation* self = new (ELeave) RA3FDevSoundImmediatePauseAfterCreation(aTestName);
  1.6091 +	    return self;
  1.6092 +	    }
  1.6093 +
  1.6094 +	void RA3FDevSoundImmediatePauseAfterCreation::DoKickoffTestL()
  1.6095 +	    {
  1.6096 +	    iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
  1.6097 +	    }
  1.6098 +
  1.6099 +	void RA3FDevSoundImmediatePauseAfterCreation::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.6100 +	    {
  1.6101 +	    switch (iDevSoundState)
  1.6102 +	        {
  1.6103 +	        case EStateCreated:
  1.6104 +	            {
  1.6105 +	            __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundImmediatePauseAfterCreation"), EFsmIncorrectErrorPassed));
  1.6106 +	            if (aDevSoundEvent == EEventInitialize)
  1.6107 +	                {
  1.6108 +	                INFO_PRINTF1(_L("Calling CMMFDevSound::Pause"));
  1.6109 +	                
  1.6110 +	                iMMFDevSound->Pause();
  1.6111 +	                StartTimer(KMicroSecsInOneSec);
  1.6112 +	        
  1.6113 +	                iDevSoundState = EStatePause;
  1.6114 +	                }
  1.6115 +	            else
  1.6116 +	                {
  1.6117 +	                ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.6118 +	                StopTest(aError, EFail);
  1.6119 +	                }
  1.6120 +	            break;
  1.6121 +	            }
  1.6122 +	        
  1.6123 +	        default:
  1.6124 +	            {
  1.6125 +	            ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.6126 +	            StopTest(aError, EFail);
  1.6127 +	            }
  1.6128 +	        }
  1.6129 +	    }
  1.6130 +
  1.6131 +	void RA3FDevSoundImmediatePauseAfterCreation::DoTimerCallback()
  1.6132 +	    {
  1.6133 +	    INFO_PRINTF1(_L("TimerEvent called"));
  1.6134 +	    iTimer->Cancel();
  1.6135 +	    INFO_PRINTF1(_L("Pause did not panic DevSound"));
  1.6136 +	    StopTest(KErrNone);
  1.6137 +	    }
  1.6138 +
  1.6139 +	
  1.6140 +	/*
  1.6141 +	 *========================================================================================================
  1.6142 +	 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0041
  1.6143 +	 */
  1.6144 +	RA3FDevSoundPlayEmptyBuffersWhilePlayingTest::RA3FDevSoundPlayEmptyBuffersWhilePlayingTest(const TDesC& aTestName) :
  1.6145 +	    RA3FDevSoundTestBase(aTestName), iVolume(0),
  1.6146 +	    iFilename(KNullDesC)
  1.6147 +	    {
  1.6148 +	    }
  1.6149 +
  1.6150 +	RA3FDevSoundPlayEmptyBuffersWhilePlayingTest* RA3FDevSoundPlayEmptyBuffersWhilePlayingTest::NewL(const TDesC& aTestName)
  1.6151 +	    {
  1.6152 +	    RA3FDevSoundPlayEmptyBuffersWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayEmptyBuffersWhilePlayingTest(aTestName);
  1.6153 +	    return self;
  1.6154 +	    }
  1.6155 +
  1.6156 +	void RA3FDevSoundPlayEmptyBuffersWhilePlayingTest::DoKickoffTestL()
  1.6157 +	    {
  1.6158 +	    TPtrC filename;
  1.6159 +	    // Get the filename of the audio file to play
  1.6160 +	    if (!GetStringFromConfig(iTestStepName, KFilename, filename))
  1.6161 +	        {
  1.6162 +	        ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
  1.6163 +	        StopTest (KErrNotFound);
  1.6164 +	        return;
  1.6165 +	        }
  1.6166 +	    // open using RFile for playback
  1.6167 +	    iFilename.Copy (filename);
  1.6168 +	    TInt err = iFile.Open (iFs, iFilename, EFileRead);
  1.6169 +	    if (err != KErrNone)
  1.6170 +	        {
  1.6171 +	        ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
  1.6172 +	        iFs.Close();
  1.6173 +	        StopTest(err);
  1.6174 +	        return;
  1.6175 +	        }
  1.6176 +
  1.6177 +	    INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
  1.6178 +
  1.6179 +	    if (!GetIntFromConfig(iTestStepName, KVolume, iVolume))
  1.6180 +	        {
  1.6181 +	        ERR_PRINTF2(KMsgErrorGetParameter, &KVolume);
  1.6182 +	        StopTest (KErrNotFound);
  1.6183 +	        return;
  1.6184 +	        }
  1.6185 +	    TPtrC fourccCode;
  1.6186 +	    if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.6187 +	        {
  1.6188 +	        ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.6189 +	        StopTest(KErrNotFound);
  1.6190 +	        return;
  1.6191 +	        }
  1.6192 +	    EncodingFromStringToTFourCC(fourccCode);
  1.6193 +	    }
  1.6194 +
  1.6195 +	void RA3FDevSoundPlayEmptyBuffersWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.6196 +	    {
  1.6197 +	    switch (iDevSoundState)
  1.6198 +	        {
  1.6199 +	        case EStateCreated:
  1.6200 +	            {
  1.6201 +	            __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumePlayingTest"), EFsmIncorrectErrorPassed));
  1.6202 +	            if (aDevSoundEvent == EEventInitialize)
  1.6203 +	                {
  1.6204 +	                INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.6205 +	                TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.6206 +	                if (err != KErrNone)
  1.6207 +	                    {
  1.6208 +	                    ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error: %d"), err);
  1.6209 +	                    StopTest(err);
  1.6210 +	                    break;
  1.6211 +	                    }
  1.6212 +	                INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.6213 +	                iDevSoundState = EStateInitializing;
  1.6214 +	                }
  1.6215 +	            else
  1.6216 +	                {
  1.6217 +	                ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.6218 +	                StopTest(aError, EFail);
  1.6219 +	                }
  1.6220 +	            break;
  1.6221 +	            }
  1.6222 +	        case EStateInitializing:
  1.6223 +	            {
  1.6224 +	            if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.6225 +	                {
  1.6226 +	                INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
  1.6227 +	                TRAPD(err, iMMFDevSound->PlayInitL());
  1.6228 +	                if (err != KErrNone)
  1.6229 +	                    {
  1.6230 +	                    StopTest(err);
  1.6231 +	                    break;
  1.6232 +	                    }
  1.6233 +	                iDevSoundState = EStatePlaying;
  1.6234 +	                }
  1.6235 +	            else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.6236 +	                {
  1.6237 +	                ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.6238 +	                StopTest(aError);
  1.6239 +	                }
  1.6240 +	            else
  1.6241 +	                {
  1.6242 +	                ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.6243 +	                StopTest(aError, EFail);
  1.6244 +	                }
  1.6245 +	            break;
  1.6246 +	            }
  1.6247 +	        case EStatePlaying:
  1.6248 +	            {
  1.6249 +	            if (aDevSoundEvent == EEventBTBF)
  1.6250 +	                {
  1.6251 +	                
  1.6252 +	                if(iBtbfCount == 3)
  1.6253 +	                    {
  1.6254 +	                    INFO_PRINTF2(_L("BTBF count = %d, Calling CMMFDevSound::EmptyBuffers"),iBtbfCount);
  1.6255 +	                    iMMFDevSound->EmptyBuffers();
  1.6256 +	                    }
  1.6257 +	                
  1.6258 +	                else
  1.6259 +	                    {
  1.6260 +                        CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
  1.6261 +                        TInt err = iFile.Read (buffer->Data ());
  1.6262 +                        if (err != KErrNone)
  1.6263 +                            {
  1.6264 +                            ERR_PRINTF2(_L("ERROR : iFile.Read() failed with: %d"), err);
  1.6265 +                            StopTest(err);
  1.6266 +                            break;
  1.6267 +                            }
  1.6268 +                        if (buffer->Data().Length ()!= buffer->RequestSize ())
  1.6269 +                            {
  1.6270 +                            iBuffer->SetLastBuffer (ETrue);
  1.6271 +                            }
  1.6272 +                        INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
  1.6273 +                        iMMFDevSound->PlayData ();
  1.6274 +	                    }
  1.6275 +	                
  1.6276 +	                ++iBtbfCount;
  1.6277 +	                }
  1.6278 +	            else
  1.6279 +	                {
  1.6280 +	                ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
  1.6281 +	                StopTest(aError, EFail);
  1.6282 +	                }
  1.6283 +	            break;
  1.6284 +	            }
  1.6285 +	        default:
  1.6286 +	            {
  1.6287 +	            ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.6288 +	            StopTest(aError, EFail);
  1.6289 +	            }
  1.6290 +	        }
  1.6291 +	    }
  1.6292 +
  1.6293 +	/*
  1.6294 +	 *========================================================================================================
  1.6295 +	 * 3F-DEVSOUND-CHRTZ-PLAY-RAW-0042
  1.6296 +	 */
  1.6297 +	RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest(const TDesC& aTestName) :
  1.6298 +	    RA3FDevSoundTestBase(aTestName),iFilename(KNullDesC),
  1.6299 +	    iExVolume(0), iFrequencyTone1(0), iDuration(0),  
  1.6300 +	    iSetVolume(EFalse), iResume(EFalse)
  1.6301 +	    {
  1.6302 +	    }
  1.6303 +
  1.6304 +	RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest* RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::NewL(const TDesC& aTestName)
  1.6305 +	    {
  1.6306 +	    RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest* self = new (ELeave) RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest(aTestName);
  1.6307 +	    return self;
  1.6308 +	    }
  1.6309 +
  1.6310 +	void RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::DoKickoffTestL()
  1.6311 +	    {
  1.6312 +	    TPtrC filename;
  1.6313 +	    // Get the filename of the audio file to play
  1.6314 +	    if (!GetStringFromConfig(iTestStepName, KFilename, filename))
  1.6315 +	        {
  1.6316 +	        ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
  1.6317 +	        StopTest(KErrNotFound);
  1.6318 +	        return;
  1.6319 +	        }
  1.6320 +	    // open using RFile for playback
  1.6321 +	    iFilename.Copy(filename);
  1.6322 +	    TInt err = iFile.Open(iFs, iFilename, EFileRead);
  1.6323 +	    if (err != KErrNone)
  1.6324 +	        {
  1.6325 +	        ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
  1.6326 +	        StopTest(err);
  1.6327 +	        return;
  1.6328 +	        }
  1.6329 +
  1.6330 +	    INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
  1.6331 +
  1.6332 +	    if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
  1.6333 +	        {
  1.6334 +	        ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
  1.6335 +	        StopTest(KErrNotFound);
  1.6336 +	        return;
  1.6337 +	        }
  1.6338 +	    if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
  1.6339 +	        {
  1.6340 +	        ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
  1.6341 +	        StopTest(KErrNotFound);
  1.6342 +	        return;
  1.6343 +	        }
  1.6344 +	    TPtrC fourccCode;
  1.6345 +	    if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.6346 +	        {
  1.6347 +	        ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.6348 +	        StopTest(KErrNotFound);
  1.6349 +	        return;
  1.6350 +	        }
  1.6351 +	    
  1.6352 +	    if (!GetIntFromConfig(iTestStepName, KExVolume, iExVolume))
  1.6353 +	        {
  1.6354 +	        ERR_PRINTF2(KMsgErrorGetParameter, &KExVolume);
  1.6355 +	        StopTest(KErrNotFound);
  1.6356 +	        return;
  1.6357 +	        }
  1.6358 +	    
  1.6359 +	    EncodingFromStringToTFourCC(fourccCode);
  1.6360 +	    iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
  1.6361 +	    iDevsoundToneClient = CA3FDevSoundToneClient::NewL(*this);
  1.6362 +	    }
  1.6363 +
  1.6364 +	void RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.6365 +	    {
  1.6366 +	    switch (iDevSoundState)
  1.6367 +	        {
  1.6368 +	        case EStateCreated:
  1.6369 +	            {
  1.6370 +	            __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPreemptedByToneTest"), EFsmIncorrectErrorPassed));
  1.6371 +	            if (aDevSoundEvent == EEventInitialize)
  1.6372 +	                {
  1.6373 +	                INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.6374 +	                TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.6375 +	                if (err != KErrNone)
  1.6376 +	                    {
  1.6377 +	                    ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.6378 +	                    StopTest(err);
  1.6379 +	                    break;
  1.6380 +	                    }
  1.6381 +	                INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.6382 +	                iDevSoundState = EStateInitializing;
  1.6383 +	                }
  1.6384 +	            else
  1.6385 +	                {
  1.6386 +	                ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.6387 +	                StopTest(aError, EFail);
  1.6388 +	                }
  1.6389 +	            break;
  1.6390 +	            }
  1.6391 +	        case EStateInitializing:
  1.6392 +	            {
  1.6393 +	            if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.6394 +	                {
  1.6395 +	                TMMFPrioritySettings priority;
  1.6396 +	                priority.iPriority = KMinimumPriority;
  1.6397 +	                INFO_PRINTF2(_L("Setting Priority to %d using CMMFDevSound::SetPrioritySettings"), priority.iPriority);
  1.6398 +	                iMMFDevSound->SetPrioritySettings (priority);
  1.6399 +	                iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ());
  1.6400 +	                INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
  1.6401 +	                TRAPD(err, iMMFDevSound->PlayInitL());
  1.6402 +	                if (err != KErrNone)
  1.6403 +	                    {
  1.6404 +	                    StopTest (err);
  1.6405 +	                    break;
  1.6406 +	                    }
  1.6407 +	                INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
  1.6408 +	                iDevSoundState = EStatePlaying;
  1.6409 +	                StartTimer (KMicroSecsTwoSec);
  1.6410 +	                }
  1.6411 +	            else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.6412 +	                {
  1.6413 +	                ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
  1.6414 +	                StopTest(aError);
  1.6415 +	                }
  1.6416 +	            else
  1.6417 +	                {
  1.6418 +	                ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.6419 +	                StopTest(aError, EFail);
  1.6420 +	                }
  1.6421 +	            break;
  1.6422 +	            }
  1.6423 +	        case EStatePlaying:
  1.6424 +	            {
  1.6425 +	            if (aDevSoundEvent == EEventBTBF)
  1.6426 +	                {
  1.6427 +                    if(iResume)
  1.6428 +                        {
  1.6429 +                        INFO_PRINTF1(_L("First Client resumed after pre-emption as expected"));
  1.6430 +                        StopTest();
  1.6431 +                        break;
  1.6432 +                        }
  1.6433 +                    
  1.6434 +                    if(!iSetVolume)
  1.6435 +                        {
  1.6436 +                        iMMFDevSound->SetVolume (iExVolume);
  1.6437 +                        iSetVolume = ETrue;
  1.6438 +                        }
  1.6439 +                    
  1.6440 +	                CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
  1.6441 +	                TInt err = iFile.Read (buffer->Data());
  1.6442 +	                if (err != KErrNone)
  1.6443 +	                    {
  1.6444 +	                    ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
  1.6445 +	                    StopTest(err);
  1.6446 +	                    break;
  1.6447 +	                    }
  1.6448 +	                if (buffer->Data().Length ()!= buffer->RequestSize())
  1.6449 +	                    {
  1.6450 +	                    iBuffer->SetLastBuffer(ETrue);
  1.6451 +	                    }
  1.6452 +	                INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
  1.6453 +	                iMMFDevSound->PlayData();
  1.6454 +	                }
  1.6455 +	            else
  1.6456 +	                {
  1.6457 +	                ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
  1.6458 +	                StopTest(aError, EFail);
  1.6459 +	                }
  1.6460 +	            break;
  1.6461 +	            }
  1.6462 +	        default:
  1.6463 +	            {
  1.6464 +	            ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.6465 +	            StopTest(aError, EFail);
  1.6466 +	            }
  1.6467 +	        }
  1.6468 +	    }
  1.6469 +
  1.6470 +	void RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::DoTimerCallback()
  1.6471 +	    {
  1.6472 +	    INFO_PRINTF1(_L("TimerEvent called"));
  1.6473 +	    iTimer->Cancel();
  1.6474 +	    INFO_PRINTF1(_L("Starting higher priority devsound client"));
  1.6475 +	    iDevsoundToneClient->SetPriority(KMaximumPriority);
  1.6476 +	    INFO_PRINTF1(_L("Initializing to play tones thru second devsound client"));
  1.6477 +	    TInt err = iDevsoundToneClient->InitTonePlay(iFrequencyTone1,iDuration*KMicroSecsInOneSec);
  1.6478 +	    if (err != KErrNone)
  1.6479 +	        {
  1.6480 +	        ERR_PRINTF2(_L("Initializating DevSoud to play tones thru second devsound client failed with error = %d"), err);
  1.6481 +	        StopTest(err);
  1.6482 +	        }
  1.6483 +	    }
  1.6484 +
  1.6485 +	void RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::PlayError(TInt aError)
  1.6486 +	    {
  1.6487 +	    INFO_PRINTF1(_L("========== DevSound PlayError() callback =========="));
  1.6488 +	    if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied)
  1.6489 +	        {
  1.6490 +	        INFO_PRINTF1(_L("========== Preempting 1st DevSound Instance=========="));
  1.6491 +	        INFO_PRINTF2(_L("First DevSound client PlayError succeeded with error = %d "), aError);
  1.6492 +	        }
  1.6493 +	    else
  1.6494 +	        {
  1.6495 +	        ERR_PRINTF2(_L("First DevSound client called PlayError and failed with error = %d "), aError);
  1.6496 +	        ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied);
  1.6497 +	        StopTest(aError, EFail);
  1.6498 +	        }
  1.6499 +	    }
  1.6500 +
  1.6501 +	void RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::ClientInitializeCompleteCallback(TInt aError)
  1.6502 +	    {
  1.6503 +	    INFO_PRINTF1(_L("==========Second DevSound client called InitializeComplete()=========="));
  1.6504 +	    if (aError == KErrNone)
  1.6505 +	        {
  1.6506 +	        INFO_PRINTF1(_L("Starting to play tone thru second devsound client"));
  1.6507 +	        TInt err = iDevsoundToneClient->PlayTone ();
  1.6508 +	        if (err != KErrNone)
  1.6509 +	            {
  1.6510 +	            ERR_PRINTF2(_L("Second Devsound client called PlayTone and failed with error = %d"), err);
  1.6511 +	            StopTest(err);
  1.6512 +	            }
  1.6513 +	        }
  1.6514 +	    else
  1.6515 +	        {
  1.6516 +	        ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError);
  1.6517 +	        StopTest(aError);
  1.6518 +	        }
  1.6519 +	    }
  1.6520 +
  1.6521 +	void RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::ClientToneFinishedCallback(TInt aError)
  1.6522 +	    {
  1.6523 +	    INFO_PRINTF1(_L("========== Second  DevSound client called ToneFinished()=========="));
  1.6524 +	    if (aError == KErrUnderflow)
  1.6525 +	        {
  1.6526 +	        INFO_PRINTF2(_L("Second DevSound client called ToneFinished and succeeded with error = %d"), aError);
  1.6527 +            iDevSoundState = EStatePlaying;
  1.6528 +            iResume = ETrue;
  1.6529 +            TRAPD(err, iMMFDevSound->PlayInitL());
  1.6530 +            if(err != KErrNone)
  1.6531 +                {
  1.6532 +                ERR_PRINTF2(_L("Call PlayInitL failed after Second DevSound client called ToneFinished with error = %d"), err);
  1.6533 +                StopTest(aError);
  1.6534 +                }
  1.6535 +	        }
  1.6536 +	    else
  1.6537 +	        {
  1.6538 +	        ERR_PRINTF2(_L("Second DevSound client called ToneFinished and failed with error = %d"), aError);
  1.6539 +	        StopTest(aError);
  1.6540 +	        }
  1.6541 +	    }
  1.6542 +