os/mm/devsound/a3fcharacterisationtest/src/char_a3f_devsound_playtest.h
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
#ifndef CHAR_A3F_DEVSOUND_PLAYTEST_H
sl@0
    17
#define CHAR_A3F_DEVSOUND_PLAYTEST_H
sl@0
    18
sl@0
    19
// User includes
sl@0
    20
#include "char_a3f_devsound_testbase.h"
sl@0
    21
#include "char_a3f_devsound_playrecordclients.h"
sl@0
    22
#include "char_a3f_devsound_toneclient.h"
sl@0
    23
sl@0
    24
/*
sl@0
    25
 *========================================================================================================
sl@0
    26
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0001
sl@0
    27
 */
sl@0
    28
class RA3FDevSoundPlaySetConfigTest : public RA3FDevSoundTestBase
sl@0
    29
	{
sl@0
    30
public:
sl@0
    31
	static RA3FDevSoundPlaySetConfigTest* NewL(const TDesC& aTestName);
sl@0
    32
sl@0
    33
private:
sl@0
    34
	RA3FDevSoundPlaySetConfigTest(const TDesC& aTestName);
sl@0
    35
	void DoKickoffTestL();
sl@0
    36
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
    37
sl@0
    38
private:
sl@0
    39
	TMMFSampleRate iESampleRate;
sl@0
    40
	TInt iSampleRate;
sl@0
    41
	TInt iChannels;
sl@0
    42
	};
sl@0
    43
sl@0
    44
/*
sl@0
    45
 *========================================================================================================
sl@0
    46
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0002
sl@0
    47
 */
sl@0
    48
class RA3FDevSoundPlaySetVolumeWhilePlayingTest : public RA3FDevSoundTestBase
sl@0
    49
	{
sl@0
    50
public:
sl@0
    51
	static RA3FDevSoundPlaySetVolumeWhilePlayingTest* NewL(const TDesC& aTestName);
sl@0
    52
sl@0
    53
private:
sl@0
    54
	RA3FDevSoundPlaySetVolumeWhilePlayingTest(const TDesC& aTestName);
sl@0
    55
	void DoKickoffTestL();
sl@0
    56
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
    57
	void DoTimerCallback();
sl@0
    58
private:
sl@0
    59
	TInt iVolume;
sl@0
    60
	TFileName iFilename;
sl@0
    61
	};
sl@0
    62
sl@0
    63
/*
sl@0
    64
 *========================================================================================================
sl@0
    65
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0003
sl@0
    66
 */
sl@0
    67
class RA3FDevSoundPlaySetVolumeTest : public RA3FDevSoundTestBase
sl@0
    68
	{
sl@0
    69
public:
sl@0
    70
	static RA3FDevSoundPlaySetVolumeTest* NewL(const TDesC& aTestName);
sl@0
    71
sl@0
    72
private:
sl@0
    73
	RA3FDevSoundPlaySetVolumeTest(const TDesC& aTestName);
sl@0
    74
	void DoKickoffTestL();
sl@0
    75
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
    76
sl@0
    77
private:
sl@0
    78
	TInt iVolume;
sl@0
    79
	};
sl@0
    80
sl@0
    81
/*
sl@0
    82
 *========================================================================================================
sl@0
    83
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0004
sl@0
    84
 */
sl@0
    85
class RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest : public RA3FDevSoundTestBase
sl@0
    86
	{
sl@0
    87
public:
sl@0
    88
	static RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest* NewL(const TDesC& aTestName);
sl@0
    89
sl@0
    90
private:
sl@0
    91
	RA3FDevSoundPlaySetVolumeWhilePausedPlayingTest(const TDesC& aTestName);
sl@0
    92
	void DoKickoffTestL();
sl@0
    93
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
    94
	void DoTimerCallback();
sl@0
    95
sl@0
    96
private:
sl@0
    97
	TFileName iFilename;
sl@0
    98
	TInt iVolume;
sl@0
    99
	};
sl@0
   100
sl@0
   101
/*
sl@0
   102
 *========================================================================================================
sl@0
   103
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0005
sl@0
   104
 */
sl@0
   105
class RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest: public RA3FDevSoundTestBase
sl@0
   106
	{
sl@0
   107
public:
sl@0
   108
	static RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest* NewL(const TDesC& aTestName);
sl@0
   109
sl@0
   110
private:
sl@0
   111
	RA3FDevSoundPlaySetVolumeInitializeToPlayAudioThenTonesTest(const TDesC& aTestName);
sl@0
   112
	void DoKickoffTestL();
sl@0
   113
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   114
sl@0
   115
private:
sl@0
   116
	TBool iReinitialized;
sl@0
   117
	TInt iVolume;
sl@0
   118
	};
sl@0
   119
sl@0
   120
/*
sl@0
   121
 *========================================================================================================
sl@0
   122
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0006
sl@0
   123
 */
sl@0
   124
