os/mm/devsound/a3fcharacterisationtest/src/char_a3f_devsound_playtest.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
// User includes
sl@0
    17
#include "char_a3f_devsound_playtest.h"
sl@0
    18
sl@0
    19
/*
sl@0
    20
 *========================================================================================================
sl@0
    21
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0001
sl@0
    22
 */
sl@0
    23
RA3FDevSoundPlaySetConfigTest::RA3FDevSoundPlaySetConfigTest(const TDesC& aTestName) :
sl@0
    24
	RA3FDevSoundTestBase(aTestName), iSampleRate(0),
sl@0
    25
	iChannels(0)
sl@0
    26
	{
sl@0
    27
	}
sl@0
    28
sl@0
    29
RA3FDevSoundPlaySetConfigTest* RA3FDevSoundPlaySetConfigTest::NewL(const TDesC& aTestName)
sl@0
    30
	{
sl@0
    31
	RA3FDevSoundPlaySetConfigTest* self = new (ELeave) RA3FDevSoundPlaySetConfigTest(aTestName);
sl@0
    32
	return self;
sl@0
    33
	}
sl@0
    34
sl@0
    35
void RA3FDevSoundPlaySetConfigTest::DoKickoffTestL()
sl@0
    36
	{
sl@0
    37
	if (!GetIntFromConfig(iTestStepName, KSampleRate, iSampleRate))
sl@0
    38
		{
sl@0
    39
		ERR_PRINTF2(KMsgErrorGetParameter, &KSampleRate);
sl@0
    40
		StopTest(KErrNotFound);
sl@0
    41
		return;
sl@0
    42
		}
sl@0
    43
	if (!GetIntFromConfig(iTestStepName, KChannel, iChannels))
sl@0
    44
		{
sl@0
    45
		ERR_PRINTF2(KMsgErrorGetParameter, &KChannel);
sl@0
    46
		StopTest(KErrNotFound);
sl@0
    47
		return;
sl@0
    48
		}
sl@0
    49
	TPtrC fourccCode;
sl@0
    50
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
    51
		{
sl@0
    52
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
    53
		StopTest(KErrNotFound);
sl@0
    54
		return;
sl@0
    55
		}
sl@0
    56
	EncodingFromStringToTFourCC(fourccCode);
sl@0
    57
	}
sl@0
    58
sl@0
    59
void RA3FDevSoundPlaySetConfigTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
    60
	{
sl@0
    61
	switch (iDevSoundState)
sl@0
    62
		{
sl@0
    63
		case EStateCreated:
sl@0
    64
			{
sl@0
    65
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetConfigLTest"), EFsmIncorrectErrorPassed));
sl@0
    66
			if (aDevSoundEvent == EEventInitialize)
sl@0
    67
				{
sl@0
    68
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
    69
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
    70
				if (err != KErrNone)
sl@0
    71
					{
sl@0
    72
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
    73
					StopTest(err);
sl@0
    74
					break;
sl@0
    75
					}
sl@0
    76
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
    77
				iDevSoundState = EStateInitializing;
sl@0
    78
				}
sl@0
    79
			else
sl@0
    80
				{
sl@0
    81
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
    82
				StopTest(aError, EFail);
sl@0
    83
				}
sl@0
    84
			break;
sl@0
    85
			}
sl@0
    86
		case EStateInitializing:
sl@0
    87
			{
sl@0
    88
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
    89
				{
sl@0
    90
				TMMFCapabilities capabilitiesSet;
sl@0
    91
				TBuf<KMaxSampleRateStringLength> stringSampleRateSet;
sl@0
    92
				TBuf<KMaxChannelsStringLength> stringChannelsSet;
sl@0
    93
				SampleRateFromTIntToTMMFSampleRate (iSampleRate, iESampleRate);
sl@0
    94
				capabilitiesSet.iRate = iESampleRate;
sl@0
    95
				capabilitiesSet.iChannels = iChannels;
sl@0
    96
				SampleRateFromTUintToString (capabilitiesSet.iRate,	stringSampleRateSet);
sl@0
    97
				ChannelsFromTUintToString (capabilitiesSet.iChannels, stringChannelsSet);
sl@0
    98
				INFO_PRINTF3(_L("Settings for Sample rate an channel mode : %S %S"), &stringSampleRateSet, &stringChannelsSet);
sl@0
    99
				INFO_PRINTF1(_L("Calling CMMFDevSound::SetConfigL"));
sl@0
   100
				TRAPD(err, iMMFDevSound->SetConfigL(capabilitiesSet));
sl@0
   101
				if (err != KErrNone)
sl@0
   102
					{
sl@0
   103
					ERR_PRINTF2(_L("CMMFDevSound::SetConfigL left with error = %d"), err);
sl@0
   104
					StopTest(err);
sl@0
   105
					break;
sl@0
   106
					}
sl@0
   107
				TMMFCapabilities capabilitiesGet;
sl@0
   108
				TBuf<KMaxSampleRateStringLength> stringSampleRateGet;
sl@0
   109
				TBuf<KMaxChannelsStringLength> stringChannelsGet;
sl@0
   110
				capabilitiesGet=iMMFDevSound->Config ();
sl@0
   111
				SampleRateFromTUintToString (capabilitiesGet.iRate, stringSampleRateGet);
sl@0
   112
				ChannelsFromTUintToString (capabilitiesGet.iChannels, stringChannelsGet);
sl@0
   113
				if (capabilitiesGet.iRate != capabilitiesSet.iRate || capabilitiesGet.iChannels != capabilitiesSet.iChannels)
sl@0
   114
					{
sl@0
   115
					ERR_PRINTF3(_L("Retrieved sample rate and channel : %S %S"), &stringSampleRateGet, &stringChannelsGet);
sl@0
   116
					ERR_PRINTF3(_L("Expected %S %S"), &stringSampleRateSet, &stringChannelsSet);
sl@0
   117
					StopTest(aError, EFail);
sl@0
   118
					break;
sl@0
   119
					}
sl@0
   120
				INFO_PRINTF1(_L("========== Test Case Successfully Completed =========="));
sl@0
   121
				StopTest();
sl@0
   122
				}
sl@0
   123
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
   124
				{
sl@0
   125
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error : %d"), aError);
sl@0
   126
				StopTest(aError);
sl@0
   127
				}
sl@0
   128
			else
sl@0
   129
				{
sl@0
   130
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
   131
				StopTest(aError, EFail);
sl@0
   132
				}
sl@0
   133
			break;
sl@0
   134
			}
sl@0
   135
		default:
sl@0
   136
			{
sl@0
   137
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
   138
			StopTest(aError, EFail);
sl@0
   139
			}
sl@0
   140
		}
sl@0
   141
	}
sl@0
   142
sl@0
   143
/*
sl@0
   144
 *========================================================================================================
sl@0
   145
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0002
sl@0
   146
 */
sl@0
   147
RA3FDevSoundPlaySetVolumeWhilePlayingTest::RA3FDevSoundPlaySetVolumeWhilePlayingTest(const TDesC& aTestName) :
sl@0
   148
	RA3FDevSoundTestBase(aTestName), iVolume(0),
sl@0
   149
	iFilename(KNullDesC)
sl@0
   150
	{
sl@0
   151
	}
sl@0
   152
sl@0
   153
RA3FDevSoundPlaySetVolumeWhilePlayingTest* RA3FDevSoundPlaySetVolumeWhilePlayingTest::NewL(const TDesC& aTestName)
sl@0
   154
	{
sl@0
   155
	RA3FDevSoundPlaySetVolumeWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlaySetVolumeWhilePlayingTest(aTestName);
sl@0
   156
	return self;
sl@0
   157
	}
sl@0
   158
sl@0
   159
void RA3FDevSoundPlaySetVolumeWhilePlayingTest::DoKickoffTestL()
sl@0
   160
	{
sl@0
   161
	TPtrC filename;
sl@0
   162
	// Get the filename of the audio file to play
sl@0
   163
	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
sl@0
   164
		{
sl@0
   165
		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
sl@0
   166
		StopTest (KErrNotFound);
sl@0
   167
		return;
sl@0
   168
		}
sl@0
   169
	// open using RFile for playback
sl@0
   170
	iFilename.Copy (filename);
sl@0
   171
	TInt err = iFile.Open (iFs, iFilename, EFileRead);
sl@0
   172
	if (err != KErrNone)
sl@0
   173
		{
sl@0
   174
		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
sl@0
   175
		iFs.Close();
sl@0
   176
		StopTest(err);
sl@0
   177
		return;
sl@0
   178
		}
sl@0
   179
sl@0
   180
	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
sl@0
   181
sl@0
   182
	if (!GetIntFromConfig(iTestStepName, KVolume, iVolume))
sl@0
   183
		{
sl@0
   184
		ERR_PRINTF2(KMsgErrorGetParameter, &KVolume);
sl@0
   185
		StopTest (KErrNotFound);
sl@0
   186
		return;
sl@0
   187
		}
sl@0
   188
	TPtrC fourccCode;
sl@0
   189
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
   190
		{
sl@0
   191
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
   192
		StopTest(KErrNotFound);
sl@0
   193
		return;
sl@0
   194
		}
sl@0
   195
	EncodingFromStringToTFourCC(fourccCode);
sl@0
   196
	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
sl@0
   197
	}
sl@0
   198
sl@0
   199
void RA3FDevSoundPlaySetVolumeWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
   200
	{
sl@0
   201
	switch (iDevSoundState)
sl@0
   202
		{
sl@0
   203
		case EStateCreated:
sl@0
   204
			{
sl@0
   205
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumePlayingTest"), EFsmIncorrectErrorPassed));
sl@0
   206
			if (aDevSoundEvent == EEventInitialize)
sl@0
   207
				{
sl@0
   208
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
   209
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
   210
				if (err != KErrNone)
sl@0
   211
					{
sl@0
   212
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error: %d"), err);
sl@0
   213
					StopTest(err);
sl@0
   214
					break;
sl@0
   215
					}
sl@0
   216
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
   217
				iDevSoundState = EStateInitializing;
sl@0
   218
				}
sl@0
   219
			else
sl@0
   220
				{
sl@0
   221
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
   222
				StopTest(aError, EFail);
sl@0
   223
				}
sl@0
   224
			break;
sl@0
   225
			}
sl@0
   226
		case EStateInitializing:
sl@0
   227
			{
sl@0
   228
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
   229
				{
sl@0
   230
				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
sl@0
   231
				TRAPD(err, iMMFDevSound->PlayInitL());
sl@0
   232
				if (err != KErrNone)
sl@0
   233
					{
sl@0
   234
					StopTest(err);
sl@0
   235
					break;
sl@0
   236
					}
sl@0
   237
				StartTimer(KMicroSecsTwoSec);
sl@0
   238
				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
sl@0
   239
				iDevSoundState = EStatePlaying;
sl@0
   240
				}
sl@0
   241
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
   242
				{
sl@0
   243
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
   244
				StopTest(aError);
sl@0
   245
				}
sl@0
   246
			else
sl@0
   247
				{
sl@0
   248
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
   249
				StopTest(aError, EFail);
sl@0
   250
				}
sl@0
   251
			break;
sl@0
   252
			}
sl@0
   253
		case EStatePlaying:
sl@0
   254
			{
sl@0
   255
			if (aDevSoundEvent == EEventBTBF)
sl@0
   256
				{
sl@0
   257
				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
sl@0
   258
				TInt err = iFile.Read (buffer->Data ());
sl@0
   259
				if (err != KErrNone)
sl@0
   260
					{
sl@0
   261
					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with: %d"), err);
sl@0
   262
					StopTest(err);
sl@0
   263
					break;
sl@0
   264
					}
sl@0
   265
				if (buffer->Data().Length ()!= buffer->RequestSize ())
sl@0
   266
					{
sl@0
   267
					iBuffer->SetLastBuffer (ETrue);
sl@0
   268
					}
sl@0
   269
				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
sl@0
   270
				iMMFDevSound->PlayData ();
sl@0
   271
				}
sl@0
   272
sl@0
   273
			else if (aDevSoundEvent == EEventTimerComplete)
sl@0
   274
				{
sl@0
   275
				INFO_PRINTF1(_L("Calling CMMFDevSound::SetVolume"));
sl@0
   276
				iMMFDevSound->SetVolume(iVolume);
sl@0
   277
				TInt volumeGet;
sl@0
   278
				volumeGet=iMMFDevSound->Volume();
sl@0
   279
				if (volumeGet == iVolume)
sl@0
   280
					{
sl@0
   281
					INFO_PRINTF2(_L("CMMFDevSound::SetVolume during playback succeeded with %d"), volumeGet);
sl@0
   282
					}
sl@0
   283
				else
sl@0
   284
					{
sl@0
   285
					ERR_PRINTF2(_L("CMMFDevSound::SetVolume during playback failed with %d"), volumeGet);
sl@0
   286
					ERR_PRINTF2(_L("Expected value = %d"), iVolume);
sl@0
   287
					StopTest(aError, EFail);
sl@0
   288
					}
sl@0
   289
				}
sl@0
   290
			else
sl@0
   291
				{
sl@0
   292
				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
   293
				StopTest(aError, EFail);
sl@0
   294
				}
sl@0
   295
			break;
sl@0
   296
			}
sl@0
   297
		default:
sl@0
   298
			{
sl@0
   299
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
   300
			StopTest(aError, EFail);
sl@0
   301
			}
sl@0
   302
		}
sl@0
   303
	}
sl@0
   304
sl@0
   305
void RA3FDevSoundPlaySetVolumeWhilePlayingTest::DoTimerCallback()
sl@0
   306
	{
sl@0
   307
	INFO_PRINTF1(_L("TimerEvent called"));
sl@0
   308
	iTimer->Cancel();
sl@0
   309
	INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
sl@0
   310
	Fsm (EEventTimerComplete, KErrNone);
sl@0
   311
	}
sl@0
   312
sl@0
   313
/*
sl@0
   314
 *========================================================================================================
sl@0
   315
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0003
sl@0
   316
 */
sl@0
   317
RA3FDevSoundPlaySetVolumeTest::RA3FDevSoundPlaySetVolumeTest(const TDesC& aTestName) :
sl@0
   318
	RA3FDevSoundTestBase(aTestName), iVolume(0)
sl@0
   319
	{
sl@0
   320
	}
sl@0
   321
sl@0
   322
RA3FDevSoundPlaySetVolumeTest* RA3FDevSoundPlaySetVolumeTest::NewL(const TDesC& aTestName)
sl@0
   323
	{
sl@0
   324
	RA3FDevSoundPlaySetVolumeTest* self = new (ELeave) RA3FDevSoundPlaySetVolumeTest(aTestName);
sl@0
   325
	return self;
sl@0
   326
	}
sl@0
   327
sl@0
   328
void RA3FDevSoundPlaySetVolumeTest::DoKickoffTestL()
sl@0
   329
	{
sl@0
   330
	if (!GetIntFromConfig(iTestStepName, KVolume, iVolume))
sl@0
   331
		{
sl@0
   332
		ERR_PRINTF2(KMsgErrorGetParameter, &KVolume);
sl@0
   333
		StopTest(KErrNotFound);
sl@0
   334
		return;
sl@0
   335
		}
sl@0
   336
sl@0
   337
	TPtrC fourccCode;
sl@0
   338
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
   339
		{
sl@0
   340
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
   341
		StopTest(KErrNotFound);
sl@0
   342
		return;
sl@0
   343
		}
sl@0
   344
	EncodingFromStringToTFourCC(fourccCode);
sl@0
   345
	}
sl@0
   346
sl@0
   347
void RA3FDevSoundPlaySetVolumeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
   348
	{
sl@0
   349
	switch (iDevSoundState)
sl@0
   350
		{
sl@0
   351
		case EStateCreated:
sl@0
   352
			{
sl@0
   353
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumeTest"), EFsmIncorrectErrorPassed));
sl@0
   354
			if (aDevSoundEvent == EEventInitialize)
sl@0
   355
				{
sl@0
   356
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
   357
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
   358
				if (err != KErrNone)
sl@0
   359
					{
sl@0
   360
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
   361
					StopTest(err);
sl@0
   362
					break;
sl@0
   363
					}
sl@0
   364
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
   365
				iDevSoundState = EStateInitializing;
sl@0
   366
				}
sl@0
   367
			else
sl@0
   368
				{
sl@0
   369
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
   370
				StopTest(aError, EFail);
sl@0
   371
				}
sl@0
   372
			break;
sl@0
   373
			}
sl@0
   374
		case EStateInitializing:
sl@0
   375
			{
sl@0
   376
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
   377
				{
sl@0
   378
				INFO_PRINTF1(_L("Calling CMMFDevSound::SetVolume"));
sl@0
   379
				iMMFDevSound->SetVolume(iVolume);
sl@0
   380
				TInt volumeGet;
sl@0
   381
				volumeGet = iMMFDevSound->Volume();
sl@0
   382
				if (volumeGet == iVolume)
sl@0
   383
					{
sl@0
   384
					INFO_PRINTF2(_L("CMMFDevSound::SetVolume succeeded with %d"), volumeGet);
sl@0
   385
					StopTest();
sl@0
   386
					}
sl@0
   387
				else
sl@0
   388
					{
sl@0
   389
					ERR_PRINTF2(_L("CMMFDevSound::SetVolume failed with %d"), volumeGet);
sl@0
   390
					ERR_PRINTF2(_L("Expected value = %d"), iVolume);
sl@0
   391
					StopTest(aError, EFail);
sl@0
   392
					}
sl@0
   393
				}
sl@0
   394
		else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
   395
				{
sl@0
   396
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
   397
				StopTest(aError);
sl@0
   398
				}
sl@0
   399
			else
sl@0
   400
				{
sl@0
   401
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
   402
				StopTest(aError, EFail);
sl@0
   403
				}
sl@0
   404
			break;
sl@0
   405
			}
sl@0
   406
		default:
sl@0
   407
			{
sl@0
   408
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
   409
			StopTest(aError, EFail);
sl@0
   410
			}
sl@0
   411
		}
sl@0
   412
	}
sl@0
   413
sl@0
   414
/*
sl@0
   415
 *========================================================================================================
sl@0
   416
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0004
sl@0
   417
 */
sl@0
   418
RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest::RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest(const TDesC& aTestName) :
sl@0
   419
	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC),
sl@0
   420
	iVolume(0)
sl@0
   421
	{
sl@0
   422
	}
sl@0
   423
sl@0
   424
RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest* RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest::NewL(const TDesC& aTestName)
sl@0
   425
	{
sl@0
   426
	RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest* self = new (ELeave) RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest(aTestName);
sl@0
   427
	return self;
sl@0
   428
	}
sl@0
   429
sl@0
   430
void RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest::DoKickoffTestL()
sl@0
   431
	{
sl@0
   432
	TPtrC filename;
sl@0
   433
	// Get the filename of the audio file to play
sl@0
   434
	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
sl@0
   435
		{
sl@0
   436
		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
sl@0
   437
		StopTest(KErrNotFound);
sl@0
   438
		return;
sl@0
   439
		}
sl@0
   440
	// open using RFile for playback
sl@0
   441
	iFilename.Copy(filename);
sl@0
   442
	TInt err = iFile.Open(iFs, iFilename, EFileRead);
sl@0
   443
	if (err != KErrNone)
sl@0
   444
		{
sl@0
   445
		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
sl@0
   446
		iFs.Close();
sl@0
   447
		StopTest(err);
sl@0
   448
		return;
sl@0
   449
		}
sl@0
   450
sl@0
   451
	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
sl@0
   452
sl@0
   453
	if (!GetIntFromConfig(iTestStepName, KVolume, iVolume))
sl@0
   454
		{
sl@0
   455
		ERR_PRINTF2(KMsgErrorGetParameter, &KVolume);
sl@0
   456
		StopTest(KErrNotFound);
sl@0
   457
		return;
sl@0
   458
		}
sl@0
   459
sl@0
   460
	TPtrC fourccCode;
sl@0
   461
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
   462
		{
sl@0
   463
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
   464
		StopTest(KErrNotFound);
sl@0
   465
		return;
sl@0
   466
		}
sl@0
   467
	EncodingFromStringToTFourCC(fourccCode);
sl@0
   468
	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
sl@0
   469
	}
sl@0
   470
sl@0
   471
void RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
   472
	{
sl@0
   473
	switch (iDevSoundState)
sl@0
   474
		{
sl@0
   475
		case EStateCreated:
sl@0
   476
			{
sl@0
   477
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest"), EFsmIncorrectErrorPassed));
sl@0
   478
			if (aDevSoundEvent == EEventInitialize)
sl@0
   479
				{
sl@0
   480
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
   481
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
   482
				if (err != KErrNone)
sl@0
   483
					{
sl@0
   484
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
   485
					StopTest(err);
sl@0
   486
					break;
sl@0
   487
					}
sl@0
   488
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
   489
				iDevSoundState = EStateInitializing;
sl@0
   490
				}
sl@0
   491
			else
sl@0
   492
				{
sl@0
   493
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
   494
				StopTest(aError, EFail);
sl@0
   495
				}
sl@0
   496
			break;
sl@0
   497
			}
sl@0
   498
		case EStateInitializing:
sl@0
   499
			{
sl@0
   500
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
   501
				{
sl@0
   502
				TRAPD(err, iMMFDevSound->PlayInitL());
sl@0
   503
				if ( err != KErrNone)
sl@0
   504
					{
sl@0
   505
					StopTest (err);
sl@0
   506
					break;
sl@0
   507
					}
sl@0
   508
				StartTimer (KMicroSecsTwoSec);
sl@0
   509
				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
sl@0
   510
				iDevSoundState = EStatePlaying;
sl@0
   511
				}
sl@0
   512
			else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
   513
				{
sl@0
   514
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
   515
				StopTest (aError);
sl@0
   516
				}
sl@0
   517
			else
sl@0
   518
				{
sl@0
   519
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
   520
				StopTest (aError, EFail);
sl@0
   521
				}
sl@0
   522
			break;
sl@0
   523
			}
sl@0
   524
		case EStatePlaying:
sl@0
   525
			{
sl@0
   526
			if (aDevSoundEvent == EEventBTBF)
sl@0
   527
				{
sl@0
   528
				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
sl@0
   529
				TInt err = iFile.Read (buffer->Data ());
sl@0
   530
				if (err != KErrNone)
sl@0
   531
					{
sl@0
   532
					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
sl@0
   533
					StopTest(err);
sl@0
   534
					break;
sl@0
   535
					}
sl@0
   536
				if (buffer->Data().Length ()!= buffer->RequestSize())
sl@0
   537
					{
sl@0
   538
					iBuffer->SetLastBuffer (ETrue);
sl@0
   539
					}
sl@0
   540
				INFO_PRINTF1(_L("CMMFDevSound::PlayData"));
sl@0
   541
				iMMFDevSound->PlayData();
sl@0
   542
				}
sl@0
   543
			else if (aDevSoundEvent == EEventTimerComplete)
sl@0
   544
				{
sl@0
   545
				INFO_PRINTF1(_L("Calling CMMFDevSound::Pause"));
sl@0
   546
				iMMFDevSound->Pause();
sl@0
   547
				INFO_PRINTF1(_L("Calling CMMFDevSound::SetVolume"));
sl@0
   548
				iMMFDevSound->SetVolume(iVolume);
sl@0
   549
				TInt volumeGet;
sl@0
   550
				volumeGet=iMMFDevSound->Volume ();
sl@0
   551
				if (volumeGet == iVolume)
sl@0
   552
					{
sl@0
   553
					INFO_PRINTF2(_L("CMMFDevSound::SetVolume succeeded with %d"), volumeGet);
sl@0
   554
					StopTest();
sl@0
   555
					}
sl@0
   556
				else
sl@0
   557
					{
sl@0
   558
					ERR_PRINTF2(_L("CMMFDevSound::SetVolume failed with %d"), volumeGet);
sl@0
   559
					ERR_PRINTF2(_L("Expected volume: %d"), iVolume);
sl@0
   560
					StopTest(aError, EFail);
sl@0
   561
					}
sl@0
   562
				}
sl@0
   563
			else
sl@0
   564
				{
sl@0
   565
				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
   566
				StopTest (aError, EFail);
sl@0
   567
				}
sl@0
   568
			break;
sl@0
   569
			}
sl@0
   570
		default:
sl@0
   571
			{
sl@0
   572
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
   573
			StopTest(aError, EFail);
sl@0
   574
			}
sl@0
   575
		}
sl@0
   576
	}
sl@0
   577
sl@0
   578
void RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest::DoTimerCallback()
sl@0
   579
	{
sl@0
   580
	iTimer->Cancel();
sl@0
   581
	INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
sl@0
   582
	Fsm (EEventTimerComplete, KErrNone);
sl@0
   583
	}
sl@0
   584
sl@0
   585
/*
sl@0
   586
 *========================================================================================================
sl@0
   587
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0005
sl@0
   588
 */
sl@0
   589
RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest::RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest(const TDesC& aTestName) :
sl@0
   590
	RA3FDevSoundTestBase(aTestName), 
sl@0
   591
	iReinitialized(EFalse), iVolume(0)
sl@0
   592
	{
sl@0
   593
	}
sl@0
   594
sl@0
   595
RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest* RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest::NewL(const TDesC& aTestName)
sl@0
   596
	{
sl@0
   597
	RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest	* self = new (ELeave) RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest(aTestName);
sl@0
   598
	return self;
sl@0
   599
	}
sl@0
   600
sl@0
   601
void RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest::DoKickoffTestL()
sl@0
   602
	{
sl@0
   603
	if (!GetIntFromConfig(iTestStepName, KVolume, iVolume))
sl@0
   604
		{
sl@0
   605
		ERR_PRINTF2(KMsgErrorGetParameter, &KVolume);
sl@0
   606
		StopTest (KErrNotFound);
sl@0
   607
		return;
sl@0
   608
		}
sl@0
   609
	TPtrC fourccCode;
sl@0
   610
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
   611
		{
sl@0
   612
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
   613
		StopTest (KErrNotFound);
sl@0
   614
		return;
sl@0
   615
		}
sl@0
   616
	EncodingFromStringToTFourCC (fourccCode);
sl@0
   617
	}
sl@0
   618
sl@0
   619
void RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
   620
	{
sl@0
   621
	switch (iDevSoundState)
sl@0
   622
		{
sl@0
   623
		case EStateCreated:
sl@0
   624
			{
sl@0
   625
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest"), EFsmIncorrectErrorPassed));
sl@0
   626
			if (aDevSoundEvent == EEventInitialize)
sl@0
   627
				{
sl@0
   628
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
   629
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
   630
				if (err != KErrNone)
sl@0
   631
					{
sl@0
   632
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
   633
					StopTest(err);
sl@0
   634
					break;
sl@0
   635
					}
sl@0
   636
				INFO_PRINTF1(_L("Calling CMMFDevSound::SetVolume"));
sl@0
   637
				iMMFDevSound->SetVolume(iVolume);
sl@0
   638
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
   639
				iDevSoundState = EStateInitializing;
sl@0
   640
				}
sl@0
   641
			else
sl@0
   642
				{
sl@0
   643
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
   644
				StopTest(aError, EFail);
sl@0
   645
				}
sl@0
   646
			break;
sl@0
   647
			}
sl@0
   648
		case EStateInitializing:
sl@0
   649
			{
sl@0
   650
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
   651
				{
sl@0
   652
				if (!iReinitialized)
sl@0
   653
					{
sl@0
   654
					iReinitialized = ETrue;
sl@0
   655
					INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
   656
					TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
sl@0
   657
					if (err != KErrNone)
sl@0
   658
						{
sl@0
   659
						StopTest(err);
sl@0
   660
						break;
sl@0
   661
						}
sl@0
   662
					INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
   663
					iDevSoundState = EStateInitializing;
sl@0
   664
					}
sl@0
   665
				else
sl@0
   666
					{
sl@0
   667
					TInt volumeGet;
sl@0
   668
					volumeGet=iMMFDevSound->Volume();
sl@0
   669
					if (volumeGet == iVolume)
sl@0
   670
						{
sl@0
   671
						INFO_PRINTF2(_L("CMMFDevSound::SetVolume is kept after reinitialise Devsound. Volume = %d "), volumeGet);
sl@0
   672
						StopTest();
sl@0
   673
						}
sl@0
   674
					else
sl@0
   675
						{
sl@0
   676
						ERR_PRINTF2(_L("CMMFDevSound::SetVolume was not kept. Volume = %d"), volumeGet);
sl@0
   677
						ERR_PRINTF2(_L("Expected value = %d"),iVolume);
sl@0
   678
						StopTest(aError, EFail);
sl@0
   679
						}
sl@0
   680
					}
sl@0
   681
				}
sl@0
   682
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
   683
					{
sl@0
   684
					ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
   685
					StopTest (aError);
sl@0
   686
					}
sl@0
   687
				else
sl@0
   688
					{
sl@0
   689
					ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
   690
					StopTest (aError, EFail);
sl@0
   691
					}
sl@0
   692
			break;
sl@0
   693
			}
sl@0
   694
		default:
sl@0
   695
			{
sl@0
   696
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
   697
			StopTest (aError, EFail);
sl@0
   698
			}
sl@0
   699
		}
sl@0
   700
	}
sl@0
   701
sl@0
   702
/*
sl@0
   703
 *========================================================================================================
sl@0
   704
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0006
sl@0
   705
 */
sl@0
   706
RA3FDevSoundPlaySetVolumeRampWhilePlayingTest::RA3FDevSoundPlaySetVolumeRampWhilePlayingTest(const TDesC& aTestName) :
sl@0
   707
	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC),
sl@0
   708
	iVolumeRamp(0), iPlayInitTwice(EFalse)
sl@0
   709
	{
sl@0
   710
	}
sl@0
   711
sl@0
   712
RA3FDevSoundPlaySetVolumeRampWhilePlayingTest* RA3FDevSoundPlaySetVolumeRampWhilePlayingTest::NewL(const TDesC& aTestName)
sl@0
   713
	{
sl@0
   714
	RA3FDevSoundPlaySetVolumeRampWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlaySetVolumeRampWhilePlayingTest(aTestName);
sl@0
   715
	return self;
sl@0
   716
	}
sl@0
   717
sl@0
   718
void RA3FDevSoundPlaySetVolumeRampWhilePlayingTest::DoKickoffTestL()
sl@0
   719
	{
sl@0
   720
	TPtrC filename;
sl@0
   721
	// Get the filename of the audio file to play
sl@0
   722
	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
sl@0
   723
		{
sl@0
   724
		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
sl@0
   725
		StopTest (KErrNotFound);
sl@0
   726
		return;
sl@0
   727
		}
sl@0
   728
	// open using RFile for playback
sl@0
   729
	iFilename.Copy(filename);
sl@0
   730
	TInt err = iFile.Open (iFs, iFilename, EFileRead);
sl@0
   731
	if (err != KErrNone)
sl@0
   732
		{
sl@0
   733
		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
sl@0
   734
		iFs.Close();
sl@0
   735
		StopTest(err);
sl@0
   736
		return;
sl@0
   737
		}
sl@0
   738
sl@0
   739
	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
sl@0
   740
sl@0
   741
	if (!GetIntFromConfig(iTestStepName, KVolumeRamp, iVolumeRamp))
sl@0
   742
		{
sl@0
   743
		ERR_PRINTF2(KMsgErrorGetParameter, &KVolumeRamp);
sl@0
   744
		StopTest(KErrNotFound);
sl@0
   745
		return;
sl@0
   746
		}
sl@0
   747
sl@0
   748
	TPtrC fourccCode;
sl@0
   749
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
   750
		{
sl@0
   751
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
   752
		StopTest(KErrNotFound);
sl@0
   753
		return;
sl@0
   754
		}
sl@0
   755
	EncodingFromStringToTFourCC(fourccCode);
sl@0
   756
	iTimer = CPeriodic::NewL (CActive::EPriorityHigh);
sl@0
   757
	}
sl@0
   758
sl@0
   759
void RA3FDevSoundPlaySetVolumeRampWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
   760
	{
sl@0
   761
	switch (iDevSoundState)
sl@0
   762
		{
sl@0
   763
		case EStateCreated:
sl@0
   764
			{
sl@0
   765
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumePlayingTest"), EFsmIncorrectErrorPassed));
sl@0
   766
			if (aDevSoundEvent == EEventInitialize)
sl@0
   767
				{
sl@0
   768
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
   769
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
   770
				if (err != KErrNone)
sl@0
   771
					{
sl@0
   772
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
   773
					StopTest(err);
sl@0
   774
					break;
sl@0
   775
					}
sl@0
   776
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
   777
				iDevSoundState = EStateInitializing;
sl@0
   778
				}
sl@0
   779
			else
sl@0
   780
				{
sl@0
   781
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
   782
				StopTest(aError, EFail);
sl@0
   783
				}
sl@0
   784
			break;
sl@0
   785
			}
sl@0
   786
		case EStateInitializing:
sl@0
   787
			{
sl@0
   788
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
   789
				{
sl@0
   790
				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
sl@0
   791
				TRAPD(err, iMMFDevSound->PlayInitL());
sl@0
   792
				if (err != KErrNone)
sl@0
   793
					{
sl@0
   794
					StopTest (err);
sl@0
   795
					break;
sl@0
   796
					}
sl@0
   797
				StartTimer(KMicroSecsTwoSec);
sl@0
   798
				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
sl@0
   799
				iDevSoundState = EStatePlaying;
sl@0
   800
				}
sl@0
   801
			else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
   802
				{
sl@0
   803
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
   804
				StopTest (aError);
sl@0
   805
				}
sl@0
   806
			else
sl@0
   807
				{
sl@0
   808
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
   809
				StopTest(aError, EFail);
sl@0
   810
				}
sl@0
   811
			break;
sl@0
   812
			}
sl@0
   813
		case EStatePlaying:
sl@0
   814
			{
sl@0
   815
			if (aDevSoundEvent == EEventBTBF)
sl@0
   816
				{
sl@0
   817
				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
sl@0
   818
				TInt err = iFile.Read (buffer->Data ());
sl@0
   819
				if (err != KErrNone)
sl@0
   820
					{
sl@0
   821
					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
sl@0
   822
					StopTest(err);
sl@0
   823
					break;
sl@0
   824
					}
sl@0
   825
				if (buffer->Data().Length ()!= buffer->RequestSize())
sl@0
   826
					{
sl@0
   827
					iBuffer->SetLastBuffer (ETrue);
sl@0
   828
					}
sl@0
   829
				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
sl@0
   830
				iMMFDevSound->PlayData ();
sl@0
   831
				}
sl@0
   832
			else if (aDevSoundEvent == EEventTimerComplete)
sl@0
   833
				{
sl@0
   834
				INFO_PRINTF1(_L("Calling CMMFDevSound::SetVolumeRamp"));
sl@0
   835
				iMMFDevSound->SetVolumeRamp (iVolumeRamp*KMicroSecsInOneSec);
sl@0
   836
				}
sl@0
   837
			else
sl@0
   838
				{
sl@0
   839
				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
   840
				StopTest(aError, EFail);
sl@0
   841
				}
sl@0
   842
			break;
sl@0
   843
			}
sl@0
   844
		default:
sl@0
   845
			{
sl@0
   846
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
   847
			StopTest(aError, EFail);
sl@0
   848
			}
sl@0
   849
		}
sl@0
   850
	}
sl@0
   851
sl@0
   852
void RA3FDevSoundPlaySetVolumeRampWhilePlayingTest::DoTimerCallback()
sl@0
   853
	{
sl@0
   854
	INFO_PRINTF1(_L("TimerEvent called"));
sl@0
   855
	iTimer->Cancel();
sl@0
   856
	INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
sl@0
   857
	Fsm(EEventTimerComplete, KErrNone);
sl@0
   858
	}
sl@0
   859
sl@0
   860
void RA3FDevSoundPlaySetVolumeRampWhilePlayingTest::PlayError(TInt aError)
sl@0
   861
	{
sl@0
   862
	INFO_PRINTF1(_L("========== DevSound PlayError() callback =========="));
sl@0
   863
	INFO_PRINTF3(KMsgErrorDevSoundCallback, &KPlayErrorText, aError);
sl@0
   864
	if (iBuffer->LastBuffer ()&& aError == KErrUnderflow)
sl@0
   865
		{
sl@0
   866
		TInt filePosition = 0;
sl@0
   867
		TInt err = iFile.Seek (ESeekStart, filePosition);
sl@0
   868
		if (err != KErrNone)
sl@0
   869
			{
sl@0
   870
			ERR_PRINTF2(_L("iFile.Seek() returned %d"), err);
sl@0
   871
			StopTest(err);
sl@0
   872
			}
sl@0
   873
		else
sl@0
   874
			{
sl@0
   875
			if (!iPlayInitTwice)
sl@0
   876
				{
sl@0
   877
				INFO_PRINTF1(_L("Playback completed normally"));
sl@0
   878
				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
sl@0
   879
				TRAPD(err, iMMFDevSound->PlayInitL());
sl@0
   880
				if (err != KErrNone)
sl@0
   881
					{
sl@0
   882
					ERR_PRINTF2(_L("Calling again CMMFDevSound::PlayInitL left with error = %d"), err);
sl@0
   883
					StopTest(err);
sl@0
   884
					}
sl@0
   885
				iPlayInitTwice=ETrue;
sl@0
   886
				}
sl@0
   887
			else
sl@0
   888
				{
sl@0
   889
				StopTest(err);
sl@0
   890
				}
sl@0
   891
			}
sl@0
   892
		}
sl@0
   893
	else
sl@0
   894
		{
sl@0
   895
		INFO_PRINTF1(_L("Playback completed with error"));
sl@0
   896
		StopTest(aError, EFail);
sl@0
   897
		}
sl@0
   898
	}
sl@0
   899
sl@0
   900
/*
sl@0
   901
 *========================================================================================================
sl@0
   902
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0007
sl@0
   903
 */
sl@0
   904
RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest::RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest(const TDesC& aTestName) :
sl@0
   905
	RA3FDevSoundTestBase(aTestName)
sl@0
   906
	{
sl@0
   907
	}
sl@0
   908
sl@0
   909
RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest* RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest::NewL(const TDesC& aTestName)
sl@0
   910
	{
sl@0
   911
	RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest* self = new (ELeave) RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest(aTestName);
sl@0
   912
	return self;
sl@0
   913
	}
sl@0
   914
sl@0
   915
void RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest::DoKickoffTestL()
sl@0
   916
	{
sl@0
   917
	TPtrC fourccCode;
sl@0
   918
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
   919
		{
sl@0
   920
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
   921
		StopTest(KErrNotFound);
sl@0
   922
		return;
sl@0
   923
		}
sl@0
   924
	EncodingFromStringToTFourCC (fourccCode);
sl@0
   925
	}
sl@0
   926
sl@0
   927
void RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
   928
	{
sl@0
   929
	switch (iDevSoundState)
sl@0
   930
		{
sl@0
   931
		case EStateCreated:
sl@0
   932
			{
sl@0
   933
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest"), EFsmIncorrectErrorPassed));
sl@0
   934
			if (aDevSoundEvent == EEventInitialize)
sl@0
   935
				{
sl@0
   936
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
   937
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
   938
				if (err != KErrNone)
sl@0
   939
					{
sl@0
   940
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
   941
					StopTest(err);
sl@0
   942
					break;
sl@0
   943
					}
sl@0
   944
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
   945
				iDevSoundState = EStateInitializing;
sl@0
   946
				}
sl@0
   947
			else
sl@0
   948
				{
sl@0
   949
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
   950
				StopTest (aError, EFail);
sl@0
   951
				}
sl@0
   952
			break;
sl@0
   953
			}
sl@0
   954
		case EStateInitializing:
sl@0
   955
			{
sl@0
   956
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
   957
				{
sl@0
   958
				INFO_PRINTF1(_L("Calling CMMFDevSound::SetVolume()to set volume values beyond CMMFDevSound::MaxVolume()"));
sl@0
   959
				TInt maxVolume = iMMFDevSound->MaxVolume();
sl@0
   960
				iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume()+ KExtraVolume);
sl@0
   961
				TInt volumeGet = iMMFDevSound->Volume();
sl@0
   962
				if (volumeGet == maxVolume)
sl@0
   963
					{
sl@0
   964
					INFO_PRINTF2(_L("Calling CMMFDevSound::SetVolume to set volume beyond CMMFDevSound::MaxVolume succeeded with %d"), volumeGet);
sl@0
   965
					StopTest();
sl@0
   966
					break;
sl@0
   967
					}
sl@0
   968
				else
sl@0
   969
					{
sl@0
   970
					ERR_PRINTF2(_L("Calling CMMFDevSound::SetVolume to set volume beyond CMMFDevSound::MaxVolume failed with %d"), volumeGet);
sl@0
   971
					ERR_PRINTF2(_L("Expected value = %d"), maxVolume);
sl@0
   972
					StopTest(aError, EFail);
sl@0
   973
					break;
sl@0
   974
					}
sl@0
   975
				}
sl@0
   976
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
   977
				{
sl@0
   978
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
   979
				StopTest(aError);
sl@0
   980
				}
sl@0
   981
			else
sl@0
   982
				{
sl@0
   983
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
   984
				StopTest(aError, EFail);
sl@0
   985
				}
sl@0
   986
			break;
sl@0
   987
			}
sl@0
   988
		default:
sl@0
   989
			{
sl@0
   990
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
   991
			StopTest(aError, EFail);
sl@0
   992
			}
sl@0
   993
		}
sl@0
   994
	}
sl@0
   995
sl@0
   996
/*
sl@0
   997
 *========================================================================================================
sl@0
   998
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0008
sl@0
   999
 */
sl@0
  1000
RA3FDevSoundPlaySetVolumeToNegativeTest::RA3FDevSoundPlaySetVolumeToNegativeTest(const TDesC& aTestName) :
sl@0
  1001
	RA3FDevSoundTestBase(aTestName),
sl@0
  1002
	iVolume(0)
sl@0
  1003
	{
sl@0
  1004
	}
sl@0
  1005
sl@0
  1006
RA3FDevSoundPlaySetVolumeToNegativeTest* RA3FDevSoundPlaySetVolumeToNegativeTest::NewL(const TDesC& aTestName)
sl@0
  1007
	{
sl@0
  1008
	RA3FDevSoundPlaySetVolumeToNegativeTest* self = new (ELeave) RA3FDevSoundPlaySetVolumeToNegativeTest(aTestName);
sl@0
  1009
	return self;
sl@0
  1010
	}
sl@0
  1011
sl@0
  1012
void RA3FDevSoundPlaySetVolumeToNegativeTest::DoKickoffTestL()
sl@0
  1013
	{
sl@0
  1014
	if (!GetIntFromConfig(iTestStepName, KVolume, iVolume))
sl@0
  1015
		{
sl@0
  1016
		ERR_PRINTF2(KMsgErrorGetParameter, &KVolume);
sl@0
  1017
		StopTest (KErrNotFound);
sl@0
  1018
		return;
sl@0
  1019
		}
sl@0
  1020
	TPtrC fourccCode;
sl@0
  1021
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  1022
		{
sl@0
  1023
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  1024
		StopTest (KErrNotFound);
sl@0
  1025
		return;
sl@0
  1026
		}
sl@0
  1027
	EncodingFromStringToTFourCC (fourccCode);
sl@0
  1028
	}
sl@0
  1029
sl@0
  1030
void RA3FDevSoundPlaySetVolumeToNegativeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  1031
	{
sl@0
  1032
	switch (iDevSoundState)
sl@0
  1033
		{
sl@0
  1034
		case EStateCreated:
sl@0
  1035
			{
sl@0
  1036
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumeToNegativeTest"), EFsmIncorrectErrorPassed));
sl@0
  1037
			if (aDevSoundEvent == EEventInitialize)
sl@0
  1038
				{
sl@0
  1039
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  1040
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  1041
				if (err != KErrNone)
sl@0
  1042
					{
sl@0
  1043
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  1044
					StopTest(err);
sl@0
  1045
					break;
sl@0
  1046
					}
sl@0
  1047
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  1048
				iDevSoundState = EStateInitializing;
sl@0
  1049
				}
sl@0
  1050
			else
sl@0
  1051
				{
sl@0
  1052
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  1053
				StopTest(aError, EFail);
sl@0
  1054
				}
sl@0
  1055
			break;
sl@0
  1056
			}
sl@0
  1057
		case EStateInitializing:
sl@0
  1058
			{
sl@0
  1059
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  1060
				{
sl@0
  1061
				INFO_PRINTF2(_L("Calling CMMFDevSound::SetVolume to set volume value to a negative: %d"), iVolume);
sl@0
  1062
				iMMFDevSound->SetVolume (iVolume);
sl@0
  1063
				if (iMMFDevSound->Volume ()== 0)
sl@0
  1064
					{
sl@0
  1065
					INFO_PRINTF2(_L("Calling CMMFDevSound::SetVolume succeeded with %d"), iMMFDevSound->Volume());
sl@0
  1066
					StopTest();
sl@0
  1067
					break;
sl@0
  1068
					}
sl@0
  1069
				else
sl@0
  1070
					{
sl@0
  1071
					ERR_PRINTF2(_L("Calling CMMFDevSound::SetVolume failed with %d"), iMMFDevSound->Volume());
sl@0
  1072
					ERR_PRINTF2(_L("Expected value = %d"), 0);
sl@0
  1073
					StopTest (aError, EFail);
sl@0
  1074
					break;
sl@0
  1075
					}
sl@0
  1076
				}
sl@0
  1077
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  1078
				{
sl@0
  1079
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  1080
				StopTest (aError);
sl@0
  1081
				}
sl@0
  1082
			else
sl@0
  1083
				{
sl@0
  1084
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  1085
				StopTest(aError, EFail);
sl@0
  1086
				}
sl@0
  1087
			break;
sl@0
  1088
			}
sl@0
  1089
		default:
sl@0
  1090
			{
sl@0
  1091
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  1092
			StopTest (aError, EFail);
sl@0
  1093
			}
sl@0
  1094
		}
sl@0
  1095
	}
sl@0
  1096
sl@0
  1097
/*
sl@0
  1098
 *========================================================================================================
sl@0
  1099
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0009
sl@0
  1100
 */
sl@0
  1101
RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest::RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest(const TDesC& aTestName) :
sl@0
  1102
	RA3FDevSoundTestBase(aTestName), 
sl@0
  1103
	iLSpeakerBalance(0), iRSpeakerBalance(0)
sl@0
  1104
	{
sl@0
  1105
	}
sl@0
  1106
sl@0
  1107
RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest* RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest::NewL(const TDesC& aTestName)
sl@0
  1108
	{
sl@0
  1109
	RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest* self = new (ELeave) RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest(aTestName);
sl@0
  1110
	return self;
sl@0
  1111
	}
sl@0
  1112
sl@0
  1113
void RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest::DoKickoffTestL()
sl@0
  1114
	{
sl@0
  1115
	if ( !GetIntFromConfig(iTestStepName, KLSpeakerBalance, iLSpeakerBalance) )
sl@0
  1116
		{
sl@0
  1117
		ERR_PRINTF2(KMsgErrorGetParameter, &KLSpeakerBalance);
sl@0
  1118
		StopTest(KErrNotFound);
sl@0
  1119
		return;
sl@0
  1120
		}
sl@0
  1121
	if ( !GetIntFromConfig(iTestStepName, KRSpeakerBalance, iRSpeakerBalance) )
sl@0
  1122
		{
sl@0
  1123
		ERR_PRINTF2(KMsgErrorGetParameter, &KRSpeakerBalance);
sl@0
  1124
		StopTest(KErrNotFound);
sl@0
  1125
		return;
sl@0
  1126
		}
sl@0
  1127
	
sl@0
  1128
	TPtrC fourccCode;
sl@0
  1129
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  1130
		{
sl@0
  1131
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  1132
		StopTest(KErrNotFound);
sl@0
  1133
		return;
sl@0
  1134
		}
sl@0
  1135
	EncodingFromStringToTFourCC(fourccCode);
sl@0
  1136
	}
sl@0
  1137
sl@0
  1138
void RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  1139
	{
sl@0
  1140
	switch (iDevSoundState)
sl@0
  1141
		{
sl@0
  1142
		case EStateCreated:
sl@0
  1143
			{
sl@0
  1144
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest"), EFsmIncorrectErrorPassed));
sl@0
  1145
			if (aDevSoundEvent == EEventInitialize)
sl@0
  1146
				{
sl@0
  1147
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  1148
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  1149
				if (err != KErrNone)
sl@0
  1150
					{
sl@0
  1151
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  1152
					StopTest(err);
sl@0
  1153
					break;
sl@0
  1154
					}
sl@0
  1155
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  1156
				iDevSoundState = EStateInitializing;
sl@0
  1157
				}
sl@0
  1158
			else
sl@0
  1159
				{
sl@0
  1160
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  1161
				StopTest(aError, EFail);
sl@0
  1162
				}
sl@0
  1163
			break;
sl@0
  1164
			}
sl@0
  1165
		case EStateInitializing:
sl@0
  1166
			{
sl@0
  1167
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  1168
				{
sl@0
  1169
				INFO_PRINTF3(_L("Calling CMMFDevSound::SetPlayBalanceL using left = %d right = %d values"), iLSpeakerBalance, iRSpeakerBalance);
sl@0
  1170
				TRAPD(err, iMMFDevSound->SetPlayBalanceL(iLSpeakerBalance, iRSpeakerBalance));
sl@0
  1171
				if (err == KErrNone)
sl@0
  1172
					{
sl@0
  1173
					TInt getBalanceL, getBalanceR;
sl@0
  1174
					TRAPD(err, iMMFDevSound->GetPlayBalanceL(getBalanceL, getBalanceR));
sl@0
  1175
					if (err == KErrNone)
sl@0
  1176
						{
sl@0
  1177
						if (getBalanceL == KMaxSpeakerBalanceValue && getBalanceR == KMaxSpeakerBalanceValue)
sl@0
  1178
							{
sl@0
  1179
							INFO_PRINTF3(_L("Calling CMMFDevSound::SetPlayBalanceL to set balance values beyond 100 succeeded, left = %d right = %d values"), getBalanceL, getBalanceR);
sl@0
  1180
							StopTest();
sl@0
  1181
							}
sl@0
  1182
						else
sl@0
  1183
							{
sl@0
  1184
							ERR_PRINTF3(_L("Calling CMMFDevSound::SetPlayBalanceL to set balance values beyond 100 failed, left = %d right = %d values"), getBalanceL, getBalanceR);
sl@0
  1185
							ERR_PRINTF3(_L("Expected values left = %d right = %d values"), KMaxSpeakerBalanceValue, KMaxSpeakerBalanceValue);
sl@0
  1186
							StopTest (err, EFail);
sl@0
  1187
							}
sl@0
  1188
						}
sl@0
  1189
					else
sl@0
  1190
						{
sl@0
  1191
						ERR_PRINTF1(_L("Error in getting left and right play balance."));
sl@0
  1192
						StopTest (err);
sl@0
  1193
						}
sl@0
  1194
					}
sl@0
  1195
				else
sl@0
  1196
					{
sl@0
  1197
					ERR_PRINTF1(_L("Error in setting left and right play balance."));
sl@0
  1198
					StopTest (err);
sl@0
  1199
					}
sl@0
  1200
				}
sl@0
  1201
			else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  1202
				{
sl@0
  1203
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  1204
				StopTest (aError);
sl@0
  1205
				}
sl@0
  1206
			else
sl@0
  1207
				{
sl@0
  1208
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  1209
				StopTest(aError, EFail);
sl@0
  1210
				}
sl@0
  1211
			break;
sl@0
  1212
			}
sl@0
  1213
		default:
sl@0
  1214
			{
sl@0
  1215
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  1216
			StopTest(aError, EFail);
sl@0
  1217
			}
sl@0
  1218
		}
sl@0
  1219
	}
sl@0
  1220
sl@0
  1221
/*
sl@0
  1222
 *========================================================================================================
sl@0
  1223
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0010
sl@0
  1224
 */
sl@0
  1225
RA3FDevSoundPlaySetPlayBalanceToNegativeTest::RA3FDevSoundPlaySetPlayBalanceToNegativeTest(const TDesC& aTestName) :
sl@0
  1226
	RA3FDevSoundTestBase(aTestName), 
sl@0
  1227
	iLSpeakerBalance(0), iRSpeakerBalance(0)
sl@0
  1228
	{
sl@0
  1229
	}
sl@0
  1230
sl@0
  1231
RA3FDevSoundPlaySetPlayBalanceToNegativeTest* RA3FDevSoundPlaySetPlayBalanceToNegativeTest::NewL(const TDesC& aTestName)
sl@0
  1232
	{
sl@0
  1233
	RA3FDevSoundPlaySetPlayBalanceToNegativeTest* self = new (ELeave) RA3FDevSoundPlaySetPlayBalanceToNegativeTest(aTestName);
sl@0
  1234
	return self;
sl@0
  1235
	}
sl@0
  1236
sl@0
  1237
void RA3FDevSoundPlaySetPlayBalanceToNegativeTest::DoKickoffTestL()
sl@0
  1238
	{
sl@0
  1239
	if ( !GetIntFromConfig(iTestStepName, KLSpeakerBalance, iLSpeakerBalance) )
sl@0
  1240
		{
sl@0
  1241
		ERR_PRINTF2(KMsgErrorGetParameter, &KLSpeakerBalance);
sl@0
  1242
		StopTest(KErrNotFound);
sl@0
  1243
		return;
sl@0
  1244
		}
sl@0
  1245
	if ( !GetIntFromConfig(iTestStepName, KRSpeakerBalance, iRSpeakerBalance) )
sl@0
  1246
		{
sl@0
  1247
		ERR_PRINTF2(KMsgErrorGetParameter, &KRSpeakerBalance);
sl@0
  1248
		StopTest(KErrNotFound);
sl@0
  1249
		return;
sl@0
  1250
		}
sl@0
  1251
	
sl@0
  1252
	TPtrC fourccCode;
sl@0
  1253
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  1254
		{
sl@0
  1255
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  1256
		StopTest(KErrNotFound);
sl@0
  1257
		return;
sl@0
  1258
		}
sl@0
  1259
	EncodingFromStringToTFourCC (fourccCode);
sl@0
  1260
	}
sl@0
  1261
sl@0
  1262
void RA3FDevSoundPlaySetPlayBalanceToNegativeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  1263
	{
sl@0
  1264
	switch (iDevSoundState)
sl@0
  1265
		{
sl@0
  1266
		case EStateCreated:
sl@0
  1267
			{
sl@0
  1268
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetPlayBalanceToNegativeTest"), EFsmIncorrectErrorPassed));
sl@0
  1269
			if (aDevSoundEvent == EEventInitialize)
sl@0
  1270
				{
sl@0
  1271
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  1272
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  1273
				if (err != KErrNone)
sl@0
  1274
					{
sl@0
  1275
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  1276
					StopTest(err);
sl@0
  1277
					break;
sl@0
  1278
					}
sl@0
  1279
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  1280
				iDevSoundState = EStateInitializing;
sl@0
  1281
				}
sl@0
  1282
			else
sl@0
  1283
				{
sl@0
  1284
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  1285
				StopTest (aError, EFail);
sl@0
  1286
				}
sl@0
  1287
			break;
sl@0
  1288
			}
sl@0
  1289
		case EStateInitializing:
sl@0
  1290
			{
sl@0
  1291
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  1292
				{
sl@0
  1293
				INFO_PRINTF3(_L("Calling CMMFDevSound::SetPlayBalanceL using left = %d right = %d values"), iLSpeakerBalance, iRSpeakerBalance);
sl@0
  1294
				TRAPD(err, iMMFDevSound->SetPlayBalanceL(iLSpeakerBalance, iRSpeakerBalance));
sl@0
  1295
				if (err == KErrNone)
sl@0
  1296
					{
sl@0
  1297
					TInt getBalanceL, getBalanceR;
sl@0
  1298
					TRAPD(err, iMMFDevSound->GetPlayBalanceL(getBalanceL, getBalanceR));
sl@0
  1299
					if (err == KErrNone)
sl@0
  1300
						{
sl@0
  1301
						if (getBalanceL == KMinSpeakerBalanceValue && getBalanceR == KMinSpeakerBalanceValue)
sl@0
  1302
							{
sl@0
  1303
							INFO_PRINTF3(_L("Calling CMMFDevSound::SetPlayBalanceL to set balance values to negative succeeded, left = %d right = %d values"), getBalanceL, getBalanceR);
sl@0
  1304
							StopTest();
sl@0
  1305
							}
sl@0
  1306
						else
sl@0
  1307
							{
sl@0
  1308
							ERR_PRINTF3(_L("Calling CMMFDevSound::SetPlayBalanceL to set balance values to negative failed, left = %d right = %d values"), getBalanceL, getBalanceR);
sl@0
  1309
							ERR_PRINTF3(_L("Expected values, left = %d right = %d values"), KMinSpeakerBalanceValue, KMinSpeakerBalanceValue);
sl@0
  1310
							StopTest(err, EFail);
sl@0
  1311
							}
sl@0
  1312
						}
sl@0
  1313
					else
sl@0
  1314
						{
sl@0
  1315
						ERR_PRINTF1(_L("Error in getting left and right play balance."));
sl@0
  1316
						StopTest (err);
sl@0
  1317
						}
sl@0
  1318
					}
sl@0
  1319
				else
sl@0
  1320
					{
sl@0
  1321
					ERR_PRINTF1(_L("Error in setting left and right play balance."));
sl@0
  1322
					StopTest (err);
sl@0
  1323
					}
sl@0
  1324
				}
sl@0
  1325
			else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  1326
				{
sl@0
  1327
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  1328
				StopTest (aError);
sl@0
  1329
				}
sl@0
  1330
			else
sl@0
  1331
				{
sl@0
  1332
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  1333
				StopTest (aError, EFail);
sl@0
  1334
				}
sl@0
  1335
			break;
sl@0
  1336
			}
sl@0
  1337
		default:
sl@0
  1338
			{
sl@0
  1339
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  1340
			StopTest (aError, EFail);
sl@0
  1341
			}
sl@0
  1342
		}
sl@0
  1343
	}
sl@0
  1344
sl@0
  1345
/*
sl@0
  1346
 *========================================================================================================
sl@0
  1347
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0011
sl@0
  1348
 */
sl@0
  1349
RA3FDevSoundPlaySetPrioritySettingsTest::RA3FDevSoundPlaySetPrioritySettingsTest(const TDesC& aTestName) :
sl@0
  1350
	RA3FDevSoundTestBase(aTestName), iPriority(0)
sl@0
  1351
	{
sl@0
  1352
	}
sl@0
  1353
sl@0
  1354
RA3FDevSoundPlaySetPrioritySettingsTest* RA3FDevSoundPlaySetPrioritySettingsTest::NewL(const TDesC& aTestName)
sl@0
  1355
	{
sl@0
  1356
	RA3FDevSoundPlaySetPrioritySettingsTest* self = new (ELeave) RA3FDevSoundPlaySetPrioritySettingsTest(aTestName);
sl@0
  1357
	return self;
sl@0
  1358
	}
sl@0
  1359
sl@0
  1360
void RA3FDevSoundPlaySetPrioritySettingsTest::DoKickoffTestL()
sl@0
  1361
	{
sl@0
  1362
	if (!GetIntFromConfig(iTestStepName, KPriority, iPriority))
sl@0
  1363
		{
sl@0
  1364
		ERR_PRINTF2(KMsgErrorGetParameter, &KPriority);
sl@0
  1365
		StopTest(KErrNotFound);
sl@0
  1366
		return;
sl@0
  1367
		}
sl@0
  1368
sl@0
  1369
	TPtrC fourccCode;
sl@0
  1370
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  1371
		{
sl@0
  1372
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  1373
		StopTest(KErrNotFound);
sl@0
  1374
		return;
sl@0
  1375
		}
sl@0
  1376
	EncodingFromStringToTFourCC(fourccCode);
sl@0
  1377
	}
sl@0
  1378
sl@0
  1379