class RA3FDevSoundPlaySetVolumeRampWhilePlayingTest : public RA3FDevSoundTestBase
sl@0
   125
	{
sl@0
   126
public:
sl@0
   127
	static RA3FDevSoundPlaySetVolumeRampWhilePlayingTest* NewL(const TDesC& aTestName);
sl@0
   128
sl@0
   129
private:
sl@0
   130
	RA3FDevSoundPlaySetVolumeRampWhilePlayingTest(const TDesC& aTestName);
sl@0
   131
	void DoKickoffTestL();
sl@0
   132
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   133
	void DoTimerCallback();
sl@0
   134
	void PlayError(TInt aError);
sl@0
   135
sl@0
   136
private:
sl@0
   137
	TFileName iFilename;
sl@0
   138
	TInt iVolumeRamp;
sl@0
   139
	TBool iPlayInitTwice;
sl@0
   140
	};
sl@0
   141
sl@0
   142
/*
sl@0
   143
 *========================================================================================================
sl@0
   144
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0007
sl@0
   145
 */
sl@0
   146
class RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest : public RA3FDevSoundTestBase
sl@0
   147
	{
sl@0
   148
public:
sl@0
   149
	static RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest* NewL(const TDesC& aTestName);
sl@0
   150
sl@0
   151
private:
sl@0
   152
	RA3FDevSoundPlaySetVolumeBeyondMaxVolumeTest(const TDesC& aTestName);
sl@0
   153
	void DoKickoffTestL();
sl@0
   154
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   155
	};
sl@0
   156
sl@0
   157
/*
sl@0
   158
 *========================================================================================================
sl@0
   159
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0008
sl@0
   160
 */
sl@0
   161
class RA3FDevSoundPlaySetVolumeToNegativeTest : public RA3FDevSoundTestBase
sl@0
   162
	{
sl@0
   163
public:
sl@0
   164
	static RA3FDevSoundPlaySetVolumeToNegativeTest* NewL(const TDesC& aTestName);
sl@0
   165
sl@0
   166
private:
sl@0
   167
	RA3FDevSoundPlaySetVolumeToNegativeTest(const TDesC& aTestName);
sl@0
   168
	void DoKickoffTestL();
sl@0
   169
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   170
	
sl@0
   171
private:
sl@0
   172
	TInt iVolume;
sl@0
   173
	};	
sl@0
   174
sl@0
   175
/*
sl@0
   176
 *========================================================================================================
sl@0
   177
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0009
sl@0
   178
 */
sl@0
   179
class RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest : public RA3FDevSoundTestBase
sl@0
   180
	{
sl@0
   181
public:
sl@0
   182
	static RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest* NewL(const TDesC& aTestName);
sl@0
   183
sl@0
   184
private:
sl@0
   185
	RA3FDevSoundPlaySetPlayBalanceBeyondOneHundredTest(const TDesC& aTestName);
sl@0
   186
	void DoKickoffTestL();
sl@0
   187
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   188
	
sl@0
   189
private:
sl@0
   190
	TInt iLSpeakerBalance;
sl@0
   191
	TInt iRSpeakerBalance;
sl@0
   192
	};
sl@0
   193
sl@0
   194
/*
sl@0
   195
 *========================================================================================================
sl@0
   196
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0010
sl@0
   197
 */
sl@0
   198
class RA3FDevSoundPlaySetPlayBalanceToNegativeTest : public RA3FDevSoundTestBase
sl@0
   199
	{
sl@0
   200
public:
sl@0
   201
	static RA3FDevSoundPlaySetPlayBalanceToNegativeTest* NewL(const TDesC& aTestName);
sl@0
   202
sl@0
   203
private:
sl@0
   204
	RA3FDevSoundPlaySetPlayBalanceToNegativeTest(const TDesC& aTestName);
sl@0
   205
	void DoKickoffTestL();
sl@0
   206
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   207
	
sl@0
   208
private:
sl@0
   209
	TInt iLSpeakerBalance;
sl@0
   210
	TInt iRSpeakerBalance;
sl@0
   211
	};
sl@0
   212
sl@0
   213
/*
sl@0
   214
 *========================================================================================================
sl@0
   215
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0011
sl@0
   216
 */
sl@0
   217
class RA3FDevSoundPlaySetPrioritySettingsTest : public RA3FDevSoundTestBase
sl@0
   218
	{
sl@0
   219
public:
sl@0
   220
	static RA3FDevSoundPlaySetPrioritySettingsTest* NewL(const TDesC& aTestName);
sl@0
   221
sl@0
   222
private:
sl@0
   223
	RA3FDevSoundPlaySetPrioritySettingsTest(const TDesC& aTestName);
sl@0
   224
	void DoKickoffTestL();
sl@0
   225
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   226
sl@0
   227
private:
sl@0
   228
	TInt iPriority;
sl@0
   229
	};
sl@0
   230
sl@0
   231
/*
sl@0
   232
 *========================================================================================================
sl@0
   233
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0012
sl@0
   234
 */
sl@0
   235
class RA3FDevSoundPlayCapabilitiesTest : public RA3FDevSoundTestBase
sl@0
   236
	{
sl@0
   237
public:
sl@0
   238
	static RA3FDevSoundPlayCapabilitiesTest* NewL(const TDesC& aTestName);
sl@0
   239
sl@0
   240
private:
sl@0
   241
	RA3FDevSoundPlayCapabilitiesTest(const TDesC& aTestName);
sl@0
   242
	void DoKickoffTestL();
sl@0
   243
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   244
	
sl@0
   245
private:
sl@0
   246
	TInt iExCapChannels;
sl@0
   247
	TInt iExCapRate;
sl@0
   248
	};
sl@0
   249
sl@0
   250
/*
sl@0
   251
 *========================================================================================================
sl@0
   252
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0013
sl@0
   253
 */
sl@0
   254
class RA3FDevSoundPlayConfigTest : public RA3FDevSoundTestBase
sl@0
   255
	{
sl@0
   256
public:
sl@0
   257
	static RA3FDevSoundPlayConfigTest* NewL(const TDesC& aTestName);
sl@0
   258
sl@0
   259
private:
sl@0
   260
	RA3FDevSoundPlayConfigTest(const TDesC& aTestName);
sl@0
   261
	void DoKickoffTestL();
sl@0
   262
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   263
sl@0
   264
private:
sl@0
   265
	TMMFSampleRate iESampleRate;
sl@0
   266
	TMMFSampleRate iExSampleRate;
sl@0
   267
	TInt iExCapRate;
sl@0
   268
	TInt iExCapChannels;
sl@0
   269
	};
sl@0
   270
sl@0
   271
/*
sl@0
   272
 *========================================================================================================
sl@0
   273
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0014
sl@0
   274
 */
sl@0
   275
class RA3FDevSoundPlayGetPlayBalanceTest : public RA3FDevSoundTestBase
sl@0
   276
	{
sl@0
   277
public:
sl@0
   278
	static RA3FDevSoundPlayGetPlayBalanceTest* NewL(const TDesC& aTestName);
sl@0
   279
sl@0
   280
private:
sl@0
   281
	RA3FDevSoundPlayGetPlayBalanceTest(const TDesC& aTestName);
sl@0
   282
	void DoKickoffTestL();
sl@0
   283
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   284
	
sl@0
   285
private:
sl@0
   286
	TInt iExLSpeakerBalance;
sl@0
   287
	TInt iExRSpeakerBalance;
sl@0
   288
	};
sl@0
   289
sl@0
   290
/*
sl@0
   291
 *========================================================================================================
sl@0
   292
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0015
sl@0
   293
 */
sl@0
   294
class RA3FDevSoundPlayGetSupportedInputDataTypesLTest : public RA3FDevSoundTestBase
sl@0
   295
	{
sl@0
   296
public:
sl@0
   297
	static RA3FDevSoundPlayGetSupportedInputDataTypesLTest* NewL(const TDesC& aTestName);
sl@0
   298
sl@0
   299
private:
sl@0
   300
	RA3FDevSoundPlayGetSupportedInputDataTypesLTest(const TDesC& aTestName);
sl@0
   301
	void DoKickoffTestL();
sl@0
   302
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   303
sl@0
   304
private:
sl@0
   305
	RArray<TFourCC> iSupportedDataTypes;
sl@0
   306
	TInt iCurrentTypeInTest;
sl@0
   307
	};	
sl@0
   308
sl@0
   309
/*
sl@0
   310
 *========================================================================================================
sl@0
   311
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0016
sl@0
   312
 */
sl@0
   313
class RA3FDevSoundPlayMaxVolumeTest : public RA3FDevSoundTestBase
sl@0
   314
	{
sl@0
   315
public:
sl@0
   316
	static RA3FDevSoundPlayMaxVolumeTest* NewL(const TDesC& aTestName);
sl@0
   317
sl@0
   318
private:
sl@0
   319
	RA3FDevSoundPlayMaxVolumeTest(const TDesC& aTestName);
sl@0
   320
	void DoKickoffTestL();
sl@0
   321
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   322
sl@0
   323
private:
sl@0
   324
	TInt iExVolume;
sl@0
   325
	};
sl@0
   326
sl@0
   327
/*
sl@0
   328
 *========================================================================================================
sl@0
   329
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0017
sl@0
   330
 */
sl@0
   331
class RA3FDevSoundPlaySamplesPlayedTest : public RA3FDevSoundTestBase
sl@0
   332
	{
sl@0
   333
public:
sl@0
   334
	static RA3FDevSoundPlaySamplesPlayedTest* NewL(const TDesC& aTestName);
sl@0
   335
sl@0
   336
private:
sl@0
   337
	RA3FDevSoundPlaySamplesPlayedTest(const TDesC& aTestName);
sl@0
   338
	void DoKickoffTestL();
sl@0
   339
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   340
	
sl@0
   341
private:
sl@0
   342
	TInt iExSamplesPlayed;
sl@0
   343
	};
sl@0
   344
sl@0
   345
/*
sl@0
   346
 *========================================================================================================
sl@0
   347
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0018
sl@0
   348
 */
sl@0
   349