void RA3FDevSoundPlaySetPrioritySettingsTest::Fsm(
sl@0
  1380
		TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  1381
	{
sl@0
  1382
	switch (iDevSoundState)
sl@0
  1383
		{
sl@0
  1384
		case EStateCreated:
sl@0
  1385
			{
sl@0
  1386
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetPrioritySettingTest"), EFsmIncorrectErrorPassed));
sl@0
  1387
			if (aDevSoundEvent == EEventInitialize)
sl@0
  1388
				{
sl@0
  1389
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  1390
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  1391
				if (err != KErrNone)
sl@0
  1392
					{
sl@0
  1393
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  1394
					StopTest(err);
sl@0
  1395
					break;
sl@0
  1396
					}
sl@0
  1397
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  1398
				iDevSoundState = EStateInitializing;
sl@0
  1399
				}
sl@0
  1400
			else
sl@0
  1401
				{
sl@0
  1402
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  1403
				StopTest(aError, EFail);
sl@0
  1404
				}
sl@0
  1405
			break;
sl@0
  1406
			}
sl@0
  1407
		case EStateInitializing:
sl@0
  1408
			{
sl@0
  1409
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  1410
				{
sl@0
  1411
				TMMFPrioritySettings priority;
sl@0
  1412
				priority.iPriority = iPriority;
sl@0
  1413
				INFO_PRINTF2(_L("Setting Priority to %d calling  CMMFDevSound::SetPrioritySettings"), iPriority);
sl@0
  1414
				iMMFDevSound->SetPrioritySettings(priority);
sl@0
  1415
				INFO_PRINTF1(_L("========== Test Case Successfully Completed =========="));
sl@0
  1416
				StopTest();
sl@0
  1417
				}
sl@0
  1418
			else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  1419
				{
sl@0
  1420
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  1421
				StopTest (aError);
sl@0
  1422
				}
sl@0
  1423
			else
sl@0
  1424
				{
sl@0
  1425
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  1426
				StopTest (aError, EFail);
sl@0
  1427
				}
sl@0
  1428
			break;
sl@0
  1429
			}
sl@0
  1430
		default:
sl@0
  1431
			{
sl@0
  1432
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  1433
			StopTest(aError, EFail);
sl@0
  1434
			}
sl@0
  1435
		}
sl@0
  1436
	}
sl@0
  1437
sl@0
  1438
/*
sl@0
  1439
 *========================================================================================================
sl@0
  1440
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0012
sl@0
  1441
 */
sl@0
  1442
RA3FDevSoundPlayCapabilitiesTest::RA3FDevSoundPlayCapabilitiesTest(const TDesC& aTestName) :
sl@0
  1443
	RA3FDevSoundTestBase(aTestName)
sl@0
  1444
	{
sl@0
  1445
	}
sl@0
  1446
sl@0
  1447
RA3FDevSoundPlayCapabilitiesTest* RA3FDevSoundPlayCapabilitiesTest::NewL(const TDesC& aTestName)
sl@0
  1448
	{
sl@0
  1449
	RA3FDevSoundPlayCapabilitiesTest* self = new (ELeave) RA3FDevSoundPlayCapabilitiesTest(aTestName);
sl@0
  1450
	return self;
sl@0
  1451
	}
sl@0
  1452
sl@0
  1453
void RA3FDevSoundPlayCapabilitiesTest::DoKickoffTestL()
sl@0
  1454
	{
sl@0
  1455
	if (!GetIntFromConfig(iTestStepName, KExCapChannels, iExCapChannels))
sl@0
  1456
		{
sl@0
  1457
		ERR_PRINTF2(KMsgErrorGetParameter, &KExCapChannels);
sl@0
  1458
		StopTest(KErrNotFound);
sl@0
  1459
		return;
sl@0
  1460
		}
sl@0
  1461
	if (!GetIntFromConfig(iTestStepName, KExCapRate, iExCapRate))
sl@0
  1462
		{
sl@0
  1463
		ERR_PRINTF2(KMsgErrorGetParameter, &KExCapRate);
sl@0
  1464
		StopTest(KErrNotFound);
sl@0
  1465
		return;
sl@0
  1466
		}
sl@0
  1467
	TPtrC fourccCode;
sl@0
  1468
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  1469
		{
sl@0
  1470
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  1471
		StopTest (KErrNotFound);
sl@0
  1472
		return;
sl@0
  1473
		}
sl@0
  1474
	EncodingFromStringToTFourCC (fourccCode);
sl@0
  1475
	}
sl@0
  1476
sl@0
  1477
void RA3FDevSoundPlayCapabilitiesTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  1478
	{
sl@0
  1479
	switch (iDevSoundState)
sl@0
  1480
		{
sl@0
  1481
		case EStateCreated:
sl@0
  1482
			{
sl@0
  1483
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesTest"), EFsmIncorrectErrorPassed));
sl@0
  1484
			if (aDevSoundEvent == EEventInitialize)
sl@0
  1485
				{
sl@0
  1486
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  1487
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  1488
				if (err != KErrNone)
sl@0
  1489
					{
sl@0
  1490
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  1491
					StopTest(err);
sl@0
  1492
					break;
sl@0
  1493
					}
sl@0
  1494
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  1495
				iDevSoundState = EStateInitializing;
sl@0
  1496
				}
sl@0
  1497
			else
sl@0
  1498
				{
sl@0
  1499
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  1500
				StopTest(aError, EFail);
sl@0
  1501
				}
sl@0
  1502
			break;
sl@0
  1503
			}
sl@0
  1504
		case EStateInitializing:
sl@0
  1505
			{
sl@0
  1506
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  1507
				{
sl@0
  1508
				INFO_PRINTF1(_L("Calling CMMFDevSound::Capabilities"));
sl@0
  1509
				TMMFCapabilities capabilitiesGet;
sl@0
  1510
				capabilitiesGet = iMMFDevSound->Capabilities ();
sl@0
  1511
sl@0
  1512
				INFO_PRINTF3(_L("Rate Sum:0x%x Channels Sum:0x%x"), capabilitiesGet.iRate, capabilitiesGet.iChannels);
sl@0
  1513
				PrintSupportedCapabilities (capabilitiesGet.iRate, capabilitiesGet.iChannels);
sl@0
  1514
				if(capabilitiesGet.iRate == iExCapRate && capabilitiesGet.iChannels == iExCapChannels)
sl@0
  1515
					{
sl@0
  1516
					INFO_PRINTF3(_L("Capabilities returned match expected capabilities which are Sum:0x%x Channels Sum:0x%x"), capabilitiesGet.iRate, capabilitiesGet.iChannels);
sl@0
  1517
					StopTest ();
sl@0
  1518
					}
sl@0
  1519
				else
sl@0
  1520
					{
sl@0
  1521
					ERR_PRINTF1(_L("Capabilities returned do not match the expected capabilities"));
sl@0
  1522
					ERR_PRINTF3(_L("Expected Rate Sum:0x%x Channels Sum:0x%x"), iExCapRate, iExCapChannels);
sl@0
  1523
					StopTest (KErrNone, EFail);
sl@0
  1524
					}
sl@0
  1525
				}
sl@0
  1526
			else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  1527
				{
sl@0
  1528
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  1529
				StopTest (aError);
sl@0
  1530
				}
sl@0
  1531
			else
sl@0
  1532
				{
sl@0
  1533
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  1534
				StopTest (aError, EFail);
sl@0
  1535
				}
sl@0
  1536
			break;
sl@0
  1537
			}
sl@0
  1538
		default:
sl@0
  1539
			{
sl@0
  1540
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  1541
			StopTest (aError, EFail);
sl@0
  1542
			}
sl@0
  1543
		}
sl@0
  1544
	}
sl@0
  1545
sl@0
  1546
/*
sl@0
  1547
 *========================================================================================================
sl@0
  1548
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0013
sl@0
  1549
 */
sl@0
  1550
RA3FDevSoundPlayConfigTest::RA3FDevSoundPlayConfigTest(const TDesC& aTestName) :
sl@0
  1551
	RA3FDevSoundTestBase(aTestName),iExCapRate(0),
sl@0
  1552
	iExCapChannels(0)
sl@0
  1553
	{
sl@0
  1554
	}
sl@0
  1555
sl@0
  1556
RA3FDevSoundPlayConfigTest* RA3FDevSoundPlayConfigTest::NewL(const TDesC& aTestName)
sl@0
  1557
	{
sl@0
  1558
	RA3FDevSoundPlayConfigTest* self = new (ELeave) RA3FDevSoundPlayConfigTest(aTestName);
sl@0
  1559
	return self;
sl@0
  1560
	}
sl@0
  1561
sl@0
  1562
void RA3FDevSoundPlayConfigTest::DoKickoffTestL()
sl@0
  1563
	{
sl@0
  1564
	if (!GetIntFromConfig(iTestStepName, KExCapRate, iExCapRate))
sl@0
  1565
				{
sl@0
  1566
				ERR_PRINTF2(KMsgErrorGetParameter, &KExCapRate);
sl@0
  1567
				StopTest(KErrNotFound);
sl@0
  1568
				return;
sl@0
  1569
				}
sl@0
  1570
		if (!GetIntFromConfig(iTestStepName, KExCapChannels, iExCapChannels))
sl@0
  1571
			{
sl@0
  1572
			ERR_PRINTF2(KMsgErrorGetParameter, &KExCapChannels);
sl@0
  1573
			StopTest(KErrNotFound);
sl@0
  1574
			return;
sl@0
  1575
			}
sl@0
  1576
	TPtrC fourccCode;
sl@0
  1577
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  1578
		{
sl@0
  1579
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  1580
		StopTest (KErrNotFound);
sl@0
  1581
		return;
sl@0
  1582
		}
sl@0
  1583
	EncodingFromStringToTFourCC (fourccCode);
sl@0
  1584
	}
sl@0
  1585
sl@0
  1586
void RA3FDevSoundPlayConfigTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  1587
	{
sl@0
  1588
	switch (iDevSoundState)
sl@0
  1589
		{
sl@0
  1590
		case EStateCreated:
sl@0
  1591
			{
sl@0
  1592
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayConfigTest"), EFsmIncorrectErrorPassed));
sl@0
  1593
			if (aDevSoundEvent == EEventInitialize)
sl@0
  1594
				{
sl@0
  1595
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  1596
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  1597
				if (err != KErrNone)
sl@0
  1598
					{
sl@0
  1599
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  1600
					StopTest(err);
sl@0
  1601
					break;
sl@0
  1602
					}
sl@0
  1603
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  1604
				iDevSoundState = EStateInitializing;
sl@0
  1605
				}
sl@0
  1606
			else
sl@0
  1607
				{
sl@0
  1608
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  1609
				StopTest(aError, EFail);
sl@0
  1610
				}
sl@0
  1611
			break;
sl@0
  1612
			}
sl@0
  1613
		case EStateInitializing:
sl@0
  1614
			{
sl@0
  1615
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  1616
				{
sl@0
  1617
				TMMFCapabilities capabilitiesGet;
sl@0
  1618
				TBuf<KMaxSampleRateStringLength> stringSampleRateGet;
sl@0
  1619
				TBuf<KMaxChannelsStringLength> stringChannelsGet;
sl@0
  1620
				TBuf<KMaxSampleRateStringLength> stringSampleRateExpected;
sl@0
  1621
				TBuf<KMaxChannelsStringLength> stringChannelsExpected;
sl@0
  1622
				INFO_PRINTF1(_L("Calling CMMFDevSound::Config while playing"));
sl@0
  1623
				capabilitiesGet=iMMFDevSound->Config ();
sl@0
  1624
				SampleRateFromTUintToString (capabilitiesGet.iRate, stringSampleRateGet);
sl@0
  1625
				ChannelsFromTUintToString (capabilitiesGet.iChannels, stringChannelsGet);
sl@0
  1626
				SampleRateFromTUintToString (capabilitiesGet.iRate, stringSampleRateExpected);
sl@0
  1627
				ChannelsFromTUintToString (capabilitiesGet.iChannels, stringChannelsExpected);
sl@0
  1628
				if (stringSampleRateExpected.Compare(stringSampleRateGet) == 0)
sl@0
  1629
					{
sl@0
  1630
					INFO_PRINTF2(_L("Sample rate value match default as expected with %S"), &stringSampleRateGet);
sl@0
  1631
					if (stringChannelsExpected.Compare(stringChannelsGet) == 0)
sl@0
  1632
						{
sl@0
  1633
						INFO_PRINTF2(_L("Channel mode value match default as expected with %S"), &stringChannelsGet);
sl@0
  1634
						StopTest();
sl@0
  1635
						}
sl@0
  1636
					else
sl@0
  1637
						{
sl@0
  1638
						INFO_PRINTF2(_L("Channel mode value failed with %S"), &stringChannelsGet);
sl@0
  1639
						ERR_PRINTF2(_L("Expected channel mode %S"), &stringChannelsExpected);
sl@0
  1640
						StopTest(KErrNone, EFail);
sl@0
  1641
						}
sl@0
  1642
					}
sl@0
  1643
				else
sl@0
  1644
					{
sl@0
  1645
					ERR_PRINTF2(_L("Sample rate value failed with %S"), &stringSampleRateGet);
sl@0
  1646
					ERR_PRINTF2(_L("Expected sample rate %S"), &stringSampleRateExpected);
sl@0
  1647
					StopTest(KErrNone, EFail);
sl@0
  1648
					}
sl@0
  1649
				}
sl@0
  1650
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  1651
				{
sl@0
  1652
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  1653
				StopTest(aError);
sl@0
  1654
				}
sl@0
  1655
			else
sl@0
  1656
				{
sl@0
  1657
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  1658
				StopTest(aError, EFail);
sl@0
  1659
				}
sl@0
  1660
			break;
sl@0
  1661
			}
sl@0
  1662
		default:
sl@0
  1663
			{
sl@0
  1664
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  1665
			StopTest(aError, EFail);
sl@0
  1666
			}
sl@0
  1667
		}
sl@0
  1668
	}
sl@0
  1669
sl@0
  1670
/*
sl@0
  1671
 *========================================================================================================
sl@0
  1672
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0014
sl@0
  1673
 */
sl@0
  1674
RA3FDevSoundPlayGetPlayBalanceTest::RA3FDevSoundPlayGetPlayBalanceTest(const TDesC& aTestName) :
sl@0
  1675
	RA3FDevSoundTestBase(aTestName),
sl@0
  1676
	iExLSpeakerBalance(0),
sl@0
  1677
	iExRSpeakerBalance(0)
sl@0
  1678
	{
sl@0
  1679
	}
sl@0
  1680
sl@0
  1681
RA3FDevSoundPlayGetPlayBalanceTest* RA3FDevSoundPlayGetPlayBalanceTest::NewL(const TDesC& aTestName)
sl@0
  1682
	{
sl@0
  1683
	RA3FDevSoundPlayGetPlayBalanceTest* self = new (ELeave) RA3FDevSoundPlayGetPlayBalanceTest(aTestName);
sl@0
  1684
	return self;
sl@0
  1685
	}
sl@0
  1686
sl@0
  1687
void RA3FDevSoundPlayGetPlayBalanceTest::DoKickoffTestL()
sl@0
  1688
	{
sl@0
  1689
	if (!GetIntFromConfig(iTestStepName, KExLSpeakerBalance, iExLSpeakerBalance))
sl@0
  1690
		{
sl@0
  1691
		ERR_PRINTF2(KMsgErrorGetParameter, &KExLSpeakerBalance);
sl@0
  1692
		StopTest(KErrNotFound);
sl@0
  1693
		return;
sl@0
  1694
		}
sl@0
  1695
	if (!GetIntFromConfig(iTestStepName, KExRSpeakerBalance, iExRSpeakerBalance))
sl@0
  1696
		{
sl@0
  1697
		ERR_PRINTF2(KMsgErrorGetParameter, &KExRSpeakerBalance);
sl@0
  1698
		StopTest(KErrNotFound);
sl@0
  1699
		return;
sl@0
  1700
		}
sl@0
  1701
	TPtrC fourccCode;
sl@0
  1702
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  1703
		{
sl@0
  1704
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  1705
		StopTest (KErrNotFound);
sl@0
  1706
		return;
sl@0
  1707
		}
sl@0
  1708
	EncodingFromStringToTFourCC(fourccCode);
sl@0
  1709
	}
sl@0
  1710
sl@0
  1711
void RA3FDevSoundPlayGetPlayBalanceTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  1712
	{
sl@0
  1713
	switch (iDevSoundState)
sl@0
  1714
		{
sl@0
  1715
		case EStateCreated:
sl@0
  1716
			{
sl@0
  1717
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayGetPlayBalanceTest"), EFsmIncorrectErrorPassed));
sl@0
  1718
			if (aDevSoundEvent == EEventInitialize)
sl@0
  1719
				{
sl@0
  1720
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  1721
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  1722
				if (err != KErrNone)
sl@0
  1723
					{
sl@0
  1724
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  1725
					StopTest(err);
sl@0
  1726
					break;
sl@0
  1727
					}
sl@0
  1728
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  1729
				iDevSoundState = EStateInitializing;
sl@0
  1730
				}
sl@0
  1731
			else
sl@0
  1732
				{
sl@0
  1733
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  1734
				StopTest (aError, EFail);
sl@0
  1735
				}
sl@0
  1736
			break;
sl@0
  1737
			}
sl@0
  1738
		case EStateInitializing:
sl@0
  1739
			{
sl@0
  1740
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  1741
				{
sl@0
  1742
				TInt getBalanceL, getBalanceR;
sl@0
  1743
				INFO_PRINTF1(_L("Calling CMMFDevSound::GetPlayBalance"));
sl@0
  1744
				TRAPD(err, iMMFDevSound->GetPlayBalanceL(getBalanceL, getBalanceR));
sl@0
  1745
				if (err == KErrNone)
sl@0
  1746
					{
sl@0
  1747
					if(getBalanceL == iExLSpeakerBalance && getBalanceR == iExRSpeakerBalance)
sl@0
  1748
						{
sl@0
  1749
						INFO_PRINTF3(_L("Balance values match expected values which are, right = %d, left = %d"), getBalanceL, getBalanceR);
sl@0
  1750
						StopTest();
sl@0
  1751
						}
sl@0
  1752
					else
sl@0
  1753
						{
sl@0
  1754
						ERR_PRINTF3(_L("Balance values do not match expected values, left = %d right = %d"), getBalanceL, getBalanceR);
sl@0
  1755
						ERR_PRINTF3(_L("Expected values, left = %d right = %d"), iExLSpeakerBalance, iExRSpeakerBalance);
sl@0
  1756
						StopTest(KErrNone, EFail);
sl@0
  1757
						}
sl@0
  1758
					}
sl@0
  1759
				else
sl@0
  1760
					{
sl@0
  1761
					ERR_PRINTF1(_L("Error in getting left and right play balance."));
sl@0
  1762
					StopTest(err);
sl@0
  1763
					}
sl@0
  1764
				}
sl@0
  1765
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  1766
				{
sl@0
  1767
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  1768
				StopTest(aError);
sl@0
  1769
				}
sl@0
  1770
			else
sl@0
  1771
				{
sl@0
  1772
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  1773
				StopTest(aError, EFail);
sl@0
  1774
				}
sl@0
  1775
			break;
sl@0
  1776
			}
sl@0
  1777
		default:
sl@0
  1778
			{
sl@0
  1779
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  1780
			StopTest(aError, EFail);
sl@0
  1781
			}
sl@0
  1782
		}
sl@0
  1783
	}
sl@0
  1784
sl@0
  1785
/*
sl@0
  1786
 *========================================================================================================
sl@0
  1787
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0015
sl@0
  1788
 */
sl@0
  1789
RA3FDevSoundPlayGetSupportedInputDataTypesLTest::RA3FDevSoundPlayGetSupportedInputDataTypesLTest(const TDesC& aTestName) :
sl@0
  1790
	RA3FDevSoundTestBase(aTestName),
sl@0
  1791
	iCurrentTypeInTest(0)
sl@0
  1792
	{
sl@0
  1793
	}
sl@0
  1794
sl@0
  1795
RA3FDevSoundPlayGetSupportedInputDataTypesLTest* RA3FDevSoundPlayGetSupportedInputDataTypesLTest::NewL(const TDesC& aTestName)
sl@0
  1796
	{
sl@0
  1797
	RA3FDevSoundPlayGetSupportedInputDataTypesLTest* self = new (ELeave) RA3FDevSoundPlayGetSupportedInputDataTypesLTest(aTestName);
sl@0
  1798
	return self;
sl@0
  1799
	}
sl@0
  1800
sl@0
  1801
void RA3FDevSoundPlayGetSupportedInputDataTypesLTest::DoKickoffTestL()
sl@0
  1802
	{
sl@0
  1803
	TPtrC fourccCode;
sl@0
  1804
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  1805
		{
sl@0
  1806
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  1807
		StopTest (KErrNotFound);
sl@0
  1808
		return;
sl@0
  1809
		}
sl@0
  1810
	EncodingFromStringToTFourCC(fourccCode);
sl@0
  1811
	}
sl@0
  1812
sl@0
  1813
void RA3FDevSoundPlayGetSupportedInputDataTypesLTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  1814
	{
sl@0
  1815
	switch (iDevSoundState)
sl@0
  1816
		{
sl@0
  1817
		case EStateCreated:
sl@0
  1818
			{
sl@0
  1819
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayGetSupportedInputDataTypesLTest"), EFsmIncorrectErrorPassed));
sl@0
  1820
			if (aDevSoundEvent == EEventInitialize)
sl@0
  1821
				{
sl@0
  1822
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  1823
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  1824
				if (err != KErrNone)
sl@0
  1825
					{
sl@0
  1826
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  1827
					StopTest(err);
sl@0
  1828
					break;
sl@0
  1829
					}
sl@0
  1830
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  1831
				iDevSoundState = EStateInitializing;
sl@0
  1832
				}
sl@0
  1833
			else
sl@0
  1834
				{
sl@0
  1835
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  1836
				StopTest(aError, EFail);
sl@0
  1837
				}
sl@0
  1838
			break;
sl@0
  1839
			}
sl@0
  1840
		case EStateInitializing:
sl@0
  1841
			{
sl@0
  1842
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  1843
				{
sl@0
  1844
				if(iCurrentTypeInTest == 0)
sl@0
  1845
					{
sl@0
  1846
					TMMFPrioritySettings prioritySettings;
sl@0
  1847
					INFO_PRINTF1(_L("Calling CMMFDevSound::GetSupportedInputDataTypes"));
sl@0
  1848
					TRAPD(err,iMMFDevSound->GetSupportedInputDataTypesL(iSupportedDataTypes, prioritySettings));
sl@0
  1849
					if (err != KErrNone)
sl@0
  1850
						{
sl@0
  1851
						ERR_PRINTF2(_L("CMMFDevSound::GetSupportedInputDataTypes data types falied ! Left with error = %d"), err);
sl@0
  1852
						StopTest (err);
sl@0
  1853
						break;
sl@0
  1854
						}
sl@0
  1855
					for(TInt x = 0; x < iSupportedDataTypes.Count (); x++)
sl@0
  1856
						{
sl@0
  1857
						TFourCC fourCC = iSupportedDataTypes[x];
sl@0
  1858
						TBuf<KTFourCC> name;
sl@0
  1859
						for (TInt i=0; i<= KFourCCMaxBitDisplacement; i+=K8Bits)
sl@0
  1860
							{
sl@0
  1861
							name.Append ( (TUint8)(fourCC.FourCC() >> i));
sl@0
  1862
							}
sl@0
  1863
						INFO_PRINTF3(_L("Supported Input Data types: 0x%x  %S "), fourCC.FourCC(), &name);
sl@0
  1864
						}
sl@0
  1865
					}
sl@0
  1866
				
sl@0
  1867
				// Complete test when all types have been used of initialization
sl@0
  1868
				if(iCurrentTypeInTest == iSupportedDataTypes.Count())
sl@0
  1869
					{
sl@0
  1870
					INFO_PRINTF1(_L("========== Test Case Successfully Completed =========="));
sl@0
  1871
					StopTest();
sl@0
  1872
					}
sl@0
  1873
				else
sl@0
  1874
					{
sl@0
  1875
					TFourCC fourCC = iSupportedDataTypes[iCurrentTypeInTest];
sl@0
  1876
					TBuf<KTFourCC> name;
sl@0
  1877
					for (TInt i=0; i<= KFourCCMaxBitDisplacement; i+=K8Bits)
sl@0
  1878
						{
sl@0
  1879
						name.Append ( (TUint8)(fourCC.FourCC() >> i));
sl@0
  1880
						}
sl@0
  1881
					INFO_PRINTF3(_L("Initializing for Input Data type: 0x%x  %S "), fourCC.FourCC(), &name);
sl@0
  1882
					TRAPD(err, iMMFDevSound->InitializeL(*this, fourCC, EMMFStatePlaying));
sl@0
  1883
					if (err != KErrNone)
sl@0
  1884
						{
sl@0
  1885
						ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  1886
						StopTest(err);
sl@0
  1887
						break;
sl@0
  1888
						}
sl@0
  1889
					}
sl@0
  1890
				iCurrentTypeInTest++;
sl@0
  1891
				}
sl@0
  1892
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  1893
				{
sl@0
  1894
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  1895
				StopTest(aError);
sl@0
  1896
				}
sl@0
  1897
			else
sl@0
  1898
				{
sl@0
  1899
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  1900
				StopTest(aError, EFail);
sl@0
  1901
				}
sl@0
  1902
			break;
sl@0
  1903
			}
sl@0
  1904
		default:
sl@0
  1905
			{
sl@0
  1906
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  1907
			StopTest(aError, EFail);
sl@0
  1908
			}
sl@0
  1909
		}
sl@0
  1910
	}
sl@0
  1911
sl@0
  1912
/*
sl@0
  1913
 *========================================================================================================
sl@0
  1914
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0016
sl@0
  1915
 */
sl@0
  1916
RA3FDevSoundPlayMaxVolumeTest::RA3FDevSoundPlayMaxVolumeTest(const TDesC& aTestName) :
sl@0
  1917
	RA3FDevSoundTestBase(aTestName), iExVolume(0)
sl@0
  1918
	{
sl@0
  1919
	}
sl@0
  1920
sl@0
  1921
RA3FDevSoundPlayMaxVolumeTest* RA3FDevSoundPlayMaxVolumeTest::NewL(const TDesC& aTestName)
sl@0
  1922
	{
sl@0
  1923
	RA3FDevSoundPlayMaxVolumeTest* self = new (ELeave) RA3FDevSoundPlayMaxVolumeTest(aTestName);
sl@0
  1924
	return self;
sl@0
  1925
	}
sl@0
  1926
sl@0
  1927
void RA3FDevSoundPlayMaxVolumeTest::DoKickoffTestL()
sl@0
  1928
	{
sl@0
  1929
	if (!GetIntFromConfig(iTestStepName, KExVolume, iExVolume))
sl@0
  1930
		{
sl@0
  1931
		ERR_PRINTF2(KMsgErrorGetParameter, &KExVolume);
sl@0
  1932
		StopTest(KErrNotFound);
sl@0
  1933
		return;
sl@0
  1934
		}
sl@0
  1935
	TPtrC fourccCode;
sl@0
  1936
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  1937
		{
sl@0
  1938
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  1939
		StopTest(KErrNotFound);
sl@0
  1940
		return;
sl@0
  1941
		}
sl@0
  1942
	EncodingFromStringToTFourCC (fourccCode);
sl@0
  1943
	}
sl@0
  1944
sl@0
  1945
void RA3FDevSoundPlayMaxVolumeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  1946
	{
sl@0
  1947
	switch (iDevSoundState)
sl@0
  1948
		{
sl@0
  1949
		case EStateCreated:
sl@0
  1950
			{
sl@0
  1951
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayMaxVolumeTest"), EFsmIncorrectErrorPassed));
sl@0
  1952
			if ( aDevSoundEvent == EEventInitialize)
sl@0
  1953
				{
sl@0
  1954
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  1955
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  1956
				if (err != KErrNone)
sl@0
  1957
					{
sl@0
  1958
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  1959
					StopTest(err);
sl@0
  1960
					break;
sl@0
  1961
					}
sl@0
  1962
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  1963
				iDevSoundState = EStateInitializing;
sl@0
  1964
				}
sl@0
  1965
			else
sl@0
  1966
				{
sl@0
  1967
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  1968
				StopTest(aError, EFail);
sl@0
  1969
				}
sl@0
  1970
			break;
sl@0
  1971
			}
sl@0
  1972
		case EStateInitializing:
sl@0
  1973
			{
sl@0
  1974
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  1975
				{
sl@0
  1976
				TInt maxVolume = iMMFDevSound->MaxVolume();
sl@0
  1977
				INFO_PRINTF1(_L("Calling CMMFDevSound::MaxVolume"));
sl@0
  1978
				if(maxVolume == iExVolume)
sl@0
  1979
					{
sl@0
  1980
					INFO_PRINTF2(_L("Calling CMMFDevSound::MaxVolume succeeded with the expected value %d"), maxVolume);
sl@0
  1981
					StopTest();
sl@0
  1982
					}
sl@0
  1983
				else
sl@0
  1984
					{
sl@0
  1985
					ERR_PRINTF2(_L("Calling CMMFDevSound::MaxVolume failed with value %d"), maxVolume);
sl@0
  1986
					ERR_PRINTF2(_L("Expected value = %d"), iExVolume);
sl@0
  1987
					StopTest(KErrNone, EFail);
sl@0
  1988
					}
sl@0
  1989
				}
sl@0
  1990
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  1991
				{
sl@0
  1992
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  1993
				StopTest(aError);
sl@0
  1994
				}
sl@0
  1995
			else
sl@0
  1996
				{
sl@0
  1997
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  1998
				StopTest(aError, EFail);
sl@0
  1999
				}
sl@0
  2000
			break;
sl@0
  2001
			}
sl@0
  2002
		default:
sl@0
  2003
			{
sl@0
  2004
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  2005
			StopTest(aError, EFail);
sl@0
  2006
			}
sl@0
  2007
		}
sl@0
  2008
	}
sl@0
  2009
sl@0
  2010
/*
sl@0
  2011
 *========================================================================================================
sl@0
  2012
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0017
sl@0
  2013
 */
sl@0
  2014
RA3FDevSoundPlaySamplesPlayedTest::RA3FDevSoundPlaySamplesPlayedTest(const TDesC& aTestName) :
sl@0
  2015
	RA3FDevSoundTestBase(aTestName),
sl@0
  2016
	iExSamplesPlayed(0)
sl@0
  2017
	{
sl@0
  2018
	}
sl@0
  2019
sl@0
  2020
RA3FDevSoundPlaySamplesPlayedTest* RA3FDevSoundPlaySamplesPlayedTest::NewL(const TDesC& aTestName)
sl@0
  2021
	{
sl@0
  2022
	RA3FDevSoundPlaySamplesPlayedTest* self = new (ELeave) RA3FDevSoundPlaySamplesPlayedTest(aTestName);
sl@0
  2023
	return self;
sl@0
  2024
	}
sl@0
  2025
sl@0
  2026
void RA3FDevSoundPlaySamplesPlayedTest::DoKickoffTestL()
sl@0
  2027
	{
sl@0
  2028
	if (!GetIntFromConfig(iTestStepName, KExSamplesPlayed, iExSamplesPlayed))
sl@0
  2029
		{
sl@0
  2030
		ERR_PRINTF2(KMsgErrorGetParameter, &KExSamplesPlayed);
sl@0
  2031
		StopTest(KErrNotFound);
sl@0
  2032
		return;
sl@0
  2033
		}
sl@0
  2034
	TPtrC fourccCode;
sl@0
  2035
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  2036
		{
sl@0
  2037
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  2038
		StopTest(KErrNotFound);
sl@0
  2039
		return;
sl@0
  2040
		}
sl@0
  2041
	EncodingFromStringToTFourCC(fourccCode);
sl@0
  2042
	}
sl@0
  2043
sl@0
  2044
void RA3FDevSoundPlaySamplesPlayedTest::Fsm(TMmfDevSoundEvent aDevSoundEvent,TInt aError)
sl@0
  2045
	{
sl@0
  2046
	switch (iDevSoundState)
sl@0
  2047
		{
sl@0
  2048
		case EStateCreated:
sl@0
  2049
			{
sl@0
  2050
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySamplesPlayedTest"), EFsmIncorrectErrorPassed));
sl@0
  2051
			if (aDevSoundEvent == EEventInitialize)
sl@0
  2052
				{
sl@0
  2053
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  2054
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  2055
				if (err != KErrNone)
sl@0
  2056
					{
sl@0
  2057
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  2058
					StopTest(err);
sl@0
  2059
					break;
sl@0
  2060
					}
sl@0
  2061
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  2062
				iDevSoundState = EStateInitializing;
sl@0
  2063
				}
sl@0
  2064
			else
sl@0
  2065
				{
sl@0
  2066
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  2067
				StopTest(aError, EFail);
sl@0
  2068
				}
sl@0
  2069
			break;
sl@0
  2070
			}
sl@0
  2071
		case EStateInitializing:
sl@0
  2072
			{
sl@0
  2073
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  2074
				{
sl@0
  2075
				INFO_PRINTF1(_L("Calling CMMFDevSound::SamplesPlayed"));
sl@0
  2076
				TInt samplesPlayed = iMMFDevSound->SamplesPlayed();
sl@0
  2077
				INFO_PRINTF2(_L("Samples returned by CMMFDevSound::SamplesPlayed = %d"), samplesPlayed);
sl@0
  2078
				if(samplesPlayed == iExSamplesPlayed)
sl@0
  2079
					{
sl@0
  2080
					INFO_PRINTF3(_L("Samples returned by CMMFDevSound::SamplesPlayed: %d matches the expected samples played: %d"), samplesPlayed, iExSamplesPlayed);
sl@0
  2081
					StopTest();
sl@0
  2082
					}
sl@0
  2083
				else
sl@0
  2084
					{
sl@0
  2085
					ERR_PRINTF2(_L("Call to CMMFDevSound::SamplesPlayed do not match the expected value = %d"), samplesPlayed);
sl@0
  2086
					ERR_PRINTF2(_L("Expected Samples played value = %d"), iExSamplesPlayed);
sl@0
  2087
					StopTest(KErrNone, EFail);
sl@0
  2088
					}
sl@0
  2089
				}
sl@0
  2090
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  2091
				{
sl@0
  2092
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  2093
				StopTest(aError);
sl@0
  2094
				}
sl@0
  2095
			else
sl@0
  2096
				{
sl@0
  2097
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  2098
				StopTest(aError, EFail);
sl@0
  2099
				}
sl@0
  2100
			break;
sl@0
  2101
			}
sl@0
  2102
		default:
sl@0
  2103
			{
sl@0
  2104
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  2105
			StopTest(aError, EFail);
sl@0
  2106
			}
sl@0
  2107
		}
sl@0
  2108
	}
sl@0
  2109
sl@0
  2110
/*
sl@0
  2111
 *========================================================================================================
sl@0
  2112
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0018
sl@0
  2113
 */
sl@0
  2114
RA3FDevSoundPlayVolumeTest::RA3FDevSoundPlayVolumeTest(const TDesC& aTestName) :
sl@0
  2115
	RA3FDevSoundTestBase(aTestName),
sl@0
  2116
	iExVolume(0)
sl@0
  2117
	{
sl@0
  2118
	}
sl@0
  2119
sl@0
  2120
RA3FDevSoundPlayVolumeTest* RA3FDevSoundPlayVolumeTest::NewL(const TDesC& aTestName)
sl@0
  2121
	{
sl@0
  2122
	RA3FDevSoundPlayVolumeTest* self = new (ELeave) RA3FDevSoundPlayVolumeTest(aTestName);
sl@0
  2123
	return self;
sl@0
  2124
	}
sl@0
  2125
sl@0
  2126
void RA3FDevSoundPlayVolumeTest::DoKickoffTestL()
sl@0
  2127
	{
sl@0
  2128
	if (!GetIntFromConfig(iTestStepName, KExVolume, iExVolume))
sl@0
  2129
		{
sl@0
  2130
		ERR_PRINTF2(KMsgErrorGetParameter, &KExVolume);
sl@0
  2131
		StopTest(KErrNotFound);
sl@0
  2132
		return;
sl@0
  2133
		}
sl@0
  2134
	TPtrC fourccCode;
sl@0
  2135
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  2136
		{
sl@0
  2137
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  2138
		StopTest(KErrNotFound);
sl@0
  2139
		return;
sl@0
  2140
		}
sl@0
  2141
	EncodingFromStringToTFourCC(fourccCode);
sl@0
  2142
	}
sl@0
  2143
sl@0
  2144
void RA3FDevSoundPlayVolumeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  2145
	{
sl@0
  2146
	switch (iDevSoundState)
sl@0
  2147
		{
sl@0
  2148
		case EStateCreated:
sl@0
  2149
			{
sl@0
  2150
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayVolumeTest"), EFsmIncorrectErrorPassed));
sl@0
  2151
			if (aDevSoundEvent == EEventInitialize)
sl@0
  2152
				{
sl@0
  2153
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  2154
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  2155
				if (err != KErrNone)
sl@0
  2156
					{
sl@0
  2157
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  2158
					StopTest(err);
sl@0
  2159
					break;
sl@0
  2160
					}
sl@0
  2161
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  2162
				iDevSoundState = EStateInitializing;
sl@0
  2163
				}
sl@0
  2164
			else
sl@0
  2165
				{
sl@0
  2166
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  2167
				StopTest(aError, EFail);
sl@0
  2168
				}
sl@0
  2169
			break;
sl@0
  2170
			}
sl@0
  2171
		case EStateInitializing:
sl@0
  2172
			{
sl@0
  2173
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  2174
				{
sl@0
  2175
				INFO_PRINTF1(_L("Calling CMMFDevSound::Volume"));
sl@0
  2176
				TInt volumeGet = iMMFDevSound->Volume();
sl@0
  2177
				INFO_PRINTF2(_L("Volume returned by CMMFDevSound::Volume() = %d"), volumeGet);
sl@0
  2178
				if(volumeGet == iExVolume)
sl@0
  2179
					{
sl@0
  2180
					INFO_PRINTF3(_L("Volume returned by CMMFDevSound::Volume(): %d  matches the default device volume: %d"), volumeGet, iExVolume);
sl@0
  2181
					StopTest();
sl@0
  2182
					}
sl@0
  2183
				else
sl@0
  2184
					{
sl@0
  2185
					ERR_PRINTF2(_L("Default device volume failed with %d"), volumeGet);
sl@0
  2186
					ERR_PRINTF2(_L("Expected value = % d"), iExVolume);
sl@0
  2187
					StopTest(aError , EFail);
sl@0
  2188
					}
sl@0
  2189
				}
sl@0
  2190
			break;
sl@0
  2191
			}
sl@0
  2192
		default:
sl@0
  2193
			{
sl@0
  2194
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  2195
			StopTest(aError, EFail);
sl@0
  2196
			}
sl@0
  2197
		}
sl@0
  2198
	}
sl@0
  2199
sl@0
  2200
/*
sl@0
  2201
 *========================================================================================================
sl@0
  2202
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0019
sl@0
  2203
 */
sl@0
  2204
RA3FDevSoundPlayCapabilitiesWhilePlayingTest::RA3FDevSoundPlayCapabilitiesWhilePlayingTest(const TDesC& aTestName) :
sl@0
  2205
	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC),
sl@0
  2206
	iExCapChannels(0), iExCapRate(0)
sl@0
  2207
	{
sl@0
  2208
	}
sl@0
  2209
sl@0
  2210
RA3FDevSoundPlayCapabilitiesWhilePlayingTest* RA3FDevSoundPlayCapabilitiesWhilePlayingTest::NewL(const TDesC& aTestName)
sl@0
  2211
	{
sl@0
  2212
	RA3FDevSoundPlayCapabilitiesWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayCapabilitiesWhilePlayingTest(aTestName);
sl@0
  2213
	return self;
sl@0
  2214
	}
sl@0
  2215
sl@0
  2216
void RA3FDevSoundPlayCapabilitiesWhilePlayingTest::DoKickoffTestL()
sl@0
  2217
	{
sl@0
  2218
	if (!GetIntFromConfig(iTestStepName, KExCapChannels, iExCapChannels))
sl@0
  2219
		{
sl@0
  2220
		ERR_PRINTF2(KMsgErrorGetParameter, &KExCapChannels);
sl@0
  2221
		StopTest(KErrNotFound);
sl@0
  2222
		return;
sl@0
  2223
		}
sl@0
  2224
	if (!GetIntFromConfig(iTestStepName, KExCapRate, iExCapRate))
sl@0
  2225
		{
sl@0
  2226
		ERR_PRINTF2(KMsgErrorGetParameter, &KExCapRate);
sl@0
  2227
		StopTest(KErrNotFound);
sl@0
  2228
		return;
sl@0
  2229
		}
sl@0
  2230
	TPtrC filename;
sl@0
  2231
	// Get the filename of the audio file to play
sl@0
  2232
	if ( !GetStringFromConfig(iTestStepName, KFilename, filename))
sl@0
  2233
		{
sl@0
  2234
		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
sl@0
  2235
		StopTest(KErrNotFound);
sl@0
  2236
		return;
sl@0
  2237
		}
sl@0
  2238
	// open using RFile for playback
sl@0
  2239
	iFilename.Copy(filename);
sl@0
  2240
	TInt err = iFile.Open (iFs, iFilename, EFileRead);
sl@0
  2241
	if (err != KErrNone)
sl@0
  2242
		{
sl@0
  2243
		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
sl@0
  2244
		iFs.Close();
sl@0
  2245
		StopTest(err);
sl@0
  2246
		return;
sl@0
  2247
		}
sl@0
  2248
sl@0
  2249
	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
sl@0
  2250
sl@0
  2251
	TPtrC fourccCode;
sl@0
  2252
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  2253
		{
sl@0
  2254
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  2255
		StopTest(KErrNotFound);
sl@0
  2256
		return;
sl@0
  2257
		}
sl@0
  2258
	EncodingFromStringToTFourCC(fourccCode);
sl@0
  2259
	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
sl@0
  2260
	}
sl@0
  2261
sl@0
  2262
void RA3FDevSoundPlayCapabilitiesWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  2263
	{
sl@0
  2264
	switch (iDevSoundState)
sl@0
  2265
		{
sl@0
  2266
		case EStateCreated:
sl@0
  2267
			{
sl@0
  2268
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed));
sl@0
  2269
			if (aDevSoundEvent == EEventInitialize)
sl@0
  2270
				{
sl@0
  2271
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  2272
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  2273
				if (err != KErrNone)
sl@0
  2274
					{
sl@0
  2275
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  2276
					StopTest(err);
sl@0
  2277
					break;
sl@0
  2278
					}
sl@0
  2279
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  2280
				iDevSoundState = EStateInitializing;
sl@0
  2281
				}
sl@0
  2282
			else
sl@0
  2283
				{
sl@0
  2284
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  2285
				StopTest(aError, EFail);
sl@0
  2286
				}
sl@0
  2287
			break;
sl@0
  2288
			}
sl@0
  2289
		case EStateInitializing:
sl@0
  2290
			{
sl@0
  2291
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  2292
				{
sl@0
  2293
				iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
sl@0
  2294
				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
sl@0
  2295
				TRAPD(err, iMMFDevSound->PlayInitL());
sl@0
  2296
				if (err != KErrNone)
sl@0
  2297
					{
sl@0
  2298
					StopTest(err);
sl@0
  2299
					break;
sl@0
  2300
					}
sl@0
  2301
				StartTimer(KMicroSecsTwoSec);
sl@0
  2302
				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
sl@0
  2303
				iDevSoundState = EStatePlaying;
sl@0
  2304
				}
sl@0
  2305
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  2306
				{
sl@0
  2307
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  2308
				StopTest(aError);
sl@0
  2309
				}
sl@0
  2310
			else
sl@0
  2311
				{
sl@0
  2312
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  2313
				StopTest(aError, EFail);
sl@0
  2314
				}
sl@0
  2315
			break;
sl@0
  2316
			}
sl@0
  2317
		case EStatePlaying:
sl@0
  2318
			{
sl@0
  2319
			if (aDevSoundEvent == EEventBTBF)
sl@0
  2320
				{
sl@0
  2321
				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
sl@0
  2322
				TInt err = iFile.Read (buffer->Data ());
sl@0
  2323
				if (err != KErrNone)
sl@0
  2324
					{
sl@0
  2325
					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
sl@0
  2326
					StopTest(err);
sl@0
  2327
					break;
sl@0
  2328
					}
sl@0
  2329
				if (buffer->Data().Length ()!= buffer->RequestSize())
sl@0
  2330
					{
sl@0
  2331
					iBuffer->SetLastBuffer (ETrue);
sl@0
  2332
					}
sl@0
  2333
				INFO_PRINTF1(_L("CMMFDevSound::PlayData()"));
sl@0
  2334
				iMMFDevSound->PlayData();
sl@0
  2335
				}
sl@0
  2336
			else if (aDevSoundEvent == EEventTimerComplete)
sl@0
  2337
				{
sl@0
  2338
				TMMFCapabilities capabilitiesGet;
sl@0
  2339
				INFO_PRINTF1(_L("Calling CMMFDevSound::Capabilities while playing"));
sl@0
  2340
				capabilitiesGet = iMMFDevSound->Capabilities ();
sl@0
  2341
				INFO_PRINTF3(_L("Rate Sum:0x%x Channels Sum:0x%x"), capabilitiesGet.iRate, capabilitiesGet.iChannels);
sl@0
  2342
				PrintSupportedCapabilities (capabilitiesGet.iRate, capabilitiesGet.iChannels);
sl@0
  2343
				if(capabilitiesGet.iRate == iExCapRate && capabilitiesGet.iChannels == iExCapChannels)
sl@0
  2344
					{
sl@0
  2345
					INFO_PRINTF3(_L("Capabilities returned match expected capabilities which are Sum:0x%x Channels Sum:0x%x"), capabilitiesGet.iRate, capabilitiesGet.iChannels);
sl@0
  2346
					}
sl@0
  2347
				else
sl@0
  2348
					{
sl@0
  2349
					ERR_PRINTF3(_L("Capabilities returned do not match the expected capabilities. The total capabilities Sum:0x%x Channels Sum:0x%x "), capabilitiesGet.iRate, capabilitiesGet.iChannels);
sl@0
  2350
					ERR_PRINTF3(_L("Expected Rate Sum:0x%x Channels Sum:0x%x"), iExCapRate, iExCapChannels);
sl@0
  2351
					StopTest (KErrNone, EFail);
sl@0
  2352
					}
sl@0
  2353
				}
sl@0
  2354
			else
sl@0
  2355
				{
sl@0
  2356
				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  2357
				StopTest(aError, EFail);
sl@0
  2358
				}
sl@0
  2359
			break;
sl@0
  2360
			}
sl@0
  2361
		default:
sl@0
  2362
			{
sl@0
  2363
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  2364
			StopTest (aError, EFail);
sl@0
  2365
			}
sl@0
  2366
		}
sl@0
  2367
	}
sl@0
  2368
sl@0
  2369
void RA3FDevSoundPlayCapabilitiesWhilePlayingTest::DoTimerCallback()
sl@0
  2370
	{
sl@0
  2371
	INFO_PRINTF1(_L("TimerEvent called"));
sl@0
  2372
	iTimer->Cancel();
sl@0
  2373
	INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
sl@0
  2374
	Fsm(EEventTimerComplete, KErrNone);
sl@0
  2375
	}
sl@0
  2376
sl@0
  2377
/*
sl@0
  2378
 *========================================================================================================
sl@0
  2379
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0020
sl@0
  2380
 */
sl@0
  2381
RA3FDevSoundPlayConfigWhilePlayingTest::RA3FDevSoundPlayConfigWhilePlayingTest(const TDesC& aTestName) :
sl@0
  2382
	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC), iExCapRate(0),
sl@0
  2383
	iExCapChannels(0)
sl@0
  2384
	{
sl@0
  2385
	}
sl@0
  2386
sl@0
  2387
RA3FDevSoundPlayConfigWhilePlayingTest* RA3FDevSoundPlayConfigWhilePlayingTest::NewL(const TDesC& aTestName)
sl@0
  2388
	{
sl@0
  2389
	RA3FDevSoundPlayConfigWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayConfigWhilePlayingTest(aTestName);
sl@0
  2390
	return self;
sl@0
  2391
	}
sl@0
  2392
sl@0
  2393
void RA3FDevSoundPlayConfigWhilePlayingTest::DoKickoffTestL()
sl@0
  2394
	{
sl@0
  2395
	TPtrC filename;
sl@0
  2396
	// Get the filename of the audio file to play
sl@0
  2397
	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
sl@0
  2398
		{
sl@0
  2399
		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
sl@0
  2400
		StopTest(KErrNotFound);
sl@0
  2401
		return;
sl@0
  2402
		}
sl@0
  2403
	// open using RFile for playback
sl@0
  2404
	iFilename.Copy(filename);
sl@0
  2405
	TInt err = iFile.Open (iFs, iFilename, EFileRead);
sl@0
  2406
	if (err != KErrNone)
sl@0
  2407
		{
sl@0
  2408
		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
sl@0
  2409
		iFs.Close();
sl@0
  2410
		StopTest(err);
sl@0
  2411
		return;
sl@0
  2412
		}
sl@0
  2413
	
sl@0
  2414
	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
sl@0
  2415
sl@0
  2416
	if (!GetIntFromConfig(iTestStepName, KExCapRate, iExCapRate))
sl@0
  2417
			{
sl@0
  2418
			ERR_PRINTF2(KMsgErrorGetParameter, &KExCapRate);
sl@0
  2419
			StopTest(KErrNotFound);
sl@0
  2420
			return;
sl@0
  2421
			}
sl@0
  2422
	if (!GetIntFromConfig(iTestStepName, KExCapChannels, iExCapChannels))
sl@0
  2423
		{
sl@0
  2424
		ERR_PRINTF2(KMsgErrorGetParameter, &KExCapChannels);
sl@0
  2425
		StopTest(KErrNotFound);
sl@0
  2426
		return;
sl@0
  2427
		}
sl@0
  2428
	TPtrC fourccCode;
sl@0
  2429
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  2430
		{
sl@0
  2431
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  2432
		StopTest(KErrNotFound);
sl@0
  2433
		return;
sl@0
  2434
		}
sl@0
  2435
	EncodingFromStringToTFourCC(fourccCode);
sl@0
  2436
	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
sl@0
  2437
	}
sl@0
  2438
sl@0
  2439
void RA3FDevSoundPlayConfigWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  2440
	{
sl@0
  2441
	switch (iDevSoundState)
sl@0
  2442
		{
sl@0
  2443
		case EStateCreated:
sl@0
  2444
			{
sl@0
  2445
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed));
sl@0
  2446
			if (aDevSoundEvent == EEventInitialize)
sl@0
  2447
				{
sl@0
  2448
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  2449
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  2450
				if (err != KErrNone)
sl@0
  2451
					{
sl@0
  2452
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  2453
					StopTest(err);
sl@0
  2454
					break;
sl@0
  2455
					}
sl@0
  2456
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  2457
				iDevSoundState = EStateInitializing;
sl@0
  2458
				}
sl@0
  2459
			else
sl@0
  2460
				{
sl@0
  2461
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  2462
				StopTest(aError, EFail);
sl@0
  2463
				}
sl@0
  2464
			break;
sl@0
  2465
			}
sl@0
  2466
		case EStateInitializing:
sl@0
  2467
			{
sl@0
  2468
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  2469
				{
sl@0
  2470
				iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ());
sl@0
  2471
				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
sl@0
  2472
				TRAPD(err, iMMFDevSound->PlayInitL());
sl@0
  2473
				if (err != KErrNone)
sl@0
  2474
					{
sl@0
  2475
					StopTest (err);
sl@0
  2476
					break;
sl@0
  2477
					}
sl@0
  2478
				StartTimer(KMicroSecsTwoSec);
sl@0
  2479
				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
sl@0
  2480
				iDevSoundState = EStatePlaying;
sl@0
  2481
				}
sl@0
  2482
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  2483
				{
sl@0
  2484
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  2485
				StopTest(aError);
sl@0
  2486
				}
sl@0
  2487
			else
sl@0
  2488
				{
sl@0
  2489
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  2490
				StopTest(aError, EFail);
sl@0
  2491
				}
sl@0
  2492
			break;
sl@0
  2493
			}
sl@0
  2494
		case EStatePlaying:
sl@0
  2495
			{
sl@0
  2496
			if (aDevSoundEvent == EEventBTBF)
sl@0
  2497
				{
sl@0
  2498
				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
sl@0
  2499
				TInt err = iFile.Read (buffer->Data ());
sl@0
  2500
				if (err != KErrNone)
sl@0
  2501
					{
sl@0
  2502
					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
sl@0
  2503
					StopTest(err);
sl@0
  2504
					break;
sl@0
  2505
					}
sl@0
  2506
				if (buffer->Data().Length ()!= buffer->RequestSize())
sl@0
  2507
					{
sl@0
  2508
					iBuffer->SetLastBuffer(ETrue);
sl@0
  2509
					}
sl@0
  2510
				INFO_PRINTF1(_L("CMMFDevSound::PlayData()"));
sl@0
  2511
				iMMFDevSound->PlayData ();
sl@0
  2512
				}
sl@0
  2513
			else if (aDevSoundEvent == EEventTimerComplete)
sl@0
  2514
				{
sl@0
  2515
				TMMFCapabilities capabilitiesGet;
sl@0
  2516
				TBuf<KMaxSampleRateStringLength> stringSampleRateGet;
sl@0
  2517
				TBuf<KMaxChannelsStringLength> stringChannelsGet;
sl@0
  2518
				TBuf<KMaxSampleRateStringLength> stringSampleRateExpected;
sl@0
  2519
				TBuf<KMaxChannelsStringLength> stringChannelsExpected;
sl@0
  2520
				INFO_PRINTF1(_L("Calling CMMFDevSound::Config while playing"));
sl@0
  2521
				capabilitiesGet=iMMFDevSound->Config ();
sl@0
  2522
				SampleRateFromTUintToString (capabilitiesGet.iRate, stringSampleRateGet);
sl@0
  2523
				ChannelsFromTUintToString (capabilitiesGet.iChannels, stringChannelsGet);
sl@0
  2524
				SampleRateFromTIntToTMMFSampleRate (iExCapRate, iExSampleRate);
sl@0
  2525
				SampleRateFromTUintToString (iExSampleRate, stringSampleRateExpected);
sl@0
  2526
				ChannelsFromTUintToString (iExCapChannels, stringChannelsExpected);
sl@0
  2527
				if (stringSampleRateExpected.Compare(stringSampleRateGet) == 0)
sl@0
  2528
					{
sl@0
  2529
					INFO_PRINTF2(_L("Sample rate value match default as expected with %S"), &stringSampleRateGet);
sl@0
  2530
					if (stringChannelsExpected.Compare(stringChannelsGet) == 0)
sl@0
  2531
						{
sl@0
  2532
						INFO_PRINTF2(_L("Channel mode value match default as expected with %S"), &stringChannelsGet);
sl@0
  2533
						StopTest();
sl@0
  2534
						}
sl@0
  2535
					else
sl@0
  2536
						{
sl@0
  2537
						INFO_PRINTF2(_L("Channel mode value failed with %S"), &stringChannelsGet);
sl@0
  2538
						ERR_PRINTF2(_L("Expected channel mode %S"), &stringChannelsExpected);
sl@0
  2539
						StopTest(KErrNone, EFail);
sl@0
  2540
						}
sl@0
  2541
					}
sl@0
  2542
				else
sl@0
  2543
					{
sl@0
  2544
					ERR_PRINTF2(_L("Sample rate value failed with %S"), &stringSampleRateGet);
sl@0
  2545
					ERR_PRINTF2(_L("Expected sample rate %S"), &stringSampleRateExpected);
sl@0
  2546
					StopTest(KErrNone, EFail);
sl@0
  2547
					}
sl@0
  2548
				}
sl@0
  2549
			else
sl@0
  2550
				{
sl@0
  2551
				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  2552
				StopTest(aError, EFail);
sl@0
  2553
				}
sl@0
  2554
			break;
sl@0
  2555
			}
sl@0
  2556
		default:
sl@0
  2557
			{
sl@0
  2558
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  2559
			StopTest(aError, EFail);
sl@0
  2560
			}
sl@0
  2561
		}
sl@0
  2562
	}
sl@0
  2563
sl@0
  2564
void RA3FDevSoundPlayConfigWhilePlayingTest::DoTimerCallback()
sl@0
  2565
	{
sl@0
  2566
	INFO_PRINTF1(_L("TimerEvent called"));
sl@0
  2567
	iTimer->Cancel();
sl@0
  2568
	INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
sl@0
  2569
	Fsm (EEventTimerComplete, KErrNone);
sl@0
  2570
	}
sl@0
  2571
sl@0
  2572
/*
sl@0
  2573
 *========================================================================================================
sl@0
  2574
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0021
sl@0
  2575
 */
sl@0
  2576
RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest::RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest(const TDesC& aTestName) :
sl@0
  2577
	RA3FDevSoundTestBase(aTestName), 
sl@0
  2578
	iFilename(KNullDesC),
sl@0
  2579
	iExLSpeakerBalance(0),
sl@0
  2580
	iExRSpeakerBalance(0)
sl@0
  2581
	{
sl@0
  2582
	}
sl@0
  2583
sl@0
  2584
RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest* RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest::NewL(const TDesC& aTestName)
sl@0
  2585
	{
sl@0
  2586
	RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest(aTestName);
sl@0
  2587
	return self;
sl@0
  2588
	}
sl@0
  2589
sl@0
  2590
void RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest::DoKickoffTestL()
sl@0
  2591
	{
sl@0
  2592
	if (!GetIntFromConfig(iTestStepName, KExLSpeakerBalance, iExLSpeakerBalance))
sl@0
  2593
		{
sl@0
  2594
		ERR_PRINTF2(KMsgErrorGetParameter, &KExLSpeakerBalance);
sl@0
  2595
		StopTest(KErrNotFound);
sl@0
  2596
		return;
sl@0
  2597
		}
sl@0
  2598
	if (!GetIntFromConfig(iTestStepName, KExRSpeakerBalance, iExRSpeakerBalance))
sl@0
  2599
		{
sl@0
  2600
		ERR_PRINTF2(KMsgErrorGetParameter, &KExRSpeakerBalance);
sl@0
  2601
		StopTest(KErrNotFound);
sl@0
  2602
		return;
sl@0
  2603
		}
sl@0
  2604
	TPtrC filename;
sl@0
  2605
	// Get the filename of the audio file to play
sl@0
  2606
	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
sl@0
  2607
		{
sl@0
  2608
		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
sl@0
  2609
		StopTest(KErrNotFound);
sl@0
  2610
		return;
sl@0
  2611
		}
sl@0
  2612
	// open using RFile for playback
sl@0
  2613
	iFilename.Copy (filename);
sl@0
  2614
	TInt err = iFile.Open (iFs, iFilename, EFileRead);
sl@0
  2615
	if (err != KErrNone)
sl@0
  2616
		{
sl@0
  2617
		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
sl@0
  2618
		iFs.Close();
sl@0
  2619
		StopTest(err);
sl@0
  2620
		return;
sl@0
  2621
		}
sl@0
  2622
sl@0
  2623
	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
sl@0
  2624
sl@0
  2625
	TPtrC fourccCode;
sl@0
  2626
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  2627
		{
sl@0
  2628
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  2629
		StopTest(KErrNotFound);
sl@0
  2630
		return;
sl@0
  2631
		}
sl@0
  2632
	EncodingFromStringToTFourCC(fourccCode);
sl@0
  2633
	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
sl@0
  2634
	}
sl@0
  2635
sl@0
  2636
void RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  2637
	{
sl@0
  2638
	switch (iDevSoundState)
sl@0
  2639
		{
sl@0
  2640
		case EStateCreated:
sl@0
  2641
			{
sl@0
  2642
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed));
sl@0
  2643
			if (aDevSoundEvent == EEventInitialize)
sl@0
  2644
				{
sl@0
  2645
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  2646
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  2647
				if (err != KErrNone)
sl@0
  2648
					{
sl@0
  2649
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  2650
					StopTest(err);
sl@0
  2651
					break;
sl@0
  2652
					}
sl@0
  2653
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  2654
				iDevSoundState = EStateInitializing;
sl@0
  2655
				}
sl@0
  2656
			else
sl@0
  2657
				{
sl@0
  2658
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  2659
				StopTest(aError, EFail);
sl@0
  2660
				}
sl@0
  2661
			break;
sl@0
  2662
			}
sl@0
  2663
		case EStateInitializing:
sl@0
  2664
			{
sl@0
  2665
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  2666
				{
sl@0
  2667
				iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
sl@0
  2668
				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
sl@0
  2669
				TRAPD(err, iMMFDevSound->PlayInitL());
sl@0
  2670
				if (err != KErrNone)
sl@0
  2671
					{
sl@0
  2672
					StopTest (err);
sl@0
  2673
					break;
sl@0
  2674
					}
sl@0
  2675
				StartTimer (KMicroSecsTwoSec);
sl@0
  2676
				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
sl@0
  2677
				iDevSoundState = EStatePlaying;
sl@0
  2678
				}
sl@0
  2679
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  2680
				{
sl@0
  2681
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  2682
				StopTest(aError);
sl@0
  2683
				}
sl@0
  2684
			else
sl@0
  2685
				{
sl@0
  2686
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  2687
				StopTest(aError, EFail);
sl@0
  2688
				}
sl@0
  2689
			break;
sl@0
  2690
			}
sl@0
  2691
		case EStatePlaying:
sl@0
  2692
			{
sl@0
  2693
			if (aDevSoundEvent == EEventBTBF)
sl@0
  2694
				{
sl@0
  2695
				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
sl@0
  2696
				TInt err = iFile.Read (buffer->Data ());
sl@0
  2697
				if (err != KErrNone)
sl@0
  2698
					{
sl@0
  2699
					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
sl@0
  2700
					StopTest(err);
sl@0
  2701
					break;
sl@0
  2702
					}
sl@0
  2703
				if (buffer->Data().Length ()!= buffer->RequestSize())
sl@0
  2704
					{
sl@0
  2705
					iBuffer->SetLastBuffer(ETrue);
sl@0
  2706
					}
sl@0
  2707
				INFO_PRINTF1(_L("CMMFDevSound::PlayData()"));
sl@0
  2708
				iMMFDevSound->PlayData ();
sl@0
  2709
				}
sl@0
  2710
			else if (aDevSoundEvent == EEventTimerComplete)
sl@0
  2711
				{
sl@0
  2712
				TInt getBalanceL, getBalanceR;
sl@0
  2713
				INFO_PRINTF1(_L("Calling CMMFDevSound::GetPlayBalance while playing"));
sl@0
  2714
				TRAPD(err, iMMFDevSound->GetPlayBalanceL(getBalanceL, getBalanceR));
sl@0
  2715
				INFO_PRINTF3(_L("Balance returned by CMMFDevSound::GetPlayBalance left = %d right = %d"), getBalanceL, getBalanceR);
sl@0
  2716
				if (err == KErrNone)
sl@0
  2717
					{
sl@0
  2718
					if(getBalanceL == iExLSpeakerBalance && getBalanceR == iExRSpeakerBalance)
sl@0
  2719
						{
sl@0
  2720
						INFO_PRINTF5(_L("Balance returned by CMMFDevSound::GetPlayBalance: left %d right %d matches the default device balance: left %d right %d"), getBalanceL, getBalanceR, iExLSpeakerBalance, iExRSpeakerBalance);
sl@0
  2721
						}
sl@0
  2722
					else
sl@0
  2723
						{
sl@0
  2724
						ERR_PRINTF3(_L("Balance values do not match expected values, left %d right %d"), getBalanceL, getBalanceR);
sl@0
  2725
						ERR_PRINTF3(_L("Expected values, left %d right %d"), iExLSpeakerBalance, iExRSpeakerBalance);
sl@0
  2726
						StopTest(KErrNone, EFail);
sl@0
  2727
						}
sl@0
  2728
					}
sl@0
  2729
				else
sl@0
  2730
					{
sl@0
  2731
					ERR_PRINTF1(_L("Error in getting left and right play balance."));
sl@0
  2732
					StopTest(err);
sl@0
  2733
					}
sl@0
  2734
				}
sl@0
  2735
			else
sl@0
  2736
				{
sl@0
  2737
				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  2738
				StopTest(aError, EFail);
sl@0
  2739
				}
sl@0
  2740
			break;
sl@0
  2741
			}
sl@0
  2742
		default:
sl@0
  2743
			{
sl@0
  2744
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  2745
			StopTest(aError, EFail);
sl@0
  2746
			}
sl@0
  2747
		}
sl@0
  2748
	}
sl@0
  2749
sl@0
  2750
void RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest::DoTimerCallback()
sl@0
  2751
	{
sl@0
  2752
	INFO_PRINTF1(_L("TimerEvent called"));
sl@0
  2753
	iTimer->Cancel();
sl@0
  2754
	INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
sl@0
  2755
	Fsm(EEventTimerComplete, KErrNone);
sl@0
  2756
	}
sl@0
  2757
sl@0
  2758
/*
sl@0
  2759
 *========================================================================================================
sl@0
  2760
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0022
sl@0
  2761
 */
sl@0
  2762
RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest::RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest(const TDesC& aTestName) :
sl@0
  2763
	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC)
sl@0
  2764
	{
sl@0
  2765
	}
sl@0
  2766
sl@0
  2767
RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest* RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest::NewL(const TDesC& aTestName)
sl@0
  2768
	{
sl@0
  2769
	RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest(aTestName);
sl@0
  2770
	return self;
sl@0
  2771
	}
sl@0
  2772
sl@0
  2773
void RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest::DoKickoffTestL()
sl@0
  2774
	{
sl@0
  2775
	TPtrC filename;
sl@0
  2776
	// Get the filename of the audio file to play
sl@0
  2777
	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
sl@0
  2778
		{
sl@0
  2779
		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
sl@0
  2780
		StopTest(KErrNotFound);
sl@0
  2781
		return;
sl@0
  2782
		}
sl@0
  2783
	// open using RFile for playback
sl@0
  2784
	iFilename.Copy(filename);
sl@0
  2785
	TInt err = iFile.Open (iFs, iFilename, EFileRead);
sl@0
  2786
	if (err != KErrNone)
sl@0
  2787
		{
sl@0
  2788
		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
sl@0
  2789
		iFs.Close();
sl@0
  2790
		StopTest(err);
sl@0
  2791
		return;
sl@0
  2792
		}
sl@0
  2793
sl@0
  2794
	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
sl@0
  2795
sl@0
  2796
	TPtrC fourccCode;
sl@0
  2797
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  2798
		{
sl@0
  2799
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  2800
		StopTest(KErrNotFound);
sl@0
  2801
		return;
sl@0
  2802
		}
sl@0
  2803
	EncodingFromStringToTFourCC(fourccCode);
sl@0
  2804
	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
sl@0
  2805
	}
sl@0
  2806
sl@0
  2807
void RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  2808
	{
sl@0
  2809
	switch (iDevSoundState)
sl@0
  2810
		{
sl@0
  2811
		case EStateCreated:
sl@0
  2812
			{
sl@0
  2813
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed));
sl@0
  2814
			if (aDevSoundEvent == EEventInitialize)
sl@0
  2815
				{
sl@0
  2816
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  2817
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  2818
				if (err != KErrNone)
sl@0
  2819
					{
sl@0
  2820
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  2821
					StopTest(err);
sl@0
  2822
					break;
sl@0
  2823
					}
sl@0
  2824
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  2825
				iDevSoundState = EStateInitializing;
sl@0
  2826
				}
sl@0
  2827
			else
sl@0
  2828
				{
sl@0
  2829
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  2830
				StopTest(aError, EFail);
sl@0
  2831
				}
sl@0
  2832
			break;
sl@0
  2833
			}
sl@0
  2834
		case EStateInitializing:
sl@0
  2835
			{
sl@0
  2836
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  2837
				{
sl@0
  2838
				iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume());
sl@0
  2839
				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
sl@0
  2840
				TRAPD(err, iMMFDevSound->PlayInitL());
sl@0
  2841
				if (err != KErrNone)
sl@0
  2842
					{
sl@0
  2843
					StopTest (err);
sl@0
  2844
					break;
sl@0
  2845
					}
sl@0
  2846
				StartTimer(KMicroSecsTwoSec);
sl@0
  2847
				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
sl@0
  2848
				iDevSoundState = EStatePlaying;
sl@0
  2849
				}
sl@0
  2850
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  2851
				{
sl@0
  2852
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  2853
				StopTest(aError);
sl@0
  2854
				}
sl@0
  2855
			else
sl@0
  2856
				{
sl@0
  2857
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  2858
				StopTest(aError, EFail);
sl@0
  2859
				}
sl@0
  2860
			break;
sl@0
  2861
			}
sl@0
  2862
		case EStatePlaying:
sl@0
  2863
			{
sl@0
  2864
			if (aDevSoundEvent == EEventBTBF)
sl@0
  2865
				{
sl@0
  2866
				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
sl@0
  2867
				TInt err = iFile.Read (buffer->Data ());
sl@0
  2868
				if (err != KErrNone)
sl@0
  2869
					{
sl@0
  2870
					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
sl@0
  2871
					StopTest(err);
sl@0
  2872
					break;
sl@0
  2873
					}
sl@0
  2874
				if (buffer->Data().Length ()!= buffer->RequestSize())
sl@0
  2875
					{
sl@0
  2876
					iBuffer->SetLastBuffer (ETrue);
sl@0
  2877
					}
sl@0
  2878
				INFO_PRINTF1(_L("CMMFDevSound::PlayData()"));
sl@0
  2879
				iMMFDevSound->PlayData ();
sl@0
  2880
				}
sl@0
  2881
			else if (aDevSoundEvent == EEventTimerComplete)
sl@0
  2882
				{
sl@0
  2883
				RArray< TFourCC > supportedDataTypes;
sl@0
  2884
				TMMFPrioritySettings prioritySettings;
sl@0
  2885
				TRAPD(err,iMMFDevSound->GetSupportedInputDataTypesL(supportedDataTypes, prioritySettings));
sl@0
  2886
				if (err != KErrNone)
sl@0
  2887
					{
sl@0
  2888
					ERR_PRINTF2(_L("Getting supported data types falied ! Left with error = %d"), err);
sl@0
  2889
					StopTest(err);
sl@0
  2890
					break;
sl@0
  2891
					}
sl@0
  2892
				for(TInt x = 0; x < supportedDataTypes.Count (); x++)
sl@0
  2893
					{
sl@0
  2894
					TFourCC fourCC = supportedDataTypes[x];
sl@0
  2895
					TBuf<KTFourCC> name;
sl@0
  2896
					for (TInt i=0; i<= KFourCCMaxBitDisplacement; i+=K8Bits)
sl@0
  2897
						{
sl@0
  2898
						name.Append ( (TUint8)(fourCC.FourCC() >> i));
sl@0
  2899
						}
sl@0
  2900
					INFO_PRINTF3(_L("Supported Input Data types: 0x%x  %S "), fourCC.FourCC(), &name);
sl@0
  2901
					}
sl@0
  2902
				}
sl@0
  2903
			else
sl@0
  2904
				{
sl@0
  2905
				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  2906
				StopTest(aError, EFail);
sl@0
  2907
				}
sl@0
  2908
			break;
sl@0
  2909
			}
sl@0
  2910
		default:
sl@0
  2911
			{
sl@0
  2912
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  2913
			StopTest(aError, EFail);
sl@0
  2914
			}
sl@0
  2915
		}
sl@0
  2916
	}
sl@0
  2917
sl@0
  2918
void RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest::DoTimerCallback()
sl@0
  2919
	{
sl@0
  2920
	INFO_PRINTF1(_L("TimerEvent called"));
sl@0
  2921
	iTimer->Cancel();
sl@0
  2922
	INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
sl@0
  2923
	Fsm(EEventTimerComplete, KErrNone);
sl@0
  2924
	}
sl@0
  2925
sl@0
  2926
/*
sl@0
  2927
 *========================================================================================================
sl@0
  2928
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0023
sl@0
  2929
 */
sl@0
  2930
RA3FDevSoundPlayMaxVolumeWhilePlayingTest::RA3FDevSoundPlayMaxVolumeWhilePlayingTest(const TDesC& aTestName) :
sl@0
  2931
	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC),
sl@0
  2932
	iExVolume(0)
sl@0
  2933
	{
sl@0
  2934
	}
sl@0
  2935
sl@0
  2936
RA3FDevSoundPlayMaxVolumeWhilePlayingTest* RA3FDevSoundPlayMaxVolumeWhilePlayingTest::NewL(	const TDesC& aTestName)
sl@0
  2937
	{
sl@0
  2938
	RA3FDevSoundPlayMaxVolumeWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayMaxVolumeWhilePlayingTest(aTestName);
sl@0
  2939
	return self;
sl@0
  2940
	}
sl@0
  2941
sl@0
  2942
void RA3FDevSoundPlayMaxVolumeWhilePlayingTest::DoKickoffTestL()
sl@0
  2943
	{
sl@0
  2944
	if (!GetIntFromConfig(iTestStepName, KExVolume, iExVolume))
sl@0
  2945
		{
sl@0
  2946
		ERR_PRINTF2(KMsgErrorGetParameter, &KExVolume);
sl@0
  2947
		StopTest(KErrNotFound);
sl@0
  2948
		return;
sl@0
  2949
		}
sl@0
  2950
	TPtrC filename;
sl@0
  2951
	// Get the filename of the audio file to play
sl@0
  2952
	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
sl@0
  2953
		{
sl@0
  2954
		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
sl@0
  2955
		StopTest(KErrNotFound);
sl@0
  2956
		return;
sl@0
  2957
		}
sl@0
  2958
	// open using RFile for playback
sl@0
  2959
	iFilename.Copy(filename);
sl@0
  2960
	TInt err = iFile.Open(iFs, iFilename, EFileRead);
sl@0
  2961
	if (err != KErrNone)
sl@0
  2962
		{
sl@0
  2963
		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
sl@0
  2964
		iFs.Close();
sl@0
  2965
		StopTest(err);
sl@0
  2966
		return;
sl@0
  2967
		}
sl@0
  2968
sl@0
  2969
	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
sl@0
  2970
sl@0
  2971
	TPtrC fourccCode;
sl@0
  2972
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  2973
		{
sl@0
  2974
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  2975
		StopTest (KErrNotFound);
sl@0
  2976
		return;
sl@0
  2977
		}
sl@0
  2978
	EncodingFromStringToTFourCC(fourccCode);
sl@0
  2979
	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
sl@0
  2980
	}
sl@0
  2981
sl@0
  2982
void RA3FDevSoundPlayMaxVolumeWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  2983
	{
sl@0
  2984
	switch (iDevSoundState)
sl@0
  2985
		{
sl@0
  2986
		case EStateCreated:
sl@0
  2987
			{
sl@0
  2988
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed));
sl@0
  2989
			if ( aDevSoundEvent == EEventInitialize)
sl@0
  2990
				{
sl@0
  2991
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  2992
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  2993
				if (err != KErrNone)
sl@0
  2994
					{
sl@0
  2995
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  2996
					StopTest(err);
sl@0
  2997
					break;
sl@0
  2998
					}
sl@0
  2999
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  3000
				iDevSoundState = EStateInitializing;
sl@0
  3001
				}
sl@0
  3002
			else
sl@0
  3003
				{
sl@0
  3004
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  3005
				StopTest(aError, EFail);
sl@0
  3006
				}
sl@0
  3007
			break;
sl@0
  3008
			}
sl@0
  3009
		case EStateInitializing:
sl@0
  3010
			{
sl@0
  3011
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  3012
				{
sl@0
  3013
				iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume ());
sl@0
  3014
				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
sl@0
  3015
				TRAPD(err, iMMFDevSound->PlayInitL());
sl@0
  3016
				if (err != KErrNone)
sl@0
  3017
					{
sl@0
  3018
					StopTest(err);
sl@0
  3019
					break;
sl@0
  3020
					}
sl@0
  3021
				StartTimer(KMicroSecsTwoSec);
sl@0
  3022
				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
sl@0
  3023
				iDevSoundState = EStatePlaying;
sl@0
  3024
				}
sl@0
  3025
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  3026
				{
sl@0
  3027
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  3028
				StopTest(aError);
sl@0
  3029
				}
sl@0
  3030
			else
sl@0
  3031
				{
sl@0
  3032
				ERR_PRINTF2(_L("DevSound EEventInitComplete was NOT received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  3033
				StopTest(aError, EFail);
sl@0
  3034
				}
sl@0
  3035
			break;
sl@0
  3036
			}
sl@0
  3037
		case EStatePlaying:
sl@0
  3038
			{
sl@0
  3039
			if (aDevSoundEvent == EEventBTBF)
sl@0
  3040
				{
sl@0
  3041
				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
sl@0
  3042
				TInt err = iFile.Read (buffer->Data ());
sl@0
  3043
				if (err != KErrNone)
sl@0
  3044
					{
sl@0
  3045
					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
sl@0
  3046
					StopTest(err);
sl@0
  3047
					break;
sl@0
  3048
					}
sl@0
  3049
				if (buffer->Data().Length ()!= buffer->RequestSize())
sl@0
  3050
					{
sl@0
  3051
					iBuffer->SetLastBuffer(ETrue);
sl@0
  3052
					}
sl@0
  3053
				INFO_PRINTF1(_L("CMMFDevSound::PlayData()"));
sl@0
  3054
				iMMFDevSound->PlayData();
sl@0
  3055
				}
sl@0
  3056
			else if (aDevSoundEvent == EEventTimerComplete)
sl@0
  3057
				{
sl@0
  3058
				TInt maxVolume = iMMFDevSound->MaxVolume();
sl@0
  3059
				INFO_PRINTF1(_L("Calling CMMFDevSound::MaxVolume"));
sl@0
  3060
				if(maxVolume == iExVolume)
sl@0
  3061
					{
sl@0
  3062
					INFO_PRINTF2(_L("Call to CMMFDevSound::MaxVolume succeeded with %d"), maxVolume);
sl@0
  3063
					StopTest();
sl@0
  3064
					}
sl@0
  3065
				else
sl@0
  3066
					{
sl@0
  3067
					ERR_PRINTF2(_L("Call to CMMFDevSound::MaxVolume failed with %d"), maxVolume);
sl@0
  3068
					ERR_PRINTF2(_L("Expected Max volume value = %d"), iExVolume);
sl@0
  3069
					StopTest(KErrNone, EFail);
sl@0
  3070
					}
sl@0
  3071
				}
sl@0
  3072
			else
sl@0
  3073
				{
sl@0
  3074
				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  3075
				StopTest(aError, EFail);
sl@0
  3076
				}
sl@0
  3077
			break;
sl@0
  3078
			}
sl@0
  3079
		default:
sl@0
  3080
			{
sl@0
  3081
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  3082
			StopTest(aError, EFail);
sl@0
  3083
			}
sl@0
  3084
		}
sl@0
  3085
	}
sl@0
  3086
sl@0
  3087
void RA3FDevSoundPlayMaxVolumeWhilePlayingTest::DoTimerCallback()
sl@0
  3088
	{
sl@0
  3089
	INFO_PRINTF1(_L("TimerEvent called"));
sl@0
  3090
	iTimer->Cancel();
sl@0
  3091
	INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
sl@0
  3092
	Fsm (EEventTimerComplete, KErrNone);
sl@0
  3093
	}
sl@0
  3094
sl@0
  3095
/*
sl@0
  3096
 *========================================================================================================
sl@0
  3097
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0024
sl@0
  3098
 */
sl@0
  3099
RA3FDevSoundPlaySamplesPlayedWhilePlayingTest::RA3FDevSoundPlaySamplesPlayedWhilePlayingTest(const TDesC& aTestName) :
sl@0
  3100
	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC),
sl@0
  3101
	iExSamplesPlayed(0)
sl@0
  3102
	{
sl@0
  3103
	}
sl@0
  3104
sl@0
  3105
RA3FDevSoundPlaySamplesPlayedWhilePlayingTest* RA3FDevSoundPlaySamplesPlayedWhilePlayingTest::NewL(const TDesC& aTestName)
sl@0
  3106
	{
sl@0
  3107
	RA3FDevSoundPlaySamplesPlayedWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlaySamplesPlayedWhilePlayingTest(aTestName);
sl@0
  3108
	return self;
sl@0
  3109
	}
sl@0
  3110
sl@0
  3111
void RA3FDevSoundPlaySamplesPlayedWhilePlayingTest::DoKickoffTestL()
sl@0
  3112
	{
sl@0
  3113
	TPtrC filename;
sl@0
  3114
	// Get the filename of the audio file to play
sl@0
  3115
	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
sl@0
  3116
		{
sl@0
  3117
		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
sl@0
  3118
		StopTest(KErrNotFound);
sl@0
  3119
		return;
sl@0
  3120
		}
sl@0
  3121
	// open using RFile for playback
sl@0
  3122
	iFilename.Copy(filename);
sl@0
  3123
	TInt err = iFile.Open (iFs, iFilename, EFileRead);
sl@0
  3124
	if (err != KErrNone)
sl@0
  3125
		{
sl@0
  3126
		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
sl@0
  3127
		iFs.Close();
sl@0
  3128
		StopTest(err);
sl@0
  3129
		return;
sl@0
  3130
		}
sl@0
  3131
	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
sl@0
  3132
	TPtrC fourccCode;
sl@0
  3133
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  3134
		{
sl@0
  3135
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  3136
		StopTest(KErrNotFound);
sl@0
  3137
		return;
sl@0
  3138
		}
sl@0
  3139
	EncodingFromStringToTFourCC(fourccCode);
sl@0
  3140
	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
sl@0
  3141
	}
sl@0
  3142
sl@0
  3143
void RA3FDevSoundPlaySamplesPlayedWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  3144
	{
sl@0
  3145
	switch (iDevSoundState)
sl@0
  3146
		{
sl@0
  3147
		case EStateCreated:
sl@0
  3148
			{
sl@0
  3149
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed));
sl@0
  3150
			if (aDevSoundEvent == EEventInitialize)
sl@0
  3151
				{
sl@0
  3152
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  3153
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  3154
				if (err != KErrNone)
sl@0
  3155
					{
sl@0
  3156
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  3157
					StopTest(err);
sl@0
  3158
					break;
sl@0
  3159
					}
sl@0
  3160
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  3161
				iDevSoundState = EStateInitializing;
sl@0
  3162
				}
sl@0
  3163
			else
sl@0
  3164
				{
sl@0
  3165
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  3166
				StopTest(aError, EFail);
sl@0
  3167
				}
sl@0
  3168
			break;
sl@0
  3169
			}
sl@0
  3170
		case EStateInitializing:
sl@0
  3171
			{
sl@0
  3172
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  3173
				{
sl@0
  3174
				iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
sl@0
  3175
				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
sl@0
  3176
				TRAPD(err, iMMFDevSound->PlayInitL());
sl@0
  3177
				if (err != KErrNone)
sl@0
  3178
					{
sl@0
  3179
					StopTest(err);
sl@0
  3180
					break;
sl@0
  3181
					}
sl@0
  3182
				StartTimer(KMicroSecsTwoSec);
sl@0
  3183
				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
sl@0
  3184
				iDevSoundState = EStatePlaying;
sl@0
  3185
				}
sl@0
  3186
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  3187
				{
sl@0
  3188
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  3189
				StopTest(aError);
sl@0
  3190
				}
sl@0
  3191
			else
sl@0
  3192
				{
sl@0
  3193
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  3194
				StopTest(aError, EFail);
sl@0
  3195
				}
sl@0
  3196
			break;
sl@0
  3197
			}
sl@0
  3198
		case EStatePlaying:
sl@0
  3199
			{
sl@0
  3200
			if (aDevSoundEvent == EEventBTBF)
sl@0
  3201
				{
sl@0
  3202
				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
sl@0
  3203
				TInt err = iFile.Read(buffer->Data ());
sl@0
  3204
				if (err != KErrNone)
sl@0
  3205
					{
sl@0
  3206
					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
sl@0
  3207
					StopTest (err);
sl@0
  3208
					break;
sl@0
  3209
					}
sl@0
  3210
				if (buffer->Data().Length()!= buffer->RequestSize())
sl@0
  3211
					{
sl@0
  3212
					iBuffer->SetLastBuffer(ETrue);
sl@0
  3213
					}
sl@0
  3214
				INFO_PRINTF1(_L("CMMFDevSound::PlayData()"));
sl@0
  3215
				iMMFDevSound->PlayData();
sl@0
  3216
				}
sl@0
  3217
			else if (aDevSoundEvent == EEventTimerComplete)
sl@0
  3218
				{
sl@0
  3219
				INFO_PRINTF1(_L("Calling CMMFDevSound::SamplesPlayed"));
sl@0
  3220
				TInt samplesPlayed = iMMFDevSound->SamplesPlayed();
sl@0
  3221
				INFO_PRINTF2(_L("Samples played so far %d"), samplesPlayed);
sl@0
  3222
				if(samplesPlayed > 0)
sl@0
  3223
					{
sl@0
  3224
					INFO_PRINTF2(_L("Samples returned by CMMFDevSound::SamplesPlayed: %d matches the expected value which is > 0"), samplesPlayed);
sl@0
  3225
					StopTest();
sl@0
  3226
					}
sl@0
  3227
				else
sl@0
  3228
					{
sl@0
  3229
					ERR_PRINTF2(_L("Samples played returned an invalid value %d"), samplesPlayed);
sl@0
  3230
					ERR_PRINTF1(_L("Expected value must be a positive value greater than 0"));
sl@0
  3231
					StopTest(aError, EFail);
sl@0
  3232
					
sl@0
  3233
					}
sl@0
  3234
				}
sl@0
  3235
			else
sl@0
  3236
				{
sl@0
  3237
				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  3238
				StopTest(aError, EFail);
sl@0
  3239
				}
sl@0
  3240
			break;
sl@0
  3241
			}
sl@0
  3242
		default:
sl@0
  3243
			{
sl@0
  3244
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  3245
			StopTest(aError, EFail);
sl@0
  3246
			}
sl@0
  3247
		}
sl@0
  3248
	}
sl@0
  3249
sl@0
  3250
void RA3FDevSoundPlaySamplesPlayedWhilePlayingTest::DoTimerCallback()
sl@0
  3251
	{
sl@0
  3252
	INFO_PRINTF1(_L("TimerEvent called"));
sl@0
  3253
	iTimer->Cancel();
sl@0
  3254
	INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
sl@0
  3255
	Fsm(EEventTimerComplete, KErrNone);
sl@0
  3256
	}
sl@0
  3257
sl@0
  3258
/*
sl@0
  3259
 *========================================================================================================
sl@0
  3260
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0025
sl@0
  3261
 */
sl@0
  3262
sl@0
  3263
RA3FDevSoundPlayVolumeWhilePlayingTest::RA3FDevSoundPlayVolumeWhilePlayingTest(const TDesC& aTestName) :
sl@0
  3264
	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC), 
sl@0
  3265
	iExVolume(0)
sl@0
  3266
	{
sl@0
  3267
	}
sl@0
  3268
sl@0
  3269
RA3FDevSoundPlayVolumeWhilePlayingTest* RA3FDevSoundPlayVolumeWhilePlayingTest::NewL(const TDesC& aTestName)
sl@0
  3270
	{
sl@0
  3271
	RA3FDevSoundPlayVolumeWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayVolumeWhilePlayingTest(aTestName);
sl@0
  3272
	return self;
sl@0
  3273
	}
sl@0
  3274
sl@0
  3275
void RA3FDevSoundPlayVolumeWhilePlayingTest::DoKickoffTestL()
sl@0
  3276
	{
sl@0
  3277
	TPtrC filename;
sl@0
  3278
	// Get the filename of the audio file to play
sl@0
  3279
	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
sl@0
  3280
		{
sl@0
  3281
		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
sl@0
  3282
		StopTest(KErrNotFound);
sl@0
  3283
		return;
sl@0
  3284
		}
sl@0
  3285
	// open using RFile for playback
sl@0
  3286
	iFilename.Copy(filename);
sl@0
  3287
	TInt err = iFile.Open(iFs, iFilename, EFileRead);
sl@0
  3288
	if (err != KErrNone)
sl@0
  3289
		{
sl@0
  3290
		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
sl@0
  3291
		iFs.Close();
sl@0
  3292
		StopTest(err);
sl@0
  3293
		return;
sl@0
  3294
		}
sl@0
  3295
	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
sl@0
  3296
	TPtrC fourccCode;
sl@0
  3297
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  3298
		{
sl@0
  3299
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  3300
		StopTest(KErrNotFound);
sl@0
  3301
		return;
sl@0
  3302
		}
sl@0
  3303
	if (!GetIntFromConfig(iTestStepName, KExVolume, iExVolume))
sl@0
  3304
		{
sl@0
  3305
		ERR_PRINTF2(KMsgErrorGetParameter, &KExVolume);
sl@0
  3306
		StopTest(KErrNotFound);
sl@0
  3307
		return;
sl@0
  3308
		}
sl@0
  3309
	EncodingFromStringToTFourCC(fourccCode);
sl@0
  3310
	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
sl@0
  3311
	}
sl@0
  3312
sl@0
  3313
void RA3FDevSoundPlayVolumeWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  3314
	{
sl@0
  3315
	switch (iDevSoundState)
sl@0
  3316
		{
sl@0
  3317
		case EStateCreated:
sl@0
  3318
			{
sl@0
  3319
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed));
sl@0
  3320
			if (aDevSoundEvent == EEventInitialize)
sl@0
  3321
				{
sl@0
  3322
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  3323
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  3324
				if (err != KErrNone)
sl@0
  3325
					{
sl@0
  3326
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  3327
					StopTest(err);
sl@0
  3328
					break;
sl@0
  3329
					}
sl@0
  3330
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  3331
				iDevSoundState = EStateInitializing;
sl@0
  3332
				}
sl@0
  3333
			else
sl@0
  3334
				{
sl@0
  3335
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  3336
				StopTest(aError, EFail);
sl@0
  3337
				}
sl@0
  3338
			break;
sl@0
  3339
			}
sl@0
  3340
		case EStateInitializing:
sl@0
  3341
			{
sl@0
  3342
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  3343
				{
sl@0
  3344
				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
sl@0
  3345
				TRAPD(err, iMMFDevSound->PlayInitL());
sl@0
  3346
				if (err != KErrNone)
sl@0
  3347
					{
sl@0
  3348
					StopTest(err);
sl@0
  3349
					break;
sl@0
  3350
					}
sl@0
  3351
				StartTimer (KMicroSecsTwoSec);
sl@0
  3352
				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
sl@0
  3353
				iDevSoundState = EStatePlaying;
sl@0
  3354
				}
sl@0
  3355
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  3356
					{
sl@0
  3357
					ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  3358
					StopTest(aError);
sl@0
  3359
					}
sl@0
  3360
				else
sl@0
  3361
					{
sl@0
  3362
					ERR_PRINTF2(_L("DevSound EEventInitComplete NOT received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  3363
					StopTest(aError, EFail);
sl@0
  3364
					}
sl@0
  3365
			break;
sl@0
  3366
			}
sl@0
  3367
		case EStatePlaying:
sl@0
  3368
			{
sl@0
  3369
			if (aDevSoundEvent == EEventBTBF)
sl@0
  3370
				{
sl@0
  3371
				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
sl@0
  3372
				TInt err = iFile.Read(buffer->Data ());
sl@0
  3373
				if (err != KErrNone)
sl@0
  3374
					{
sl@0
  3375
					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
sl@0
  3376
					StopTest(err);
sl@0
  3377
					break;
sl@0
  3378
					}
sl@0
  3379
				if (buffer->Data().Length()!= buffer->RequestSize())
sl@0
  3380
					{
sl@0
  3381
					iBuffer->SetLastBuffer(ETrue);
sl@0
  3382
					}
sl@0
  3383
				INFO_PRINTF1(_L("CMMFDevSound::PlayData()"));
sl@0
  3384
				iMMFDevSound->PlayData();
sl@0
  3385
				}
sl@0
  3386
			else if (aDevSoundEvent == EEventTimerComplete)
sl@0
  3387
				{
sl@0
  3388
				INFO_PRINTF1(_L("Calling CMMFDevSound::Volume"));
sl@0
  3389
				TInt volumeGet = iMMFDevSound->Volume();
sl@0
  3390
				if(volumeGet == iExVolume)
sl@0
  3391
					{
sl@0
  3392
					INFO_PRINTF2(_L("Default device volume succeeded with = %d"), volumeGet);
sl@0
  3393
					}
sl@0
  3394
				else
sl@0
  3395
					{
sl@0
  3396
					ERR_PRINTF2(_L("Default device volume failed with = %d"), volumeGet);
sl@0
  3397
					ERR_PRINTF2(_L("Expected value = % d"), iExVolume);
sl@0
  3398
					StopTest(aError , EFail);
sl@0
  3399
					}
sl@0
  3400
				}
sl@0
  3401
			else
sl@0
  3402
				{
sl@0
  3403
				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  3404
				StopTest(aError, EFail);
sl@0
  3405
				}
sl@0
  3406
			break;
sl@0
  3407
			}
sl@0
  3408
		default:
sl@0
  3409
			{
sl@0
  3410
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  3411
			StopTest(aError, EFail);
sl@0
  3412
			}
sl@0
  3413
		}
sl@0
  3414
	}
sl@0
  3415
sl@0
  3416
void RA3FDevSoundPlayVolumeWhilePlayingTest::DoTimerCallback()
sl@0
  3417
	{
sl@0
  3418
	INFO_PRINTF1(_L("TimerEvent called"));
sl@0
  3419
	iTimer->Cancel();
sl@0
  3420
	INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
sl@0
  3421
	Fsm(EEventTimerComplete, KErrNone);
sl@0
  3422
	}
sl@0
  3423
sl@0
  3424
/*
sl@0
  3425
 *========================================================================================================
sl@0
  3426
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0026
sl@0
  3427
 */
sl@0
  3428
RA3FDevSoundPlayTest::RA3FDevSoundPlayTest(const TDesC& aTestName) :
sl@0
  3429
	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC)
sl@0
  3430
	{
sl@0
  3431
	}
sl@0
  3432
sl@0
  3433
RA3FDevSoundPlayTest* RA3FDevSoundPlayTest::NewL(const TDesC& aTestName)
sl@0
  3434
	{
sl@0
  3435
	RA3FDevSoundPlayTest* self = new (ELeave) RA3FDevSoundPlayTest(aTestName);
sl@0
  3436
	return self;
sl@0
  3437
	}
sl@0
  3438
sl@0
  3439
void RA3FDevSoundPlayTest::DoKickoffTestL()
sl@0
  3440
	{
sl@0
  3441
	TPtrC filename;
sl@0
  3442
	// Get the filename of the audio file to play
sl@0
  3443
	if ( !GetStringFromConfig(iTestStepName, KFilename, filename))
sl@0
  3444
		{
sl@0
  3445
		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
sl@0
  3446
		StopTest (KErrNotFound);
sl@0
  3447
		return;
sl@0
  3448
		}
sl@0
  3449
	// open using RFile for playback
sl@0
  3450
	iFilename.Copy (filename);
sl@0
  3451
	TInt err = iFile.Open (iFs, iFilename, EFileRead);
sl@0
  3452
	if (err != KErrNone)
sl@0
  3453
		{
sl@0
  3454
		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
sl@0
  3455
		iFs.Close();
sl@0
  3456
		StopTest(err);
sl@0
  3457
		return;
sl@0
  3458
		}
sl@0
  3459
	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
sl@0
  3460
	TPtrC fourccCode;
sl@0
  3461
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  3462
		{
sl@0
  3463
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  3464
		StopTest (KErrNotFound);
sl@0
  3465
		return;
sl@0
  3466
		}
sl@0
  3467
	EncodingFromStringToTFourCC (fourccCode);
sl@0
  3468
	}
sl@0
  3469
sl@0
  3470
void RA3FDevSoundPlayTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  3471
	{
sl@0
  3472
	switch (iDevSoundState)
sl@0
  3473
		{
sl@0
  3474
		case EStateCreated:
sl@0
  3475
			{
sl@0
  3476
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayCapabilitiesPlayingTest"), EFsmIncorrectErrorPassed));
sl@0
  3477
			if (aDevSoundEvent == EEventInitialize)
sl@0
  3478
				{
sl@0
  3479
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  3480
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  3481
				if (err != KErrNone)
sl@0
  3482
					{
sl@0
  3483
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  3484
					StopTest (err);
sl@0
  3485
					break;
sl@0
  3486
					}
sl@0
  3487
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  3488
				iDevSoundState = EStateInitializing;
sl@0
  3489
				}
sl@0
  3490
			else
sl@0
  3491
				{
sl@0
  3492
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  3493
				StopTest(aError, EFail);
sl@0
  3494
				}
sl@0
  3495
			break;
sl@0
  3496
			}
sl@0
  3497
		case EStateInitializing:
sl@0
  3498
			{
sl@0
  3499
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  3500
				{
sl@0
  3501
				iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ());
sl@0
  3502
				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
sl@0
  3503
				TRAPD(err, iMMFDevSound->PlayInitL());
sl@0
  3504
				if (err != KErrNone)
sl@0
  3505
					{
sl@0
  3506
					StopTest(err);
sl@0
  3507
					break;
sl@0
  3508
					}
sl@0
  3509
				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
sl@0
  3510
				iDevSoundState = EStatePlaying;
sl@0
  3511
				}
sl@0
  3512
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  3513
				{
sl@0
  3514
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  3515
				StopTest(aError);
sl@0
  3516
				}
sl@0
  3517
			else
sl@0
  3518
				{
sl@0
  3519
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  3520
				StopTest(aError, EFail);
sl@0
  3521
				}
sl@0
  3522
			break;
sl@0
  3523
			}
sl@0
  3524
		case EStatePlaying:
sl@0
  3525
			{
sl@0
  3526
			if (aDevSoundEvent == EEventBTBF)
sl@0
  3527
				{
sl@0
  3528
				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
sl@0
  3529
				TInt err = iFile.Read (buffer->Data ());
sl@0
  3530
				if (err != KErrNone)
sl@0
  3531
					{
sl@0
  3532
					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
sl@0
  3533
					StopTest(err);
sl@0
  3534
					break;
sl@0
  3535
					}
sl@0
  3536
				if (buffer->Data().Length()!= buffer->RequestSize())
sl@0
  3537
					{
sl@0
  3538
					iBuffer->SetLastBuffer(ETrue);
sl@0
  3539
					}
sl@0
  3540
				INFO_PRINTF1(_L("CMMFDevSound::PlayData()"));
sl@0
  3541
				iMMFDevSound->PlayData();
sl@0
  3542
				}
sl@0
  3543
			else
sl@0
  3544
				{
sl@0
  3545
				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  3546
				StopTest(aError, EFail);
sl@0
  3547
				}
sl@0
  3548
			break;
sl@0
  3549
			}
sl@0
  3550
		default:
sl@0
  3551
			{
sl@0
  3552
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  3553
			StopTest(aError, EFail);
sl@0
  3554
			}
sl@0
  3555
		}
sl@0
  3556
	}
sl@0
  3557
sl@0
  3558
/*
sl@0
  3559
 *========================================================================================================
sl@0
  3560
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0027
sl@0
  3561
 */
sl@0
  3562
RA3FDevSoundPlayEmptyBufferWhilePlayingTest::RA3FDevSoundPlayEmptyBufferWhilePlayingTest(const TDesC& aTestName) :
sl@0
  3563
	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC)
sl@0
  3564
	{
sl@0
  3565
	}
sl@0
  3566
sl@0
  3567
RA3FDevSoundPlayEmptyBufferWhilePlayingTest* RA3FDevSoundPlayEmptyBufferWhilePlayingTest::NewL(const TDesC& aTestName)
sl@0
  3568
	{
sl@0
  3569
	RA3FDevSoundPlayEmptyBufferWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayEmptyBufferWhilePlayingTest(aTestName);
sl@0
  3570
	return self;
sl@0
  3571
	}
sl@0
  3572
sl@0
  3573
void RA3FDevSoundPlayEmptyBufferWhilePlayingTest::DoKickoffTestL()
sl@0
  3574
	{
sl@0
  3575
	TPtrC filename;
sl@0
  3576
	// Get the filename of the audio file to play
sl@0
  3577
	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
sl@0
  3578
		{
sl@0
  3579
		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
sl@0
  3580
		StopTest(KErrNotFound);
sl@0
  3581
		return;
sl@0
  3582
		}
sl@0
  3583
	// open using RFile for playback
sl@0
  3584
	iFilename.Copy(filename);
sl@0
  3585
	TInt err = iFile.Open(iFs, iFilename, EFileRead);
sl@0
  3586
	if (err != KErrNone)
sl@0
  3587
		{
sl@0
  3588
		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
sl@0
  3589
		StopTest(err);
sl@0
  3590
		return;
sl@0
  3591
		}
sl@0
  3592
sl@0
  3593
	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
sl@0
  3594
sl@0
  3595
	TPtrC fourccCode;
sl@0
  3596
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  3597
		{
sl@0
  3598
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  3599
		StopTest(KErrNotFound);
sl@0
  3600
		return;
sl@0
  3601
		}
sl@0
  3602
	EncodingFromStringToTFourCC(fourccCode);
sl@0
  3603
	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
sl@0
  3604
	}
sl@0
  3605
sl@0
  3606
void RA3FDevSoundPlayEmptyBufferWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  3607
	{
sl@0
  3608
	switch (iDevSoundState)
sl@0
  3609
		{
sl@0
  3610
		case EStateCreated:
sl@0
  3611
			{
sl@0
  3612
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayEmptyBufferPlayingTest"), EFsmIncorrectErrorPassed));
sl@0
  3613
			if (aDevSoundEvent == EEventInitialize)
sl@0
  3614
				{
sl@0
  3615
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  3616
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  3617
				if (err != KErrNone)
sl@0
  3618
					{
sl@0
  3619
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  3620
					StopTest(err);
sl@0
  3621
					break;
sl@0
  3622
					}
sl@0
  3623
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  3624
				iDevSoundState = EStateInitializing;
sl@0
  3625
				}
sl@0
  3626
			else
sl@0
  3627
				{
sl@0
  3628
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  3629
				StopTest(aError, EFail);
sl@0
  3630
				}
sl@0
  3631
			break;
sl@0
  3632
			}
sl@0
  3633
		case EStateInitializing:
sl@0
  3634
			{
sl@0
  3635
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  3636
				{
sl@0
  3637
				iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ());
sl@0
  3638
				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
sl@0
  3639
				TRAPD(err, iMMFDevSound->PlayInitL());
sl@0
  3640
				if (err != KErrNone)
sl@0
  3641
					{
sl@0
  3642
					StopTest(err);
sl@0
  3643
					break;
sl@0
  3644
					}
sl@0
  3645
				StartTimer(KMicroSecsTwoSec);
sl@0
  3646
				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
sl@0
  3647
				iDevSoundState = EStatePlaying;
sl@0
  3648
				}
sl@0
  3649
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  3650
				{
sl@0
  3651
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  3652
				StopTest(aError, EFail);
sl@0
  3653
				}
sl@0
  3654
			else
sl@0
  3655
				{
sl@0
  3656
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  3657
				StopTest(aError, EFail);
sl@0
  3658
				}
sl@0
  3659
			break;
sl@0
  3660
			}
sl@0
  3661
		case EStatePlaying:
sl@0
  3662
			{
sl@0
  3663
			if (aDevSoundEvent == EEventBTBF)
sl@0
  3664
				{
sl@0
  3665
				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
sl@0
  3666
				TInt err = iFile.Read(buffer->Data());
sl@0
  3667
				if (err != KErrNone)
sl@0
  3668
					{
sl@0
  3669
					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
sl@0
  3670
					StopTest(err);
sl@0
  3671
					break;
sl@0
  3672
					}
sl@0
  3673
				if (buffer->Data().Length ()!= buffer->RequestSize ())
sl@0
  3674
					{
sl@0
  3675
					iBuffer->SetLastBuffer(ETrue);
sl@0
  3676
					}
sl@0
  3677
				INFO_PRINTF1(_L("CMMFDevSound::PlayData()"));
sl@0
  3678
				iMMFDevSound->PlayData();
sl@0
  3679
				}
sl@0
  3680
			else if (aDevSoundEvent == EEventTimerComplete)
sl@0
  3681
				{
sl@0
  3682
				INFO_PRINTF1(_L("Calling CMMFDevSound::EmptyBuffers()"));
sl@0
  3683
				TInt err = iMMFDevSound->EmptyBuffers();
sl@0
  3684
				if (err == KErrNone)
sl@0
  3685
					{
sl@0
  3686
					INFO_PRINTF2(_L("Call EmptyBuffers() while playing returned error = %d"), err);
sl@0
  3687
					StopTest();
sl@0
  3688
					break;
sl@0
  3689
					}
sl@0
  3690
				else
sl@0
  3691
					{
sl@0
  3692
					ERR_PRINTF2(_L("Call EmptyBuffers() while playing returned  error = %d"), err);
sl@0
  3693
					ERR_PRINTF2(_L("Expected error = %d"), KErrNone);
sl@0
  3694
					StopTest(err);
sl@0
  3695
					break;
sl@0
  3696
					}
sl@0
  3697
				}
sl@0
  3698
			else
sl@0
  3699
				{
sl@0
  3700
				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  3701
				StopTest(aError, EFail);
sl@0
  3702
				}
sl@0
  3703
			break;
sl@0
  3704
			}
sl@0
  3705
		default:
sl@0
  3706
			{
sl@0
  3707
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  3708
			StopTest (aError, EFail);
sl@0
  3709
			}
sl@0
  3710
		}
sl@0
  3711
	}
sl@0
  3712
sl@0
  3713
void RA3FDevSoundPlayEmptyBufferWhilePlayingTest::DoTimerCallback()
sl@0
  3714
	{
sl@0
  3715
	INFO_PRINTF1(_L("TimerEvent called"));
sl@0
  3716
	iTimer->Cancel();
sl@0
  3717
	INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
sl@0
  3718
	Fsm(EEventTimerComplete, KErrNone);
sl@0
  3719
	}
sl@0
  3720
sl@0
  3721
/*
sl@0
  3722
 *========================================================================================================
sl@0
  3723
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0028
sl@0
  3724
 */
sl@0
  3725
RA3FDevSoundPlayEmptyBufferBeforePlayingTest::RA3FDevSoundPlayEmptyBufferBeforePlayingTest(const TDesC& aTestName) :
sl@0
  3726
	RA3FDevSoundTestBase(aTestName)
sl@0
  3727
	{
sl@0
  3728
	}
sl@0
  3729
sl@0
  3730
RA3FDevSoundPlayEmptyBufferBeforePlayingTest* RA3FDevSoundPlayEmptyBufferBeforePlayingTest::NewL(const TDesC& aTestName)
sl@0
  3731
	{
sl@0
  3732
	RA3FDevSoundPlayEmptyBufferBeforePlayingTest* self = new (ELeave) RA3FDevSoundPlayEmptyBufferBeforePlayingTest(aTestName);
sl@0
  3733
	return self;
sl@0
  3734
	}
sl@0
  3735
sl@0
  3736
void RA3FDevSoundPlayEmptyBufferBeforePlayingTest::DoKickoffTestL()
sl@0
  3737
	{
sl@0
  3738
	TPtrC fourccCode;
sl@0
  3739
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  3740
		{
sl@0
  3741
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  3742
		StopTest(KErrNotFound);
sl@0
  3743
		return;
sl@0
  3744
		}
sl@0
  3745
	EncodingFromStringToTFourCC(fourccCode);
sl@0
  3746
	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
sl@0
  3747
	}
sl@0
  3748
sl@0
  3749
void RA3FDevSoundPlayEmptyBufferBeforePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  3750
	{
sl@0
  3751
	switch (iDevSoundState)
sl@0
  3752
		{
sl@0
  3753
		case EStateCreated:
sl@0
  3754
			{
sl@0
  3755
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayEmptyBufferPlayingTest"), EFsmIncorrectErrorPassed));
sl@0
  3756
			if (aDevSoundEvent == EEventInitialize)
sl@0
  3757
				{
sl@0
  3758
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  3759
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying))	;
sl@0
  3760
				if (err != KErrNone)
sl@0
  3761
					{
sl@0
  3762
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  3763
					StopTest(err);
sl@0
  3764
					break;
sl@0
  3765
					}
sl@0
  3766
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  3767
				iDevSoundState = EStateInitializing;
sl@0
  3768
				}
sl@0
  3769
			else
sl@0
  3770
				{
sl@0
  3771
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  3772
				StopTest(aError, EFail);
sl@0
  3773
				}
sl@0
  3774
			break;
sl@0
  3775
			}
sl@0
  3776
		case EStateInitializing:
sl@0
  3777
			{
sl@0
  3778
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  3779
				{
sl@0
  3780
				INFO_PRINTF1(_L("Calling CMMFDevSound::EmptyBuffers()"));
sl@0
  3781
				TInt err = iMMFDevSound->EmptyBuffers ();
sl@0
  3782
				if (err == KErrNotReady)
sl@0
  3783
					{
sl@0
  3784
					INFO_PRINTF2(_L("Calling CMMFDevSound::EmptyBuffers after initialization and before playback returned with the expected error = %d"), err);
sl@0
  3785
					StopTest();
sl@0
  3786
					break;
sl@0
  3787
					}
sl@0
  3788
				else
sl@0
  3789
					{
sl@0
  3790
					ERR_PRINTF2(_L("Calling CMMFDevSound::EmptyBuffers after initialization and before playback returned with error = %d"), err);
sl@0
  3791
					ERR_PRINTF2(_L("Expected error = %d"), KErrNotReady);
sl@0
  3792
					StopTest(err, EFail);
sl@0
  3793
					}
sl@0
  3794
				}
sl@0
  3795
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  3796
				{
sl@0
  3797
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  3798
				StopTest(aError, EFail);
sl@0
  3799
				}
sl@0
  3800
			else
sl@0
  3801
				{
sl@0
  3802
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  3803
				StopTest(aError, EFail);
sl@0
  3804
				}
sl@0
  3805
			break;
sl@0
  3806
			}
sl@0
  3807
		default:
sl@0
  3808
			{
sl@0
  3809
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  3810
			StopTest(aError, EFail);
sl@0
  3811
			}
sl@0
  3812
		}
sl@0
  3813
	}
sl@0
  3814
sl@0
  3815
/*
sl@0
  3816
 *========================================================================================================
sl@0
  3817
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0029
sl@0
  3818
 */
sl@0
  3819
RA3FDevSoundPlayPauseTest::RA3FDevSoundPlayPauseTest(const TDesC& aTestName) :
sl@0
  3820
	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC),
sl@0
  3821
	iPaused(EFalse), iSamplesPlayedPaused(0)
sl@0
  3822
	{
sl@0
  3823
	}
sl@0
  3824
sl@0
  3825
RA3FDevSoundPlayPauseTest* RA3FDevSoundPlayPauseTest::NewL(const TDesC& aTestName)
sl@0
  3826
	{
sl@0
  3827
	RA3FDevSoundPlayPauseTest* self = new (ELeave) RA3FDevSoundPlayPauseTest(aTestName);
sl@0
  3828
	return self;
sl@0
  3829
	}
sl@0
  3830
sl@0
  3831
void RA3FDevSoundPlayPauseTest::DoKickoffTestL()
sl@0
  3832
	{
sl@0
  3833
	TPtrC filename;
sl@0
  3834
	// Get the filename of the audio file to play
sl@0
  3835
	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
sl@0
  3836
		{
sl@0
  3837
		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
sl@0
  3838
		StopTest(KErrNotFound);
sl@0
  3839
		return;
sl@0
  3840
		}
sl@0
  3841
	// open using RFile for playback
sl@0
  3842
	iFilename.Copy(filename);
sl@0
  3843
	TInt err = iFile.Open(iFs, iFilename, EFileRead);
sl@0
  3844
	if (err != KErrNone)
sl@0
  3845
		{
sl@0
  3846
		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
sl@0
  3847
		iFs.Close();
sl@0
  3848
		StopTest(err);
sl@0
  3849
		return;
sl@0
  3850
		}
sl@0
  3851
sl@0
  3852
	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
sl@0
  3853
sl@0
  3854
	TPtrC fourccCode;
sl@0
  3855
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  3856
		{
sl@0
  3857
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  3858
		StopTest(KErrNotFound);
sl@0
  3859
		return;
sl@0
  3860
		}
sl@0
  3861
	EncodingFromStringToTFourCC(fourccCode);
sl@0
  3862
	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
sl@0
  3863
	}
sl@0
  3864
sl@0
  3865
void RA3FDevSoundPlayPauseTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  3866
	{
sl@0
  3867
	switch (iDevSoundState)
sl@0
  3868
		{
sl@0
  3869
		case EStateCreated:
sl@0
  3870
			{
sl@0
  3871
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPauseTest"), EFsmIncorrectErrorPassed));
sl@0
  3872
			if (aDevSoundEvent == EEventInitialize)
sl@0
  3873
				{
sl@0
  3874
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  3875
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  3876
				if (err != KErrNone)
sl@0
  3877
					{
sl@0
  3878
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  3879
					StopTest(err);
sl@0
  3880
					break;
sl@0
  3881
					}
sl@0
  3882
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  3883
				iDevSoundState = EStateInitializing;
sl@0
  3884
				}
sl@0
  3885
			else
sl@0
  3886
				{
sl@0
  3887
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  3888
				StopTest(aError, EFail);
sl@0
  3889
				}
sl@0
  3890
			break;
sl@0
  3891
			}
sl@0
  3892
		case EStateInitializing:
sl@0
  3893
			{
sl@0
  3894
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  3895
				{
sl@0
  3896
				iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ());
sl@0
  3897
				INFO_PRINTF1(_L("CMMFDevSound::PlayInitL"));
sl@0
  3898
				TRAPD(err, iMMFDevSound->PlayInitL());
sl@0
  3899
				if (err != KErrNone)
sl@0
  3900
					{
sl@0
  3901
					StopTest (err);
sl@0
  3902
					break;
sl@0
  3903
					}
sl@0
  3904
				StartTimer(KMicroSecsTwoSec);
sl@0
  3905
				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
sl@0
  3906
				iDevSoundState = EStatePlaying;
sl@0
  3907
				}
sl@0
  3908
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  3909
				{
sl@0
  3910
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  3911
				StopTest(aError);
sl@0
  3912
				}
sl@0
  3913
			else
sl@0
  3914
				{
sl@0
  3915
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  3916
				StopTest(aError, EFail);
sl@0
  3917
				}
sl@0
  3918
			break;
sl@0
  3919
			}
sl@0
  3920
		case EStatePlaying:
sl@0
  3921
			{
sl@0
  3922
			if (aDevSoundEvent == EEventBTBF)
sl@0
  3923
				{
sl@0
  3924
				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
sl@0
  3925
				TInt err = iFile.Read (buffer->Data ());
sl@0
  3926
				if (err != KErrNone)
sl@0
  3927
					{
sl@0
  3928
					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
sl@0
  3929
					StopTest(err);
sl@0
  3930
					break;
sl@0
  3931
					}
sl@0
  3932
				if (buffer->Data().Length()!= buffer->RequestSize())
sl@0
  3933
					{
sl@0
  3934
					iBuffer->SetLastBuffer(ETrue);
sl@0
  3935
					}
sl@0
  3936
				INFO_PRINTF1(_L("CMMFDevSound::PlayData"));
sl@0
  3937
				iMMFDevSound->PlayData();
sl@0
  3938
				}
sl@0
  3939
			else if (aDevSoundEvent == EEventTimerComplete)
sl@0
  3940
				{
sl@0
  3941
				INFO_PRINTF1(_L("Calling CMMFDevSound::Pause"));
sl@0
  3942
				iMMFDevSound->Pause();
sl@0
  3943
				iDevSoundState = EStatePause;
sl@0
  3944
				INFO_PRINTF1(_L("Calling CMMFDevSound::SamplesPlayed"));
sl@0
  3945
				iSamplesPlayedPaused = iMMFDevSound->SamplesPlayed();
sl@0
  3946
				INFO_PRINTF2(_L("The number of samples played is %d"), iSamplesPlayedPaused);
sl@0
  3947
				}
sl@0
  3948
			else
sl@0
  3949
				{
sl@0
  3950
				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  3951
				StopTest(aError, EFail);
sl@0
  3952
				}
sl@0
  3953
			break;
sl@0
  3954
			}
sl@0
  3955
		case EStatePause:
sl@0
  3956
			{
sl@0
  3957
			if (aDevSoundEvent == EEventTimerComplete)
sl@0
  3958
				{
sl@0
  3959
				TInt samplesPlayed = iMMFDevSound->SamplesPlayed();
sl@0
  3960
				INFO_PRINTF2(_L("Samples returned by CMMFDevSound::SamplesPlayed = %d"), samplesPlayed);
sl@0
  3961
				if(iSamplesPlayedPaused == samplesPlayed)
sl@0
  3962
					{
sl@0
  3963
					INFO_PRINTF3(_L("Samples returned by CMMFDevSound::SamplesPlayed: %d matches the expected samples played: %d"), samplesPlayed, iSamplesPlayedPaused);
sl@0
  3964
					StopTest();
sl@0
  3965
					}
sl@0
  3966
				else
sl@0
  3967
					{
sl@0
  3968
					ERR_PRINTF2(_L("Call to CMMFDevSound::SamplesPlayed do not match the expected value = %d"), samplesPlayed);
sl@0
  3969
					ERR_PRINTF2(_L("Expected Samples played value = %d"), iSamplesPlayedPaused);
sl@0
  3970
					StopTest(KErrNone, EFail);
sl@0
  3971
					}
sl@0
  3972
				}
sl@0
  3973
			else
sl@0
  3974
				{
sl@0
  3975
				ERR_PRINTF2(_L("EEventTimerComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  3976
				StopTest(aError, EFail);
sl@0
  3977
				}
sl@0
  3978
			break;
sl@0
  3979
			}
sl@0
  3980
		default:
sl@0
  3981
			{
sl@0
  3982
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  3983
			StopTest(aError, EFail);
sl@0
  3984
			}
sl@0
  3985
		}
sl@0
  3986
	}
sl@0
  3987
sl@0
  3988
void RA3FDevSoundPlayPauseTest::DoTimerCallback()
sl@0
  3989
	{
sl@0
  3990
	INFO_PRINTF1(_L("TimerEvent called"));
sl@0
  3991
	if (!iPaused)
sl@0
  3992
		{
sl@0
  3993
		INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
sl@0
  3994
		Fsm(EEventTimerComplete, KErrNone);
sl@0
  3995
		iPaused = ETrue;
sl@0
  3996
		}
sl@0
  3997
	else
sl@0
  3998
		{
sl@0
  3999
		iTimer->Cancel();
sl@0
  4000
		INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
sl@0
  4001
		Fsm(EEventTimerComplete, KErrNone);
sl@0
  4002
		}
sl@0
  4003
	}
sl@0
  4004
sl@0
  4005
/*
sl@0
  4006
 *========================================================================================================
sl@0
  4007
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0030
sl@0
  4008
 */
sl@0
  4009
RA3FDevSoundPlayStopTest::RA3FDevSoundPlayStopTest(const TDesC& aTestName) :
sl@0
  4010
	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC), iStopped(EFalse)
sl@0
  4011
	{
sl@0
  4012
	}
sl@0
  4013
sl@0
  4014
RA3FDevSoundPlayStopTest* RA3FDevSoundPlayStopTest::NewL(const TDesC& aTestName)
sl@0
  4015
	{
sl@0
  4016
	RA3FDevSoundPlayStopTest* self = new (ELeave) RA3FDevSoundPlayStopTest(aTestName);
sl@0
  4017
	return self;
sl@0
  4018
	}
sl@0
  4019
sl@0
  4020
void RA3FDevSoundPlayStopTest::DoKickoffTestL()
sl@0
  4021
	{
sl@0
  4022
	TPtrC filename;
sl@0
  4023
	// Get the filename of the audio file to play
sl@0
  4024
	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
sl@0
  4025
		{
sl@0
  4026
		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
sl@0
  4027
		StopTest(KErrNotFound);
sl@0
  4028
		return;
sl@0
  4029
		}
sl@0
  4030
	// open using RFile for playback
sl@0
  4031
	iFilename.Copy(filename);
sl@0
  4032
	TInt err = iFile.Open(iFs, iFilename, EFileRead);
sl@0
  4033
	if (err != KErrNone)
sl@0
  4034
		{
sl@0
  4035
		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
sl@0
  4036
		iFs.Close();
sl@0
  4037
		StopTest(err);
sl@0
  4038
		return;
sl@0
  4039
		}
sl@0
  4040
sl@0
  4041
	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
sl@0
  4042
sl@0
  4043
	TPtrC fourccCode;
sl@0
  4044
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  4045
		{
sl@0
  4046
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  4047
		StopTest(KErrNotFound);
sl@0
  4048
		return;
sl@0
  4049
		}
sl@0
  4050
	EncodingFromStringToTFourCC(fourccCode);
sl@0
  4051
	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
sl@0
  4052
	}
sl@0
  4053
sl@0
  4054
void RA3FDevSoundPlayStopTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  4055
	{
sl@0
  4056
	switch (iDevSoundState)
sl@0
  4057
		{
sl@0
  4058
		case EStateCreated:
sl@0
  4059
			{
sl@0
  4060
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayStopTest"), EFsmIncorrectErrorPassed));
sl@0
  4061
			if (aDevSoundEvent == EEventInitialize)
sl@0
  4062
				{
sl@0
  4063
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  4064
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  4065
				if (err != KErrNone)
sl@0
  4066
					{
sl@0
  4067
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  4068
					StopTest(err);
sl@0
  4069
					break;
sl@0
  4070
					}
sl@0
  4071
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  4072
				iDevSoundState = EStateInitializing;
sl@0
  4073
				}
sl@0
  4074
			else
sl@0
  4075
				{
sl@0
  4076
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  4077
				StopTest(aError, EFail);
sl@0
  4078
				}
sl@0
  4079
			break;
sl@0
  4080
			}
sl@0
  4081
		case EStateInitializing:
sl@0
  4082
			{
sl@0
  4083
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  4084
				{
sl@0
  4085
				if (!iStopped)
sl@0
  4086
					{
sl@0
  4087
					iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
sl@0
  4088
					INFO_PRINTF1(_L("CMMFDevSound::PlayInitL"));
sl@0
  4089
					TRAPD(err, iMMFDevSound->PlayInitL());
sl@0
  4090
					if (err != KErrNone)
sl@0
  4091
						{
sl@0
  4092
						StopTest(err);
sl@0
  4093
						break;
sl@0
  4094
						}
sl@0
  4095
					StartTimer(KMicroSecsTwoSec);
sl@0
  4096
					INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
sl@0
  4097
					iDevSoundState = EStatePlaying;
sl@0
  4098
					}
sl@0
  4099
				else
sl@0
  4100
					{
sl@0
  4101
					INFO_PRINTF1(_L("InitializeComplete returned KErrNone after calling CMMFDevSound::Stop then CMMFDevSound::InitializeL"));
sl@0
  4102
					StopTest();
sl@0
  4103
					}
sl@0
  4104
				}
sl@0
  4105
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  4106
				{
sl@0
  4107
				if (!iStopped)
sl@0
  4108
					{
sl@0
  4109
					ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  4110
					StopTest(aError);
sl@0
  4111
					}
sl@0
  4112
				else
sl@0
  4113
					{
sl@0
  4114
					INFO_PRINTF2(_L("InitializeComplete returned %d after calling CMMFDevSound::Stop then CMMFDevSound::InitializeL"), aError);
sl@0
  4115
					StopTest(aError);
sl@0
  4116
					}
sl@0
  4117
				}
sl@0
  4118
			else
sl@0
  4119
				{
sl@0
  4120
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  4121
				StopTest(aError, EFail);
sl@0
  4122
				}
sl@0
  4123
			break;
sl@0
  4124
			}
sl@0
  4125
		case EStatePlaying:
sl@0
  4126
			{
sl@0
  4127
			if (aDevSoundEvent == EEventBTBF)
sl@0
  4128
				{
sl@0
  4129
				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
sl@0
  4130
				TInt err = iFile.Read (buffer->Data());
sl@0
  4131
				if (err != KErrNone)
sl@0
  4132
					{
sl@0
  4133
					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
sl@0
  4134
					StopTest(err);
sl@0
  4135
					break;
sl@0
  4136
					}
sl@0
  4137
				if (buffer->Data().Length ()!= buffer->RequestSize())
sl@0
  4138
					{
sl@0
  4139
					iBuffer->SetLastBuffer(ETrue);
sl@0
  4140
					}
sl@0
  4141
				INFO_PRINTF1(_L("CMMFDevSound::PlayData"));
sl@0
  4142
				iMMFDevSound->PlayData();
sl@0
  4143
				}
sl@0
  4144
			else if (aDevSoundEvent == EEventTimerComplete)
sl@0
  4145
				{
sl@0
  4146
				INFO_PRINTF1(_L("CMMFDevSound::Stop"));
sl@0
  4147
				iMMFDevSound->Stop();
sl@0
  4148
				}
sl@0
  4149
			else
sl@0
  4150
				{
sl@0
  4151
				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  4152
				StopTest(aError, EFail);
sl@0
  4153
				}
sl@0
  4154
			break;
sl@0
  4155
			}
sl@0
  4156
		default:
sl@0
  4157
			{
sl@0
  4158
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  4159
			StopTest(aError, EFail);
sl@0
  4160
			}
sl@0
  4161
		}
sl@0
  4162
	}
sl@0
  4163
sl@0
  4164
void RA3FDevSoundPlayStopTest::DoTimerCallback()
sl@0
  4165
	{
sl@0
  4166
	INFO_PRINTF1(_L("TimerEvent called"));
sl@0
  4167
	if (!iStopped)
sl@0
  4168
		{
sl@0
  4169
		INFO_PRINTF1(_L("DevSound Event: EEventTimerComplete"));
sl@0
  4170
		Fsm(EEventTimerComplete, KErrNone);
sl@0
  4171
		iStopped = ETrue;
sl@0
  4172
		}
sl@0
  4173
	else
sl@0
  4174
		{
sl@0
  4175
		iTimer->Cancel();
sl@0
  4176
		INFO_PRINTF1(_L("Initializing again after stop successful. Hence passing the test"));
sl@0
  4177
		TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  4178
		if (err != KErrNone)
sl@0
  4179
			{
sl@0
  4180
			ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  4181
			StopTest(err);
sl@0
  4182
			}
sl@0
  4183
		INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  4184
		iDevSoundState = EStateInitializing;
sl@0
  4185
		}
sl@0
  4186
	}
sl@0
  4187
sl@0
  4188
sl@0
  4189
/*
sl@0
  4190
 *========================================================================================================
sl@0
  4191
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0031
sl@0
  4192
 */
sl@0
  4193
RA3FDevSoundPlayPreemptionTest::RA3FDevSoundPlayPreemptionTest(const TDesC& aTestName) :
sl@0
  4194
	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC),
sl@0
  4195
	iOtherFilename(KNullDesC)
sl@0
  4196
	{
sl@0
  4197
	}
sl@0
  4198
sl@0
  4199
RA3FDevSoundPlayPreemptionTest* RA3FDevSoundPlayPreemptionTest::NewL(const TDesC& aTestName)
sl@0
  4200
	{
sl@0
  4201
	RA3FDevSoundPlayPreemptionTest* self = new (ELeave) RA3FDevSoundPlayPreemptionTest(aTestName);
sl@0
  4202
	return self;
sl@0
  4203
	}
sl@0
  4204
sl@0
  4205