class RA3FDevSoundPlayVolumeTest : public RA3FDevSoundTestBase
sl@0
   350
	{
sl@0
   351
public:
sl@0
   352
	static RA3FDevSoundPlayVolumeTest* NewL(const TDesC& aTestName);
sl@0
   353
sl@0
   354
private:
sl@0
   355
	RA3FDevSoundPlayVolumeTest(const TDesC& aTestName);
sl@0
   356
	void DoKickoffTestL();
sl@0
   357
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   358
	
sl@0
   359
private:
sl@0
   360
	TInt iExVolume;
sl@0
   361
	};
sl@0
   362
sl@0
   363
/*
sl@0
   364
 *========================================================================================================
sl@0
   365
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0019
sl@0
   366
 */
sl@0
   367
class RA3FDevSoundPlayCapabilitiesWhilePlayingTest : public RA3FDevSoundTestBase
sl@0
   368
	{
sl@0
   369
public:
sl@0
   370
	static RA3FDevSoundPlayCapabilitiesWhilePlayingTest* NewL(const TDesC& aTestName);
sl@0
   371
sl@0
   372
private:
sl@0
   373
	RA3FDevSoundPlayCapabilitiesWhilePlayingTest(const TDesC& aTestName);
sl@0
   374
	void DoKickoffTestL();
sl@0
   375
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   376
	void DoTimerCallback();
sl@0
   377
sl@0
   378
private:
sl@0
   379
	TFileName iFilename;
sl@0
   380
	TInt iExCapChannels;
sl@0
   381
	TInt iExCapRate;
sl@0
   382
	};
sl@0
   383
sl@0
   384
/*
sl@0
   385
 *========================================================================================================
sl@0
   386
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0020
sl@0
   387
 */
sl@0
   388
class RA3FDevSoundPlayConfigWhilePlayingTest : public RA3FDevSoundTestBase
sl@0
   389
	{
sl@0
   390
public:
sl@0
   391
	static RA3FDevSoundPlayConfigWhilePlayingTest* NewL(const TDesC& aTestName);
sl@0
   392
sl@0
   393
private:
sl@0
   394
	RA3FDevSoundPlayConfigWhilePlayingTest(const TDesC& aTestName);
sl@0
   395
	void DoKickoffTestL();
sl@0
   396
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   397
	void DoTimerCallback();
sl@0
   398
sl@0
   399
private:
sl@0
   400
	TFileName iFilename;
sl@0
   401
	TMMFSampleRate iExSampleRate;
sl@0
   402
	TInt iExCapRate;
sl@0
   403
	TInt iExCapChannels;
sl@0
   404
	};
sl@0
   405
sl@0
   406
/*
sl@0
   407
 *========================================================================================================
sl@0
   408
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0021
sl@0
   409
 */
sl@0
   410
class RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest : public RA3FDevSoundTestBase
sl@0
   411
	{
sl@0
   412
public:
sl@0
   413
	static RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest* NewL(const TDesC& aTestName);
sl@0
   414
sl@0
   415
private:
sl@0
   416
	RA3FDevSoundPlayGetPlayBalanceWhilePlayingTest(const TDesC& aTestName);
sl@0
   417
	void DoKickoffTestL();
sl@0
   418
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   419
	void DoTimerCallback();
sl@0
   420
sl@0
   421
private:
sl@0
   422
	TFileName iFilename;
sl@0
   423
	TInt iExLSpeakerBalance;
sl@0
   424
	TInt iExRSpeakerBalance;
sl@0
   425
	};
sl@0
   426
sl@0
   427
/*
sl@0
   428
 *========================================================================================================
sl@0
   429
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0022
sl@0
   430
 */
sl@0
   431
class RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest : public RA3FDevSoundTestBase
sl@0
   432
	{
sl@0
   433
public:
sl@0
   434
	static RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest* NewL(const TDesC& aTestName);
sl@0
   435
sl@0
   436
private:
sl@0
   437
	RA3FDevSoundPlayGetSupportedInputDataTypesWhilePlayingTest(const TDesC& aTestName);
sl@0
   438
	void DoKickoffTestL();
sl@0
   439
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   440
	void DoTimerCallback();
sl@0
   441
private:
sl@0
   442
	TFileName iFilename;
sl@0
   443
	};
sl@0
   444
sl@0
   445
/*
sl@0
   446
 *========================================================================================================
sl@0
   447
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0023
sl@0
   448
 */
sl@0
   449
class RA3FDevSoundPlayMaxVolumeWhilePlayingTest : public RA3FDevSoundTestBase
sl@0
   450
	{
sl@0
   451
public:
sl@0
   452
	static RA3FDevSoundPlayMaxVolumeWhilePlayingTest* NewL(const TDesC& aTestName);
sl@0
   453
sl@0
   454
private:
sl@0
   455
	RA3FDevSoundPlayMaxVolumeWhilePlayingTest(const TDesC& aTestName);
sl@0
   456
	void DoKickoffTestL();
sl@0
   457
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   458
	void DoTimerCallback();
sl@0
   459
sl@0
   460
private:
sl@0
   461
	TFileName iFilename;
sl@0
   462
	TInt iExVolume;
sl@0
   463
	};
sl@0
   464
sl@0
   465
/*
sl@0
   466
 *========================================================================================================
sl@0
   467
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0024
sl@0
   468
 */
sl@0
   469
class RA3FDevSoundPlaySamplesPlayedWhilePlayingTest : public RA3FDevSoundTestBase
sl@0
   470
	{
sl@0
   471
public:
sl@0
   472
	static RA3FDevSoundPlaySamplesPlayedWhilePlayingTest* NewL(const TDesC& aTestName);
sl@0
   473
sl@0
   474
private:
sl@0
   475
	RA3FDevSoundPlaySamplesPlayedWhilePlayingTest(const TDesC& aTestName);
sl@0
   476
	void DoKickoffTestL();
sl@0
   477
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   478
	void DoTimerCallback();
sl@0
   479
	
sl@0
   480
private:
sl@0
   481
	TFileName iFilename;
sl@0
   482
	TInt iExSamplesPlayed;
sl@0
   483
	};
sl@0
   484
sl@0
   485
/*
sl@0
   486
 *========================================================================================================
sl@0
   487
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0025
sl@0
   488
 */
sl@0
   489
class RA3FDevSoundPlayVolumeWhilePlayingTest : public RA3FDevSoundTestBase
sl@0
   490
	{
sl@0
   491
public:
sl@0
   492
	static RA3FDevSoundPlayVolumeWhilePlayingTest* NewL(const TDesC& aTestName);
sl@0
   493
sl@0
   494
private:
sl@0
   495
	RA3FDevSoundPlayVolumeWhilePlayingTest(const TDesC& aTestName);
sl@0
   496
	void DoKickoffTestL();
sl@0
   497
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   498
	void DoTimerCallback();
sl@0
   499
	
sl@0
   500
private:
sl@0
   501
	TFileName iFilename;
sl@0
   502
	TInt iExVolume;
sl@0
   503
	};	
sl@0
   504
sl@0
   505
/*
sl@0
   506
 *========================================================================================================
sl@0
   507
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0026
sl@0
   508
 */
sl@0
   509
class RA3FDevSoundPlayTest : public RA3FDevSoundTestBase
sl@0
   510
	{
sl@0
   511
public:
sl@0
   512
	static RA3FDevSoundPlayTest* NewL(const TDesC& aTestName);
sl@0
   513
sl@0
   514
private:
sl@0
   515
	RA3FDevSoundPlayTest(const TDesC& aTestName);
sl@0
   516
	void DoKickoffTestL();
sl@0
   517
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   518
sl@0
   519
private:
sl@0
   520
	TFileName iFilename;
sl@0
   521
	};	
sl@0
   522
sl@0
   523
/*
sl@0
   524
 *========================================================================================================
sl@0
   525
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0027
sl@0
   526
 */
sl@0
   527
class RA3FDevSoundPlayEmptyBufferWhilePlayingTest : public RA3FDevSoundTestBase
sl@0
   528
	{
sl@0
   529
public:
sl@0
   530
	static RA3FDevSoundPlayEmptyBufferWhilePlayingTest* NewL(const TDesC& aTestName);
sl@0
   531
sl@0
   532
private:
sl@0
   533
	RA3FDevSoundPlayEmptyBufferWhilePlayingTest(const TDesC& aTestName);
sl@0
   534
	void DoKickoffTestL();
sl@0
   535
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   536
	void DoTimerCallback();
sl@0
   537
sl@0
   538
private:
sl@0
   539
	TFileName iFilename;
sl@0
   540
	};
sl@0
   541
sl@0
   542
/*
sl@0
   543
 *========================================================================================================
sl@0
   544
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0028
sl@0
   545
 */
sl@0
   546
class RA3FDevSoundPlayEmptyBufferBeforePlayingTest : public RA3FDevSoundTestBase
sl@0
   547
	{
sl@0
   548
public:
sl@0
   549
	static RA3FDevSoundPlayEmptyBufferBeforePlayingTest* NewL(const TDesC& aTestName);
sl@0
   550
sl@0
   551
private:
sl@0
   552
	RA3FDevSoundPlayEmptyBufferBeforePlayingTest(const TDesC& aTestName);
sl@0
   553
	void DoKickoffTestL();
sl@0
   554
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   555
	};
sl@0
   556
sl@0
   557
/*
sl@0
   558
 *========================================================================================================
sl@0
   559
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0029
sl@0
   560
 */
sl@0
   561
class RA3FDevSoundPlayPauseTest : public RA3FDevSoundTestBase
sl@0
   562
	{
sl@0
   563
public:
sl@0
   564
	static RA3FDevSoundPlayPauseTest* NewL(const TDesC& aTestName);
sl@0
   565
sl@0
   566
private:
sl@0
   567
	RA3FDevSoundPlayPauseTest(const TDesC& aTestName);
sl@0
   568
	void DoKickoffTestL();
sl@0
   569
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   570
	void DoTimerCallback();
sl@0
   571
sl@0
   572
private:
sl@0
   573
	TFileName iFilename;
sl@0
   574
	TBool iPaused;
sl@0
   575
	TInt iSamplesPlayedPaused;
sl@0
   576
	};