void RA3FDevSoundPlayPreemptionTest::DoKickoffTestL()
sl@0
  4206
	{
sl@0
  4207
	TPtrC filename;
sl@0
  4208
	// Get the filename of the audio file to play
sl@0
  4209
	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
sl@0
  4210
		{
sl@0
  4211
		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
sl@0
  4212
		StopTest(KErrNotFound);
sl@0
  4213
		return;
sl@0
  4214
		}
sl@0
  4215
	// open using RFile for playback
sl@0
  4216
	iFilename.Copy(filename);
sl@0
  4217
	TInt err = iFile.Open(iFs, iFilename, EFileRead);
sl@0
  4218
	if (err != KErrNone)
sl@0
  4219
		{
sl@0
  4220
		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
sl@0
  4221
		StopTest(err);
sl@0
  4222
		return;
sl@0
  4223
		}
sl@0
  4224
	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
sl@0
  4225
	// Get the filename of the second devsound instance
sl@0
  4226
	TPtrC tempString;
sl@0
  4227
	if (!GetStringFromConfig(iTestStepName, KOtherFilename, tempString))
sl@0
  4228
		{
sl@0
  4229
		ERR_PRINTF2(KMsgErrorGetParameter, &KOtherFilename);
sl@0
  4230
		StopTest(KErrNotFound);
sl@0
  4231
		return;
sl@0
  4232
		}
sl@0
  4233
	iOtherFilename.Copy (tempString);
sl@0
  4234
	INFO_PRINTF2(_L("File under test  -> %S"), &iOtherFilename);
sl@0
  4235
	TPtrC fourccCode;
sl@0
  4236
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  4237
		{
sl@0
  4238
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  4239
		StopTest(KErrNotFound);
sl@0
  4240
		return;
sl@0
  4241
		}
sl@0
  4242
	EncodingFromStringToTFourCC(fourccCode);
sl@0
  4243
	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
sl@0
  4244
	iDevsoundPlayClient = CA3FDevSoundPlayClient::NewL(*this, iFourCCCode, iFs, iSuite);
sl@0
  4245
	}
sl@0
  4246
sl@0
  4247
void RA3FDevSoundPlayPreemptionTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  4248
	{
sl@0
  4249
	switch (iDevSoundState)
sl@0
  4250
		{
sl@0
  4251
		case EStateCreated:
sl@0
  4252
			{
sl@0
  4253
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPreemptionTest"), EFsmIncorrectErrorPassed));
sl@0
  4254
			if (aDevSoundEvent == EEventInitialize)
sl@0
  4255
				{
sl@0
  4256
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  4257
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  4258
				if (err != KErrNone)
sl@0
  4259
					{
sl@0
  4260
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  4261
					StopTest(err);
sl@0
  4262
					break;
sl@0
  4263
					}
sl@0
  4264
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  4265
				iDevSoundState = EStateInitializing;
sl@0
  4266
				}
sl@0
  4267
			else
sl@0
  4268
				{
sl@0
  4269
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  4270
				StopTest(aError, EFail);
sl@0
  4271
				}
sl@0
  4272
			break;
sl@0
  4273
			}
sl@0
  4274
		case EStateInitializing:
sl@0
  4275
			{
sl@0
  4276
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  4277
				{
sl@0
  4278
				TMMFPrioritySettings priority;
sl@0
  4279
				priority.iPriority = KMinimumPriority;
sl@0
  4280
				INFO_PRINTF2(_L("Setting Priority to %d using CMMFDevSound::SetPrioritySettings"), priority.iPriority);
sl@0
  4281
				iMMFDevSound->SetPrioritySettings (priority);
sl@0
  4282
				iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ());
sl@0
  4283
				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
sl@0
  4284
				TRAPD(err, iMMFDevSound->PlayInitL());
sl@0
  4285
				if (err != KErrNone)
sl@0
  4286
					{
sl@0
  4287
					StopTest(err);
sl@0
  4288
					break;
sl@0
  4289
					}
sl@0
  4290
				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
sl@0
  4291
				iDevSoundState = EStatePlaying;
sl@0
  4292
				StartTimer(KMicroSecsTwoSec);
sl@0
  4293
				}
sl@0
  4294
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  4295
				{
sl@0
  4296
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  4297
				StopTest(aError);
sl@0
  4298
				}
sl@0
  4299
			else
sl@0
  4300
				{
sl@0
  4301
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  4302
				StopTest(aError, EFail);
sl@0
  4303
				}
sl@0
  4304
			break;
sl@0
  4305
			}
sl@0
  4306
		case EStatePlaying:
sl@0
  4307
			{
sl@0
  4308
			if (aDevSoundEvent == EEventBTBF)
sl@0
  4309
				{
sl@0
  4310
				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
sl@0
  4311
				TInt err = iFile.Read (buffer->Data ());
sl@0
  4312
				if (err != KErrNone)
sl@0
  4313
					{
sl@0
  4314
					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
sl@0
  4315
					StopTest (err);
sl@0
  4316
					break;
sl@0
  4317
					}
sl@0
  4318
				if (buffer->Data().Length ()!= buffer->RequestSize())
sl@0
  4319
					{
sl@0
  4320
					iBuffer->SetLastBuffer(ETrue);
sl@0
  4321
					}
sl@0
  4322
				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
sl@0
  4323
				iMMFDevSound->PlayData();
sl@0
  4324
				}
sl@0
  4325
			else
sl@0
  4326
				{
sl@0
  4327
				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  4328
				StopTest(aError, EFail);
sl@0
  4329
				}
sl@0
  4330
			break;
sl@0
  4331
			}
sl@0
  4332
		default:
sl@0
  4333
			{
sl@0
  4334
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  4335
			StopTest(aError, EFail);
sl@0
  4336
			}
sl@0
  4337
		}
sl@0
  4338
	}
sl@0
  4339
sl@0
  4340
void RA3FDevSoundPlayPreemptionTest::DoTimerCallback()
sl@0
  4341
	{
sl@0
  4342
	INFO_PRINTF1(_L("TimerEvent called"));
sl@0
  4343
	iTimer->Cancel();
sl@0
  4344
	INFO_PRINTF1(_L("Starting higher priority devsound client"));
sl@0
  4345
	iDevsoundPlayClient->SetPriority(KMaximumPriority);
sl@0
  4346
	INFO_PRINTF1(_L("Initializing to play audio thru second devsound client"));
sl@0
  4347
	TInt err = iDevsoundPlayClient->PlayInit(iOtherFilename);
sl@0
  4348
	if (err != KErrNone)
sl@0
  4349
		{
sl@0
  4350
		ERR_PRINTF2(_L("Initializating DevSound to play audio thru second devsound client failed with error = %d"), err);
sl@0
  4351
		StopTest(err);
sl@0
  4352
		}
sl@0
  4353
	}
sl@0
  4354
sl@0
  4355
void RA3FDevSoundPlayPreemptionTest::PlayError(TInt aError)
sl@0
  4356
	{
sl@0
  4357
	INFO_PRINTF1(_L("========== DevSound PlayError() callback =========="));
sl@0
  4358
	if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied)
sl@0
  4359
		{
sl@0
  4360
		INFO_PRINTF1(_L("========== Preempting 1st DevSound Instance=========="));
sl@0
  4361
		INFO_PRINTF2(_L("First DevSound client PlayError succeeded with error = %d "), aError);
sl@0
  4362
		}
sl@0
  4363
	else
sl@0
  4364
		{
sl@0
  4365
		ERR_PRINTF2(_L("First DevSound client PlayError and failed with error = %d "), aError);
sl@0
  4366
		ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied);
sl@0
  4367
		StopTest(aError, EFail);
sl@0
  4368
		}
sl@0
  4369
	}
sl@0
  4370
sl@0
  4371
void RA3FDevSoundPlayPreemptionTest::ClientInitializeCompleteCallback(TInt aError)                               
sl@0
  4372
	{
sl@0
  4373
	INFO_PRINTF1(_L("========== Second Client DevSound InitializeComplete() callback =========="));
sl@0
  4374
	if (aError != KErrNone)
sl@0
  4375
		{
sl@0
  4376
		ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError);
sl@0
  4377
		StopTest(aError);
sl@0
  4378
		}
sl@0
  4379
	else
sl@0
  4380
		{
sl@0
  4381
		INFO_PRINTF1(_L("Starting to play audio thru second devsound client"));
sl@0
  4382
		TInt err = iDevsoundPlayClient->PlayAudio();
sl@0
  4383
		if (err != KErrNone)
sl@0
  4384
			{
sl@0
  4385
			ERR_PRINTF2(_L("Starting to play audio thru second devsound client failed with error = %d"), err);
sl@0
  4386
			StopTest(err);
sl@0
  4387
			}
sl@0
  4388
		}
sl@0
  4389
	}
sl@0
  4390
sl@0
  4391
void RA3FDevSoundPlayPreemptionTest::ClientBufferToBeFilledCallback(TInt aError)
sl@0
  4392
	{
sl@0
  4393
	INFO_PRINTF1(_L("========== Second Client DevSound BufferToBeFilled() callback =========="));
sl@0
  4394
	if (aError != KErrNone)
sl@0
  4395
		{
sl@0
  4396
		ERR_PRINTF2(_L("Second DevSound client called BufferToBeFilled and failed with error = %d"), aError);
sl@0
  4397
		StopTest(aError);
sl@0
  4398
		}
sl@0
  4399
	}
sl@0
  4400
sl@0
  4401
void RA3FDevSoundPlayPreemptionTest::ClientPlayHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError)
sl@0
  4402
	{
sl@0
  4403
	switch (aError)
sl@0
  4404
		{
sl@0
  4405
		case EInvalidClientFSMEvent:
sl@0
  4406
			ERR_PRINTF1(_L("Second devsound client received an invalid Event..."));
sl@0
  4407
			break;
sl@0
  4408
		case EInvalidClientFSMState:
sl@0
  4409
			ERR_PRINTF1(_L("Second devsound client received an invalid State..."));
sl@0
  4410
			break;
sl@0
  4411
		case EReadFileErrorInClient:
sl@0
  4412
			ERR_PRINTF1(_L("Second devsound client could not read to file..."));
sl@0
  4413
			break;
sl@0
  4414
		default:
sl@0
  4415
			break;
sl@0
  4416
		}
sl@0
  4417
	StopTest(aError, EFail);
sl@0
  4418
	}
sl@0
  4419
sl@0
  4420
void RA3FDevSoundPlayPreemptionTest::ClientPlayErrorCallback(TInt aError, TBool aLastBuffer)
sl@0
  4421
	{
sl@0
  4422
	INFO_PRINTF1(_L("========== Second Client DevSound PlayError() callback =========="));
sl@0
  4423
sl@0
  4424
	if (aError == KErrUnderflow && aLastBuffer)
sl@0
  4425
		{
sl@0
  4426
		INFO_PRINTF1(_L("Second DevSound client called PlayError and completed normally"));
sl@0
  4427
		StopTest();
sl@0
  4428
		}
sl@0
  4429
	else
sl@0
  4430
		{
sl@0
  4431
		ERR_PRINTF2(_L("Second DevSound PlayError failed with error = %d"), aError);
sl@0
  4432
		ERR_PRINTF2(_L("Expected error = %d "), KErrUnderflow);
sl@0
  4433
		StopTest(aError, EFail);
sl@0
  4434
		}
sl@0
  4435
	}
sl@0
  4436
sl@0
  4437
/*
sl@0
  4438
 *========================================================================================================
sl@0
  4439
 * 3F-DEVSOUND-CHRTZ-PLAY-RAW-0032
sl@0
  4440
 */
sl@0
  4441
RA3FDevSoundPlayPreemptedByToneTest::RA3FDevSoundPlayPreemptedByToneTest(const TDesC& aTestName) :
sl@0
  4442
	RA3FDevSoundTestBase(aTestName),iFilename(KNullDesC),
sl@0
  4443
	iFrequencyTone1(0), iDuration(0)
sl@0
  4444
	{
sl@0
  4445
	}
sl@0
  4446
sl@0
  4447
RA3FDevSoundPlayPreemptedByToneTest* RA3FDevSoundPlayPreemptedByToneTest::NewL(const TDesC& aTestName)
sl@0
  4448
	{
sl@0
  4449
	RA3FDevSoundPlayPreemptedByToneTest* self = new (ELeave) RA3FDevSoundPlayPreemptedByToneTest(aTestName);
sl@0
  4450
	return self;
sl@0
  4451
	}
sl@0
  4452
sl@0
  4453
void RA3FDevSoundPlayPreemptedByToneTest::DoKickoffTestL()
sl@0
  4454
	{
sl@0
  4455
	TPtrC filename;
sl@0
  4456
	// Get the filename of the audio file to play
sl@0
  4457
	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
sl@0
  4458
		{
sl@0
  4459
		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
sl@0
  4460
		StopTest(KErrNotFound);
sl@0
  4461
		return;
sl@0
  4462
		}
sl@0
  4463
	// open using RFile for playback
sl@0
  4464
	iFilename.Copy(filename);
sl@0
  4465
	TInt err = iFile.Open(iFs, iFilename, EFileRead);
sl@0
  4466
	if (err != KErrNone)
sl@0
  4467
		{
sl@0
  4468
		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
sl@0
  4469
		StopTest(err);
sl@0
  4470
		return;
sl@0
  4471
		}
sl@0
  4472
sl@0
  4473
	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
sl@0
  4474
sl@0
  4475
	if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
sl@0
  4476
		{
sl@0
  4477
		ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
sl@0
  4478
		StopTest(KErrNotFound);
sl@0
  4479
		return;
sl@0
  4480
		}
sl@0
  4481
	if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
sl@0
  4482
		{
sl@0
  4483
		ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
sl@0
  4484
		StopTest(KErrNotFound);
sl@0
  4485
		return;
sl@0
  4486
		}
sl@0
  4487
	TPtrC fourccCode;
sl@0
  4488
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  4489
		{
sl@0
  4490
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  4491
		StopTest(KErrNotFound);
sl@0
  4492
		return;
sl@0
  4493
		}
sl@0
  4494
	EncodingFromStringToTFourCC(fourccCode);
sl@0
  4495
	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
sl@0
  4496
	iDevsoundToneClient = CA3FDevSoundToneClient::NewL(*this);
sl@0
  4497
	}
sl@0
  4498
sl@0
  4499
void RA3FDevSoundPlayPreemptedByToneTest::Fsm(TMmfDevSoundEvent aDevSoundEvent,	TInt aError)
sl@0
  4500
	{
sl@0
  4501
	switch (iDevSoundState)
sl@0
  4502
		{
sl@0
  4503
		case EStateCreated:
sl@0
  4504
			{
sl@0
  4505
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPreemptedByToneTest"), EFsmIncorrectErrorPassed));
sl@0
  4506
			if (aDevSoundEvent == EEventInitialize)
sl@0
  4507
				{
sl@0
  4508
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  4509
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  4510
				if (err != KErrNone)
sl@0
  4511
					{
sl@0
  4512
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  4513
					StopTest(err);
sl@0
  4514
					break;
sl@0
  4515
					}
sl@0
  4516
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  4517
				iDevSoundState = EStateInitializing;
sl@0
  4518
				}
sl@0
  4519
			else
sl@0
  4520
				{
sl@0
  4521
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  4522
				StopTest(aError, EFail);
sl@0
  4523
				}
sl@0
  4524
			break;
sl@0
  4525
			}
sl@0
  4526
		case EStateInitializing:
sl@0
  4527
			{
sl@0
  4528
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  4529
				{
sl@0
  4530
				TMMFPrioritySettings priority;
sl@0
  4531
				priority.iPriority = KMinimumPriority;
sl@0
  4532
				INFO_PRINTF2(_L("Setting Priority to %d using CMMFDevSound::SetPrioritySettings"), priority.iPriority);
sl@0
  4533
				iMMFDevSound->SetPrioritySettings (priority);
sl@0
  4534
				iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ());
sl@0
  4535
				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
sl@0
  4536
				TRAPD(err, iMMFDevSound->PlayInitL());
sl@0
  4537
				if (err != KErrNone)
sl@0
  4538
					{
sl@0
  4539
					StopTest (err);
sl@0
  4540
					break;
sl@0
  4541
					}
sl@0
  4542
				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
sl@0
  4543
				iDevSoundState = EStatePlaying;
sl@0
  4544
				StartTimer (KMicroSecsTwoSec);
sl@0
  4545
				}
sl@0
  4546
			else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  4547
				{
sl@0
  4548
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  4549
				StopTest(aError);
sl@0
  4550
				}
sl@0
  4551
			else
sl@0
  4552
				{
sl@0
  4553
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  4554
				StopTest(aError, EFail);
sl@0
  4555
				}
sl@0
  4556
			break;
sl@0
  4557
			}
sl@0
  4558
		case EStatePlaying:
sl@0
  4559
			{
sl@0
  4560
			if (aDevSoundEvent == EEventBTBF)
sl@0
  4561
				{
sl@0
  4562
				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
sl@0
  4563
				TInt err = iFile.Read (buffer->Data());
sl@0
  4564
				if (err != KErrNone)
sl@0
  4565
					{
sl@0
  4566
					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
sl@0
  4567
					StopTest(err);
sl@0
  4568
					break;
sl@0
  4569
					}
sl@0
  4570
				if (buffer->Data().Length ()!= buffer->RequestSize())
sl@0
  4571
					{
sl@0
  4572
					iBuffer->SetLastBuffer(ETrue);
sl@0
  4573
					}
sl@0
  4574
				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
sl@0
  4575
				iMMFDevSound->PlayData();
sl@0
  4576
				}
sl@0
  4577
			else
sl@0
  4578
				{
sl@0
  4579
				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  4580
				StopTest(aError, EFail);
sl@0
  4581
				}
sl@0
  4582
			break;
sl@0
  4583
			}
sl@0
  4584
		default:
sl@0
  4585
			{
sl@0
  4586
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  4587
			StopTest(aError, EFail);
sl@0
  4588
			}
sl@0
  4589
		}
sl@0
  4590
	}
sl@0
  4591
sl@0
  4592
void RA3FDevSoundPlayPreemptedByToneTest::DoTimerCallback()
sl@0
  4593
	{
sl@0
  4594
	INFO_PRINTF1(_L("TimerEvent called"));
sl@0
  4595
	iTimer->Cancel();
sl@0
  4596
	INFO_PRINTF1(_L("Starting higher priority devsound client"));
sl@0
  4597
	iDevsoundToneClient->SetPriority(KMaximumPriority);
sl@0
  4598
	INFO_PRINTF1(_L("Initializing to play tones thru second devsound client"));
sl@0
  4599
	TInt err = iDevsoundToneClient->InitTonePlay(iFrequencyTone1,iDuration*KMicroSecsInOneSec);
sl@0
  4600
	if (err != KErrNone)
sl@0
  4601
		{
sl@0
  4602
		ERR_PRINTF2(_L("Initializating DevSoud to play tones thru second devsound client failed with error = %d"), err);
sl@0
  4603
		StopTest(err);
sl@0
  4604
		}
sl@0
  4605
	}
sl@0
  4606
sl@0
  4607
void RA3FDevSoundPlayPreemptedByToneTest::PlayError(TInt aError)
sl@0
  4608
	{
sl@0
  4609
	INFO_PRINTF1(_L("========== DevSound PlayError() callback =========="));
sl@0
  4610
	if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied)
sl@0
  4611
		{
sl@0
  4612
		INFO_PRINTF1(_L("========== Preempting 1st DevSound Instance=========="));
sl@0
  4613
		INFO_PRINTF2(_L("First DevSound client PlayError succeeded with error = %d "), aError);
sl@0
  4614
		}
sl@0
  4615
	else
sl@0
  4616
		{
sl@0
  4617
		ERR_PRINTF2(_L("First DevSound client called PlayError and failed with error = %d "), aError);
sl@0
  4618
		ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied);
sl@0
  4619
		StopTest(aError, EFail);
sl@0
  4620
		}
sl@0
  4621
	}
sl@0
  4622
sl@0
  4623
void RA3FDevSoundPlayPreemptedByToneTest::ClientInitializeCompleteCallback(TInt aError)
sl@0
  4624
	{
sl@0
  4625
	INFO_PRINTF1(_L("==========Second DevSound client called InitializeComplete()=========="));
sl@0
  4626
	if (aError == KErrNone)
sl@0
  4627
		{
sl@0
  4628
		INFO_PRINTF1(_L("Starting to play tone thru second devsound client"));
sl@0
  4629
		TInt err = iDevsoundToneClient->PlayTone ();
sl@0
  4630
		if (err != KErrNone)
sl@0
  4631
			{
sl@0
  4632
			ERR_PRINTF2(_L("Second Devsound client called PlayTone and failed with error = %d"), err);
sl@0
  4633
			StopTest(err);
sl@0
  4634
			}
sl@0
  4635
		}
sl@0
  4636
	else
sl@0
  4637
		{
sl@0
  4638
		ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError);
sl@0
  4639
		StopTest(aError);
sl@0
  4640
		}
sl@0
  4641
	}
sl@0
  4642
sl@0
  4643
void RA3FDevSoundPlayPreemptedByToneTest::ClientToneFinishedCallback(TInt aError)
sl@0
  4644
	{
sl@0
  4645
	INFO_PRINTF1(_L("========== Second  DevSound client called ToneFinished()=========="));
sl@0
  4646
	if (aError == KErrUnderflow)
sl@0
  4647
		{
sl@0
  4648
		INFO_PRINTF2(_L("Second DevSound client called ToneFinished and succeeded with error = %d"), aError);
sl@0
  4649
		StopTest(aError, EPass);
sl@0
  4650
		}
sl@0
  4651
	else
sl@0
  4652
		{
sl@0
  4653
		ERR_PRINTF2(_L("Second DevSound client called ToneFinished and failed with error = %d"), aError);
sl@0
  4654
		StopTest(aError);
sl@0
  4655
		}
sl@0
  4656
	}
sl@0
  4657
sl@0
  4658
/*
sl@0
  4659
 *========================================================================================================
sl@0
  4660
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0033
sl@0
  4661
 */
sl@0
  4662
RA3FDevSoundPlayPreemptedByRecordTest::RA3FDevSoundPlayPreemptedByRecordTest(const TDesC& aTestName) :
sl@0
  4663
	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC)
sl@0
  4664
sl@0
  4665
	{
sl@0
  4666
	}
sl@0
  4667
sl@0
  4668
RA3FDevSoundPlayPreemptedByRecordTest* RA3FDevSoundPlayPreemptedByRecordTest::NewL(const TDesC& aTestName)
sl@0
  4669
	{
sl@0
  4670
	RA3FDevSoundPlayPreemptedByRecordTest* self = new (ELeave) RA3FDevSoundPlayPreemptedByRecordTest(aTestName);
sl@0
  4671
	return self;
sl@0
  4672
	}
sl@0
  4673
sl@0
  4674
void RA3FDevSoundPlayPreemptedByRecordTest::DoKickoffTestL()
sl@0
  4675
	{
sl@0
  4676
	TPtrC filename;
sl@0
  4677
	// Get the filename of the audio file to play
sl@0
  4678
	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
sl@0
  4679
		{
sl@0
  4680
		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
sl@0
  4681
		StopTest(KErrNotFound);
sl@0
  4682
		return;
sl@0
  4683
		}
sl@0
  4684
	// open using RFile for playback
sl@0
  4685
	iFilename.Copy(filename);
sl@0
  4686
	TInt err = iFile.Open(iFs, iFilename, EFileRead);
sl@0
  4687
	if (err != KErrNone)
sl@0
  4688
		{
sl@0
  4689
		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
sl@0
  4690
		StopTest(err);
sl@0
  4691
		return;
sl@0
  4692
		}
sl@0
  4693
	// Get the filename of the audio file to record
sl@0
  4694
	if (!GetStringFromConfig(iTestStepName, KOtherFilename, filename))
sl@0
  4695
		{
sl@0
  4696
		ERR_PRINTF2(KMsgErrorGetParameter, &KOtherFilename);
sl@0
  4697
		StopTest(KErrNotFound);
sl@0
  4698
		return;
sl@0
  4699
		}
sl@0
  4700
sl@0
  4701
	iOtherFilename.Copy(filename);
sl@0
  4702
sl@0
  4703
	TPtrC fourccCode;
sl@0
  4704
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  4705
		{
sl@0
  4706
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  4707
		StopTest (KErrNotFound);
sl@0
  4708
		return;
sl@0
  4709
		}
sl@0
  4710
	EncodingFromStringToTFourCC(fourccCode);
sl@0
  4711
	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
sl@0
  4712
	iDevsoundRecordClient = CA3FDevSoundRecordClient::NewL(*this, iFourCCCode, iFs, iSuite);
sl@0
  4713
	}
sl@0
  4714
sl@0
  4715
void RA3FDevSoundPlayPreemptedByRecordTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  4716
	{
sl@0
  4717
	switch (iDevSoundState)
sl@0
  4718
		{
sl@0
  4719
		case EStateCreated:
sl@0
  4720
			{
sl@0
  4721
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPreemptedByRecordTest"), EFsmIncorrectErrorPassed));
sl@0
  4722
			if (aDevSoundEvent == EEventInitialize)
sl@0
  4723
				{
sl@0
  4724
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  4725
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  4726
				if (err != KErrNone)
sl@0
  4727
					{
sl@0
  4728
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  4729
					StopTest(err);
sl@0
  4730
					break;
sl@0
  4731
					}
sl@0
  4732
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  4733
				iDevSoundState = EStateInitializing;
sl@0
  4734
				}
sl@0
  4735
			else
sl@0
  4736
				{
sl@0
  4737
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  4738
				StopTest(aError, EFail);
sl@0
  4739
				}
sl@0
  4740
			break;
sl@0
  4741
			}
sl@0
  4742
		case EStateInitializing:
sl@0
  4743
			{
sl@0
  4744
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  4745
				{
sl@0
  4746
				TMMFPrioritySettings priority;
sl@0
  4747
				priority.iPriority = KMinimumPriority;
sl@0
  4748
				INFO_PRINTF2(_L("Setting Priority to %d using CMMFDevSound::SetPrioritySettings"), priority.iPriority);
sl@0
  4749
				iMMFDevSound->SetPrioritySettings (priority);
sl@0
  4750
				iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ());
sl@0
  4751
				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
sl@0
  4752
				TRAPD(err, iMMFDevSound->PlayInitL());
sl@0
  4753
				if (err != KErrNone)
sl@0
  4754
					{
sl@0
  4755
					StopTest(err);
sl@0
  4756
					break;
sl@0
  4757
					}
sl@0
  4758
				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
sl@0
  4759
				iDevSoundState = EStatePlaying;
sl@0
  4760
				StartTimer(KMicroSecsTwoSec);
sl@0
  4761
				}
sl@0
  4762
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  4763
				{
sl@0
  4764
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  4765
				StopTest(aError);
sl@0
  4766
				}
sl@0
  4767
			else
sl@0
  4768
				{
sl@0
  4769
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  4770
				StopTest(aError, EFail);
sl@0
  4771
				}
sl@0
  4772
			break;
sl@0
  4773
			}
sl@0
  4774
		case EStatePlaying:
sl@0
  4775
			{
sl@0
  4776
			if (aDevSoundEvent == EEventBTBF)
sl@0
  4777
				{
sl@0
  4778
				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
sl@0
  4779
				TInt err = iFile.Read (buffer->Data ());
sl@0
  4780
				if (err != KErrNone)
sl@0
  4781
					{
sl@0
  4782
					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
sl@0
  4783
					StopTest(err);
sl@0
  4784
					break;
sl@0
  4785
					}
sl@0
  4786
				if (buffer->Data().Length()!= buffer->RequestSize())
sl@0
  4787
					{
sl@0
  4788
					iBuffer->SetLastBuffer(ETrue);
sl@0
  4789
					}
sl@0
  4790
				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
sl@0
  4791
				iMMFDevSound->PlayData();
sl@0
  4792
				}
sl@0
  4793
			else
sl@0
  4794
				{
sl@0
  4795
				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  4796
				StopTest(aError, EFail);
sl@0
  4797
				}
sl@0
  4798
			break;
sl@0
  4799
			}
sl@0
  4800
		default:
sl@0
  4801
			{
sl@0
  4802
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  4803
			StopTest(aError, EFail);
sl@0
  4804
			}
sl@0
  4805
		}
sl@0
  4806
	}
sl@0
  4807
sl@0
  4808
void RA3FDevSoundPlayPreemptedByRecordTest::DoTimerCallback()
sl@0
  4809
	{
sl@0
  4810
	INFO_PRINTF1(_L("TimerEvent called"));
sl@0
  4811
	if (!iOtherClientStarted)
sl@0
  4812
		{
sl@0
  4813
		INFO_PRINTF1(_L("Initializing higher priority devsound client..."));
sl@0
  4814
		iDevsoundRecordClient->SetPriority (KMaximumPriority);
sl@0
  4815
		TInt err = iDevsoundRecordClient->InitializeRecordClient (iOtherFilename);
sl@0
  4816
		if (err != KErrNone)
sl@0
  4817
			{
sl@0
  4818
			ERR_PRINTF1(_L("Initializating DevSoud to record audio thru second devsound client failed with error = %d"));
sl@0
  4819
			StopTest(err);
sl@0
  4820
			}
sl@0
  4821
		iOtherClientStarted = ETrue;
sl@0
  4822
		}
sl@0
  4823
	else
sl@0
  4824
		{
sl@0
  4825
		iTimer->Cancel();
sl@0
  4826
		iDevsoundRecordClient->StopRecord();
sl@0
  4827
		StopTest();
sl@0
  4828
		}
sl@0
  4829
	}
sl@0
  4830
sl@0
  4831
void RA3FDevSoundPlayPreemptedByRecordTest::PlayError(TInt aError)
sl@0
  4832
	{
sl@0
  4833
	INFO_PRINTF1(_L("========== DevSound PlayError() callback =========="));
sl@0
  4834
	if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied)
sl@0
  4835
		{
sl@0
  4836
		INFO_PRINTF1(_L("========== Preempting 1st DevSound Instance=========="));
sl@0
  4837
		INFO_PRINTF2(_L("First DevSound client PlayError succeeded with error = %d "), aError);
sl@0
  4838
		}
sl@0
  4839
	else
sl@0
  4840
		{
sl@0
  4841
		ERR_PRINTF2(_L("First DevSound client called PlayError and failed with error = %d "), aError);
sl@0
  4842
		ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied);
sl@0
  4843
		StopTest(aError, EFail);
sl@0
  4844
		}
sl@0
  4845
	}
sl@0
  4846
sl@0
  4847
void RA3FDevSoundPlayPreemptedByRecordTest::ClientInitializeCompleteCallback(TInt aError)
sl@0
  4848
	{
sl@0
  4849
	INFO_PRINTF1(_L("========== Second Client DevSound InitializeComplete() callback =========="));
sl@0
  4850
	if (aError != KErrNone)
sl@0
  4851
		{
sl@0
  4852
		ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError);
sl@0
  4853
		StopTest(aError);
sl@0
  4854
		}
sl@0
  4855
	else
sl@0
  4856
		{
sl@0
  4857
		INFO_PRINTF2(_L("Second DevSound client called InitializeComplete with error = %d"), aError);
sl@0
  4858
		INFO_PRINTF1(_L("Starting to record audio thru second devsound client"));
sl@0
  4859
		TInt err = iDevsoundRecordClient->RecordAudio ();
sl@0
  4860
		if (err != KErrNone)
sl@0
  4861
			{
sl@0
  4862
			ERR_PRINTF2(_L("Starting to record audio thru second devsound client failed with error = %d"), err);
sl@0
  4863
			StopTest(err);
sl@0
  4864
			}
sl@0
  4865
		}
sl@0
  4866
	}
sl@0
  4867
sl@0
  4868
void RA3FDevSoundPlayPreemptedByRecordTest::ClientBufferToBeEmptiedCallback(TInt aError)
sl@0
  4869
	{
sl@0
  4870
	INFO_PRINTF1(_L("========== Second Client DevSound ClientBufferToBeEmptied() callback =========="));
sl@0
  4871
	switch (aError)
sl@0
  4872
		{
sl@0
  4873
		case KErrGeneral:
sl@0
  4874
			{
sl@0
  4875
			INFO_PRINTF1(_L("Second DevSound client called BufferToBeEmptied and received a NULL CMMFBuffer"));
sl@0
  4876
			StopTest(aError);
sl@0
  4877
			break;
sl@0
  4878
			}
sl@0
  4879
		case KErrUnknown:
sl@0
  4880
			{
sl@0
  4881
			INFO_PRINTF1(_L("Second DevSound client called BufferToBeEmptied: Unknown behaviour: Last buffer flag set before calling CMMFDevSound->Pause()"));
sl@0
  4882
			StopTest(aError);
sl@0
  4883
			break;
sl@0
  4884
			}
sl@0
  4885
		}
sl@0
  4886
	}
sl@0
  4887
sl@0
  4888
void RA3FDevSoundPlayPreemptedByRecordTest::ClientRecordErrorCallback(TInt aError)
sl@0
  4889
	{
sl@0
  4890
	INFO_PRINTF1(_L("========== Second Client DevSound RecordError() callback =========="));
sl@0
  4891
	if (aError == KErrUnderflow)
sl@0
  4892
		{
sl@0
  4893
		INFO_PRINTF2(_L("Second DevSound client called RecordError with error = %d"), aError);
sl@0
  4894
		StopTest(aError);
sl@0
  4895
		}
sl@0
  4896
	}
sl@0
  4897
sl@0
  4898
void RA3FDevSoundPlayPreemptedByRecordTest::ClientRecordHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError)
sl@0
  4899
	{
sl@0
  4900
	switch (aError)
sl@0
  4901
		{
sl@0
  4902
		case EInvalidClientFSMEvent:
sl@0
  4903
			{
sl@0
  4904
			ERR_PRINTF1(_L("Second devsound client received an invalid Event..."));
sl@0
  4905
			StopTest(KErrNone, EFail);
sl@0
  4906
			break;
sl@0
  4907
			}
sl@0
  4908
		case EInvalidClientFSMState:
sl@0
  4909
			{
sl@0
  4910
			ERR_PRINTF1(_L("Second devsound client received an invalid State..."));
sl@0
  4911
			StopTest(KErrNone, EFail);
sl@0
  4912
			break;
sl@0
  4913
			}
sl@0
  4914
		case EWriteFileErrorInClient:
sl@0
  4915
			{
sl@0
  4916
			ERR_PRINTF1(_L("Second devsound client could not write to file..."));
sl@0
  4917
			StopTest(KErrNone, EFail);
sl@0
  4918
			break;
sl@0
  4919
			}
sl@0
  4920
		}
sl@0
  4921
	}
sl@0
  4922
sl@0
  4923
/*
sl@0
  4924
 *========================================================================================================
sl@0
  4925
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0034
sl@0
  4926
 */
sl@0
  4927
RA3FDevSoundPlayRejectionTest::RA3FDevSoundPlayRejectionTest(const TDesC& aTestName) :
sl@0
  4928
	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC),
sl@0
  4929
	iOtherFilename(KNullDesC)
sl@0
  4930
	{
sl@0
  4931
	}
sl@0
  4932
sl@0
  4933
RA3FDevSoundPlayRejectionTest* RA3FDevSoundPlayRejectionTest::NewL(const TDesC& aTestName)
sl@0
  4934
	{
sl@0
  4935
	RA3FDevSoundPlayRejectionTest* self = new (ELeave) RA3FDevSoundPlayRejectionTest(aTestName);
sl@0
  4936
	return self;
sl@0
  4937
	}
sl@0
  4938
sl@0
  4939
void RA3FDevSoundPlayRejectionTest::DoKickoffTestL()
sl@0
  4940
	{
sl@0
  4941
	TPtrC filename;
sl@0
  4942
	// Get the filename of the audio file to play
sl@0
  4943
	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
sl@0
  4944
		{
sl@0
  4945
		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
sl@0
  4946
		StopTest(KErrNotFound);
sl@0
  4947
		return;
sl@0
  4948
		}
sl@0
  4949
	// open using RFile for playback
sl@0
  4950
	iFilename.Copy(filename);
sl@0
  4951
sl@0
  4952
	TInt err = iFile.Open(iFs, iFilename, EFileRead);
sl@0
  4953
	if (err != KErrNone)
sl@0
  4954
		{
sl@0
  4955
		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
sl@0
  4956
		StopTest(err);
sl@0
  4957
		return;
sl@0
  4958
		}
sl@0
  4959
sl@0
  4960
	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
sl@0
  4961
sl@0
  4962
	// Get the filename of the second devsound instance
sl@0
  4963
	TPtrC tempString;
sl@0
  4964
	if (!GetStringFromConfig(iTestStepName, KOtherFilename, tempString))
sl@0
  4965
		{
sl@0
  4966
		ERR_PRINTF2(KMsgErrorGetParameter, &KOtherFilename);
sl@0
  4967
		StopTest(KErrNotFound);
sl@0
  4968
		return;
sl@0
  4969
		}
sl@0
  4970
	
sl@0
  4971
	iOtherFilename.Copy (tempString);
sl@0
  4972
sl@0
  4973
	TPtrC fourccCode;
sl@0
  4974
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  4975
		{
sl@0
  4976
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  4977
		StopTest(KErrNotFound);
sl@0
  4978
		return;
sl@0
  4979
		}
sl@0
  4980
	EncodingFromStringToTFourCC(fourccCode);
sl@0
  4981
	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
sl@0
  4982
	iDevsoundPlayClient = CA3FDevSoundPlayClient::NewL(*this, iFourCCCode, iFs, iSuite);
sl@0
  4983
	}
sl@0
  4984
sl@0
  4985
void RA3FDevSoundPlayRejectionTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  4986
	{
sl@0
  4987
	switch (iDevSoundState)
sl@0
  4988
		{
sl@0
  4989
		case EStateCreated:
sl@0
  4990
			{
sl@0
  4991
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayRejectionTest"), EFsmIncorrectErrorPassed));
sl@0
  4992
			if (aDevSoundEvent == EEventInitialize)
sl@0
  4993
				{
sl@0
  4994
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  4995
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  4996
				if (err != KErrNone)
sl@0
  4997
					{
sl@0
  4998
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  4999
					StopTest(err);
sl@0
  5000
					break;
sl@0
  5001
					}
sl@0
  5002
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  5003
				iDevSoundState = EStateInitializing;
sl@0
  5004
				}
sl@0
  5005
			else
sl@0
  5006
				{
sl@0
  5007
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  5008
				StopTest(aError, EFail);
sl@0
  5009
				}
sl@0
  5010
			break;
sl@0
  5011
			}
sl@0
  5012
		case EStateInitializing:
sl@0
  5013
			{
sl@0
  5014
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  5015
				{
sl@0
  5016
				TMMFPrioritySettings priority;
sl@0
  5017
				priority.iPriority = KMaximumPriority;
sl@0
  5018
				INFO_PRINTF2(_L("Setting Priority to %d using CMMFDevSound::SetPrioritySettings"), priority.iPriority);
sl@0
  5019
				iMMFDevSound->SetPrioritySettings (priority);
sl@0
  5020
				iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
sl@0
  5021
				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
sl@0
  5022
				TRAPD(err, iMMFDevSound->PlayInitL());
sl@0
  5023
				if ( err != KErrNone)
sl@0
  5024
					{
sl@0
  5025
					INFO_PRINTF2(_L("CMMFDevSound::PlayInitL left with error = %d"), err);
sl@0
  5026
					StopTest(err);
sl@0
  5027
					break;
sl@0
  5028
					}
sl@0
  5029
				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
sl@0
  5030
				iDevSoundState = EStatePlaying;
sl@0
  5031
				StartTimer (KMicroSecsTwoSec);
sl@0
  5032
				}
sl@0
  5033
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  5034
				{
sl@0
  5035
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  5036
				StopTest(aError);
sl@0
  5037
				}
sl@0
  5038
			else
sl@0
  5039
				{
sl@0
  5040
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  5041
				StopTest(aError, EFail);
sl@0
  5042
				}
sl@0
  5043
			break;
sl@0
  5044
			}
sl@0
  5045
		case EStatePlaying:
sl@0
  5046
			{
sl@0
  5047
			if (aDevSoundEvent == EEventBTBF)
sl@0
  5048
				{
sl@0
  5049
				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
sl@0
  5050
				TInt err = iFile.Read (buffer->Data ());
sl@0
  5051
				if (err != KErrNone)
sl@0
  5052
					{
sl@0
  5053
					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
sl@0
  5054
					StopTest(err);
sl@0
  5055
					break;
sl@0
  5056
					}
sl@0
  5057
				if (buffer->Data().Length()!= buffer->RequestSize())
sl@0
  5058
					{
sl@0
  5059
					iBuffer->SetLastBuffer (ETrue);
sl@0
  5060
					}
sl@0
  5061
				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
sl@0
  5062
				iMMFDevSound->PlayData();
sl@0
  5063
				}
sl@0
  5064
			else
sl@0
  5065
				{
sl@0
  5066
				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  5067
				StopTest(aError, EFail);
sl@0
  5068
				}
sl@0
  5069
			break;
sl@0
  5070
			}
sl@0
  5071
		default:
sl@0
  5072
			{
sl@0
  5073
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  5074
			StopTest(aError, EFail);
sl@0
  5075
			}
sl@0
  5076
		}
sl@0
  5077
	}
sl@0
  5078
sl@0
  5079
void RA3FDevSoundPlayRejectionTest::DoTimerCallback()
sl@0
  5080
	{
sl@0
  5081
	INFO_PRINTF1(_L("TimerEvent called"));
sl@0
  5082
	iTimer->Cancel();
sl@0
  5083
	INFO_PRINTF1(_L("Starting higher priority devsound client"));
sl@0
  5084
	iDevsoundPlayClient->SetPriority(KMinimumPriority);
sl@0
  5085
	INFO_PRINTF1(_L("Initializing to play audio thru second devsound client"));
sl@0
  5086
	TInt err = iDevsoundPlayClient->PlayInit(iOtherFilename);
sl@0
  5087
	if (err != KErrNone)
sl@0
  5088
		{
sl@0
  5089
		ERR_PRINTF2(_L("Initialization to play audio thru second devsound client failed with %d"), err);
sl@0
  5090
		StopTest(err);
sl@0
  5091
		}
sl@0
  5092
	}
sl@0
  5093
sl@0
  5094
void RA3FDevSoundPlayRejectionTest::ClientInitializeCompleteCallback(TInt aError)
sl@0
  5095
	{
sl@0
  5096
	INFO_PRINTF1(_L("========== Second Client DevSound InitializeComplete() callback =========="));
sl@0
  5097
	if (aError != KErrNone)
sl@0
  5098
		{
sl@0
  5099
		ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError);
sl@0
  5100
		StopTest(aError);
sl@0
  5101
		}
sl@0
  5102
	else
sl@0
  5103
		{
sl@0
  5104
		INFO_PRINTF2(_L("Second DevSound client called InitializeComplete with error = %d"), aError);
sl@0
  5105
		INFO_PRINTF1(_L("Starting to play audio thru second devsound client"));
sl@0
  5106
		TInt err = iDevsoundPlayClient->PlayAudio ();
sl@0
  5107
		if (err != KErrNone)
sl@0
  5108
			{
sl@0
  5109
			ERR_PRINTF2(_L("Starting to play audio thru second devsound client failed with error = %d"), err);
sl@0
  5110
			StopTest(err);
sl@0
  5111
			}
sl@0
  5112
		}
sl@0
  5113
	}
sl@0
  5114
sl@0
  5115
void RA3FDevSoundPlayRejectionTest::ClientPlayHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError)
sl@0
  5116
	{
sl@0
  5117
	switch (aError)
sl@0
  5118
		{
sl@0
  5119
		case EInvalidClientFSMEvent:
sl@0
  5120
			ERR_PRINTF1(_L("Second devsound client received an invalid Event..."));
sl@0
  5121
			break;
sl@0
  5122
		case EInvalidClientFSMState:
sl@0
  5123
			ERR_PRINTF1(_L("Second devsound client received an invalid State..."));
sl@0
  5124
			break;
sl@0
  5125
		case EReadFileErrorInClient:
sl@0
  5126
			ERR_PRINTF1(_L("Second devsound client could not read to file..."));
sl@0
  5127
			break;
sl@0
  5128
		default:
sl@0
  5129
			break;
sl@0
  5130
		}
sl@0
  5131
	StopTest(aError, EFail);
sl@0
  5132
	}
sl@0
  5133
sl@0
  5134
void RA3FDevSoundPlayRejectionTest::ClientBufferToBeFilledCallback(TInt aError)
sl@0
  5135
	{
sl@0
  5136
	INFO_PRINTF2(_L("Second DevSound client should not call BufferToBeFilled in rejection. Error = %d"), aError);
sl@0
  5137
	StopTest(aError, EFail);
sl@0
  5138
	}
sl@0
  5139
sl@0
  5140
void RA3FDevSoundPlayRejectionTest::ClientPlayErrorCallback(TInt aError, TBool aLastBuffer)
sl@0
  5141
	{
sl@0
  5142
	INFO_PRINTF1(_L("========== Second Client DevSound PlayError() callback =========="));
sl@0
  5143
sl@0
  5144
	if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied && !aLastBuffer)
sl@0
  5145
		{
sl@0
  5146
		INFO_PRINTF1(_L("========== Rejecting 2nd DevSound Instance=========="));
sl@0
  5147
		INFO_PRINTF2(_L("Second DevSound client PlayError succeeded with error = %d"), aError);
sl@0
  5148
		}
sl@0
  5149
	else
sl@0
  5150
		{
sl@0
  5151
		ERR_PRINTF2(_L("Second DevSound PlayError failed with error = %d"), aError);
sl@0
  5152
		ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied);
sl@0
  5153
		StopTest(aError, EFail);
sl@0
  5154
		}
sl@0
  5155
	}
sl@0
  5156
sl@0
  5157
/*
sl@0
  5158
 *========================================================================================================
sl@0
  5159
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0035
sl@0
  5160
 */
sl@0
  5161
RA3FDevSoundPlayRejectedByToneTest::RA3FDevSoundPlayRejectedByToneTest(const TDesC& aTestName) :
sl@0
  5162
	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC)
sl@0
  5163
	{
sl@0
  5164
	}
sl@0
  5165
sl@0
  5166
RA3FDevSoundPlayRejectedByToneTest* RA3FDevSoundPlayRejectedByToneTest::NewL(const TDesC& aTestName)
sl@0
  5167
	{
sl@0
  5168
	RA3FDevSoundPlayRejectedByToneTest* self = new (ELeave) RA3FDevSoundPlayRejectedByToneTest(aTestName);
sl@0
  5169
	return self;
sl@0
  5170
	}
sl@0
  5171
sl@0
  5172
void RA3FDevSoundPlayRejectedByToneTest::DoKickoffTestL()
sl@0
  5173
	{
sl@0
  5174
	TPtrC filename;
sl@0
  5175
	// Get the filename of the audio file to play
sl@0
  5176
	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
sl@0
  5177
		{
sl@0
  5178
		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
sl@0
  5179
		StopTest(KErrNotFound);
sl@0
  5180
		return;
sl@0
  5181
		}
sl@0
  5182
	// open using RFile for playback
sl@0
  5183
	iFilename.Copy (filename);
sl@0
  5184
sl@0
  5185
	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
sl@0
  5186
	if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
sl@0
  5187
		{
sl@0
  5188
		ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
sl@0
  5189
		StopTest(KErrNotFound);
sl@0
  5190
		return;
sl@0
  5191
		}
sl@0
  5192
	if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
sl@0
  5193
		{
sl@0
  5194
		ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
sl@0
  5195
		StopTest(KErrNotFound);
sl@0
  5196
		return;
sl@0
  5197
		}
sl@0
  5198
	TPtrC fourccCode;
sl@0
  5199
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  5200
		{
sl@0
  5201
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  5202
		StopTest(KErrNotFound);
sl@0
  5203
		return;
sl@0
  5204
		}
sl@0
  5205
	EncodingFromStringToTFourCC(fourccCode);
sl@0
  5206
	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
sl@0
  5207
	iDevsoundPlayClient = CA3FDevSoundPlayClient::NewL(*this, iFourCCCode, iFs, iSuite);
sl@0
  5208
	}
sl@0
  5209
sl@0
  5210
void RA3FDevSoundPlayRejectedByToneTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  5211
	{
sl@0
  5212
	switch (iDevSoundState)
sl@0
  5213
		{
sl@0
  5214
		case EStateCreated:
sl@0
  5215
			{
sl@0
  5216
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayRejectedByToneTest"), EFsmIncorrectErrorPassed));
sl@0
  5217
			if (aDevSoundEvent == EEventInitialize)
sl@0
  5218
				{
sl@0
  5219
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  5220
				TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
sl@0
  5221
				if (err != KErrNone)
sl@0
  5222
					{
sl@0
  5223
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  5224
					StopTest(err);
sl@0
  5225
					break;
sl@0
  5226
					}
sl@0
  5227
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  5228
				iDevSoundState = EStateInitializing;
sl@0
  5229
				}
sl@0
  5230
			else
sl@0
  5231
				{
sl@0
  5232
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  5233
				StopTest(aError, EFail);
sl@0
  5234
				}
sl@0
  5235
			break;
sl@0
  5236
			}
sl@0
  5237
		case EStateInitializing:
sl@0
  5238
			{
sl@0
  5239
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  5240
				{
sl@0
  5241
				TMMFPrioritySettings priority;
sl@0
  5242
				priority.iPriority = KMinimumPriority;
sl@0
  5243
				INFO_PRINTF2(_L("Setting Priority to %d using CMMFDevSound::SetPrioritySettings"), priority.iPriority);
sl@0
  5244
				iMMFDevSound->SetPrioritySettings (priority);
sl@0
  5245
				iMMFDevSound->SetVolume(iMMFDevSound->MaxVolume());
sl@0
  5246
				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayToneL"));
sl@0
  5247
				TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration*KMicroSecsInOneSec));
sl@0
  5248
				if (err != KErrNone)
sl@0
  5249
					{
sl@0
  5250
					ERR_PRINTF2(_L("CMMFDevSound::PlayToneL left with error =%d"), err);
sl@0
  5251
					StopTest(err);
sl@0
  5252
					break;
sl@0
  5253
					}
sl@0
  5254
				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
sl@0
  5255
				iDevSoundState = EStatePlaying;
sl@0
  5256
				StartTimer(KMicroSecsTwoSec);
sl@0
  5257
				}
sl@0
  5258
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  5259
					{
sl@0
  5260
					ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  5261
					StopTest(aError);
sl@0
  5262
					}
sl@0
  5263
				else
sl@0
  5264
					{
sl@0
  5265
					ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  5266
					StopTest(aError, EFail);
sl@0
  5267
					}
sl@0
  5268
			break;
sl@0
  5269
			}
sl@0
  5270
		default:
sl@0
  5271
			{
sl@0
  5272
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  5273
			StopTest(aError, EFail);
sl@0
  5274
			}
sl@0
  5275
		}
sl@0
  5276
	}
sl@0
  5277
sl@0
  5278
void RA3FDevSoundPlayRejectedByToneTest::DoTimerCallback()
sl@0
  5279
	{
sl@0
  5280
	INFO_PRINTF1(_L("TimerEvent called"));
sl@0
  5281
	iTimer->Cancel();
sl@0
  5282
	INFO_PRINTF1(_L("Starting higher priority devsound client"));
sl@0
  5283
	iDevsoundPlayClient->SetPriority(KMinimumPriority);
sl@0
  5284
	INFO_PRINTF1(_L("Initializing to play audio thru second devsound client"));
sl@0
  5285
	TInt err = iDevsoundPlayClient->PlayInit(iFilename);
sl@0
  5286
	if (err != KErrNone)
sl@0
  5287
		{
sl@0
  5288
		ERR_PRINTF2(_L("Initialization to play audio thru second devsound client failed with %d"), err);
sl@0
  5289
		StopTest(err);
sl@0
  5290
		}
sl@0
  5291
	}
sl@0
  5292
sl@0
  5293
void RA3FDevSoundPlayRejectedByToneTest::ClientInitializeCompleteCallback(TInt aError)
sl@0
  5294
	{
sl@0
  5295
	INFO_PRINTF1(_L("========== Second Client DevSound InitializeComplete() callback =========="));
sl@0
  5296
	if (aError != KErrNone)
sl@0
  5297
		{
sl@0
  5298
		ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError);
sl@0
  5299
		StopTest (aError);
sl@0
  5300
		}
sl@0
  5301
	else
sl@0
  5302
		{
sl@0
  5303
		INFO_PRINTF2(_L("Second DevSound client called InitializeComplete with error = %d"), aError);
sl@0
  5304
		INFO_PRINTF1(_L("Starting to play audio thru second devsound client"));
sl@0
  5305
		TInt err = iDevsoundPlayClient->PlayAudio ();
sl@0
  5306
		if (err != KErrNone)
sl@0
  5307
			{
sl@0
  5308
			ERR_PRINTF2(_L("Starting to play audio thru second devsound client failed with error = %d"), err);
sl@0
  5309
			StopTest(err);
sl@0
  5310
			}
sl@0
  5311
		}
sl@0
  5312
	}
sl@0
  5313
sl@0
  5314
void RA3FDevSoundPlayRejectedByToneTest::ClientPlayHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError)
sl@0
  5315
	{
sl@0
  5316
	switch (aError)
sl@0
  5317
		{
sl@0
  5318
		case EInvalidClientFSMEvent:
sl@0
  5319
			ERR_PRINTF1(_L("Second devsound client received an invalid Event..."));
sl@0
  5320
			break;
sl@0
  5321
		case EInvalidClientFSMState:
sl@0
  5322
			ERR_PRINTF1(_L("Second devsound client received an invalid State..."));
sl@0
  5323
			break;
sl@0
  5324
		case EReadFileErrorInClient:
sl@0
  5325
			ERR_PRINTF1(_L("Second devsound client could not read to file..."));
sl@0
  5326
			break;
sl@0
  5327
		default:
sl@0
  5328
			break;
sl@0
  5329
		}
sl@0
  5330
	StopTest(aError, EFail);
sl@0
  5331
	}
sl@0
  5332
sl@0
  5333
void RA3FDevSoundPlayRejectedByToneTest::ClientBufferToBeFilledCallback(TInt aError)
sl@0
  5334
	{
sl@0
  5335
	INFO_PRINTF2(_L("Second DevSound client should not call BufferToBeFilled in rejection. Error = %d"), aError);
sl@0
  5336
	StopTest(aError, EFail);
sl@0
  5337
	}
sl@0
  5338
sl@0
  5339
void RA3FDevSoundPlayRejectedByToneTest::ClientPlayErrorCallback(TInt aError,TBool aLastBuffer)
sl@0
  5340
	{
sl@0
  5341
	INFO_PRINTF1(_L("========== Second Client DevSound PlayError() callback =========="));
sl@0
  5342
	if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied && !aLastBuffer)
sl@0
  5343
		{
sl@0
  5344
		INFO_PRINTF1(_L("========== Rejecting 2nd DevSound Instance=========="));
sl@0
  5345
		INFO_PRINTF2(_L("Second DevSound client PlayError succeeded with error = %d"), aError);
sl@0
  5346
		}
sl@0
  5347
	else
sl@0
  5348
		{
sl@0
  5349
		ERR_PRINTF2(_L("Second DevSound PlayError failed with error = %d"), aError);
sl@0
  5350
		ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied);
sl@0
  5351
		StopTest(aError, EFail);
sl@0
  5352
		}
sl@0
  5353
	}
sl@0
  5354
sl@0
  5355
/*
sl@0
  5356
 *========================================================================================================
sl@0
  5357
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0036
sl@0
  5358
 */
sl@0
  5359
RA3FDevSoundPlayRejectedByRecordTest::RA3FDevSoundPlayRejectedByRecordTest(const TDesC& aTestName) :
sl@0
  5360
	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC), 
sl@0
  5361
	iOtherFilename(KNullDesC), iOtherClientStarted(EFalse)
sl@0
  5362
	{
sl@0
  5363
	}
sl@0
  5364
sl@0
  5365
RA3FDevSoundPlayRejectedByRecordTest* RA3FDevSoundPlayRejectedByRecordTest::NewL(const TDesC& aTestName)
sl@0
  5366
	{
sl@0
  5367
	RA3FDevSoundPlayRejectedByRecordTest* self = new (ELeave) RA3FDevSoundPlayRejectedByRecordTest(aTestName);
sl@0
  5368
	return self;
sl@0
  5369
	}
sl@0
  5370
sl@0
  5371
void RA3FDevSoundPlayRejectedByRecordTest::DoKickoffTestL()
sl@0
  5372
	{
sl@0
  5373
	TPtrC filename;
sl@0
  5374
	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
sl@0
  5375
		{
sl@0
  5376
		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
sl@0
  5377
		StopTest(KErrNotFound);
sl@0
  5378
		return;
sl@0
  5379
		}
sl@0
  5380
	// Open file for recording using RFile 
sl@0
  5381
	
sl@0
  5382
	iFilename.Copy (filename);
sl@0
  5383
	
sl@0
  5384
	// Get the filename of the second audio file to play
sl@0
  5385
	if (!GetStringFromConfig(iTestStepName, KOtherFilename, filename))
sl@0
  5386
		{
sl@0
  5387
		ERR_PRINTF2(KMsgErrorGetParameter, &KOtherFilename);
sl@0
  5388
		StopTest(KErrNotFound);
sl@0
  5389
		return;
sl@0
  5390
		}
sl@0
  5391
	INFO_PRINTF2(_L("Opening file for recording %S"), &iFilename);
sl@0
  5392
	TInt err = iFile.Replace (iFs, iFilename, EFileWrite);
sl@0
  5393
	if (err != KErrNone)
sl@0
  5394
		{
sl@0
  5395
		ERR_PRINTF2(_L("Could not create output file. Error = %d"), err);
sl@0
  5396
		iFs.Close();
sl@0
  5397
		StopTest(err);
sl@0
  5398
		return;
sl@0
  5399
		}
sl@0
  5400
sl@0
  5401
	iOtherFilename.Copy (filename);
sl@0
  5402
sl@0
  5403
	TPtrC fourccCode;
sl@0
  5404
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  5405
		{
sl@0
  5406
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  5407
		StopTest (KErrNotFound);
sl@0
  5408
		return;
sl@0
  5409
		}
sl@0
  5410
	EncodingFromStringToTFourCC(fourccCode);
sl@0
  5411
	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
sl@0
  5412
	iDevsoundPlayClient = CA3FDevSoundPlayClient::NewL(*this, iFourCCCode, iFs, iSuite);
sl@0
  5413
	iAsyncWriteBTFAO = CAsyncWriteBufferToFile::NewL(iFile, iMMFDevSound, *this);
sl@0
  5414
	}
sl@0
  5415
sl@0
  5416
void RA3FDevSoundPlayRejectedByRecordTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  5417
	{
sl@0
  5418
	switch (iDevSoundState)
sl@0
  5419
		{
sl@0
  5420
		case EStateCreated:
sl@0
  5421
			{
sl@0
  5422
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayRejectedByRecordTest"), EFsmIncorrectErrorPassed));
sl@0
  5423
			if (aDevSoundEvent == EEventInitialize)
sl@0
  5424
				{
sl@0
  5425
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  5426
				INFO_PRINTF1(_L("iMMFDevSound->InitializeL()"));
sl@0
  5427
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStateRecording));
sl@0
  5428
				if (err != KErrNone)
sl@0
  5429
					{
sl@0
  5430
					ERR_PRINTF2(_L("Initialization of DevSound failed with error : %d!"), err);
sl@0
  5431
					StopTest(err);
sl@0
  5432
					break;
sl@0
  5433
					}
sl@0
  5434
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  5435
				iDevSoundState = EStateInitializing;
sl@0
  5436
				}
sl@0
  5437
			else
sl@0
  5438
				{
sl@0
  5439
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  5440
				StopTest(aError, EFail);
sl@0
  5441
				}
sl@0
  5442
			break;
sl@0
  5443
			}
sl@0
  5444
		case EStateInitializing:
sl@0
  5445
			{
sl@0
  5446
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  5447
				{
sl@0
  5448
				INFO_PRINTF1(_L("CMMFDevSound::RecordInitL"));
sl@0
  5449
				TRAPD(err, iMMFDevSound->RecordInitL());
sl@0
  5450
				if (err != KErrNone)
sl@0
  5451
					{
sl@0
  5452
					ERR_PRINTF2(_L("DevSound RecordInitL left with error = %d"), err);
sl@0
  5453
					StopTest(err);
sl@0
  5454
					break;
sl@0
  5455
					}
sl@0
  5456
				StartTimer(KMicroSecsTwoSec);
sl@0
  5457
				INFO_PRINTF1(_L("DevSound State: EStateRecording"));
sl@0
  5458
				iDevSoundState = EStateRecording;
sl@0
  5459
				}
sl@0
  5460
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  5461
				{
sl@0
  5462
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  5463
				StopTest(aError);
sl@0
  5464
				}
sl@0
  5465
			else
sl@0
  5466
				{
sl@0
  5467
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  5468
				StopTest(aError, EFail);
sl@0
  5469
				}
sl@0
  5470
			break;
sl@0
  5471
			}
sl@0
  5472
		case EStateRecording:
sl@0
  5473
			{
sl@0
  5474
			if (aDevSoundEvent == EEventBTBE)
sl@0
  5475
				{
sl@0
  5476
				// Write buffer to file
sl@0
  5477
				INFO_PRINTF1(_L("Writing data to file"));
sl@0
  5478
				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
sl@0
  5479
				iAsyncWriteBTFAO->Start(buffer);
sl@0
  5480
				}
sl@0
  5481
			else if (aDevSoundEvent == EEventTimerComplete)
sl@0
  5482
				{
sl@0
  5483
				iMMFDevSound->Pause();
sl@0
  5484
				INFO_PRINTF1(_L("DevSound State: EStatePause"));
sl@0
  5485
				iDevSoundState = EStatePause;
sl@0
  5486
				INFO_PRINTF1(_L("Recording is Paused, waiting for the last buffer callback"));
sl@0
  5487
				}
sl@0
  5488
			else
sl@0
  5489
				{
sl@0
  5490
				ERR_PRINTF2(_L("DevSound EEventBTBE not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  5491
				StopTest(aError, EFail);
sl@0
  5492
				}
sl@0
  5493
			break;
sl@0
  5494
			}
sl@0
  5495
		case EStatePause:
sl@0
  5496
			{
sl@0
  5497
			if (aDevSoundEvent == EEventBTBE)
sl@0
  5498
				{
sl@0
  5499
				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
sl@0
  5500
				// Continue recording data
sl@0
  5501
				iAsyncWriteBTFAO->Start (buffer);
sl@0
  5502
				}
sl@0
  5503
			else
sl@0
  5504
				{
sl@0
  5505
				ERR_PRINTF2(_L("DevSound EEventBTBE not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  5506
				StopTest(aError, EFail);
sl@0
  5507
				}
sl@0
  5508
			break;
sl@0
  5509
			}
sl@0
  5510
		default:
sl@0
  5511
			{
sl@0
  5512
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  5513
			StopTest(aError, EFail);
sl@0
  5514
			}
sl@0
  5515
		}
sl@0
  5516
	}
sl@0
  5517
sl@0
  5518
void RA3FDevSoundPlayRejectedByRecordTest::DoTimerCallback()
sl@0
  5519
	{
sl@0
  5520
	INFO_PRINTF1(_L("TimerEvent called"));
sl@0
  5521
	if (!iOtherClientStarted)
sl@0
  5522
		{
sl@0
  5523
		INFO_PRINTF1(_L("Starting higher priority devsound client"));
sl@0
  5524
		iDevsoundPlayClient->SetPriority(KMinimumPriority);
sl@0
  5525
		INFO_PRINTF1(_L("Initializing to play audio thru second devsound client"));
sl@0
  5526
		TInt err = iDevsoundPlayClient->PlayInit(iFilename);
sl@0
  5527
		if (err != KErrNone)
sl@0
  5528
			{
sl@0
  5529
			ERR_PRINTF2(_L("Initialization to play audio thru second devsound client failed with %d"), err);
sl@0
  5530
			StopTest(err);
sl@0
  5531
			}
sl@0
  5532
		iOtherClientStarted = ETrue;
sl@0
  5533
		}
sl@0
  5534
	else
sl@0
  5535
		{
sl@0
  5536
		iTimer->Cancel();
sl@0
  5537
		Fsm(EEventTimerComplete, KErrNone);
sl@0
  5538
		}
sl@0
  5539
	}
sl@0
  5540
sl@0
  5541
void RA3FDevSoundPlayRejectedByRecordTest::ClientInitializeCompleteCallback(TInt aError)
sl@0
  5542
	{
sl@0
  5543
	INFO_PRINTF1(_L("========== Second Client DevSound InitializeComplete() callback =========="));
sl@0
  5544
	if (aError != KErrNone)
sl@0
  5545
		{
sl@0
  5546
		ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError);
sl@0
  5547
		StopTest(aError);
sl@0
  5548
		}
sl@0
  5549
	else
sl@0
  5550
		{
sl@0
  5551
		INFO_PRINTF2(_L("Second DevSound client called InitializeComplete and with error = %d"), aError);
sl@0
  5552
		INFO_PRINTF1(_L("Starting to play audio thru second devsound client"));
sl@0
  5553
		TInt err = iDevsoundPlayClient->PlayAudio();
sl@0
  5554
		if (err != KErrNone)
sl@0
  5555
			{
sl@0
  5556
			ERR_PRINTF2(_L("Starting to play audio thru second devsound client failed with error = %d"), err);
sl@0
  5557
			StopTest(err);
sl@0
  5558
			}
sl@0
  5559
		}
sl@0
  5560
	}
sl@0
  5561
sl@0
  5562
void RA3FDevSoundPlayRejectedByRecordTest::ClientPlayHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError)
sl@0
  5563
	{
sl@0
  5564
	switch (aError)
sl@0
  5565
		{
sl@0
  5566
		case EInvalidClientFSMEvent:
sl@0
  5567
			ERR_PRINTF1(_L("Second devsound client received an invalid Event..."));
sl@0
  5568
			break;
sl@0
  5569
		case EInvalidClientFSMState:
sl@0
  5570
			ERR_PRINTF1(_L("Second devsound client received an invalid State..."));
sl@0
  5571
			break;
sl@0
  5572
		case EReadFileErrorInClient:
sl@0
  5573
			ERR_PRINTF1(_L("Second devsound client could not read to file..."));
sl@0
  5574
			break;
sl@0
  5575
		default:
sl@0
  5576
			break;
sl@0
  5577
		}
sl@0
  5578
	StopTest(aError, EFail);
sl@0
  5579
	}
sl@0
  5580
sl@0
  5581
void RA3FDevSoundPlayRejectedByRecordTest::ClientBufferToBeFilledCallback(TInt aError)
sl@0
  5582
	{
sl@0
  5583
	INFO_PRINTF2(_L("Second DevSound client should not call BufferToBeFilled in rejection. Error = %d"), aError);
sl@0
  5584
	StopTest(aError, EFail);
sl@0
  5585
	}
sl@0
  5586
sl@0
  5587
void RA3FDevSoundPlayRejectedByRecordTest::ClientPlayErrorCallback(TInt aError, TBool aLastBuffer)
sl@0
  5588
	{
sl@0
  5589
	INFO_PRINTF1(_L("========== Second Client DevSound PlayError() callback =========="));
sl@0
  5590
sl@0
  5591
	if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied && !aLastBuffer)
sl@0
  5592
		{
sl@0
  5593
		INFO_PRINTF1(_L("========== Rejecting 2nd DevSound Instance=========="));
sl@0
  5594
		INFO_PRINTF2(_L("Second DevSound client PlayError succeeded with error = %d"), aError);
sl@0
  5595
		}
sl@0
  5596
	else
sl@0
  5597
		{
sl@0
  5598
		ERR_PRINTF2(_L("Second DevSound PlayError failed with error = %d"), aError);
sl@0
  5599
		ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied);
sl@0
  5600
		StopTest(aError, EFail);
sl@0
  5601
		}
sl@0
  5602
	}
sl@0
  5603
sl@0
  5604
/*
sl@0
  5605
 *========================================================================================================
sl@0
  5606
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0037
sl@0
  5607
 */
sl@0
  5608
RA3FDevSoundPlayDataBeforePlayInitTest::RA3FDevSoundPlayDataBeforePlayInitTest(const TDesC& aTestName) :
sl@0
  5609
	RA3FDevSoundTestBase(aTestName)
sl@0
  5610
	{
sl@0
  5611
	}
sl@0
  5612
sl@0
  5613
RA3FDevSoundPlayDataBeforePlayInitTest* RA3FDevSoundPlayDataBeforePlayInitTest::NewL(const TDesC& aTestName)
sl@0
  5614
	{
sl@0
  5615
	RA3FDevSoundPlayDataBeforePlayInitTest* self = new (ELeave) RA3FDevSoundPlayDataBeforePlayInitTest(aTestName);
sl@0
  5616
	return self;
sl@0
  5617
	}
sl@0
  5618
sl@0
  5619
void RA3FDevSoundPlayDataBeforePlayInitTest::DoKickoffTestL()
sl@0
  5620
	{
sl@0
  5621
	TPtrC fourccCode;
sl@0
  5622
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  5623
		{
sl@0
  5624
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  5625
		StopTest(KErrNotFound);
sl@0
  5626
		return;
sl@0
  5627
		}
sl@0
  5628
	EncodingFromStringToTFourCC(fourccCode);
sl@0
  5629
	}
sl@0
  5630
sl@0
  5631
void RA3FDevSoundPlayDataBeforePlayInitTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  5632
	{
sl@0
  5633
	switch (iDevSoundState)
sl@0
  5634
		{
sl@0
  5635
		case EStateCreated:
sl@0
  5636
			{
sl@0
  5637
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPlayDatabeforePlayInitLTest"), EFsmIncorrectErrorPassed));
sl@0
  5638
			if (aDevSoundEvent == EEventInitialize)
sl@0
  5639
				{
sl@0
  5640
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  5641
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  5642
				if (err != KErrNone)
sl@0
  5643
					{
sl@0
  5644
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  5645
					StopTest(err);
sl@0
  5646
					break;
sl@0
  5647
					}
sl@0
  5648
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  5649
				iDevSoundState = EStateInitializing;
sl@0
  5650
				}
sl@0
  5651
			else
sl@0
  5652
				{
sl@0
  5653
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  5654
				StopTest(aError, EFail);
sl@0
  5655
				}
sl@0
  5656
			break;
sl@0
  5657
			}
sl@0
  5658
		case EStateInitializing:
sl@0
  5659
			{
sl@0
  5660
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  5661
				{
sl@0
  5662
				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData out of sequence"));
sl@0
  5663
				iMMFDevSound->PlayData();
sl@0
  5664
				}
sl@0
  5665
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  5666
				{
sl@0
  5667
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  5668
				StopTest(aError);
sl@0
  5669
				}
sl@0
  5670
			else
sl@0
  5671
				{
sl@0
  5672
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  5673
				StopTest(aError, EFail);
sl@0
  5674
				}
sl@0
  5675
			break;
sl@0
  5676
			}
sl@0
  5677
		default:
sl@0
  5678
			{
sl@0
  5679
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  5680
			StopTest(aError, EFail);
sl@0
  5681
			}
sl@0
  5682
		}
sl@0
  5683
	}
sl@0
  5684
sl@0
  5685
/*
sl@0
  5686
 *========================================================================================================
sl@0
  5687
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0038
sl@0
  5688
 */
sl@0
  5689
RA3FDevSoundPlayInitTwiceTest::RA3FDevSoundPlayInitTwiceTest(const TDesC& aTestName) :
sl@0
  5690
	RA3FDevSoundTestBase(aTestName),iFirstPlayInitErr(KErrGeneral),
sl@0
  5691
	iErr(KErrGeneral)
sl@0
  5692
	{
sl@0
  5693
	}
sl@0
  5694
sl@0
  5695
RA3FDevSoundPlayInitTwiceTest* RA3FDevSoundPlayInitTwiceTest::NewL(const TDesC& aTestName)
sl@0
  5696
	{
sl@0
  5697
	RA3FDevSoundPlayInitTwiceTest* self = new (ELeave) RA3FDevSoundPlayInitTwiceTest(aTestName);
sl@0
  5698
	return self;
sl@0
  5699
	}
sl@0
  5700
sl@0
  5701
void RA3FDevSoundPlayInitTwiceTest::DoKickoffTestL()
sl@0
  5702
	{
sl@0
  5703
	TPtrC fourccCode;
sl@0
  5704
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  5705
		{
sl@0
  5706
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  5707
		StopTest(KErrNotFound);
sl@0
  5708
		return;
sl@0
  5709
		}
sl@0
  5710
	EncodingFromStringToTFourCC (fourccCode);
sl@0
  5711
	}
sl@0
  5712
sl@0
  5713
void RA3FDevSoundPlayInitTwiceTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  5714
	{
sl@0
  5715
	switch (iDevSoundState)
sl@0
  5716
		{
sl@0
  5717
		case EStateCreated:
sl@0
  5718
			{
sl@0
  5719
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPlayInitLTwiceTest"), EFsmIncorrectErrorPassed));
sl@0
  5720
			if (aDevSoundEvent == EEventInitialize)
sl@0
  5721
				{
sl@0
  5722
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  5723
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  5724
				if (err != KErrNone)
sl@0
  5725
					{
sl@0
  5726
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  5727
					StopTest(err);
sl@0
  5728
					break;
sl@0
  5729
					}
sl@0
  5730
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  5731
				iDevSoundState = EStateInitializing;
sl@0
  5732
				}
sl@0
  5733
			else
sl@0
  5734
				{
sl@0
  5735
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  5736
				StopTest(aError, EFail);
sl@0
  5737
				}
sl@0
  5738
			break;
sl@0
  5739
			}
sl@0
  5740
		case EStateInitializing:
sl@0
  5741
			{
sl@0
  5742
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  5743
				{
sl@0
  5744
				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
sl@0
  5745
				TRAP(iFirstPlayInitErr, iMMFDevSound->PlayInitL());
sl@0
  5746
				if (iFirstPlayInitErr != KErrNone)
sl@0
  5747
					{
sl@0
  5748
					ERR_PRINTF2(_L("CMMFDevSound::PlayInitL left with error = %d"), iFirstPlayInitErr);
sl@0
  5749
					StopTest(iFirstPlayInitErr);
sl@0
  5750
					break;
sl@0
  5751
					}
sl@0
  5752
				INFO_PRINTF1(_L("CMMFDevSound::PlayInitL twice (more than once)"));
sl@0
  5753
				TRAP(iErr, iMMFDevSound->PlayInitL());
sl@0
  5754
				if (iErr == KErrNotReady)
sl@0
  5755
					{
sl@0
  5756
					INFO_PRINTF2(_L("CMMFDevSound::PlayInitL left with the expected error = %d"), iErr);
sl@0
  5757
					break;
sl@0
  5758
					}
sl@0
  5759
				else
sl@0
  5760
					{
sl@0
  5761
					ERR_PRINTF2(_L("Second CMMFDevSound::PlayInitL did NOT leave with the expected error = %d"), iErr);
sl@0
  5762
					ERR_PRINTF2(_L("Expected error = %d"), KErrNotReady);
sl@0
  5763
					StopTest(iErr, EFail);
sl@0
  5764
					break;
sl@0
  5765
					}
sl@0
  5766
				}
sl@0
  5767
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  5768
				{
sl@0
  5769
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  5770
				StopTest(aError);
sl@0
  5771
				}
sl@0
  5772
			else
sl@0
  5773
				{
sl@0
  5774
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  5775
				StopTest(aError, EFail);
sl@0
  5776
				}
sl@0
  5777
			break;
sl@0
  5778
			}
sl@0
  5779
		default:
sl@0
  5780
			{
sl@0
  5781
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  5782
			StopTest(aError, EFail);
sl@0
  5783
			}
sl@0
  5784
		}
sl@0
  5785
	}
sl@0
  5786
sl@0
  5787
void RA3FDevSoundPlayInitTwiceTest::BufferToBeFilled(CMMFBuffer* /*aBuffer*/)
sl@0
  5788
	{
sl@0
  5789
	INFO_PRINTF1(_L("========== DevSound BufferToBeFilled() callback =========="));
sl@0
  5790
	if (iErr == KErrNotReady && iFirstPlayInitErr == KErrNone)
sl@0
  5791
		{
sl@0
  5792
		INFO_PRINTF1(_L("BufferToBeFilled is called because the leave generated due to second CMMFDevSound::PlayInitL is ignored"));
sl@0
  5793
		StopTest();
sl@0
  5794
		}
sl@0
  5795
	}