sl@0
   577
sl@0
   578
/*
sl@0
   579
 *========================================================================================================
sl@0
   580
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0030
sl@0
   581
 */
sl@0
   582
class RA3FDevSoundPlayStopTest : public RA3FDevSoundTestBase
sl@0
   583
	{
sl@0
   584
public:
sl@0
   585
	static RA3FDevSoundPlayStopTest* NewL(const TDesC& aTestName);
sl@0
   586
sl@0
   587
private:
sl@0
   588
	RA3FDevSoundPlayStopTest(const TDesC& aTestName);
sl@0
   589
	void DoKickoffTestL();
sl@0
   590
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   591
	void DoTimerCallback();
sl@0
   592
sl@0
   593
private:
sl@0
   594
	TFileName iFilename;
sl@0
   595
	TBool iStopped;
sl@0
   596
	};
sl@0
   597
sl@0
   598
/*
sl@0
   599
 *========================================================================================================
sl@0
   600
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0031
sl@0
   601
 */
sl@0
   602
class RA3FDevSoundPlayPreemptionTest : public RA3FDevSoundTestBase, public MA3FDevsoundPlayAudioClientObserver
sl@0
   603
	{
sl@0
   604
public:
sl@0
   605
	static RA3FDevSoundPlayPreemptionTest* NewL(const TDesC& aTestName);
sl@0
   606
sl@0
   607
private:
sl@0
   608
	RA3FDevSoundPlayPreemptionTest(const TDesC& aTestName);
sl@0
   609
	void DoKickoffTestL();
sl@0
   610
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   611
	void PlayError(TInt aError);
sl@0
   612
	void DoTimerCallback();
sl@0
   613
	void ClientInitializeCompleteCallback(TInt aError);
sl@0
   614
	void ClientBufferToBeFilledCallback(TInt aError);
sl@0
   615
	void ClientPlayErrorCallback(TInt aError, TBool aLastBuffer);
sl@0
   616
	void ClientPlayHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError);
sl@0
   617
sl@0
   618
private:
sl@0
   619
	TFileName iFilename;
sl@0
   620
	TFileName iOtherFilename;
sl@0
   621
	};
sl@0
   622
sl@0
   623
/*
sl@0
   624
 *========================================================================================================
sl@0
   625
 * 3F-DEVSOUND-CHRTZ-PLAY-RAW-0032
sl@0
   626
 */
sl@0
   627
class RA3FDevSoundPlayPreemptedByToneTest : public RA3FDevSoundTestBase, public MA3FDevsoundToneClientObserver
sl@0
   628
	{
sl@0
   629
public:
sl@0
   630
	static RA3FDevSoundPlayPreemptedByToneTest* NewL(const TDesC& aTestName);
sl@0
   631
private:
sl@0
   632
	RA3FDevSoundPlayPreemptedByToneTest(const TDesC& aTestName);
sl@0
   633
	void PlayError(TInt aError);
sl@0
   634
	void ClientInitializeCompleteCallback(TInt aError);
sl@0
   635
	void ClientToneFinishedCallback(TInt aError);
sl@0
   636
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   637
	void DoKickoffTestL();
sl@0
   638
	void DoTimerCallback();	
sl@0
   639
	
sl@0
   640
private:
sl@0
   641
	TFileName iFilename;
sl@0
   642
	TInt iFrequencyTone1;
sl@0
   643
	TInt iDuration;
sl@0
   644
	};
sl@0
   645
sl@0
   646
/*
sl@0
   647
 *========================================================================================================
sl@0
   648
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0033
sl@0
   649
 */
sl@0
   650
class RA3FDevSoundPlayPreemptedByRecordTest : public RA3FDevSoundTestBase, public MA3FDevsoundRecordAudioClientObserver
sl@0
   651
	{
sl@0
   652
public:
sl@0
   653
	static RA3FDevSoundPlayPreemptedByRecordTest* NewL(const TDesC& aTestName);
sl@0
   654
private:
sl@0
   655
	RA3FDevSoundPlayPreemptedByRecordTest(const TDesC& aTestName);
sl@0
   656
	void PlayError(TInt aError);
sl@0
   657
	void DoKickoffTestL();
sl@0
   658
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   659
	void DoTimerCallback();	
sl@0
   660
	void ClientInitializeCompleteCallback(TInt aError);
sl@0
   661
	void ClientBufferToBeEmptiedCallback(TInt aError);
sl@0
   662
	void ClientRecordErrorCallback(TInt aError);
sl@0
   663
	void ClientRecordHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError);
sl@0
   664
sl@0
   665
private:
sl@0
   666
	TInt iDuration;
sl@0
   667
	TBool iOtherClientStarted;
sl@0
   668
	TFileName iFilename;
sl@0
   669
	TFileName iOtherFilename;
sl@0
   670
	};
sl@0
   671
sl@0
   672
/*
sl@0
   673
 *========================================================================================================
sl@0
   674
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0034
sl@0
   675
 */
sl@0
   676
class RA3FDevSoundPlayRejectionTest : public RA3FDevSoundTestBase, public MA3FDevsoundPlayAudioClientObserver
sl@0
   677
	{
sl@0
   678
public:
sl@0
   679
	static RA3FDevSoundPlayRejectionTest* NewL(const TDesC& aTestName);
sl@0
   680
sl@0
   681
private:
sl@0
   682
	RA3FDevSoundPlayRejectionTest(const TDesC& aTestName);
sl@0
   683
	void DoKickoffTestL();
sl@0
   684
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   685
	void DoTimerCallback();
sl@0
   686
	void ClientInitializeCompleteCallback(TInt aError);
sl@0
   687
	void ClientBufferToBeFilledCallback(TInt aError);
sl@0
   688
	void ClientPlayErrorCallback(TInt aError, TBool aLastBuffer);
sl@0
   689
	void ClientPlayHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError);
sl@0
   690
	
sl@0
   691
private:
sl@0
   692
	TFileName iFilename;
sl@0
   693
	TFileName iOtherFilename;
sl@0
   694
	};
sl@0
   695
sl@0
   696
/*
sl@0
   697
 *========================================================================================================
sl@0
   698
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0035
sl@0
   699
 */
sl@0
   700
class RA3FDevSoundPlayRejectedByToneTest : public RA3FDevSoundTestBase, public MA3FDevsoundPlayAudioClientObserver
sl@0
   701
	{
sl@0
   702
public:
sl@0
   703
	static RA3FDevSoundPlayRejectedByToneTest* NewL(const TDesC& aTestName);
sl@0
   704
private:
sl@0
   705
	RA3FDevSoundPlayRejectedByToneTest(const TDesC& aTestName);
sl@0
   706
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   707
	void DoKickoffTestL();
sl@0
   708
	void DoTimerCallback();	
sl@0
   709
	void ClientInitializeCompleteCallback(TInt aError);
sl@0
   710
	void ClientBufferToBeFilledCallback(TInt aError);
sl@0
   711
	void ClientPlayErrorCallback(TInt aError, TBool aLastBuffer);
sl@0
   712
	void ClientPlayHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError);
sl@0
   713
sl@0
   714
private:
sl@0
   715
	TFileName iFilename;
sl@0
   716
	TInt iFrequencyTone1;
sl@0
   717
	TInt iDuration;
sl@0
   718
	};
sl@0
   719
sl@0
   720
/*
sl@0
   721
 *========================================================================================================
sl@0
   722
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0036
sl@0
   723
 */
sl@0
   724
class RA3FDevSoundPlayRejectedByRecordTest : public RA3FDevSoundTestBase, public MA3FDevsoundPlayAudioClientObserver
sl@0
   725
	{
sl@0
   726
public:
sl@0
   727
	static RA3FDevSoundPlayRejectedByRecordTest* NewL(const TDesC& aTestName);
sl@0
   728
sl@0
   729
private:
sl@0
   730
	RA3FDevSoundPlayRejectedByRecordTest(const TDesC& aTestName);
sl@0
   731
	void DoKickoffTestL();
sl@0
   732
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   733
	void DoTimerCallback();
sl@0
   734
	void ClientInitializeCompleteCallback(TInt aError);
sl@0
   735
	void ClientBufferToBeFilledCallback(TInt aError);
sl@0
   736
	void ClientPlayErrorCallback(TInt aError, TBool aLastBuffer);
sl@0
   737
	void ClientPlayHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError);
sl@0
   738
	
sl@0
   739
private:
sl@0
   740
	TFileName iFilename;
sl@0
   741
	TFileName iOtherFilename;
sl@0
   742
	TBool iOtherClientStarted;
sl@0
   743
	};
sl@0
   744
sl@0
   745
/*
sl@0
   746
 *========================================================================================================
sl@0
   747
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0037
sl@0
   748
 */
sl@0
   749
class RA3FDevSoundPlayDataBeforePlayInitTest : public RA3FDevSoundTestBase
sl@0
   750
	{
sl@0
   751
public:
sl@0
   752
	static RA3FDevSoundPlayDataBeforePlayInitTest* NewL(const TDesC& aTestName);
sl@0
   753
sl@0
   754
private:
sl@0
   755
	RA3FDevSoundPlayDataBeforePlayInitTest(const TDesC& aTestName);
sl@0
   756
	void DoKickoffTestL();
sl@0
   757
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   758
	};
sl@0
   759
sl@0
   760
/*
sl@0
   761
 *========================================================================================================
sl@0
   762
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0038
sl@0
   763
 */
sl@0
   764
class RA3FDevSoundPlayInitTwiceTest : public RA3FDevSoundTestBase
sl@0
   765
	{
sl@0
   766
public:
sl@0
   767
	static RA3FDevSoundPlayInitTwiceTest* NewL(const TDesC& aTestName);
sl@0
   768
sl@0
   769
private:
sl@0
   770
	RA3FDevSoundPlayInitTwiceTest(const TDesC& aTestName);
sl@0
   771
	void DoKickoffTestL();
sl@0
   772
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   773
	void BufferToBeFilled(CMMFBuffer* /*aBuffer*/);
sl@0
   774
sl@0
   775
private:
sl@0
   776
	TInt iFirstPlayInitErr;
sl@0
   777
	TInt iErr;
sl@0
   778
	};