sl@0
  5796
sl@0
  5797
/*
sl@0
  5798
 *========================================================================================================
sl@0
  5799
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0039
sl@0
  5800
 */
sl@0
  5801
RA3FDevSoundPlayARNTest::RA3FDevSoundPlayARNTest(const TDesC& aTestName) :
sl@0
  5802
	RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC),
sl@0
  5803
	iOtherFilename(KNullDesC)
sl@0
  5804
	{
sl@0
  5805
	}
sl@0
  5806
sl@0
  5807
RA3FDevSoundPlayARNTest* RA3FDevSoundPlayARNTest::NewL(const TDesC& aTestName)
sl@0
  5808
	{
sl@0
  5809
	RA3FDevSoundPlayARNTest* self = new (ELeave) RA3FDevSoundPlayARNTest(aTestName);
sl@0
  5810
	return self;
sl@0
  5811
	}
sl@0
  5812
sl@0
  5813
void RA3FDevSoundPlayARNTest::DoKickoffTestL()
sl@0
  5814
	{
sl@0
  5815
	iRepeat = EFalse;
sl@0
  5816
	TPtrC filename;
sl@0
  5817
	// Get the filename of the audio file to play
sl@0
  5818
	if (!GetStringFromConfig(iTestStepName, KFilename, filename))
sl@0
  5819
		{
sl@0
  5820
		ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
sl@0
  5821
		StopTest(KErrNotFound);
sl@0
  5822
		return;
sl@0
  5823
		}
sl@0
  5824
	// open using RFile for playback
sl@0
  5825
	iFilename.Copy(filename);
sl@0
  5826
	TInt err = iFile.Open(iFs, iFilename, EFileRead);
sl@0
  5827
	if (err != KErrNone)
sl@0
  5828
		{
sl@0
  5829
		ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
sl@0
  5830
		StopTest(err);
sl@0
  5831
		return;
sl@0
  5832
		}
sl@0
  5833
	INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
sl@0
  5834
	// Get the filename of the second devsound instance
sl@0
  5835
	TPtrC tempString;
sl@0
  5836
	if (!GetStringFromConfig(iTestStepName, KOtherFilename, tempString))
sl@0
  5837
		{
sl@0
  5838
		ERR_PRINTF2(KMsgErrorGetParameter, &KOtherFilename);
sl@0
  5839
		StopTest(KErrNotFound);
sl@0
  5840
		return;
sl@0
  5841
		}
sl@0
  5842
	iOtherFilename.Copy (tempString);
sl@0
  5843
	INFO_PRINTF2(_L("File under test  -> %S"), &iOtherFilename);
sl@0
  5844
	TPtrC fourccCode;
sl@0
  5845
	if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  5846
		{
sl@0
  5847
		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  5848
		StopTest(KErrNotFound);
sl@0
  5849
		return;
sl@0
  5850
		}
sl@0
  5851
	EncodingFromStringToTFourCC(fourccCode);
sl@0
  5852
	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
sl@0
  5853
	iDevsoundPlayClient = CA3FDevSoundPlayClient::NewL(*this, iFourCCCode, iFs, iSuite);
sl@0
  5854
	}
sl@0
  5855
sl@0
  5856
void RA3FDevSoundPlayARNTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  5857
	{
sl@0
  5858
	switch (iDevSoundState)
sl@0
  5859
		{
sl@0
  5860
		case EStateCreated:
sl@0
  5861
			{
sl@0
  5862
			__ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPreemptionTest"), EFsmIncorrectErrorPassed));
sl@0
  5863
			if (aDevSoundEvent == EEventInitialize)
sl@0
  5864
				{
sl@0
  5865
				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  5866
				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  5867
				if (err != KErrNone)
sl@0
  5868
					{
sl@0
  5869
					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  5870
					StopTest(err);
sl@0
  5871
					break;
sl@0
  5872
					}
sl@0
  5873
				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  5874
				iDevSoundState = EStateInitializing;
sl@0
  5875
				}
sl@0
  5876
			else
sl@0
  5877
				{
sl@0
  5878
				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  5879
				StopTest(aError, EFail);
sl@0
  5880
				}
sl@0
  5881
			break;
sl@0
  5882
			}
sl@0
  5883
		case EStateInitializing:
sl@0
  5884
			{
sl@0
  5885
			if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  5886
				{
sl@0
  5887
				TMMFPrioritySettings priority;
sl@0
  5888
				priority.iPriority = KMinimumPriority;
sl@0
  5889
				INFO_PRINTF2(_L("Setting Priority to %d using CMMFDevSound::SetPrioritySettings"), priority.iPriority);
sl@0
  5890
				iMMFDevSound->SetPrioritySettings (priority);
sl@0
  5891
				iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ());
sl@0
  5892
				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
sl@0
  5893
				TRAPD(err, iMMFDevSound->PlayInitL());
sl@0
  5894
				if (err != KErrNone)
sl@0
  5895
					{
sl@0
  5896
					StopTest(err);
sl@0
  5897
					break;
sl@0
  5898
					}
sl@0
  5899
				INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
sl@0
  5900
				INFO_PRINTF1(_L("Registering first client"));
sl@0
  5901
				iMMFDevSound->RegisterAsClient(KMMFEventCategoryAudioResourceAvailable);
sl@0
  5902
				iDevSoundState = EStatePlaying;
sl@0
  5903
				StartTimer(KMicroSecsTwoSec);
sl@0
  5904
				}
sl@0
  5905
			else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  5906
				{
sl@0
  5907
				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  5908
				StopTest(aError);
sl@0
  5909
				}
sl@0
  5910
			else
sl@0
  5911
				{
sl@0
  5912
				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  5913
				StopTest(aError, EFail);
sl@0
  5914
				}
sl@0
  5915
			break;
sl@0
  5916
			}
sl@0
  5917
		case EStatePlaying:
sl@0
  5918
			{
sl@0
  5919
			if (aDevSoundEvent == EEventBTBF)
sl@0
  5920
				{
sl@0
  5921
				CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
sl@0
  5922
				TInt err = iFile.Read (buffer->Data ());
sl@0
  5923
				if (err != KErrNone)
sl@0
  5924
					{
sl@0
  5925
					ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
sl@0
  5926
					StopTest (err);
sl@0
  5927
					break;
sl@0
  5928
					}
sl@0
  5929
				if (buffer->Data().Length ()!= buffer->RequestSize())
sl@0
  5930
					{
sl@0
  5931
					iBuffer->SetLastBuffer(ETrue);
sl@0
  5932
					}
sl@0
  5933
				INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
sl@0
  5934
				iMMFDevSound->PlayData();
sl@0
  5935
				}
sl@0
  5936
			else
sl@0
  5937
				{
sl@0
  5938
				ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  5939
				StopTest(aError, EFail);
sl@0
  5940
				}
sl@0
  5941
			break;
sl@0
  5942
			}
sl@0
  5943
		case EStateResumePlaying:
sl@0
  5944
			{
sl@0
  5945
//			if (aDevSoundEvent == KMMFEventCategoryAudioResourceAvailable)
sl@0
  5946
			if (aDevSoundEvent == EResourceAvailable)
sl@0
  5947
				{
sl@0
  5948
				INFO_PRINTF1(_L("First Client Received Notification as expected"));
sl@0
  5949
				//INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
sl@0
  5950
				//iMMFDevSound->PlayData ();
sl@0
  5951
				StopTest();
sl@0
  5952
				}
sl@0
  5953
			else
sl@0
  5954
				{
sl@0
  5955
				ERR_PRINTF2(_L("DevSound KMMFEventCategoryAudioResourceAvailable not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  5956
				StopTest(aError, EFail);
sl@0
  5957
				}
sl@0
  5958
			break;
sl@0
  5959
			}
sl@0
  5960
		default:
sl@0
  5961
			{
sl@0
  5962
			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  5963
			StopTest(KErrGeneral);
sl@0
  5964
			}
sl@0
  5965
		}
sl@0
  5966
	}
sl@0
  5967
sl@0
  5968
void RA3FDevSoundPlayARNTest::DoTimerCallback()
sl@0
  5969
	{
sl@0
  5970
	if(!iRepeat)
sl@0
  5971
		{
sl@0
  5972
		INFO_PRINTF1(_L("TimerEvent called"));
sl@0
  5973
		//iTimer->Cancel();
sl@0
  5974
		INFO_PRINTF1(_L("Starting higher priority devsound client"));
sl@0
  5975
		iDevsoundPlayClient->SetPriority(KMaximumPriority);
sl@0
  5976
		INFO_PRINTF1(_L("Initializing to play audio thru second devsound client"));
sl@0
  5977
		TInt err = iDevsoundPlayClient->PlayInit(iOtherFilename);
sl@0
  5978
		if (err != KErrNone)
sl@0
  5979
			{
sl@0
  5980
			ERR_PRINTF2(_L("Initializating DevSound to play audio thru second devsound client failed with error = %d"), err);
sl@0
  5981
			StopTest(err);
sl@0
  5982
			}
sl@0
  5983
		iRepeat = ETrue;
sl@0
  5984
		}
sl@0
  5985
	else
sl@0
  5986
		{
sl@0
  5987
		INFO_PRINTF1(_L("Deleting second devsound client"));
sl@0
  5988
		iDevsoundPlayClient->DeleteClient();
sl@0
  5989
		iDevSoundState = EStateResumePlaying;
sl@0
  5990
		}
sl@0
  5991
	}
sl@0
  5992
sl@0
  5993
void RA3FDevSoundPlayARNTest::PlayError(TInt aError)
sl@0
  5994
	{
sl@0
  5995
	INFO_PRINTF1(_L("========== DevSound PlayError() callback =========="));
sl@0
  5996
	if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied)
sl@0
  5997
		{
sl@0
  5998
		INFO_PRINTF1(_L("========== Preempting 1st DevSound Instance=========="));
sl@0
  5999
		INFO_PRINTF2(_L("First DevSound client PlayError succeeded with error = %d "), aError);
sl@0
  6000
		}
sl@0
  6001
	else
sl@0
  6002
		{
sl@0
  6003
		ERR_PRINTF2(_L("First DevSound client PlayError and failed with error = %d "), aError);
sl@0
  6004
		ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied);
sl@0
  6005
		StopTest(aError, EFail);
sl@0
  6006
		}
sl@0
  6007
	}
sl@0
  6008
sl@0
  6009
void RA3FDevSoundPlayARNTest::ClientInitializeCompleteCallback(TInt aError)                               
sl@0
  6010
	{
sl@0
  6011
	INFO_PRINTF1(_L("========== Second Client DevSound InitializeComplete() callback =========="));
sl@0
  6012
	if (aError != KErrNone)
sl@0
  6013
		{
sl@0
  6014
		ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError);
sl@0
  6015
		StopTest(aError);
sl@0
  6016
		}
sl@0
  6017
	else
sl@0
  6018
		{
sl@0
  6019
		INFO_PRINTF1(_L("Starting to play audio thru second devsound client"));
sl@0
  6020
		TInt err = iDevsoundPlayClient->PlayAudio();
sl@0
  6021
		if (err != KErrNone)
sl@0
  6022
			{
sl@0
  6023
			ERR_PRINTF2(_L("Starting to play audio thru second devsound client failed with error = %d"), err);
sl@0
  6024
			StopTest(err);
sl@0
  6025
			}
sl@0
  6026
		}
sl@0
  6027
	}
sl@0
  6028
sl@0
  6029
void RA3FDevSoundPlayARNTest::ClientBufferToBeFilledCallback(TInt aError)
sl@0
  6030
	{
sl@0
  6031
	INFO_PRINTF1(_L("========== Second Client DevSound BufferToBeFilled() callback =========="));
sl@0
  6032
	if (aError != KErrNone)
sl@0
  6033
		{
sl@0
  6034
		ERR_PRINTF2(_L("Second DevSound client called BufferToBeFilled and failed with error = %d"), aError);
sl@0
  6035
		StopTest(aError);
sl@0
  6036
		}
sl@0
  6037
	}
sl@0
  6038
sl@0
  6039
void RA3FDevSoundPlayARNTest::ClientPlayHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError)
sl@0
  6040
	{
sl@0
  6041
	switch (aError)
sl@0
  6042
		{
sl@0
  6043
		case EInvalidClientFSMEvent:
sl@0
  6044
			ERR_PRINTF1(_L("Second devsound client received an invalid Event..."));
sl@0
  6045
			break;
sl@0
  6046
		case EInvalidClientFSMState:
sl@0
  6047
			ERR_PRINTF1(_L("Second devsound client received an invalid State..."));
sl@0
  6048
			break;
sl@0
  6049
		case EReadFileErrorInClient:
sl@0
  6050
			ERR_PRINTF1(_L("Second devsound client could not read to file..."));
sl@0
  6051
			break;
sl@0
  6052
		default:
sl@0
  6053
			break;
sl@0
  6054
		}
sl@0
  6055
	StopTest(aError, EFail);
sl@0
  6056
	}
sl@0
  6057
sl@0
  6058
void RA3FDevSoundPlayARNTest::ClientPlayErrorCallback(TInt aError, TBool aLastBuffer)
sl@0
  6059
	{
sl@0
  6060
	INFO_PRINTF1(_L("========== Second Client DevSound PlayError() callback =========="));
sl@0
  6061
sl@0
  6062
	if (aError == KErrUnderflow && aLastBuffer)
sl@0
  6063
		{
sl@0
  6064
		INFO_PRINTF1(_L("Second DevSound client called PlayError and completed normally"));
sl@0
  6065
		iDevSoundState = EStateResumePlaying;
sl@0
  6066
		//StopTest();
sl@0
  6067
		}
sl@0
  6068
	else
sl@0
  6069
		{
sl@0
  6070
		ERR_PRINTF2(_L("Second DevSound PlayError failed with error = %d"), aError);
sl@0
  6071
		ERR_PRINTF2(_L("Expected error = %d "), KErrUnderflow);
sl@0
  6072
		StopTest(aError, EFail);
sl@0
  6073
		}
sl@0
  6074
	}	
sl@0
  6075
sl@0
  6076
	/*
sl@0
  6077
	 *========================================================================================================
sl@0
  6078
	 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0040
sl@0
  6079
	 */                                      
sl@0
  6080
	RA3FDevSoundImmediatePauseAfterCreation::RA3FDevSoundImmediatePauseAfterCreation(const TDesC& aTestName) :
sl@0
  6081
	    RA3FDevSoundTestBase(aTestName), iFilename(KNullDesC)
sl@0
  6082
	    {
sl@0
  6083
	    }
sl@0
  6084
sl@0
  6085
	RA3FDevSoundImmediatePauseAfterCreation* RA3FDevSoundImmediatePauseAfterCreation::NewL(const TDesC& aTestName)
sl@0
  6086
	    {
sl@0
  6087
	    RA3FDevSoundImmediatePauseAfterCreation* self = new (ELeave) RA3FDevSoundImmediatePauseAfterCreation(aTestName);
sl@0
  6088
	    return self;
sl@0
  6089
	    }
sl@0
  6090
sl@0
  6091
	void RA3FDevSoundImmediatePauseAfterCreation::DoKickoffTestL()
sl@0
  6092
	    {
sl@0
  6093
	    iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
sl@0
  6094
	    }
sl@0
  6095
sl@0
  6096
	void RA3FDevSoundImmediatePauseAfterCreation::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  6097
	    {
sl@0
  6098
	    switch (iDevSoundState)
sl@0
  6099
	        {
sl@0
  6100
	        case EStateCreated:
sl@0
  6101
	            {
sl@0
  6102
	            __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundImmediatePauseAfterCreation"), EFsmIncorrectErrorPassed));
sl@0
  6103
	            if (aDevSoundEvent == EEventInitialize)
sl@0
  6104
	                {
sl@0
  6105
	                INFO_PRINTF1(_L("Calling CMMFDevSound::Pause"));
sl@0
  6106
	                
sl@0
  6107
	                iMMFDevSound->Pause();
sl@0
  6108
	                StartTimer(KMicroSecsInOneSec);
sl@0
  6109
	        
sl@0
  6110
	                iDevSoundState = EStatePause;
sl@0
  6111
	                }
sl@0
  6112
	            else
sl@0
  6113
	                {
sl@0
  6114
	                ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  6115
	                StopTest(aError, EFail);
sl@0
  6116
	                }
sl@0
  6117
	            break;
sl@0
  6118
	            }
sl@0
  6119
	        
sl@0
  6120
	        default:
sl@0
  6121
	            {
sl@0
  6122
	            ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  6123
	            StopTest(aError, EFail);
sl@0
  6124
	            }
sl@0
  6125
	        }
sl@0
  6126
	    }
sl@0
  6127
sl@0
  6128
	void RA3FDevSoundImmediatePauseAfterCreation::DoTimerCallback()
sl@0
  6129
	    {
sl@0
  6130
	    INFO_PRINTF1(_L("TimerEvent called"));
sl@0
  6131
	    iTimer->Cancel();
sl@0
  6132
	    INFO_PRINTF1(_L("Pause did not panic DevSound"));
sl@0
  6133
	    StopTest(KErrNone);
sl@0
  6134
	    }
sl@0
  6135
sl@0
  6136
	
sl@0
  6137
	/*
sl@0
  6138
	 *========================================================================================================
sl@0
  6139
	 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0041
sl@0
  6140
	 */
sl@0
  6141
	RA3FDevSoundPlayEmptyBuffersWhilePlayingTest::RA3FDevSoundPlayEmptyBuffersWhilePlayingTest(const TDesC& aTestName) :
sl@0
  6142
	    RA3FDevSoundTestBase(aTestName), iVolume(0),
sl@0
  6143
	    iFilename(KNullDesC)
sl@0
  6144
	    {
sl@0
  6145
	    }
sl@0
  6146
sl@0
  6147
	RA3FDevSoundPlayEmptyBuffersWhilePlayingTest* RA3FDevSoundPlayEmptyBuffersWhilePlayingTest::NewL(const TDesC& aTestName)
sl@0
  6148
	    {
sl@0
  6149
	    RA3FDevSoundPlayEmptyBuffersWhilePlayingTest* self = new (ELeave) RA3FDevSoundPlayEmptyBuffersWhilePlayingTest(aTestName);
sl@0
  6150
	    return self;
sl@0
  6151
	    }
sl@0
  6152
sl@0
  6153
	void RA3FDevSoundPlayEmptyBuffersWhilePlayingTest::DoKickoffTestL()
sl@0
  6154
	    {
sl@0
  6155
	    TPtrC filename;
sl@0
  6156
	    // Get the filename of the audio file to play
sl@0
  6157
	    if (!GetStringFromConfig(iTestStepName, KFilename, filename))
sl@0
  6158
	        {
sl@0
  6159
	        ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
sl@0
  6160
	        StopTest (KErrNotFound);
sl@0
  6161
	        return;
sl@0
  6162
	        }
sl@0
  6163
	    // open using RFile for playback
sl@0
  6164
	    iFilename.Copy (filename);
sl@0
  6165
	    TInt err = iFile.Open (iFs, iFilename, EFileRead);
sl@0
  6166
	    if (err != KErrNone)
sl@0
  6167
	        {
sl@0
  6168
	        ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
sl@0
  6169
	        iFs.Close();
sl@0
  6170
	        StopTest(err);
sl@0
  6171
	        return;
sl@0
  6172
	        }
sl@0
  6173
sl@0
  6174
	    INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
sl@0
  6175
sl@0
  6176
	    if (!GetIntFromConfig(iTestStepName, KVolume, iVolume))
sl@0
  6177
	        {
sl@0
  6178
	        ERR_PRINTF2(KMsgErrorGetParameter, &KVolume);
sl@0
  6179
	        StopTest (KErrNotFound);
sl@0
  6180
	        return;
sl@0
  6181
	        }
sl@0
  6182
	    TPtrC fourccCode;
sl@0
  6183
	    if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  6184
	        {
sl@0
  6185
	        ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  6186
	        StopTest(KErrNotFound);
sl@0
  6187
	        return;
sl@0
  6188
	        }
sl@0
  6189
	    EncodingFromStringToTFourCC(fourccCode);
sl@0
  6190
	    }
sl@0
  6191
sl@0
  6192
	void RA3FDevSoundPlayEmptyBuffersWhilePlayingTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  6193
	    {
sl@0
  6194
	    switch (iDevSoundState)
sl@0
  6195
	        {
sl@0
  6196
	        case EStateCreated:
sl@0
  6197
	            {
sl@0
  6198
	            __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlaySetVolumePlayingTest"), EFsmIncorrectErrorPassed));
sl@0
  6199
	            if (aDevSoundEvent == EEventInitialize)
sl@0
  6200
	                {
sl@0
  6201
	                INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  6202
	                TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  6203
	                if (err != KErrNone)
sl@0
  6204
	                    {
sl@0
  6205
	                    ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error: %d"), err);
sl@0
  6206
	                    StopTest(err);
sl@0
  6207
	                    break;
sl@0
  6208
	                    }
sl@0
  6209
	                INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  6210
	                iDevSoundState = EStateInitializing;
sl@0
  6211
	                }
sl@0
  6212
	            else
sl@0
  6213
	                {
sl@0
  6214
	                ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  6215
	                StopTest(aError, EFail);
sl@0
  6216
	                }
sl@0
  6217
	            break;
sl@0
  6218
	            }
sl@0
  6219
	        case EStateInitializing:
sl@0
  6220
	            {
sl@0
  6221
	            if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  6222
	                {
sl@0
  6223
	                INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
sl@0
  6224
	                TRAPD(err, iMMFDevSound->PlayInitL());
sl@0
  6225
	                if (err != KErrNone)
sl@0
  6226
	                    {
sl@0
  6227
	                    StopTest(err);
sl@0
  6228
	                    break;
sl@0
  6229
	                    }
sl@0
  6230
	                iDevSoundState = EStatePlaying;
sl@0
  6231
	                }
sl@0
  6232
	            else if (aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  6233
	                {
sl@0
  6234
	                ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  6235
	                StopTest(aError);
sl@0
  6236
	                }
sl@0
  6237
	            else
sl@0
  6238
	                {
sl@0
  6239
	                ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  6240
	                StopTest(aError, EFail);
sl@0
  6241
	                }
sl@0
  6242
	            break;
sl@0
  6243
	            }
sl@0
  6244
	        case EStatePlaying:
sl@0
  6245
	            {
sl@0
  6246
	            if (aDevSoundEvent == EEventBTBF)
sl@0
  6247
	                {
sl@0
  6248
	                
sl@0
  6249
	                if(iBtbfCount == 3)
sl@0
  6250
	                    {
sl@0
  6251
	                    INFO_PRINTF2(_L("BTBF count = %d, Calling CMMFDevSound::EmptyBuffers"),iBtbfCount);
sl@0
  6252
	                    iMMFDevSound->EmptyBuffers();
sl@0
  6253
	                    }
sl@0
  6254
	                
sl@0
  6255
	                else
sl@0
  6256
	                    {
sl@0
  6257
                        CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
sl@0
  6258
                        TInt err = iFile.Read (buffer->Data ());
sl@0
  6259
                        if (err != KErrNone)
sl@0
  6260
                            {
sl@0
  6261
                            ERR_PRINTF2(_L("ERROR : iFile.Read() failed with: %d"), err);
sl@0
  6262
                            StopTest(err);
sl@0
  6263
                            break;
sl@0
  6264
                            }
sl@0
  6265
                        if (buffer->Data().Length ()!= buffer->RequestSize ())
sl@0
  6266
                            {
sl@0
  6267
                            iBuffer->SetLastBuffer (ETrue);
sl@0
  6268
                            }
sl@0
  6269
                        INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
sl@0
  6270
                        iMMFDevSound->PlayData ();
sl@0
  6271
	                    }
sl@0
  6272
	                
sl@0
  6273
	                ++iBtbfCount;
sl@0
  6274
	                }
sl@0
  6275
	            else
sl@0
  6276
	                {
sl@0
  6277
	                ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  6278
	                StopTest(aError, EFail);
sl@0
  6279
	                }
sl@0
  6280
	            break;
sl@0
  6281
	            }
sl@0
  6282
	        default:
sl@0
  6283
	            {
sl@0
  6284
	            ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  6285
	            StopTest(aError, EFail);
sl@0
  6286
	            }
sl@0
  6287
	        }
sl@0
  6288
	    }
sl@0
  6289
sl@0
  6290
	/*
sl@0
  6291
	 *========================================================================================================
sl@0
  6292
	 * 3F-DEVSOUND-CHRTZ-PLAY-RAW-0042
sl@0
  6293
	 */
sl@0
  6294
	RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest(const TDesC& aTestName) :
sl@0
  6295
	    RA3FDevSoundTestBase(aTestName),iFilename(KNullDesC),
sl@0
  6296
	    iExVolume(0), iFrequencyTone1(0), iDuration(0),  
sl@0
  6297
	    iSetVolume(EFalse), iResume(EFalse)
sl@0
  6298
	    {
sl@0
  6299
	    }
sl@0
  6300
sl@0
  6301
	RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest* RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::NewL(const TDesC& aTestName)
sl@0
  6302
	    {
sl@0
  6303
	    RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest* self = new (ELeave) RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest(aTestName);
sl@0
  6304
	    return self;
sl@0
  6305
	    }
sl@0
  6306
sl@0
  6307
	void RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::DoKickoffTestL()
sl@0
  6308
	    {
sl@0
  6309
	    TPtrC filename;
sl@0
  6310
	    // Get the filename of the audio file to play
sl@0
  6311
	    if (!GetStringFromConfig(iTestStepName, KFilename, filename))
sl@0
  6312
	        {
sl@0
  6313
	        ERR_PRINTF2(KMsgErrorGetParameter, &KFilename);
sl@0
  6314
	        StopTest(KErrNotFound);
sl@0
  6315
	        return;
sl@0
  6316
	        }
sl@0
  6317
	    // open using RFile for playback
sl@0
  6318
	    iFilename.Copy(filename);
sl@0
  6319
	    TInt err = iFile.Open(iFs, iFilename, EFileRead);
sl@0
  6320
	    if (err != KErrNone)
sl@0
  6321
	        {
sl@0
  6322
	        ERR_PRINTF2(_L("Could not open input file. Error = %d"), err);
sl@0
  6323
	        StopTest(err);
sl@0
  6324
	        return;
sl@0
  6325
	        }
sl@0
  6326
sl@0
  6327
	    INFO_PRINTF2(_L("File under test  -> %S"), &iFilename);
sl@0
  6328
sl@0
  6329
	    if (!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1))
sl@0
  6330
	        {
sl@0
  6331
	        ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
sl@0
  6332
	        StopTest(KErrNotFound);
sl@0
  6333
	        return;
sl@0
  6334
	        }
sl@0
  6335
	    if (!GetIntFromConfig(iTestStepName, KDuration, iDuration))
sl@0
  6336
	        {
sl@0
  6337
	        ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
sl@0
  6338
	        StopTest(KErrNotFound);
sl@0
  6339
	        return;
sl@0
  6340
	        }
sl@0
  6341
	    TPtrC fourccCode;
sl@0
  6342
	    if (!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
sl@0
  6343
	        {
sl@0
  6344
	        ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
sl@0
  6345
	        StopTest(KErrNotFound);
sl@0
  6346
	        return;
sl@0
  6347
	        }
sl@0
  6348
	    
sl@0
  6349
	    if (!GetIntFromConfig(iTestStepName, KExVolume, iExVolume))
sl@0
  6350
	        {
sl@0
  6351
	        ERR_PRINTF2(KMsgErrorGetParameter, &KExVolume);
sl@0
  6352
	        StopTest(KErrNotFound);
sl@0
  6353
	        return;
sl@0
  6354
	        }
sl@0
  6355
	    
sl@0
  6356
	    EncodingFromStringToTFourCC(fourccCode);
sl@0
  6357
	    iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
sl@0
  6358
	    iDevsoundToneClient = CA3FDevSoundToneClient::NewL(*this);
sl@0
  6359
	    }
sl@0
  6360
sl@0
  6361
	void RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
sl@0
  6362
	    {
sl@0
  6363
	    switch (iDevSoundState)
sl@0
  6364
	        {
sl@0
  6365
	        case EStateCreated:
sl@0
  6366
	            {
sl@0
  6367
	            __ASSERT_ALWAYS((aError == KErrNone), Panic(_L("RA3FDevSoundPlayPreemptedByToneTest"), EFsmIncorrectErrorPassed));
sl@0
  6368
	            if (aDevSoundEvent == EEventInitialize)
sl@0
  6369
	                {
sl@0
  6370
	                INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
sl@0
  6371
	                TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
sl@0
  6372
	                if (err != KErrNone)
sl@0
  6373
	                    {
sl@0
  6374
	                    ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
sl@0
  6375
	                    StopTest(err);
sl@0
  6376
	                    break;
sl@0
  6377
	                    }
sl@0
  6378
	                INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
sl@0
  6379
	                iDevSoundState = EStateInitializing;
sl@0
  6380
	                }
sl@0
  6381
	            else
sl@0
  6382
	                {
sl@0
  6383
	                ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  6384
	                StopTest(aError, EFail);
sl@0
  6385
	                }
sl@0
  6386
	            break;
sl@0
  6387
	            }
sl@0
  6388
	        case EStateInitializing:
sl@0
  6389
	            {
sl@0
  6390
	            if (aDevSoundEvent == EEventInitComplete && aError == KErrNone)
sl@0
  6391
	                {
sl@0
  6392
	                TMMFPrioritySettings priority;
sl@0
  6393
	                priority.iPriority = KMinimumPriority;
sl@0
  6394
	                INFO_PRINTF2(_L("Setting Priority to %d using CMMFDevSound::SetPrioritySettings"), priority.iPriority);
sl@0
  6395
	                iMMFDevSound->SetPrioritySettings (priority);
sl@0
  6396
	                iMMFDevSound->SetVolume (iMMFDevSound->MaxVolume ());
sl@0
  6397
	                INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL"));
sl@0
  6398
	                TRAPD(err, iMMFDevSound->PlayInitL());
sl@0
  6399
	                if (err != KErrNone)
sl@0
  6400
	                    {
sl@0
  6401
	                    StopTest (err);
sl@0
  6402
	                    break;
sl@0
  6403
	                    }
sl@0
  6404
	                INFO_PRINTF1(_L("DevSound State: EStatePlaying"));
sl@0
  6405
	                iDevSoundState = EStatePlaying;
sl@0
  6406
	                StartTimer (KMicroSecsTwoSec);
sl@0
  6407
	                }
sl@0
  6408
	            else if ( aDevSoundEvent == EEventInitComplete && aError != KErrNone)
sl@0
  6409
	                {
sl@0
  6410
	                ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error: %d"), aError);
sl@0
  6411
	                StopTest(aError);
sl@0
  6412
	                }
sl@0
  6413
	            else
sl@0
  6414
	                {
sl@0
  6415
	                ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  6416
	                StopTest(aError, EFail);
sl@0
  6417
	                }
sl@0
  6418
	            break;
sl@0
  6419
	            }
sl@0
  6420
	        case EStatePlaying:
sl@0
  6421
	            {
sl@0
  6422
	            if (aDevSoundEvent == EEventBTBF)
sl@0
  6423
	                {
sl@0
  6424
                    if(iResume)
sl@0
  6425
                        {
sl@0
  6426
                        INFO_PRINTF1(_L("First Client resumed after pre-emption as expected"));
sl@0
  6427
                        StopTest();
sl@0
  6428
                        break;
sl@0
  6429
                        }
sl@0
  6430
                    
sl@0
  6431
                    if(!iSetVolume)
sl@0
  6432
                        {
sl@0
  6433
                        iMMFDevSound->SetVolume (iExVolume);
sl@0
  6434
                        iSetVolume = ETrue;
sl@0
  6435
                        }
sl@0
  6436
                    
sl@0
  6437
	                CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
sl@0
  6438
	                TInt err = iFile.Read (buffer->Data());
sl@0
  6439
	                if (err != KErrNone)
sl@0
  6440
	                    {
sl@0
  6441
	                    ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
sl@0
  6442
	                    StopTest(err);
sl@0
  6443
	                    break;
sl@0
  6444
	                    }
sl@0
  6445
	                if (buffer->Data().Length ()!= buffer->RequestSize())
sl@0
  6446
	                    {
sl@0
  6447
	                    iBuffer->SetLastBuffer(ETrue);
sl@0
  6448
	                    }
sl@0
  6449
	                INFO_PRINTF1(_L("Calling CMMFDevSound::PlayData"));
sl@0
  6450
	                iMMFDevSound->PlayData();
sl@0
  6451
	                }
sl@0
  6452
	            else
sl@0
  6453
	                {
sl@0
  6454
	                ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
sl@0
  6455
	                StopTest(aError, EFail);
sl@0
  6456
	                }
sl@0
  6457
	            break;
sl@0
  6458
	            }
sl@0
  6459
	        default:
sl@0
  6460
	            {
sl@0
  6461
	            ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
sl@0
  6462
	            StopTest(aError, EFail);
sl@0
  6463
	            }
sl@0
  6464
	        }
sl@0
  6465
	    }
sl@0
  6466
sl@0
  6467
	void RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::DoTimerCallback()
sl@0
  6468
	    {
sl@0
  6469
	    INFO_PRINTF1(_L("TimerEvent called"));
sl@0
  6470
	    iTimer->Cancel();
sl@0
  6471
	    INFO_PRINTF1(_L("Starting higher priority devsound client"));
sl@0
  6472
	    iDevsoundToneClient->SetPriority(KMaximumPriority);
sl@0
  6473
	    INFO_PRINTF1(_L("Initializing to play tones thru second devsound client"));
sl@0
  6474
	    TInt err = iDevsoundToneClient->InitTonePlay(iFrequencyTone1,iDuration*KMicroSecsInOneSec);
sl@0
  6475
	    if (err != KErrNone)
sl@0
  6476
	        {
sl@0
  6477
	        ERR_PRINTF2(_L("Initializating DevSoud to play tones thru second devsound client failed with error = %d"), err);
sl@0
  6478
	        StopTest(err);
sl@0
  6479
	        }
sl@0
  6480
	    }
sl@0
  6481
sl@0
  6482
	void RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::PlayError(TInt aError)
sl@0
  6483
	    {
sl@0
  6484
	    INFO_PRINTF1(_L("========== DevSound PlayError() callback =========="));
sl@0
  6485
	    if (aError == KErrInUse || aError == KErrDied || aError == KErrAccessDenied)
sl@0
  6486
	        {
sl@0
  6487
	        INFO_PRINTF1(_L("========== Preempting 1st DevSound Instance=========="));
sl@0
  6488
	        INFO_PRINTF2(_L("First DevSound client PlayError succeeded with error = %d "), aError);
sl@0
  6489
	        }
sl@0
  6490
	    else
sl@0
  6491
	        {
sl@0
  6492
	        ERR_PRINTF2(_L("First DevSound client called PlayError and failed with error = %d "), aError);
sl@0
  6493
	        ERR_PRINTF4(_L("Expected posibilities %d %d %d "), KErrInUse, KErrDied, KErrAccessDenied);
sl@0
  6494
	        StopTest(aError, EFail);
sl@0
  6495
	        }
sl@0
  6496
	    }
sl@0
  6497
sl@0
  6498
	void RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::ClientInitializeCompleteCallback(TInt aError)
sl@0
  6499
	    {
sl@0
  6500
	    INFO_PRINTF1(_L("==========Second DevSound client called InitializeComplete()=========="));
sl@0
  6501
	    if (aError == KErrNone)
sl@0
  6502
	        {
sl@0
  6503
	        INFO_PRINTF1(_L("Starting to play tone thru second devsound client"));
sl@0
  6504
	        TInt err = iDevsoundToneClient->PlayTone ();
sl@0
  6505
	        if (err != KErrNone)
sl@0
  6506
	            {
sl@0
  6507
	            ERR_PRINTF2(_L("Second Devsound client called PlayTone and failed with error = %d"), err);
sl@0
  6508
	            StopTest(err);
sl@0
  6509
	            }
sl@0
  6510
	        }
sl@0
  6511
	    else
sl@0
  6512
	        {
sl@0
  6513
	        ERR_PRINTF2(_L("Second Devsound InitializeComplete received an error = %d"), aError);
sl@0
  6514
	        StopTest(aError);
sl@0
  6515
	        }
sl@0
  6516
	    }
sl@0
  6517
sl@0
  6518
	void RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest::ClientToneFinishedCallback(TInt aError)
sl@0
  6519
	    {
sl@0
  6520
	    INFO_PRINTF1(_L("========== Second  DevSound client called ToneFinished()=========="));
sl@0
  6521
	    if (aError == KErrUnderflow)
sl@0
  6522
	        {
sl@0
  6523
	        INFO_PRINTF2(_L("Second DevSound client called ToneFinished and succeeded with error = %d"), aError);
sl@0
  6524
            iDevSoundState = EStatePlaying;
sl@0
  6525
            iResume = ETrue;
sl@0
  6526
            TRAPD(err, iMMFDevSound->PlayInitL());
sl@0
  6527
            if(err != KErrNone)
sl@0
  6528
                {
sl@0
  6529
                ERR_PRINTF2(_L("Call PlayInitL failed after Second DevSound client called ToneFinished with error = %d"), err);
sl@0
  6530
                StopTest(aError);
sl@0
  6531
                }
sl@0
  6532
	        }
sl@0
  6533
	    else
sl@0
  6534
	        {
sl@0
  6535
	        ERR_PRINTF2(_L("Second DevSound client called ToneFinished and failed with error = %d"), aError);
sl@0
  6536
	        StopTest(aError);
sl@0
  6537
	        }
sl@0
  6538
	    }
sl@0
  6539