sl@0
   779
sl@0
   780
/*
sl@0
   781
 *========================================================================================================
sl@0
   782
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0039
sl@0
   783
 */
sl@0
   784
class RA3FDevSoundPlayARNTest : public RA3FDevSoundTestBase, public MA3FDevsoundPlayAudioClientObserver
sl@0
   785
	{
sl@0
   786
public:
sl@0
   787
	static RA3FDevSoundPlayARNTest* NewL(const TDesC& aTestName);
sl@0
   788
sl@0
   789
private:
sl@0
   790
	RA3FDevSoundPlayARNTest(const TDesC& aTestName);
sl@0
   791
	void DoKickoffTestL();
sl@0
   792
	void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   793
	void PlayError(TInt aError);
sl@0
   794
	void DoTimerCallback();
sl@0
   795
	void ClientInitializeCompleteCallback(TInt aError);
sl@0
   796
	void ClientBufferToBeFilledCallback(TInt aError);
sl@0
   797
	void ClientPlayErrorCallback(TInt aError, TBool aLastBuffer);
sl@0
   798
	void ClientPlayHandleOpenFileErrorInValidEventOrStateCallBack(TMmfDevSoundClientErrorCodes aError);
sl@0
   799
sl@0
   800
private:
sl@0
   801
	TFileName iFilename;
sl@0
   802
	TFileName iOtherFilename;
sl@0
   803
	TBool iRepeat;
sl@0
   804
	};
sl@0
   805
sl@0
   806
/*
sl@0
   807
*========================================================================================================
sl@0
   808
* MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0040
sl@0
   809
*/
sl@0
   810
class RA3FDevSoundImmediatePauseAfterCreation : public RA3FDevSoundTestBase
sl@0
   811
   {
sl@0
   812
public:
sl@0
   813
   static RA3FDevSoundImmediatePauseAfterCreation* NewL(const TDesC& aTestName);
sl@0
   814
sl@0
   815
private:
sl@0
   816
    RA3FDevSoundImmediatePauseAfterCreation(const TDesC& aTestName);
sl@0
   817
   void DoKickoffTestL();
sl@0
   818
   void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   819
   void DoTimerCallback();
sl@0
   820
private:
sl@0
   821
   TFileName iFilename;
sl@0
   822
   TFileName iOtherFilename;
sl@0
   823
   TBool iRepeat;
sl@0
   824
   };
sl@0
   825
sl@0
   826
/*
sl@0
   827
 *========================================================================================================
sl@0
   828
 * MM-A3F-DEVSOUND-CHRTZ-PLAY-RAW-0041
sl@0
   829
 */
sl@0
   830
class RA3FDevSoundPlayEmptyBuffersWhilePlayingTest : public RA3FDevSoundTestBase
sl@0
   831
    {
sl@0
   832
public:
sl@0
   833
    static RA3FDevSoundPlayEmptyBuffersWhilePlayingTest* NewL(const TDesC& aTestName);
sl@0
   834
sl@0
   835
private:
sl@0
   836
    RA3FDevSoundPlayEmptyBuffersWhilePlayingTest(const TDesC& aTestName);
sl@0
   837
    void DoKickoffTestL();
sl@0
   838
    void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   839
private:
sl@0
   840
    TInt iVolume;
sl@0
   841
    TInt iBtbfCount;
sl@0
   842
    TFileName iFilename;
sl@0
   843
    };
sl@0
   844
sl@0
   845
/*
sl@0
   846
 *========================================================================================================
sl@0
   847
 * 3F-DEVSOUND-CHRTZ-PLAY-RAW-0042
sl@0
   848
 */
sl@0
   849
class RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest : public RA3FDevSoundTestBase, public MA3FDevsoundToneClientObserver
sl@0
   850
    {
sl@0
   851
public:
sl@0
   852
    static RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest* NewL(const TDesC& aTestName);
sl@0
   853
private:
sl@0
   854
    RA3FDevSoundPlayPreemptedByToneAfterSetVolumeTest(const TDesC& aTestName);
sl@0
   855
    void PlayError(TInt aError);
sl@0
   856
    void ClientInitializeCompleteCallback(TInt aError);
sl@0
   857
    void ClientToneFinishedCallback(TInt aError);
sl@0
   858
    void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError);
sl@0
   859
    void DoKickoffTestL();
sl@0
   860
    void DoTimerCallback(); 
sl@0
   861
    
sl@0
   862
private:
sl@0
   863
    TFileName   iFilename;
sl@0
   864
    TInt        iExVolume;
sl@0
   865
    TInt        iFrequencyTone1;
sl@0
   866
    TInt        iDuration;
sl@0
   867
    TBool       iSetVolume;
sl@0
   868
    TBool       iResume;
sl@0
   869
    };
sl@0
   870
sl@0
   871
#endif // CHAR_A3F_DEVSOUND_PLAYTEST_H
sl@0
   872