os/mm/devsound/a3fcharacterisationtest/src/char_a3f_devsound_initializationtest.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/devsound/a3fcharacterisationtest/src/char_a3f_devsound_initializationtest.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,2859 @@
     1.4 +// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +// User includes
    1.20 +#include "char_a3f_devsound_initializationtest.h"
    1.21 +
    1.22 +/*
    1.23 + *========================================================================================================
    1.24 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0001
    1.25 + */
    1.26 +RA3FDevSoundToneInitializationTest::RA3FDevSoundToneInitializationTest(const TDesC& aTestName) 
    1.27 +	:	RA3FDevSoundTestBase(aTestName)
    1.28 +	{
    1.29 +	}
    1.30 +
    1.31 +RA3FDevSoundToneInitializationTest* RA3FDevSoundToneInitializationTest::NewL(const TDesC& aTestName)
    1.32 +	{
    1.33 +	RA3FDevSoundToneInitializationTest* self = new (ELeave) RA3FDevSoundToneInitializationTest(aTestName);
    1.34 +	return self;
    1.35 +	}
    1.36 +
    1.37 +void RA3FDevSoundToneInitializationTest::DoKickoffTestL()
    1.38 +	{
    1.39 +	}
    1.40 +
    1.41 +void RA3FDevSoundToneInitializationTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
    1.42 +	{
    1.43 +	switch(iDevSoundState)
    1.44 +		{
    1.45 +		case EStateCreated:
    1.46 +			{
    1.47 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundToneInitializationTest"),EFsmIncorrectErrorPassed));
    1.48 +			if(aDevSoundEvent == EEventInitialize)
    1.49 +				{
    1.50 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
    1.51 +				TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
    1.52 +				if(err != KErrNone)
    1.53 +					{
    1.54 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
    1.55 +					StopTest(err);
    1.56 +					break;
    1.57 +					}
    1.58 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
    1.59 +				iDevSoundState = EStateInitializing;
    1.60 +				}
    1.61 +			else
    1.62 +				{
    1.63 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
    1.64 +				StopTest(aError, EFail);
    1.65 +				}
    1.66 +			break;
    1.67 +			}
    1.68 +		case EStateInitializing:
    1.69 +			{
    1.70 +			if(aDevSoundEvent == EEventInitComplete && aError == KErrNone)
    1.71 +				{
    1.72 +				INFO_PRINTF1(_L("========== Test Case Successfully Completed =========="));
    1.73 +				StopTest();
    1.74 +				}
    1.75 +			else if(aDevSoundEvent == EEventInitComplete && aError != KErrNone)
    1.76 +				{
    1.77 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
    1.78 +				StopTest(aError);		
    1.79 +				}
    1.80 +			else
    1.81 +				{
    1.82 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
    1.83 +				StopTest(aError, EFail);
    1.84 +				}
    1.85 +			break;
    1.86 +			}	
    1.87 +		default:
    1.88 +			{
    1.89 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
    1.90 +			StopTest(aError, EFail);
    1.91 +			}
    1.92 +		}
    1.93 +	}
    1.94 +
    1.95 +/*
    1.96 + *========================================================================================================
    1.97 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0002
    1.98 + */
    1.99 +RA3FDevSoundToneCancelInitializeTest::RA3FDevSoundToneCancelInitializeTest(const TDesC& aTestName) 
   1.100 +	:	RA3FDevSoundTestBase(aTestName),iInitCompleteReceived(EFalse),
   1.101 +		iSampleRate(0), iChannels(0)
   1.102 +	{
   1.103 +	}
   1.104 +
   1.105 +RA3FDevSoundToneCancelInitializeTest* RA3FDevSoundToneCancelInitializeTest::NewL(const TDesC& aTestName)
   1.106 +	{
   1.107 +	RA3FDevSoundToneCancelInitializeTest* self = new (ELeave) RA3FDevSoundToneCancelInitializeTest(aTestName);
   1.108 +	return self;
   1.109 +	}
   1.110 +
   1.111 +void RA3FDevSoundToneCancelInitializeTest::DoKickoffTestL()
   1.112 +	{
   1.113 +	if (!GetIntFromConfig(iTestStepName, KSampleRate, iSampleRate))
   1.114 +		{
   1.115 +		ERR_PRINTF2(KMsgErrorGetParameter, &KSampleRate);
   1.116 +		StopTest(KErrNotFound);
   1.117 +		return;
   1.118 +		}
   1.119 +	if (!GetIntFromConfig(iTestStepName, KChannel, iChannels))
   1.120 +		{
   1.121 +		ERR_PRINTF2(KMsgErrorGetParameter, &KChannel);
   1.122 +		StopTest(KErrNotFound);
   1.123 +		return;
   1.124 +		}
   1.125 +	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
   1.126 +	}
   1.127 +
   1.128 +void RA3FDevSoundToneCancelInitializeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
   1.129 +	{
   1.130 +	switch(iDevSoundState)
   1.131 +		{
   1.132 +		case EStateCreated:
   1.133 +			{
   1.134 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundToneCancelInitializeTest"),EFsmIncorrectErrorPassed));
   1.135 +			if(aDevSoundEvent == EEventInitialize)
   1.136 +				{
   1.137 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
   1.138 +				TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
   1.139 +				if(err != KErrNone)
   1.140 +					{
   1.141 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
   1.142 +					StopTest(err);
   1.143 +					break;
   1.144 +					}		
   1.145 +				StartTimer(KMicroSecsTwoSec);
   1.146 +				INFO_PRINTF1(_L("Calling CMMFDevSound::CancelInitialize")); 
   1.147 +				err = iMMFDevSound->CancelInitialize();
   1.148 +				if(err != KErrNone)
   1.149 +					{
   1.150 +					ERR_PRINTF2(_L("Unexpected error on CancelInitialize = %d"), err);
   1.151 +					StopTest(err);
   1.152 +					}
   1.153 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
   1.154 +				iDevSoundState = EStateInitializing;
   1.155 +				}
   1.156 +			else
   1.157 +				{
   1.158 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
   1.159 +				StopTest(aError, EFail);
   1.160 +				}
   1.161 +			break;
   1.162 +			}
   1.163 +		case EStateInitializing:
   1.164 +			{
   1.165 +			if(aDevSoundEvent == EEventInitComplete)
   1.166 +				{
   1.167 +				iInitCompleteReceived = ETrue;
   1.168 +				}
   1.169 +			break;
   1.170 +			}	
   1.171 +		default:
   1.172 +			{
   1.173 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
   1.174 +			StopTest(aError, EFail);
   1.175 +			}
   1.176 +		}
   1.177 +	}
   1.178 +void RA3FDevSoundToneCancelInitializeTest::DoTimerCallback()
   1.179 +	{
   1.180 +	if(!iInitCompleteReceived)
   1.181 +		{
   1.182 +		INFO_PRINTF1(_L("Waiting for InitializeComplete event"));
   1.183 +		iInitCompleteReceived = ETrue;
   1.184 +		}
   1.185 +	else
   1.186 +		{
   1.187 +		iTimer->Cancel();
   1.188 +		TMMFCapabilities capabilitiesSet;
   1.189 +		TBuf<KMaxSampleRateStringLength> stringSampleRateSet;
   1.190 +		TBuf<KMaxChannelsStringLength> stringChannelsSet;
   1.191 +		SampleRateFromTIntToTMMFSampleRate (iSampleRate, iESampleRate);
   1.192 +		capabilitiesSet.iRate = iESampleRate;
   1.193 +		capabilitiesSet.iChannels = iChannels;
   1.194 +		SampleRateFromTUintToString (capabilitiesSet.iRate,	stringSampleRateSet);
   1.195 +		ChannelsFromTUintToString (capabilitiesSet.iChannels, stringChannelsSet);
   1.196 +		INFO_PRINTF3(_L("Settings for Sample rate an channel mode. %S %S"), &stringSampleRateSet, &stringChannelsSet);
   1.197 +		INFO_PRINTF1(_L("Calling CMMFDevSound::SetConfigL"));
   1.198 +		TRAPD(err, iMMFDevSound->SetConfigL(capabilitiesSet));
   1.199 +		if (err ==  KErrNotReady)
   1.200 +			{
   1.201 +			INFO_PRINTF2(_L("CMMFDevSound::SetConfigL left with the expected error = %d"), err);
   1.202 +			StopTest();
   1.203 +			}
   1.204 +		else
   1.205 +			{
   1.206 +			INFO_PRINTF2(_L("CMMFDevSound::SetConfigL left with error = %d"), err);
   1.207 +			ERR_PRINTF2(_L("Expected error value = %d"), KErrNotReady);
   1.208 +			StopTest(err, EFail);
   1.209 +			}
   1.210 +		}
   1.211 +	}
   1.212 +
   1.213 +void RA3FDevSoundToneCancelInitializeTest::InitializeComplete(TInt aError)
   1.214 +	{
   1.215 +	ERR_PRINTF1(_L("DevSound called InitializeComplete after calling CMMFDevSound::CancelInitialize"));
   1.216 +	StopTest(aError, EFail);
   1.217 +	}
   1.218 +
   1.219 +
   1.220 +/*
   1.221 + *========================================================================================================
   1.222 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0003
   1.223 + */
   1.224 +RA3FDevSoundToneInitializeToPlayTonesTwiceTest::RA3FDevSoundToneInitializeToPlayTonesTwiceTest(const TDesC& aTestName) 
   1.225 +	: 	RA3FDevSoundTestBase(aTestName), iReinitialized(EFalse)
   1.226 +	{
   1.227 +	}
   1.228 +
   1.229 +RA3FDevSoundToneInitializeToPlayTonesTwiceTest* RA3FDevSoundToneInitializeToPlayTonesTwiceTest::NewL(const TDesC& aTestName)
   1.230 +	{
   1.231 +	RA3FDevSoundToneInitializeToPlayTonesTwiceTest* self = new (ELeave) RA3FDevSoundToneInitializeToPlayTonesTwiceTest(aTestName);
   1.232 +	return self;
   1.233 +	}
   1.234 +
   1.235 +void RA3FDevSoundToneInitializeToPlayTonesTwiceTest::DoKickoffTestL()
   1.236 +	{
   1.237 +	}
   1.238 +
   1.239 +void RA3FDevSoundToneInitializeToPlayTonesTwiceTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
   1.240 +	{
   1.241 +	switch(iDevSoundState)
   1.242 +		{
   1.243 +		case EStateCreated:
   1.244 +			{
   1.245 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundToneInitializeTwiceToPlayTonesTest"),EFsmIncorrectErrorPassed));
   1.246 +			if(aDevSoundEvent == EEventInitialize)
   1.247 +				{
   1.248 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
   1.249 +				TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
   1.250 +				if(err != KErrNone)
   1.251 +					{
   1.252 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
   1.253 +					StopTest(err);
   1.254 +					break;
   1.255 +					}
   1.256 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
   1.257 +				iDevSoundState = EStateInitializing;
   1.258 +				}
   1.259 +			else
   1.260 +				{
   1.261 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
   1.262 +				StopTest(aError, EFail);
   1.263 +				}
   1.264 +			break;
   1.265 +			}
   1.266 +		case EStateInitializing:
   1.267 +			{
   1.268 +			if(aDevSoundEvent == EEventInitComplete && aError == KErrNone)
   1.269 +				{
   1.270 +				if(!iReinitialized)
   1.271 +					{
   1.272 +					INFO_PRINTF1(_L("========== First initialization successfully completed =========="));
   1.273 +					iReinitialized = ETrue;
   1.274 +					INFO_PRINTF1(_L("Again calling CMMFDevSound::InitializeL"));
   1.275 +					TRAPD(err, iMMFDevSound->InitializeL(*this,EMMFStateTonePlaying));
   1.276 +					if(err != KErrNone)
   1.277 +						{
   1.278 +						StopTest(err);
   1.279 +						break;
   1.280 +						}
   1.281 +					INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
   1.282 +					iDevSoundState = EStateInitializing;
   1.283 +					}
   1.284 +				else
   1.285 +					{
   1.286 +					INFO_PRINTF1(_L("========== Second initialization successfully completed =========="));
   1.287 +					StopTest();
   1.288 +					}
   1.289 +				}
   1.290 +			else if(aDevSoundEvent == EEventInitComplete && aError != KErrNone)
   1.291 +				{
   1.292 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
   1.293 +				StopTest(aError);		
   1.294 +				}
   1.295 +			else
   1.296 +				{
   1.297 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
   1.298 +				StopTest(aError, EFail);
   1.299 +				}
   1.300 +			break;
   1.301 +			}	
   1.302 +		default:
   1.303 +			{
   1.304 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
   1.305 +			StopTest(aError, EFail);
   1.306 +			}
   1.307 +		}
   1.308 +	}
   1.309 +
   1.310 +/*
   1.311 + *========================================================================================================
   1.312 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0004
   1.313 + */
   1.314 +RA3FDevSoundToneInitializeToPlayTonesThenAudioTest::RA3FDevSoundToneInitializeToPlayTonesThenAudioTest(const TDesC& aTestName) 
   1.315 +	: 	RA3FDevSoundTestBase(aTestName), iReinitialized(EFalse)
   1.316 +	{
   1.317 +	}
   1.318 +
   1.319 +RA3FDevSoundToneInitializeToPlayTonesThenAudioTest* RA3FDevSoundToneInitializeToPlayTonesThenAudioTest::NewL(const TDesC& aTestName)
   1.320 +	{
   1.321 +	RA3FDevSoundToneInitializeToPlayTonesThenAudioTest* self = new (ELeave) RA3FDevSoundToneInitializeToPlayTonesThenAudioTest(aTestName);
   1.322 +	return self;
   1.323 +	}
   1.324 +
   1.325 +void RA3FDevSoundToneInitializeToPlayTonesThenAudioTest::DoKickoffTestL()
   1.326 +	{
   1.327 +	}
   1.328 +
   1.329 +void RA3FDevSoundToneInitializeToPlayTonesThenAudioTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
   1.330 +	{
   1.331 +	switch(iDevSoundState)
   1.332 +		{
   1.333 +		case EStateCreated:
   1.334 +			{
   1.335 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundToneInitializeToPlayTonesThenAudioTest"),EFsmIncorrectErrorPassed));
   1.336 +			if(aDevSoundEvent == EEventInitialize)
   1.337 +				{
   1.338 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
   1.339 +				TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
   1.340 +				if(err != KErrNone)
   1.341 +					{
   1.342 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
   1.343 +					StopTest(err);
   1.344 +					break;
   1.345 +					}
   1.346 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
   1.347 +				iDevSoundState = EStateInitializing;
   1.348 +				}
   1.349 +			else
   1.350 +				{
   1.351 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
   1.352 +				StopTest(aError, EFail);
   1.353 +				}
   1.354 +			break;
   1.355 +			}
   1.356 +		case EStateInitializing:
   1.357 +			{
   1.358 +			if(aDevSoundEvent == EEventInitComplete && aError == KErrNone)
   1.359 +				{
   1.360 +				if(!iReinitialized)
   1.361 +					{
   1.362 +					INFO_PRINTF1(_L("========== First initialization successfully completed =========="));
   1.363 +					iReinitialized = ETrue;
   1.364 +					INFO_PRINTF1(_L("Again calling CMMFDevSound::InitializeL"));
   1.365 +					TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
   1.366 +					if(err != KErrNone)
   1.367 +						{
   1.368 +						StopTest(err);
   1.369 +						break;
   1.370 +						}
   1.371 +					INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
   1.372 +					iDevSoundState = EStateInitializing;
   1.373 +					}
   1.374 +				else
   1.375 +					{
   1.376 +					INFO_PRINTF1(_L("========== Second initialization successfully completed =========="));
   1.377 +					StopTest();
   1.378 +					}
   1.379 +				}
   1.380 +			else if(aDevSoundEvent == EEventInitComplete && aError != KErrNone)
   1.381 +				{
   1.382 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
   1.383 +				StopTest(aError);		
   1.384 +				}
   1.385 +			else
   1.386 +				{
   1.387 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
   1.388 +				StopTest(aError, EFail);
   1.389 +				}
   1.390 +			break;
   1.391 +			}	
   1.392 +		default:
   1.393 +			{
   1.394 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
   1.395 +			StopTest(aError, EFail);
   1.396 +			}
   1.397 +		}
   1.398 +	}
   1.399 +
   1.400 +/*
   1.401 + *========================================================================================================
   1.402 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0005
   1.403 + */
   1.404 +RA3FDevSoundToneInitializeToPlayTonesThenRecordAudioTest::RA3FDevSoundToneInitializeToPlayTonesThenRecordAudioTest(const TDesC& aTestName) 
   1.405 +	: 	RA3FDevSoundTestBase(aTestName), iReinitialized(EFalse)
   1.406 +	{
   1.407 +	}
   1.408 +
   1.409 +RA3FDevSoundToneInitializeToPlayTonesThenRecordAudioTest* RA3FDevSoundToneInitializeToPlayTonesThenRecordAudioTest::NewL(const TDesC& aTestName)
   1.410 +	{
   1.411 +	RA3FDevSoundToneInitializeToPlayTonesThenRecordAudioTest* self = new (ELeave) RA3FDevSoundToneInitializeToPlayTonesThenRecordAudioTest(aTestName);
   1.412 +	return self;
   1.413 +	}
   1.414 +
   1.415 +void RA3FDevSoundToneInitializeToPlayTonesThenRecordAudioTest::DoKickoffTestL()
   1.416 +	{
   1.417 +	}
   1.418 +
   1.419 +void RA3FDevSoundToneInitializeToPlayTonesThenRecordAudioTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
   1.420 +	{
   1.421 +	switch(iDevSoundState)
   1.422 +		{
   1.423 +		case EStateCreated:
   1.424 +			{
   1.425 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundToneInitializeToPlayTonesThenRecordAudioTest"),EFsmIncorrectErrorPassed));
   1.426 +			if(aDevSoundEvent == EEventInitialize)
   1.427 +				{
   1.428 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
   1.429 +				TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
   1.430 +				if(err != KErrNone)
   1.431 +					{
   1.432 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
   1.433 +					StopTest(err);
   1.434 +					break;
   1.435 +					}
   1.436 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
   1.437 +				iDevSoundState = EStateInitializing;
   1.438 +				}
   1.439 +			else
   1.440 +				{
   1.441 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
   1.442 +				StopTest(aError, EFail);
   1.443 +				}
   1.444 +			break;
   1.445 +			}
   1.446 +		case EStateInitializing:
   1.447 +			{
   1.448 +			if(aDevSoundEvent == EEventInitComplete && aError == KErrNone)
   1.449 +				{
   1.450 +				if(!iReinitialized)
   1.451 +					{
   1.452 +					INFO_PRINTF1(_L("========== First initialization successfully completed=========="));
   1.453 +					iReinitialized = ETrue;
   1.454 +					INFO_PRINTF1(_L("Again calling CMMFDevSound::InitializeL"));
   1.455 +					TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateRecording));
   1.456 +					if(err != KErrNone)
   1.457 +						{
   1.458 +						StopTest(err);
   1.459 +						break;
   1.460 +						}
   1.461 +					INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
   1.462 +					iDevSoundState = EStateInitializing;
   1.463 +					}
   1.464 +				else
   1.465 +					{
   1.466 +					INFO_PRINTF1(_L("========== Second initialization successfully completed =========="));
   1.467 +					StopTest();
   1.468 +					}
   1.469 +				}
   1.470 +			else if(aDevSoundEvent == EEventInitComplete && aError != KErrNone)
   1.471 +				{
   1.472 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
   1.473 +				StopTest(aError);		
   1.474 +				}
   1.475 +			else
   1.476 +				{
   1.477 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
   1.478 +				StopTest(aError, EFail);
   1.479 +				}
   1.480 +			break;
   1.481 +			}	
   1.482 +		default:
   1.483 +			{
   1.484 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
   1.485 +			StopTest(aError, EFail);
   1.486 +			}
   1.487 +		}
   1.488 +	}
   1.489 +
   1.490 +/*
   1.491 + *========================================================================================================
   1.492 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0006
   1.493 + */
   1.494 +RA3FDevSoundToneInitializeTFourCCTest::RA3FDevSoundToneInitializeTFourCCTest(const TDesC& aTestName) 
   1.495 +	: 	RA3FDevSoundTestBase(aTestName)
   1.496 +	{
   1.497 +	}
   1.498 +
   1.499 +RA3FDevSoundToneInitializeTFourCCTest* RA3FDevSoundToneInitializeTFourCCTest::NewL(const TDesC& aTestName)
   1.500 +	{
   1.501 +	RA3FDevSoundToneInitializeTFourCCTest* self = new (ELeave) RA3FDevSoundToneInitializeTFourCCTest(aTestName);
   1.502 +	return self;
   1.503 +	}
   1.504 +
   1.505 +void RA3FDevSoundToneInitializeTFourCCTest::DoKickoffTestL()
   1.506 +	{
   1.507 +	TPtrC fourccCode;
   1.508 +	if(!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
   1.509 +		{
   1.510 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
   1.511 +		StopTest(KErrNotFound);
   1.512 +		return;
   1.513 +		}
   1.514 +	EncodingFromStringToTFourCC(fourccCode);
   1.515 +	}
   1.516 +
   1.517 +void RA3FDevSoundToneInitializeTFourCCTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
   1.518 +	{
   1.519 +	switch(iDevSoundState)
   1.520 +		{
   1.521 +		case EStateCreated:
   1.522 +			{
   1.523 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundToneInitializeTFourCCTest"),EFsmIncorrectErrorPassed));
   1.524 +			if(aDevSoundEvent == EEventInitialize)
   1.525 +				{
   1.526 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
   1.527 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStateTonePlaying));
   1.528 +				if(err == KErrNotSupported)
   1.529 +					{
   1.530 +					ERR_PRINTF2(_L("Calling CMMFDevSound::InitializeL to play tones using a FourCC code left with expected error = %d"), err);
   1.531 +					StopTest(err, EPass);
   1.532 +					break;
   1.533 +					}
   1.534 +				else
   1.535 +					{
   1.536 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
   1.537 +					INFO_PRINTF2(_L("Expected error = %d"), KErrNotSupported);
   1.538 +					StopTest(err, EFail);
   1.539 +					}
   1.540 +				}
   1.541 +			}
   1.542 +		default:
   1.543 +			{
   1.544 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
   1.545 +			StopTest(aError, EFail);
   1.546 +			}
   1.547 +		}
   1.548 +	}
   1.549 +
   1.550 +/*
   1.551 + *========================================================================================================
   1.552 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0007
   1.553 + */
   1.554 +RA3FDevSoundInitializeInvalidModeTest::RA3FDevSoundInitializeInvalidModeTest(const TDesC& aTestName) 
   1.555 +	: 	RA3FDevSoundTestBase(aTestName)
   1.556 +	{
   1.557 +	}
   1.558 +
   1.559 +RA3FDevSoundInitializeInvalidModeTest* RA3FDevSoundInitializeInvalidModeTest::NewL(const TDesC& aTestName)
   1.560 +	{
   1.561 +	RA3FDevSoundInitializeInvalidModeTest* self = new (ELeave) RA3FDevSoundInitializeInvalidModeTest(aTestName);
   1.562 +	return self;
   1.563 +	}
   1.564 +
   1.565 +void RA3FDevSoundInitializeInvalidModeTest::DoKickoffTestL()
   1.566 +	{
   1.567 +	}
   1.568 +
   1.569 +void RA3FDevSoundInitializeInvalidModeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
   1.570 +	{
   1.571 +	switch(iDevSoundState)
   1.572 +		{
   1.573 +		case EStateCreated:
   1.574 +			{
   1.575 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundInitializeInvalidModeTest"),EFsmIncorrectErrorPassed));
   1.576 +			if(aDevSoundEvent == EEventInitialize)
   1.577 +				{
   1.578 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
   1.579 +				TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateConverting));
   1.580 +				if(err == KErrNotSupported)
   1.581 +					{
   1.582 +					ERR_PRINTF2(_L("Calling CMMFDevSound::InitializeL using an invalid TMMFState argument left with expected error code = %d"), err);
   1.583 +					StopTest(err, EPass);
   1.584 +					break;
   1.585 +					}
   1.586 +				else
   1.587 +					{
   1.588 +					INFO_PRINTF2(_L("Calling CMMFDevSound::InitializeL using an invalid TMMFState argument left with unexpected error code = %d"), err);
   1.589 +					INFO_PRINTF2(_L("Expected error = %d"), KErrNotSupported);
   1.590 +					StopTest(err, EFail);
   1.591 +					}
   1.592 +				}
   1.593 +			}
   1.594 +		default:
   1.595 +			{
   1.596 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
   1.597 +			StopTest(aError, EFail);
   1.598 +			}
   1.599 +		}
   1.600 +	}
   1.601 +	
   1.602 +
   1.603 +/*
   1.604 + *========================================================================================================
   1.605 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0008
   1.606 + */
   1.607 +RA3FDevSoundPlayInitializationTest::RA3FDevSoundPlayInitializationTest(const TDesC& aTestName) 
   1.608 +	: 	RA3FDevSoundTestBase(aTestName)
   1.609 +	{
   1.610 +	}
   1.611 +
   1.612 +RA3FDevSoundPlayInitializationTest* RA3FDevSoundPlayInitializationTest::NewL(const TDesC& aTestName)
   1.613 +	{
   1.614 +	RA3FDevSoundPlayInitializationTest* self = new (ELeave) RA3FDevSoundPlayInitializationTest(aTestName);
   1.615 +	return self;
   1.616 +	}
   1.617 +
   1.618 +void RA3FDevSoundPlayInitializationTest::DoKickoffTestL()
   1.619 +	{
   1.620 +	TPtrC fourccCode;
   1.621 +	if(!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
   1.622 +		{
   1.623 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
   1.624 +		StopTest(KErrNotFound);
   1.625 +		return;
   1.626 +		}
   1.627 +	EncodingFromStringToTFourCC(fourccCode);
   1.628 +	}
   1.629 +
   1.630 +void RA3FDevSoundPlayInitializationTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
   1.631 +	{
   1.632 +	switch(iDevSoundState)
   1.633 +		{
   1.634 +		case EStateCreated:
   1.635 +			{
   1.636 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundPlayInitializationTest"),EFsmIncorrectErrorPassed));
   1.637 +			if(aDevSoundEvent == EEventInitialize)
   1.638 +				{
   1.639 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
   1.640 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
   1.641 +				if(err != KErrNone)
   1.642 +					{
   1.643 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
   1.644 +					StopTest(err);
   1.645 +					break;
   1.646 +					}
   1.647 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
   1.648 +				iDevSoundState = EStateInitializing;
   1.649 +				}
   1.650 +			else
   1.651 +				{
   1.652 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
   1.653 +				StopTest(aError, EFail);
   1.654 +				}
   1.655 +			break;
   1.656 +			}
   1.657 +		case EStateInitializing:
   1.658 +			{
   1.659 +			if(aDevSoundEvent == EEventInitComplete && aError == KErrNone)
   1.660 +				{
   1.661 +				INFO_PRINTF1(_L("CMMFDevSound::InitializeL succeeded"));
   1.662 +				StopTest();
   1.663 +				}
   1.664 +			else if(aDevSoundEvent == EEventInitComplete && aError != KErrNone)
   1.665 +				{
   1.666 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
   1.667 +				StopTest(aError);		
   1.668 +				}
   1.669 +			else
   1.670 +				{
   1.671 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
   1.672 +				StopTest(aError, EFail);
   1.673 +				}
   1.674 +			break;
   1.675 +			}	
   1.676 +		default:
   1.677 +			{
   1.678 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
   1.679 +			StopTest(aError, EFail);
   1.680 +			}
   1.681 +		}
   1.682 +	}
   1.683 +
   1.684 +/*
   1.685 + *========================================================================================================
   1.686 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0009
   1.687 + */
   1.688 +RA3FDevSoundPlayCancelInitializeTest::RA3FDevSoundPlayCancelInitializeTest(const TDesC& aTestName) 
   1.689 +	:	RA3FDevSoundTestBase(aTestName),iInitCompleteReceived(EFalse),
   1.690 +		iSampleRate(0), iChannels(0)
   1.691 +	{
   1.692 +	}
   1.693 +
   1.694 +RA3FDevSoundPlayCancelInitializeTest* RA3FDevSoundPlayCancelInitializeTest::NewL(const TDesC& aTestName)
   1.695 +	{
   1.696 +	RA3FDevSoundPlayCancelInitializeTest* self = new (ELeave) RA3FDevSoundPlayCancelInitializeTest(aTestName);
   1.697 +	return self;
   1.698 +	}
   1.699 +
   1.700 +void RA3FDevSoundPlayCancelInitializeTest::DoKickoffTestL()
   1.701 +	{
   1.702 +	if (!GetIntFromConfig(iTestStepName, KSampleRate, iSampleRate))
   1.703 +		{
   1.704 +		ERR_PRINTF2(KMsgErrorGetParameter, &KSampleRate);
   1.705 +		StopTest(KErrNotFound);
   1.706 +		return;
   1.707 +		}
   1.708 +	if (!GetIntFromConfig(iTestStepName, KChannel, iChannels))
   1.709 +		{
   1.710 +		ERR_PRINTF2(KMsgErrorGetParameter, &KChannel);
   1.711 +		StopTest(KErrNotFound);
   1.712 +		return;
   1.713 +		}
   1.714 +	TPtrC fourccCode;
   1.715 +	if(!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
   1.716 +		{
   1.717 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
   1.718 +		StopTest(KErrNotFound);
   1.719 +		return;
   1.720 +		}
   1.721 +	EncodingFromStringToTFourCC(fourccCode);
   1.722 +	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
   1.723 +	}
   1.724 +
   1.725 +void RA3FDevSoundPlayCancelInitializeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
   1.726 +	{
   1.727 +	switch(iDevSoundState)
   1.728 +		{
   1.729 +		case EStateCreated:
   1.730 +			{
   1.731 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundPlayCancelInitializeTest"),EFsmIncorrectErrorPassed));
   1.732 +			if(aDevSoundEvent == EEventInitialize)
   1.733 +				{
   1.734 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
   1.735 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
   1.736 +				if(err != KErrNone)
   1.737 +					{
   1.738 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
   1.739 +					StopTest(err);
   1.740 +					break;
   1.741 +					}		
   1.742 +				StartTimer(KMicroSecsTwoSec);
   1.743 +				INFO_PRINTF1(_L("Calling CMMFDevSound::CancelInitialize"));
   1.744 +				err = iMMFDevSound->CancelInitialize();
   1.745 +				if(err != KErrNone)
   1.746 +					{
   1.747 +					ERR_PRINTF2(_L("Unexpected error on CancelInitialize = %d"), err);
   1.748 +					StopTest(err);
   1.749 +					}
   1.750 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
   1.751 +				iDevSoundState = EStateInitializing;
   1.752 +				}
   1.753 +			else
   1.754 +				{
   1.755 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
   1.756 +				StopTest(aError, EFail);
   1.757 +				}
   1.758 +			break;
   1.759 +			}
   1.760 +		case EStateInitializing:
   1.761 +			{
   1.762 +			if(aDevSoundEvent == EEventInitComplete)
   1.763 +				{
   1.764 +				iInitCompleteReceived = ETrue;
   1.765 +				}
   1.766 +			break;
   1.767 +			}	
   1.768 +		default:
   1.769 +			{
   1.770 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
   1.771 +			StopTest(aError, EFail);
   1.772 +			}
   1.773 +		}
   1.774 +	}
   1.775 +
   1.776 +void RA3FDevSoundPlayCancelInitializeTest::DoTimerCallback()
   1.777 +	{
   1.778 +	if(!iInitCompleteReceived)
   1.779 +		{
   1.780 +		INFO_PRINTF1(_L("Waiting for InitializeComplete event"));
   1.781 +		iInitCompleteReceived = ETrue;
   1.782 +		}
   1.783 +	else
   1.784 +		{
   1.785 +		iTimer->Cancel();
   1.786 +		TMMFCapabilities capabilitiesSet;
   1.787 +		TBuf<KMaxSampleRateStringLength> stringSampleRateSet;
   1.788 +		TBuf<KMaxChannelsStringLength> stringChannelsSet;
   1.789 +		SampleRateFromTIntToTMMFSampleRate (iSampleRate, iESampleRate);
   1.790 +		capabilitiesSet.iRate = iESampleRate;
   1.791 +		capabilitiesSet.iChannels = iChannels;
   1.792 +		SampleRateFromTUintToString (capabilitiesSet.iRate,	stringSampleRateSet);
   1.793 +		ChannelsFromTUintToString (capabilitiesSet.iChannels, stringChannelsSet);
   1.794 +		INFO_PRINTF3(_L("Settings for Sample rate an channel mode. %S %S"), &stringSampleRateSet, &stringChannelsSet);
   1.795 +		INFO_PRINTF1(_L("Calling CMMFDevSound::SetConfigL"));
   1.796 +		TRAPD(err, iMMFDevSound->SetConfigL(capabilitiesSet));
   1.797 +		if (err ==  KErrNotReady)
   1.798 +			{
   1.799 +			INFO_PRINTF2(_L("CMMFDevSound::SetConfigL left with the expected error = %d"), err);
   1.800 +			StopTest();
   1.801 +			}
   1.802 +		else
   1.803 +			{
   1.804 +			INFO_PRINTF2(_L("CMMFDevSound::SetConfigL left with error = %d"), err);
   1.805 +			ERR_PRINTF2(_L("Expected error value = %d"), KErrNotReady);
   1.806 +			StopTest(err, EFail);
   1.807 +			}
   1.808 +		}
   1.809 +	}
   1.810 +
   1.811 +void RA3FDevSoundPlayCancelInitializeTest::InitializeComplete(TInt aError)
   1.812 +	{
   1.813 +	ERR_PRINTF1(_L("DevSound called InitializeComplete after calling CMMFDevSound::CancelInitialize"));
   1.814 +	StopTest(aError, EFail);
   1.815 +	}
   1.816 +
   1.817 +
   1.818 +/*
   1.819 + *========================================================================================================
   1.820 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0010
   1.821 + */
   1.822 +RA3FDevSoundPlayInitializeToPlayAudioThenTonesTest::RA3FDevSoundPlayInitializeToPlayAudioThenTonesTest(const TDesC& aTestName) 
   1.823 +	: 	RA3FDevSoundTestBase(aTestName), iReinitialized(EFalse)
   1.824 +	{
   1.825 +	}
   1.826 +
   1.827 +RA3FDevSoundPlayInitializeToPlayAudioThenTonesTest* RA3FDevSoundPlayInitializeToPlayAudioThenTonesTest::NewL(const TDesC& aTestName)
   1.828 +	{
   1.829 +	RA3FDevSoundPlayInitializeToPlayAudioThenTonesTest* self = new (ELeave) RA3FDevSoundPlayInitializeToPlayAudioThenTonesTest(aTestName);
   1.830 +	return self;
   1.831 +	}
   1.832 +
   1.833 +void RA3FDevSoundPlayInitializeToPlayAudioThenTonesTest::DoKickoffTestL()
   1.834 +	{
   1.835 +	TPtrC fourccCode;
   1.836 +	if(!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
   1.837 +		{
   1.838 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
   1.839 +		StopTest(KErrNotFound);
   1.840 +		return;
   1.841 +		}
   1.842 +	EncodingFromStringToTFourCC(fourccCode);
   1.843 +	}
   1.844 +
   1.845 +void RA3FDevSoundPlayInitializeToPlayAudioThenTonesTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
   1.846 +	{
   1.847 +	switch(iDevSoundState)
   1.848 +		{
   1.849 +		case EStateCreated:
   1.850 +			{
   1.851 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundPlayInitializeToPlayAudioThenTonesTest"),EFsmIncorrectErrorPassed));
   1.852 +			if(aDevSoundEvent == EEventInitialize)
   1.853 +				{
   1.854 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
   1.855 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
   1.856 +				if(err != KErrNone)
   1.857 +					{
   1.858 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
   1.859 +					StopTest(err);
   1.860 +					break;
   1.861 +					}
   1.862 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
   1.863 +				iDevSoundState = EStateInitializing;
   1.864 +				}
   1.865 +			else
   1.866 +				{
   1.867 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
   1.868 +				StopTest(aError, EFail);
   1.869 +				}
   1.870 +			break;
   1.871 +			}
   1.872 +		case EStateInitializing:
   1.873 +			{
   1.874 +			if(aDevSoundEvent == EEventInitComplete && aError == KErrNone)
   1.875 +				{
   1.876 +				if(!iReinitialized)
   1.877 +					{
   1.878 +					INFO_PRINTF1(_L("========== First initialization successfully completed =========="));
   1.879 +					iReinitialized = ETrue;
   1.880 +					INFO_PRINTF1(_L("Again calling CMMFDevSound::InitializeL"));
   1.881 +					TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
   1.882 +					if(err != KErrNone)
   1.883 +						{
   1.884 +						StopTest(err);
   1.885 +						break;
   1.886 +						}
   1.887 +					INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
   1.888 +					iDevSoundState = EStateInitializing;
   1.889 +					}
   1.890 +				else
   1.891 +					{
   1.892 +					INFO_PRINTF1(_L("========== Second initialization successfully completed =========="));
   1.893 +					StopTest();
   1.894 +					}
   1.895 +				}
   1.896 +			else if(aDevSoundEvent == EEventInitComplete && aError != KErrNone)
   1.897 +				{
   1.898 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
   1.899 +				StopTest(aError);		
   1.900 +				}
   1.901 +			else
   1.902 +				{
   1.903 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
   1.904 +				StopTest(aError, EFail);
   1.905 +				}
   1.906 +			break;
   1.907 +			}	
   1.908 +		default:
   1.909 +			{
   1.910 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
   1.911 +			StopTest(aError, EFail);
   1.912 +			}
   1.913 +		}
   1.914 +	}
   1.915 +
   1.916 +/*
   1.917 + *========================================================================================================
   1.918 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0011
   1.919 + */
   1.920 +RA3FDevSoundPlayInitializeToPlayAudioTwiceTest::RA3FDevSoundPlayInitializeToPlayAudioTwiceTest(const TDesC& aTestName) 
   1.921 +	: 	RA3FDevSoundTestBase(aTestName), iReinitialized(EFalse)
   1.922 +	{
   1.923 +	}
   1.924 +
   1.925 +RA3FDevSoundPlayInitializeToPlayAudioTwiceTest* RA3FDevSoundPlayInitializeToPlayAudioTwiceTest::NewL(const TDesC& aTestName)
   1.926 +	{
   1.927 +	RA3FDevSoundPlayInitializeToPlayAudioTwiceTest* self = new (ELeave) RA3FDevSoundPlayInitializeToPlayAudioTwiceTest(aTestName);
   1.928 +	return self;
   1.929 +	}
   1.930 +
   1.931 +void RA3FDevSoundPlayInitializeToPlayAudioTwiceTest::DoKickoffTestL()
   1.932 +	{
   1.933 +	TPtrC fourccCode;
   1.934 +	if(!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
   1.935 +		{
   1.936 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
   1.937 +		StopTest(KErrNotFound);
   1.938 +		return;
   1.939 +		}
   1.940 +	EncodingFromStringToTFourCC(fourccCode);
   1.941 +	}
   1.942 +
   1.943 +void RA3FDevSoundPlayInitializeToPlayAudioTwiceTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
   1.944 +	{
   1.945 +	switch(iDevSoundState)
   1.946 +		{
   1.947 +		case EStateCreated:
   1.948 +			{
   1.949 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundPlayInitializeTwiceToPlayAudioTest"),EFsmIncorrectErrorPassed));
   1.950 +			if(aDevSoundEvent == EEventInitialize)
   1.951 +				{
   1.952 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
   1.953 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
   1.954 +				if(err != KErrNone)
   1.955 +					{
   1.956 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
   1.957 +					StopTest(err);
   1.958 +					break;
   1.959 +					}
   1.960 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
   1.961 +				iDevSoundState = EStateInitializing;
   1.962 +				}
   1.963 +			else
   1.964 +				{
   1.965 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
   1.966 +				StopTest(aError, EFail);
   1.967 +				}
   1.968 +			break;
   1.969 +			}
   1.970 +		case EStateInitializing:
   1.971 +			{
   1.972 +			if(aDevSoundEvent == EEventInitComplete && aError == KErrNone)
   1.973 +				{
   1.974 +				if(!iReinitialized)
   1.975 +					{
   1.976 +					INFO_PRINTF1(_L("========== First initialization successfully completed =========="));
   1.977 +					iReinitialized = ETrue;
   1.978 +					INFO_PRINTF1(_L("Again calling CMMFDevSound::InitializeL"));
   1.979 +					TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
   1.980 +					if(err != KErrNone)
   1.981 +						{
   1.982 +						StopTest(err);
   1.983 +						break;
   1.984 +						}
   1.985 +					INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
   1.986 +					iDevSoundState = EStateInitializing;
   1.987 +					}
   1.988 +				else
   1.989 +					{
   1.990 +					INFO_PRINTF1(_L("========== Second initialization successfully completed =========="));
   1.991 +					StopTest();
   1.992 +					}
   1.993 +				}
   1.994 +			else if(aDevSoundEvent == EEventInitComplete && aError != KErrNone)
   1.995 +				{
   1.996 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
   1.997 +				StopTest(aError);		
   1.998 +				}
   1.999 +			else
  1.1000 +				{
  1.1001 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.1002 +				StopTest(aError, EFail);
  1.1003 +				}
  1.1004 +			break;
  1.1005 +			}	
  1.1006 +		default:
  1.1007 +			{
  1.1008 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.1009 +			StopTest(aError, EFail);
  1.1010 +			}
  1.1011 +		}
  1.1012 +	}
  1.1013 +
  1.1014 +
  1.1015 +/*
  1.1016 + *========================================================================================================
  1.1017 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0012
  1.1018 + */
  1.1019 +RA3FDevSoundPlayInitializeToPlayAudioThenRecordTest::RA3FDevSoundPlayInitializeToPlayAudioThenRecordTest(const TDesC& aTestName) 
  1.1020 +	: 	RA3FDevSoundTestBase(aTestName), iReinitialized(EFalse)
  1.1021 +	{
  1.1022 +	}
  1.1023 +
  1.1024 +RA3FDevSoundPlayInitializeToPlayAudioThenRecordTest* RA3FDevSoundPlayInitializeToPlayAudioThenRecordTest::NewL(const TDesC& aTestName)
  1.1025 +	{
  1.1026 +	RA3FDevSoundPlayInitializeToPlayAudioThenRecordTest* self = new (ELeave) RA3FDevSoundPlayInitializeToPlayAudioThenRecordTest(aTestName);
  1.1027 +	return self;
  1.1028 +	}
  1.1029 +
  1.1030 +void RA3FDevSoundPlayInitializeToPlayAudioThenRecordTest::DoKickoffTestL()
  1.1031 +	{
  1.1032 +	TPtrC fourccCode;
  1.1033 +	if(!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.1034 +		{
  1.1035 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.1036 +		StopTest(KErrNotFound);
  1.1037 +		return;
  1.1038 +		}
  1.1039 +	EncodingFromStringToTFourCC(fourccCode);
  1.1040 +	}
  1.1041 +
  1.1042 +void RA3FDevSoundPlayInitializeToPlayAudioThenRecordTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.1043 +	{
  1.1044 +	switch(iDevSoundState)
  1.1045 +		{
  1.1046 +		case EStateCreated:
  1.1047 +			{
  1.1048 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundPlayInitializeToPlayAudioThenRecordTest"),EFsmIncorrectErrorPassed));
  1.1049 +			if(aDevSoundEvent == EEventInitialize)
  1.1050 +				{
  1.1051 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.1052 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.1053 +				if(err != KErrNone)
  1.1054 +					{
  1.1055 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.1056 +					StopTest(err);
  1.1057 +					break;
  1.1058 +					}
  1.1059 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.1060 +				iDevSoundState = EStateInitializing;
  1.1061 +				}
  1.1062 +			else
  1.1063 +				{
  1.1064 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.1065 +				StopTest(aError, EFail);
  1.1066 +				}
  1.1067 +			break;
  1.1068 +			}
  1.1069 +		case EStateInitializing:
  1.1070 +			{
  1.1071 +			if(aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.1072 +				{
  1.1073 +				if(!iReinitialized)
  1.1074 +					{
  1.1075 +					INFO_PRINTF1(_L("========== First initialization successfully completed =========="));
  1.1076 +					iReinitialized = ETrue;
  1.1077 +					INFO_PRINTF1(_L("Again calling CMMFDevSound::InitializeL"));
  1.1078 +					TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStateRecording));
  1.1079 +					if(err != KErrNone)
  1.1080 +						{
  1.1081 +						StopTest(err);
  1.1082 +						break;
  1.1083 +						}
  1.1084 +					INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.1085 +					iDevSoundState = EStateInitializing;
  1.1086 +					}
  1.1087 +				else
  1.1088 +					{
  1.1089 +					INFO_PRINTF1(_L("========== Second initialization successfully completed =========="));
  1.1090 +					StopTest();
  1.1091 +					}
  1.1092 +				}
  1.1093 +			else if(aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.1094 +				{
  1.1095 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
  1.1096 +				StopTest(aError);		
  1.1097 +				}
  1.1098 +			else
  1.1099 +				{
  1.1100 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.1101 +				StopTest(aError, EFail);
  1.1102 +				}
  1.1103 +			break;
  1.1104 +			}	
  1.1105 +		default:
  1.1106 +			{
  1.1107 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.1108 +			StopTest(aError, EFail);
  1.1109 +			}
  1.1110 +		}
  1.1111 +	}
  1.1112 +
  1.1113 +/*
  1.1114 + *========================================================================================================
  1.1115 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0013
  1.1116 + */
  1.1117 +RA3FDevSoundPlayInitializeInvalidTFourCCTest::RA3FDevSoundPlayInitializeInvalidTFourCCTest(const TDesC& aTestName) 
  1.1118 +	: 	RA3FDevSoundTestBase(aTestName)
  1.1119 +	{
  1.1120 +	}
  1.1121 +
  1.1122 +RA3FDevSoundPlayInitializeInvalidTFourCCTest* RA3FDevSoundPlayInitializeInvalidTFourCCTest::NewL(const TDesC& aTestName)
  1.1123 +	{
  1.1124 +	RA3FDevSoundPlayInitializeInvalidTFourCCTest* self = new (ELeave) RA3FDevSoundPlayInitializeInvalidTFourCCTest(aTestName);
  1.1125 +	return self;
  1.1126 +	}
  1.1127 +
  1.1128 +void RA3FDevSoundPlayInitializeInvalidTFourCCTest::DoKickoffTestL()
  1.1129 +	{
  1.1130 +	}
  1.1131 +
  1.1132 +void RA3FDevSoundPlayInitializeInvalidTFourCCTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.1133 +	{
  1.1134 +	switch(iDevSoundState)
  1.1135 +		{
  1.1136 +		case EStateCreated:
  1.1137 +			{
  1.1138 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundPlayInitializeInvalidTFourCCTest"),EFsmIncorrectErrorPassed));
  1.1139 +			if(aDevSoundEvent == EEventInitialize)
  1.1140 +				{
  1.1141 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.1142 +				TRAPD(err, iMMFDevSound->InitializeL(*this, 0x00000000, EMMFStatePlaying));
  1.1143 +				if(err == KErrNotSupported)
  1.1144 +					{
  1.1145 +					INFO_PRINTF2(_L("Calling CMMFDevSound::InitializeL using an invalid TFourCC argument left with expected error = %d"), err);
  1.1146 +					StopTest(err, EPass);
  1.1147 +					break;
  1.1148 +					}
  1.1149 +				else
  1.1150 +					{
  1.1151 +					ERR_PRINTF2(_L("Calling CMMFDevSound::InitializeL using an invalid TFourCC argument left with expected error = %d"), err);
  1.1152 +					ERR_PRINTF2(_L("Expected error = %d"), KErrNotSupported);
  1.1153 +					StopTest(err, EFail);
  1.1154 +					}
  1.1155 +				}
  1.1156 +			break;
  1.1157 +			}
  1.1158 +		default:
  1.1159 +			{
  1.1160 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.1161 +			StopTest(aError, EFail);
  1.1162 +			}
  1.1163 +		}
  1.1164 +	}
  1.1165 +
  1.1166 +/*
  1.1167 + *========================================================================================================
  1.1168 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0014
  1.1169 + */
  1.1170 +RA3FDevSoundRecordInitializationTest::RA3FDevSoundRecordInitializationTest(const TDesC& aTestName) 
  1.1171 +	: 	RA3FDevSoundTestBase(aTestName)
  1.1172 +	{
  1.1173 +	}
  1.1174 +
  1.1175 +RA3FDevSoundRecordInitializationTest* RA3FDevSoundRecordInitializationTest::NewL(const TDesC& aTestName)
  1.1176 +	{
  1.1177 +	RA3FDevSoundRecordInitializationTest* self = new (ELeave) RA3FDevSoundRecordInitializationTest(aTestName);
  1.1178 +	return self;
  1.1179 +	}
  1.1180 +
  1.1181 +void RA3FDevSoundRecordInitializationTest::DoKickoffTestL()
  1.1182 +	{
  1.1183 +	TPtrC fourccCode;
  1.1184 +	if(!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.1185 +		{
  1.1186 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.1187 +		StopTest(KErrNotFound);
  1.1188 +		return;
  1.1189 +		}
  1.1190 +	EncodingFromStringToTFourCC(fourccCode);
  1.1191 +	}
  1.1192 +
  1.1193 +void RA3FDevSoundRecordInitializationTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.1194 +	{
  1.1195 +	switch(iDevSoundState)
  1.1196 +		{
  1.1197 +		case EStateCreated:
  1.1198 +			{
  1.1199 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundRecordInitializationTest"),EFsmIncorrectErrorPassed));
  1.1200 +			if(aDevSoundEvent == EEventInitialize)
  1.1201 +				{
  1.1202 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.1203 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStateRecording));
  1.1204 +				if(err != KErrNone)
  1.1205 +					{
  1.1206 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.1207 +					StopTest(err);
  1.1208 +					break;
  1.1209 +					}
  1.1210 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.1211 +				iDevSoundState = EStateInitializing;
  1.1212 +				}
  1.1213 +			else
  1.1214 +				{
  1.1215 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.1216 +				StopTest(aError, EFail);
  1.1217 +				}
  1.1218 +			break;
  1.1219 +			}
  1.1220 +		case EStateInitializing:
  1.1221 +			{
  1.1222 +			if(aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.1223 +				{
  1.1224 +				INFO_PRINTF1(_L("========== Test Case Successfully Completed =========="));
  1.1225 +				StopTest();
  1.1226 +				}
  1.1227 +			else if(aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.1228 +				{
  1.1229 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
  1.1230 +				StopTest(aError);		
  1.1231 +				}
  1.1232 +			else
  1.1233 +				{
  1.1234 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.1235 +				StopTest(aError, EFail);
  1.1236 +				}
  1.1237 +			break;
  1.1238 +			}	
  1.1239 +		default:
  1.1240 +			{
  1.1241 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.1242 +			StopTest(aError, EFail);
  1.1243 +			}
  1.1244 +		}
  1.1245 +	}
  1.1246 +
  1.1247 +/*
  1.1248 + *========================================================================================================
  1.1249 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0015
  1.1250 + */
  1.1251 +RA3FDevSoundRecordCancelInitializeTest::RA3FDevSoundRecordCancelInitializeTest(const TDesC& aTestName) 
  1.1252 +	:	RA3FDevSoundTestBase(aTestName),iInitCompleteReceived(EFalse),
  1.1253 +	iSampleRate(0), iChannels(0)
  1.1254 +	{
  1.1255 +	}
  1.1256 +
  1.1257 +RA3FDevSoundRecordCancelInitializeTest* RA3FDevSoundRecordCancelInitializeTest::NewL(const TDesC& aTestName)
  1.1258 +	{
  1.1259 +	RA3FDevSoundRecordCancelInitializeTest* self = new (ELeave) RA3FDevSoundRecordCancelInitializeTest(aTestName);
  1.1260 +	return self;
  1.1261 +	}
  1.1262 +
  1.1263 +void RA3FDevSoundRecordCancelInitializeTest::DoKickoffTestL()
  1.1264 +	{
  1.1265 +	if (!GetIntFromConfig(iTestStepName, KSampleRate, iSampleRate))
  1.1266 +		{
  1.1267 +		ERR_PRINTF2(KMsgErrorGetParameter, &KSampleRate);
  1.1268 +		StopTest(KErrNotFound);
  1.1269 +		return;
  1.1270 +		}
  1.1271 +	if (!GetIntFromConfig(iTestStepName, KChannel, iChannels))
  1.1272 +		{
  1.1273 +		ERR_PRINTF2(KMsgErrorGetParameter, &KChannel);
  1.1274 +		StopTest(KErrNotFound);
  1.1275 +		return;
  1.1276 +		}
  1.1277 +	TPtrC fourccCode;
  1.1278 +	if(!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.1279 +		{
  1.1280 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.1281 +		StopTest(KErrNotFound);
  1.1282 +		return;
  1.1283 +		}
  1.1284 +	EncodingFromStringToTFourCC(fourccCode);
  1.1285 +	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
  1.1286 +	}
  1.1287 +
  1.1288 +void RA3FDevSoundRecordCancelInitializeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.1289 +	{
  1.1290 +	switch(iDevSoundState)
  1.1291 +		{
  1.1292 +		case EStateCreated:
  1.1293 +			{
  1.1294 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundRecordCancelInitializeTest"),EFsmIncorrectErrorPassed));
  1.1295 +			if(aDevSoundEvent == EEventInitialize)
  1.1296 +				{
  1.1297 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.1298 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStateRecording));
  1.1299 +				if(err != KErrNone)
  1.1300 +					{
  1.1301 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.1302 +					StopTest(err);
  1.1303 +					break;
  1.1304 +					}		
  1.1305 +				StartTimer(KMicroSecsTwoSec);
  1.1306 +				INFO_PRINTF1(_L("Calling CMMFDevSound::CancelInitialize"));
  1.1307 +				err = iMMFDevSound->CancelInitialize();
  1.1308 +				if(err != KErrNone)
  1.1309 +					{
  1.1310 +					ERR_PRINTF2(_L("Unexpected error on CancelInitialize = %d"), err);
  1.1311 +					StopTest(err);
  1.1312 +					}
  1.1313 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.1314 +				iDevSoundState = EStateInitializing;
  1.1315 +				}
  1.1316 +			else
  1.1317 +				{
  1.1318 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.1319 +				StopTest(aError, EFail);
  1.1320 +				}
  1.1321 +			break;
  1.1322 +			}
  1.1323 +		case EStateInitializing:
  1.1324 +			{
  1.1325 +			if(aDevSoundEvent == EEventInitComplete)
  1.1326 +				{
  1.1327 +				iInitCompleteReceived = ETrue;
  1.1328 +				}
  1.1329 +			break;
  1.1330 +			}	
  1.1331 +		default:
  1.1332 +			{
  1.1333 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.1334 +			StopTest(aError, EFail);
  1.1335 +			}
  1.1336 +		}
  1.1337 +	}
  1.1338 +
  1.1339 +void RA3FDevSoundRecordCancelInitializeTest::DoTimerCallback()
  1.1340 +	{
  1.1341 +	if(!iInitCompleteReceived)
  1.1342 +		{
  1.1343 +		INFO_PRINTF1(_L("Waiting for InitializeComplete event"));
  1.1344 +		iInitCompleteReceived = ETrue;
  1.1345 +		}
  1.1346 +	else
  1.1347 +		{
  1.1348 +		iTimer->Cancel();
  1.1349 +		TMMFCapabilities capabilitiesSet;
  1.1350 +		TBuf<KMaxSampleRateStringLength> stringSampleRateSet;
  1.1351 +		TBuf<KMaxChannelsStringLength> stringChannelsSet;
  1.1352 +		SampleRateFromTIntToTMMFSampleRate (iSampleRate, iESampleRate);
  1.1353 +		capabilitiesSet.iRate = iESampleRate;
  1.1354 +		capabilitiesSet.iChannels = iChannels;
  1.1355 +		SampleRateFromTUintToString (capabilitiesSet.iRate,	stringSampleRateSet);
  1.1356 +		ChannelsFromTUintToString (capabilitiesSet.iChannels, stringChannelsSet);
  1.1357 +		INFO_PRINTF3(_L("Settings for Sample rate an channel mode. %S %S"), &stringSampleRateSet, &stringChannelsSet);
  1.1358 +		INFO_PRINTF1(_L("Calling CMMFDevSound::SetConfigL"));
  1.1359 +		TRAPD(err, iMMFDevSound->SetConfigL(capabilitiesSet));
  1.1360 +		if (err ==  KErrNotReady)
  1.1361 +			{
  1.1362 +			INFO_PRINTF2(_L("CMMFDevSound::SetConfigL left with the expected error = %d"), err);
  1.1363 +			StopTest();
  1.1364 +			}
  1.1365 +		else
  1.1366 +			{
  1.1367 +			INFO_PRINTF2(_L("CMMFDevSound::SetConfigL left with error = %d"), err);
  1.1368 +			ERR_PRINTF2(_L("Expected error value = %d"), KErrNotReady);
  1.1369 +			StopTest(err, EFail);
  1.1370 +			}
  1.1371 +		}
  1.1372 +	}
  1.1373 +
  1.1374 +void RA3FDevSoundRecordCancelInitializeTest::InitializeComplete(TInt aError)
  1.1375 +	{
  1.1376 +	ERR_PRINTF1(_L("DevSound called InitializeComplete after calling CMMFDevSound::CancelInitialize"));
  1.1377 +	StopTest(aError, EFail);
  1.1378 +	}
  1.1379 +
  1.1380 +
  1.1381 +/*
  1.1382 + *========================================================================================================
  1.1383 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0016
  1.1384 + */
  1.1385 +RA3FDevSoundRecordInitializeThenPlayToneInitializeTest::RA3FDevSoundRecordInitializeThenPlayToneInitializeTest(const TDesC& aTestName) 
  1.1386 +	: 	RA3FDevSoundTestBase(aTestName), iReinitialized(EFalse)
  1.1387 +	{
  1.1388 +	}
  1.1389 +
  1.1390 +RA3FDevSoundRecordInitializeThenPlayToneInitializeTest* RA3FDevSoundRecordInitializeThenPlayToneInitializeTest::NewL(const TDesC& aTestName)
  1.1391 +	{
  1.1392 +	RA3FDevSoundRecordInitializeThenPlayToneInitializeTest* self = new (ELeave) RA3FDevSoundRecordInitializeThenPlayToneInitializeTest(aTestName);
  1.1393 +	return self;
  1.1394 +	}
  1.1395 +
  1.1396 +void RA3FDevSoundRecordInitializeThenPlayToneInitializeTest::DoKickoffTestL()
  1.1397 +	{
  1.1398 +	TPtrC fourccCode;
  1.1399 +	if(!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.1400 +		{
  1.1401 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.1402 +		StopTest(KErrNotFound);
  1.1403 +		return;
  1.1404 +		}
  1.1405 +	EncodingFromStringToTFourCC(fourccCode);
  1.1406 +	}
  1.1407 +
  1.1408 +void RA3FDevSoundRecordInitializeThenPlayToneInitializeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.1409 +	{
  1.1410 +	switch(iDevSoundState)
  1.1411 +		{
  1.1412 +		case EStateCreated:
  1.1413 +			{
  1.1414 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundRecordInitializeThenPlayToneInitializeTest"),EFsmIncorrectErrorPassed));
  1.1415 +			if(aDevSoundEvent == EEventInitialize)
  1.1416 +				{
  1.1417 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.1418 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStateRecording));
  1.1419 +				if(err != KErrNone)
  1.1420 +					{
  1.1421 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.1422 +					StopTest(err);
  1.1423 +					break;
  1.1424 +					}
  1.1425 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.1426 +				iDevSoundState = EStateInitializing;
  1.1427 +				}
  1.1428 +			else
  1.1429 +				{
  1.1430 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.1431 +				StopTest(aError, EFail);
  1.1432 +				}
  1.1433 +			break;
  1.1434 +			}
  1.1435 +		case EStateInitializing:
  1.1436 +			{
  1.1437 +			if(aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.1438 +				{
  1.1439 +				if(!iReinitialized)
  1.1440 +					{
  1.1441 +					INFO_PRINTF1(_L("========== First initialization successfully completed =========="));
  1.1442 +					iReinitialized = ETrue;
  1.1443 +					INFO_PRINTF1(_L("Again calling CMMFDevSound::InitializeL"));
  1.1444 +					TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
  1.1445 +					if(err != KErrNone)
  1.1446 +						{
  1.1447 +						StopTest(err);
  1.1448 +						break;
  1.1449 +						}
  1.1450 +					INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.1451 +					iDevSoundState = EStateInitializing;
  1.1452 +					}
  1.1453 +				else
  1.1454 +					{
  1.1455 +					INFO_PRINTF1(_L("========== Second initialization successfully completed =========="));
  1.1456 +					StopTest();
  1.1457 +					}
  1.1458 +				}
  1.1459 +			else if(aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.1460 +				{
  1.1461 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
  1.1462 +				StopTest(aError);		
  1.1463 +				}
  1.1464 +			else
  1.1465 +				{
  1.1466 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.1467 +				StopTest(aError, EFail);
  1.1468 +				}
  1.1469 +			break;
  1.1470 +			}	
  1.1471 +		default:
  1.1472 +			{
  1.1473 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.1474 +			StopTest(aError, EFail);
  1.1475 +			}
  1.1476 +		}
  1.1477 +	}
  1.1478 +
  1.1479 +
  1.1480 +/*
  1.1481 + *========================================================================================================
  1.1482 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0017
  1.1483 + */
  1.1484 +RA3FDevSoundRecordInitializeThenPlayAudioInitializeTest::RA3FDevSoundRecordInitializeThenPlayAudioInitializeTest(const TDesC& aTestName) 
  1.1485 +	: 	RA3FDevSoundTestBase(aTestName), iReinitialized(EFalse)
  1.1486 +	{
  1.1487 +	}
  1.1488 +
  1.1489 +RA3FDevSoundRecordInitializeThenPlayAudioInitializeTest* RA3FDevSoundRecordInitializeThenPlayAudioInitializeTest::NewL(const TDesC& aTestName)
  1.1490 +	{
  1.1491 +	RA3FDevSoundRecordInitializeThenPlayAudioInitializeTest* self = new (ELeave) RA3FDevSoundRecordInitializeThenPlayAudioInitializeTest(aTestName);
  1.1492 +	return self;
  1.1493 +	}
  1.1494 +
  1.1495 +void RA3FDevSoundRecordInitializeThenPlayAudioInitializeTest::DoKickoffTestL()
  1.1496 +	{
  1.1497 +	TPtrC fourccCode;
  1.1498 +	if(!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.1499 +		{
  1.1500 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.1501 +		StopTest(KErrNotFound);
  1.1502 +		return;
  1.1503 +		}
  1.1504 +	EncodingFromStringToTFourCC(fourccCode);
  1.1505 +	}
  1.1506 +
  1.1507 +void RA3FDevSoundRecordInitializeThenPlayAudioInitializeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.1508 +	{
  1.1509 +	switch(iDevSoundState)
  1.1510 +		{
  1.1511 +		case EStateCreated:
  1.1512 +			{
  1.1513 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundRecordInitializeThenPlayAudioInitializeTest"),EFsmIncorrectErrorPassed));
  1.1514 +			if(aDevSoundEvent == EEventInitialize)
  1.1515 +				{
  1.1516 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.1517 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStateRecording));
  1.1518 +				if(err != KErrNone)
  1.1519 +					{
  1.1520 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.1521 +					StopTest(err);
  1.1522 +					break;
  1.1523 +					}
  1.1524 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.1525 +				iDevSoundState = EStateInitializing;
  1.1526 +				}
  1.1527 +			else
  1.1528 +				{
  1.1529 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.1530 +				StopTest(aError, EFail);
  1.1531 +				}
  1.1532 +			break;
  1.1533 +			}
  1.1534 +		case EStateInitializing:
  1.1535 +			{
  1.1536 +			if(aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.1537 +				{
  1.1538 +				if(!iReinitialized)
  1.1539 +					{
  1.1540 +					INFO_PRINTF1(_L("========== First initialization successfully completed =========="));
  1.1541 +					iReinitialized = ETrue;
  1.1542 +					INFO_PRINTF1(_L("Again calling CMMFDevSound::InitializeL"));
  1.1543 +					TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.1544 +					if(err != KErrNone)
  1.1545 +						{
  1.1546 +						StopTest(err);
  1.1547 +						break;
  1.1548 +						}
  1.1549 +					INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.1550 +					iDevSoundState = EStateInitializing;
  1.1551 +					}
  1.1552 +				else
  1.1553 +					{
  1.1554 +					INFO_PRINTF1(_L("========== Second initialization successfully completed =========="));
  1.1555 +					StopTest();
  1.1556 +					}
  1.1557 +				}
  1.1558 +			else if(aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.1559 +				{
  1.1560 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
  1.1561 +				StopTest(aError);		
  1.1562 +				}
  1.1563 +			else
  1.1564 +				{
  1.1565 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.1566 +				StopTest(aError, EFail);
  1.1567 +				}
  1.1568 +			break;
  1.1569 +			}	
  1.1570 +		default:
  1.1571 +			{
  1.1572 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.1573 +			StopTest(aError, EFail);
  1.1574 +			}
  1.1575 +		}
  1.1576 +	}
  1.1577 +
  1.1578 +
  1.1579 +/*
  1.1580 + *========================================================================================================
  1.1581 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0018
  1.1582 + */
  1.1583 +RA3FDevSoundRecordInitializeToRecordAudioTwiceTest::RA3FDevSoundRecordInitializeToRecordAudioTwiceTest(const TDesC& aTestName) 
  1.1584 +	: 	RA3FDevSoundTestBase(aTestName), iReinitialized(EFalse)
  1.1585 +	{
  1.1586 +	}
  1.1587 +
  1.1588 +RA3FDevSoundRecordInitializeToRecordAudioTwiceTest* RA3FDevSoundRecordInitializeToRecordAudioTwiceTest::NewL(const TDesC& aTestName)
  1.1589 +	{
  1.1590 +	RA3FDevSoundRecordInitializeToRecordAudioTwiceTest* self = new (ELeave) RA3FDevSoundRecordInitializeToRecordAudioTwiceTest(aTestName);
  1.1591 +	return self;
  1.1592 +	}
  1.1593 +
  1.1594 +void RA3FDevSoundRecordInitializeToRecordAudioTwiceTest::DoKickoffTestL()
  1.1595 +	{
  1.1596 +	TPtrC fourccCode;
  1.1597 +	if(!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.1598 +		{
  1.1599 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.1600 +		StopTest(KErrNotFound);
  1.1601 +		return;
  1.1602 +		}
  1.1603 +	EncodingFromStringToTFourCC(fourccCode);
  1.1604 +	}
  1.1605 +
  1.1606 +void RA3FDevSoundRecordInitializeToRecordAudioTwiceTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.1607 +	{
  1.1608 +	switch(iDevSoundState)
  1.1609 +		{
  1.1610 +		case EStateCreated:
  1.1611 +			{
  1.1612 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundRecordInitializeToRecordAudioTwiceTest"),EFsmIncorrectErrorPassed));
  1.1613 +			if(aDevSoundEvent == EEventInitialize)
  1.1614 +				{
  1.1615 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.1616 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStateRecording));
  1.1617 +				if(err != KErrNone)
  1.1618 +					{
  1.1619 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.1620 +					StopTest(err);
  1.1621 +					break;
  1.1622 +					}
  1.1623 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.1624 +				iDevSoundState = EStateInitializing;
  1.1625 +				}
  1.1626 +			else
  1.1627 +				{
  1.1628 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.1629 +				StopTest(aError, EFail);
  1.1630 +				}
  1.1631 +			break;
  1.1632 +			}
  1.1633 +		case EStateInitializing:
  1.1634 +			{
  1.1635 +			if(aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.1636 +				{
  1.1637 +				if(!iReinitialized)
  1.1638 +					{
  1.1639 +					INFO_PRINTF1(_L("========== First initialization successfully completed =========="));
  1.1640 +					iReinitialized = ETrue;
  1.1641 +					INFO_PRINTF1(_L("Again calling CMMFDevSound::InitializeL"));
  1.1642 +					TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStateRecording));
  1.1643 +					if(err != KErrNone)
  1.1644 +						{
  1.1645 +						StopTest(err);
  1.1646 +						break;
  1.1647 +						}
  1.1648 +					INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.1649 +					iDevSoundState = EStateInitializing;
  1.1650 +					}
  1.1651 +				else
  1.1652 +					{
  1.1653 +					INFO_PRINTF1(_L("========== Second initialization successfully completed =========="));
  1.1654 +					StopTest();
  1.1655 +					}
  1.1656 +				}
  1.1657 +			else if(aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.1658 +				{
  1.1659 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
  1.1660 +				StopTest(aError);		
  1.1661 +				}
  1.1662 +			else
  1.1663 +				{
  1.1664 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.1665 +				StopTest(aError, EFail);
  1.1666 +				}
  1.1667 +			break;
  1.1668 +			}	
  1.1669 +		default:
  1.1670 +			{
  1.1671 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.1672 +			StopTest(aError, EFail);
  1.1673 +			}
  1.1674 +		}
  1.1675 +	}
  1.1676 +
  1.1677 +
  1.1678 +/*
  1.1679 + *========================================================================================================
  1.1680 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0019
  1.1681 + */
  1.1682 +RA3FDevSoundRecordInitializeNoFormatSpecificationPresentedTest::RA3FDevSoundRecordInitializeNoFormatSpecificationPresentedTest(const TDesC& aTestName) 
  1.1683 +	:	RA3FDevSoundTestBase(aTestName)
  1.1684 +	{
  1.1685 +	}
  1.1686 +
  1.1687 +RA3FDevSoundRecordInitializeNoFormatSpecificationPresentedTest* RA3FDevSoundRecordInitializeNoFormatSpecificationPresentedTest::NewL(const TDesC& aTestName)
  1.1688 +	{
  1.1689 +	RA3FDevSoundRecordInitializeNoFormatSpecificationPresentedTest* self = new (ELeave) RA3FDevSoundRecordInitializeNoFormatSpecificationPresentedTest(aTestName);
  1.1690 +	return self;
  1.1691 +	}
  1.1692 +
  1.1693 +void RA3FDevSoundRecordInitializeNoFormatSpecificationPresentedTest::DoKickoffTestL()
  1.1694 +	{
  1.1695 +	}
  1.1696 +
  1.1697 +void RA3FDevSoundRecordInitializeNoFormatSpecificationPresentedTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.1698 +	{
  1.1699 +	switch(iDevSoundState)
  1.1700 +		{
  1.1701 +		case EStateCreated:
  1.1702 +			{
  1.1703 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundReocordCancelInitializeNoFormatSpecificationPresentedTest"),EFsmIncorrectErrorPassed));
  1.1704 +			if(aDevSoundEvent == EEventInitialize)
  1.1705 +				{
  1.1706 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.1707 +				TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateRecording));
  1.1708 +				if(err != KErrNone)
  1.1709 +					{
  1.1710 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.1711 +					StopTest(err);
  1.1712 +					break;
  1.1713 +					}		
  1.1714 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.1715 +				iDevSoundState = EStateInitializing;
  1.1716 +				}
  1.1717 +			else if(aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.1718 +				{
  1.1719 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
  1.1720 +				StopTest(aError);		
  1.1721 +				}
  1.1722 +			else
  1.1723 +				{
  1.1724 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.1725 +				StopTest(aError, EFail);
  1.1726 +				}
  1.1727 +			break;
  1.1728 +			}
  1.1729 +		case EStateInitializing:
  1.1730 +			{
  1.1731 +			if(aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.1732 +				{
  1.1733 +				INFO_PRINTF1(_L("========== Test Case Successfully Completed =========="));
  1.1734 +				StopTest();
  1.1735 +				}
  1.1736 +			else if(aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.1737 +				{
  1.1738 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
  1.1739 +				StopTest(aError);		
  1.1740 +				}
  1.1741 +			else
  1.1742 +				{
  1.1743 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.1744 +				StopTest(aError, EFail);
  1.1745 +				}
  1.1746 +			break;
  1.1747 +			}	
  1.1748 +		default:
  1.1749 +			{
  1.1750 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.1751 +			StopTest(aError, EFail);
  1.1752 +			}
  1.1753 +		}
  1.1754 +	}
  1.1755 +
  1.1756 +
  1.1757 +/*
  1.1758 + *========================================================================================================
  1.1759 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0020
  1.1760 + */
  1.1761 +RA3FDevSoundPlayDataWithoutInitializeTest::RA3FDevSoundPlayDataWithoutInitializeTest(const TDesC& aTestName) 
  1.1762 +	:	RA3FDevSoundTestBase(aTestName)
  1.1763 +	{
  1.1764 +	}
  1.1765 +
  1.1766 +RA3FDevSoundPlayDataWithoutInitializeTest* RA3FDevSoundPlayDataWithoutInitializeTest::NewL(const TDesC& aTestName)
  1.1767 +	{
  1.1768 +	RA3FDevSoundPlayDataWithoutInitializeTest* self = new (ELeave) RA3FDevSoundPlayDataWithoutInitializeTest(aTestName);
  1.1769 +	return self;
  1.1770 +	}
  1.1771 +
  1.1772 +void RA3FDevSoundPlayDataWithoutInitializeTest::DoKickoffTestL()
  1.1773 +	{
  1.1774 +	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
  1.1775 +	}
  1.1776 +
  1.1777 +void RA3FDevSoundPlayDataWithoutInitializeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.1778 +	{
  1.1779 +	switch(iDevSoundState)
  1.1780 +		{
  1.1781 +		case EStateCreated:
  1.1782 +			{
  1.1783 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundPlayDataWithoutInitializeTest"),EFsmIncorrectErrorPassed));
  1.1784 +			if(aDevSoundEvent == EEventInitialize)
  1.1785 +				{
  1.1786 +				INFO_PRINTF1(_L("Call CMMFDevSound::PlayData without calling CMMFDevSound::InitializeL..."));
  1.1787 +				iMMFDevSound->PlayData();
  1.1788 +				StartTimer(KMicroSecsTwoSec);
  1.1789 +				}
  1.1790 +			else
  1.1791 +				{
  1.1792 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.1793 +				StopTest(aError, EFail);
  1.1794 +				}
  1.1795 +			break;
  1.1796 +			}
  1.1797 +		default:
  1.1798 +			{
  1.1799 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.1800 +			StopTest(aError, EFail);
  1.1801 +			}
  1.1802 +		}
  1.1803 +	}
  1.1804 +
  1.1805 +void RA3FDevSoundPlayDataWithoutInitializeTest::DoTimerCallback()
  1.1806 +	{
  1.1807 +	iTimer->Cancel();
  1.1808 +	ERR_PRINTF1(_L("Panic did not occur as expected when calling PlayData()."));
  1.1809 +	StopTest(KErrNone, EFail);
  1.1810 +	}
  1.1811 +
  1.1812 +/*
  1.1813 + *========================================================================================================
  1.1814 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0021
  1.1815 + */
  1.1816 +RA3FDevSoundPlayDTMFStringWithoutInitializeTest::RA3FDevSoundPlayDTMFStringWithoutInitializeTest(const TDesC& aTestName) 
  1.1817 +	:	RA3FDevSoundTestBase(aTestName), iDTMFString(KNullDesC)
  1.1818 +	{
  1.1819 +	}
  1.1820 +
  1.1821 +RA3FDevSoundPlayDTMFStringWithoutInitializeTest* RA3FDevSoundPlayDTMFStringWithoutInitializeTest::NewL(const TDesC& aTestName)
  1.1822 +	{
  1.1823 +	RA3FDevSoundPlayDTMFStringWithoutInitializeTest* self = new (ELeave) RA3FDevSoundPlayDTMFStringWithoutInitializeTest(aTestName);
  1.1824 +	return self;
  1.1825 +	}
  1.1826 +
  1.1827 +void RA3FDevSoundPlayDTMFStringWithoutInitializeTest::DoKickoffTestL()
  1.1828 +	{
  1.1829 +	TPtrC DTMF;
  1.1830 +	if(!GetStringFromConfig(iTestStepName, KDTMFString, DTMF))
  1.1831 +		{
  1.1832 +		ERR_PRINTF2(KMsgErrorGetParameter, &KDTMFString);
  1.1833 +		StopTest(KErrNotFound);
  1.1834 +		return;
  1.1835 +		}
  1.1836 +	iDTMFString.Copy(DTMF);
  1.1837 +	}
  1.1838 +
  1.1839 +void RA3FDevSoundPlayDTMFStringWithoutInitializeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.1840 +	{
  1.1841 +	switch(iDevSoundState)
  1.1842 +		{
  1.1843 +		case EStateCreated:
  1.1844 +			{
  1.1845 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundPlayDTMFStringWithoutInitializeTest"),EFsmIncorrectErrorPassed));
  1.1846 +			if(aDevSoundEvent == EEventInitialize)
  1.1847 +				{
  1.1848 +				INFO_PRINTF1(_L("Call CMMFDevSound::PlayDTMFStringL..."));
  1.1849 +				TRAPD(err, iMMFDevSound->PlayDTMFStringL(iDTMFString));
  1.1850 +				if(err == KErrNotReady)
  1.1851 +					{
  1.1852 +					ERR_PRINTF2(_L("Calling CMMFDevSound::PlayDTMFStringL  without calling CMMFDevSound::InitializeL left with expected error = %d"), err);
  1.1853 +					StopTest(err, EPass);
  1.1854 +					break;
  1.1855 +					}
  1.1856 +				else
  1.1857 +					{
  1.1858 +					ERR_PRINTF2(_L("CMMFDevSound::PlayDTMFStringL  without calling CMMFDevSound::InitializeL left with error = %d"), err);
  1.1859 +					ERR_PRINTF2(_L("Expected error = %d"), KErrNotReady);
  1.1860 +					StopTest(err, EFail);
  1.1861 +					}
  1.1862 +				}
  1.1863 +			else
  1.1864 +				{
  1.1865 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.1866 +				StopTest(aError, EFail);
  1.1867 +				}
  1.1868 +			break;
  1.1869 +			}
  1.1870 +		default:
  1.1871 +			{
  1.1872 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.1873 +			StopTest(aError, EFail);
  1.1874 +			}
  1.1875 +		}
  1.1876 +	}
  1.1877 +
  1.1878 +
  1.1879 +/*
  1.1880 + *========================================================================================================
  1.1881 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0022
  1.1882 + */
  1.1883 +RA3FDevSoundPlayDualToneWithoutInitializeTest::RA3FDevSoundPlayDualToneWithoutInitializeTest(const TDesC& aTestName) 
  1.1884 +	:	RA3FDevSoundTestBase(aTestName), iFrequencyTone1(0), iFrequencyTone2(0)
  1.1885 +	{
  1.1886 +	}
  1.1887 +
  1.1888 +RA3FDevSoundPlayDualToneWithoutInitializeTest* RA3FDevSoundPlayDualToneWithoutInitializeTest::NewL(const TDesC& aTestName)
  1.1889 +	{
  1.1890 +	RA3FDevSoundPlayDualToneWithoutInitializeTest* self = new (ELeave) RA3FDevSoundPlayDualToneWithoutInitializeTest(aTestName);
  1.1891 +	return self;
  1.1892 +	}
  1.1893 +
  1.1894 +void RA3FDevSoundPlayDualToneWithoutInitializeTest::DoKickoffTestL()
  1.1895 +	{
  1.1896 +	if(!GetIntFromConfig(iTestStepName, KDuration, iDuration)) 
  1.1897 +		{
  1.1898 +		ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
  1.1899 +		StopTest(KErrNotFound);
  1.1900 +		return;
  1.1901 +		}
  1.1902 +	if(!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1)) 
  1.1903 +		{
  1.1904 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
  1.1905 +		StopTest(KErrNotFound);
  1.1906 +		return;
  1.1907 +		}
  1.1908 +	if(!GetIntFromConfig(iTestStepName, KFrequencyTone2, iFrequencyTone2)) 
  1.1909 +		{
  1.1910 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone2);
  1.1911 +		StopTest(KErrNotFound);
  1.1912 +		return;
  1.1913 +		}
  1.1914 +	}
  1.1915 +
  1.1916 +void RA3FDevSoundPlayDualToneWithoutInitializeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.1917 +	{
  1.1918 +	switch(iDevSoundState)
  1.1919 +		{
  1.1920 +		case EStateCreated:
  1.1921 +			{
  1.1922 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundPlayDualToneWithoutInitializeTest"),EFsmIncorrectErrorPassed));
  1.1923 +			if(aDevSoundEvent == EEventInitialize)
  1.1924 +				{
  1.1925 +				INFO_PRINTF1(_L("Call CMMFDevSound::PlayDualToneL..."));
  1.1926 +				TRAPD(err, iMMFDevSound->PlayDualToneL(iFrequencyTone1,iFrequencyTone2,iDuration));
  1.1927 +				if(err == KErrNotReady)
  1.1928 +					{
  1.1929 +					ERR_PRINTF2(_L("Calling CMMFDevSound::PlayDualToneL  without calling CMMFDevSound::InitializeL left with expected error = %d"), err);
  1.1930 +					StopTest(err, EPass);
  1.1931 +					break;
  1.1932 +					}
  1.1933 +				else
  1.1934 +					{
  1.1935 +					ERR_PRINTF2(_L("CMMFDevSound::PlayDualToneL  without calling CMMFDevSound::InitializeL left with error = %d"), err);
  1.1936 +					ERR_PRINTF2(_L("Expected error = %d"), KErrNotReady);
  1.1937 +					StopTest(err, EFail);
  1.1938 +					}
  1.1939 +				}
  1.1940 +			else
  1.1941 +				{
  1.1942 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.1943 +				StopTest(aError, EFail);
  1.1944 +				}
  1.1945 +			break;
  1.1946 +			}
  1.1947 +		default:
  1.1948 +			{
  1.1949 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.1950 +			StopTest(aError, EFail);
  1.1951 +			}
  1.1952 +		}
  1.1953 +	}
  1.1954 +
  1.1955 +
  1.1956 +/*
  1.1957 + *========================================================================================================
  1.1958 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0023
  1.1959 + */
  1.1960 +RA3FDevSoundPlayFixedSequenceWithoutInitializeTest::RA3FDevSoundPlayFixedSequenceWithoutInitializeTest(const TDesC& aTestName) 
  1.1961 +	:	RA3FDevSoundTestBase(aTestName)
  1.1962 +	{
  1.1963 +	}
  1.1964 +
  1.1965 +RA3FDevSoundPlayFixedSequenceWithoutInitializeTest* RA3FDevSoundPlayFixedSequenceWithoutInitializeTest::NewL(const TDesC& aTestName)
  1.1966 +	{
  1.1967 +	RA3FDevSoundPlayFixedSequenceWithoutInitializeTest* self = new (ELeave) RA3FDevSoundPlayFixedSequenceWithoutInitializeTest(aTestName);
  1.1968 +	return self;
  1.1969 +	}
  1.1970 +
  1.1971 +void RA3FDevSoundPlayFixedSequenceWithoutInitializeTest::DoKickoffTestL()
  1.1972 +	{
  1.1973 +	}
  1.1974 +
  1.1975 +void RA3FDevSoundPlayFixedSequenceWithoutInitializeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.1976 +	{
  1.1977 +	switch(iDevSoundState)
  1.1978 +		{
  1.1979 +		case EStateCreated:
  1.1980 +			{
  1.1981 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundPlayFixedSequenceWithoutInitializeTest"),EFsmIncorrectErrorPassed));
  1.1982 +			if(aDevSoundEvent == EEventInitialize)
  1.1983 +				{
  1.1984 +				INFO_PRINTF1(_L("Call CMMFDevSound::PlayFixedSequenceL..."));
  1.1985 +				TRAPD(err, iMMFDevSound->PlayFixedSequenceL(0));
  1.1986 +				if(err == KErrNotSupported)
  1.1987 +					{
  1.1988 +					ERR_PRINTF2(_L("Calling CMMFDevSound::PlayFixedSequenceL  without calling CMMFDevSound::InitializeL left with expected error = %d"), err);
  1.1989 +					StopTest(err, EPass);
  1.1990 +					break;
  1.1991 +					}
  1.1992 +				else
  1.1993 +					{
  1.1994 +					ERR_PRINTF2(_L("CMMFDevSound::PlayFixedSequenceL  without calling CMMFDevSound::InitializeL left with error = %d"), err);
  1.1995 +					ERR_PRINTF2(_L("Expected error = %d"), KErrNotReady);
  1.1996 +					StopTest(err, EFail);
  1.1997 +					}
  1.1998 +				}
  1.1999 +			else
  1.2000 +				{
  1.2001 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.2002 +				StopTest(aError, EFail);
  1.2003 +				}
  1.2004 +			break;
  1.2005 +			}
  1.2006 +		default:
  1.2007 +			{
  1.2008 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.2009 +			StopTest(aError, EFail);
  1.2010 +			}
  1.2011 +		}
  1.2012 +	}
  1.2013 +
  1.2014 +
  1.2015 +/*
  1.2016 + *========================================================================================================
  1.2017 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0024
  1.2018 + */
  1.2019 +RA3FDevSoundPlayInitWithoutInitializeTest::RA3FDevSoundPlayInitWithoutInitializeTest(const TDesC& aTestName) 
  1.2020 +	:	RA3FDevSoundTestBase(aTestName)
  1.2021 +	{
  1.2022 +	}
  1.2023 +
  1.2024 +RA3FDevSoundPlayInitWithoutInitializeTest* RA3FDevSoundPlayInitWithoutInitializeTest::NewL(const TDesC& aTestName)
  1.2025 +	{
  1.2026 +	RA3FDevSoundPlayInitWithoutInitializeTest* self = new (ELeave) RA3FDevSoundPlayInitWithoutInitializeTest(aTestName);
  1.2027 +	return self;
  1.2028 +	}
  1.2029 +
  1.2030 +void RA3FDevSoundPlayInitWithoutInitializeTest::DoKickoffTestL()
  1.2031 +	{
  1.2032 +	}
  1.2033 +
  1.2034 +void RA3FDevSoundPlayInitWithoutInitializeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.2035 +	{
  1.2036 +	switch(iDevSoundState)
  1.2037 +		{
  1.2038 +		case EStateCreated:
  1.2039 +			{
  1.2040 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundPlayInitWithoutInitializeTest"),EFsmIncorrectErrorPassed));
  1.2041 +			if(aDevSoundEvent == EEventInitialize)
  1.2042 +				{
  1.2043 +				INFO_PRINTF1(_L("Call CMMFDevSound::PlayInitL without calling CMMFDevSound::InitializeL..."));
  1.2044 +				TRAPD(err,iMMFDevSound->PlayInitL());
  1.2045 +				if(err == KErrNotReady)
  1.2046 +					{
  1.2047 +					ERR_PRINTF2(_L("Calling CMMFDevSound::PlayInitL  without calling CMMFDevSound::InitializeL left with expected error = %d"), err);
  1.2048 +					StopTest(err, EPass);
  1.2049 +					break;
  1.2050 +					}
  1.2051 +				else
  1.2052 +					{
  1.2053 +					ERR_PRINTF2(_L("CMMFDevSound::PlayInitL  without calling CMMFDevSound::InitializeL left with error = %d"), err);
  1.2054 +					ERR_PRINTF2(_L("Expected error = %d"), KErrNotReady);
  1.2055 +					StopTest(err, EFail);
  1.2056 +					}
  1.2057 +				}
  1.2058 +			else
  1.2059 +				{
  1.2060 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.2061 +				StopTest(aError, EFail);
  1.2062 +				}
  1.2063 +			break;
  1.2064 +			}
  1.2065 +		default:
  1.2066 +			{
  1.2067 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.2068 +			StopTest(aError, EFail);
  1.2069 +			}
  1.2070 +		}
  1.2071 +	}
  1.2072 +
  1.2073 +
  1.2074 +/*
  1.2075 + *========================================================================================================
  1.2076 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0025
  1.2077 + */
  1.2078 +RA3FDevSoundPlayToneWithoutInitializeTest::RA3FDevSoundPlayToneWithoutInitializeTest(const TDesC& aTestName) 
  1.2079 +	:	RA3FDevSoundTestBase(aTestName), iFrequencyTone1(0)
  1.2080 +	{
  1.2081 +	}
  1.2082 +
  1.2083 +RA3FDevSoundPlayToneWithoutInitializeTest* RA3FDevSoundPlayToneWithoutInitializeTest::NewL(const TDesC& aTestName)
  1.2084 +	{
  1.2085 +	RA3FDevSoundPlayToneWithoutInitializeTest* self = new (ELeave) RA3FDevSoundPlayToneWithoutInitializeTest(aTestName);
  1.2086 +	return self;
  1.2087 +	}
  1.2088 +
  1.2089 +void RA3FDevSoundPlayToneWithoutInitializeTest::DoKickoffTestL()
  1.2090 +	{
  1.2091 +	if(!GetIntFromConfig(iTestStepName, KDuration, iDuration)) 
  1.2092 +		{
  1.2093 +		ERR_PRINTF2(KMsgErrorGetParameter, &KDuration);
  1.2094 +		StopTest(KErrNotFound);
  1.2095 +		return;
  1.2096 +		}
  1.2097 +	if(!GetIntFromConfig(iTestStepName, KFrequencyTone1, iFrequencyTone1)) 
  1.2098 +		{
  1.2099 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFrequencyTone1);
  1.2100 +		StopTest(KErrNotFound);
  1.2101 +		return;
  1.2102 +		}
  1.2103 +	}
  1.2104 +
  1.2105 +void RA3FDevSoundPlayToneWithoutInitializeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.2106 +	{
  1.2107 +	switch(iDevSoundState)
  1.2108 +		{
  1.2109 +		case EStateCreated:
  1.2110 +			{
  1.2111 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundPlayToneWithoutInitializeTest"),EFsmIncorrectErrorPassed));
  1.2112 +			if(aDevSoundEvent == EEventInitialize)
  1.2113 +				{
  1.2114 +				INFO_PRINTF1(_L("Call CMMFDevSound::PlayToneL..."));
  1.2115 +				TRAPD(err, iMMFDevSound->PlayToneL(iFrequencyTone1, iDuration));
  1.2116 +				if(err == KErrNotReady)
  1.2117 +					{
  1.2118 +					ERR_PRINTF2(_L("Calling CMMFDevSound::PlayToneL  without calling CMMFDevSound::InitializeL left with expected error = %d"), err);
  1.2119 +					StopTest(err, EPass);
  1.2120 +					break;
  1.2121 +					}
  1.2122 +				else
  1.2123 +					{
  1.2124 +					ERR_PRINTF2(_L("CMMFDevSound::PlayToneL  without calling CMMFDevSound::InitializeL left with error = %d"), err);
  1.2125 +					ERR_PRINTF2(_L("Expected error = %d"), KErrNotReady);
  1.2126 +					StopTest(err, EFail);
  1.2127 +					}
  1.2128 +				}
  1.2129 +			else
  1.2130 +				{
  1.2131 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.2132 +				StopTest(aError, EFail);
  1.2133 +				}
  1.2134 +			break;
  1.2135 +			}
  1.2136 +		default:
  1.2137 +			{
  1.2138 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.2139 +			StopTest(aError, EFail);
  1.2140 +			}
  1.2141 +		}
  1.2142 +	}
  1.2143 +
  1.2144 +
  1.2145 +/*
  1.2146 + *========================================================================================================
  1.2147 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0026
  1.2148 + */
  1.2149 +RA3FDevSoundPlayToneSequenceWithoutInitializeTest::RA3FDevSoundPlayToneSequenceWithoutInitializeTest(const TDesC& aTestName) 
  1.2150 +	:	RA3FDevSoundTestBase(aTestName)
  1.2151 +	{
  1.2152 +	}
  1.2153 +
  1.2154 +RA3FDevSoundPlayToneSequenceWithoutInitializeTest* RA3FDevSoundPlayToneSequenceWithoutInitializeTest::NewL(const TDesC& aTestName)
  1.2155 +	{
  1.2156 +	RA3FDevSoundPlayToneSequenceWithoutInitializeTest* self = new (ELeave) RA3FDevSoundPlayToneSequenceWithoutInitializeTest(aTestName);
  1.2157 +	return self;
  1.2158 +	}
  1.2159 +
  1.2160 +void RA3FDevSoundPlayToneSequenceWithoutInitializeTest::DoKickoffTestL()
  1.2161 +	{
  1.2162 +	}
  1.2163 +
  1.2164 +void RA3FDevSoundPlayToneSequenceWithoutInitializeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.2165 +	{
  1.2166 +	switch(iDevSoundState)
  1.2167 +		{
  1.2168 +		case EStateCreated:
  1.2169 +			{
  1.2170 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundPlayToneSequenceWithoutInitializeTest"),EFsmIncorrectErrorPassed));
  1.2171 +			if(aDevSoundEvent == EEventInitialize)
  1.2172 +				{
  1.2173 +				TUint8* tablePointer = const_cast<TUint8*>( &(KFixedSequenceTestSequenceDataX[0] )); 
  1.2174 +				TPtrC8 KFixedSequenceData(tablePointer,  sizeof(KFixedSequenceTestSequenceDataX));
  1.2175 +				INFO_PRINTF1(_L("Call CMMFDevSound::PlayToneSequenceL..."));
  1.2176 +				TRAPD(err, iMMFDevSound->PlayToneSequenceL(KFixedSequenceData));
  1.2177 +				if(err == KErrNotReady)
  1.2178 +					{
  1.2179 +					ERR_PRINTF2(_L("Calling CMMFDevSound::PlayToneSequenceL  without calling CMMFDevSound::InitializeL left with expected error = %d"), err);
  1.2180 +					StopTest(err, EPass);
  1.2181 +					break;
  1.2182 +					}
  1.2183 +				else
  1.2184 +					{
  1.2185 +					ERR_PRINTF2(_L("CMMFDevSound::PlayToneSequenceL  without calling CMMFDevSound::InitializeL left with error = %d"), err);
  1.2186 +					ERR_PRINTF2(_L("Expected error = %d"), KErrNotReady);
  1.2187 +					StopTest(err, EFail);
  1.2188 +					}
  1.2189 +				}
  1.2190 +			else
  1.2191 +				{
  1.2192 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.2193 +				StopTest(aError, EFail);
  1.2194 +				}
  1.2195 +			break;
  1.2196 +			}
  1.2197 +		default:
  1.2198 +			{
  1.2199 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.2200 +			StopTest(aError, EFail);
  1.2201 +			}
  1.2202 +		}
  1.2203 +	}
  1.2204 +
  1.2205 +
  1.2206 +/*
  1.2207 + *========================================================================================================
  1.2208 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0027
  1.2209 + */
  1.2210 +RA3FDevSoundRecordDataWithoutInitializeTest::RA3FDevSoundRecordDataWithoutInitializeTest(const TDesC& aTestName) 
  1.2211 +	:	RA3FDevSoundTestBase(aTestName)
  1.2212 +	{
  1.2213 +	}
  1.2214 +
  1.2215 +RA3FDevSoundRecordDataWithoutInitializeTest* RA3FDevSoundRecordDataWithoutInitializeTest::NewL(const TDesC& aTestName)
  1.2216 +	{
  1.2217 +	RA3FDevSoundRecordDataWithoutInitializeTest* self = new (ELeave) RA3FDevSoundRecordDataWithoutInitializeTest(aTestName);
  1.2218 +	return self;
  1.2219 +	}
  1.2220 +
  1.2221 +void RA3FDevSoundRecordDataWithoutInitializeTest::DoKickoffTestL()
  1.2222 +	{
  1.2223 +	iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
  1.2224 +	}
  1.2225 +
  1.2226 +void RA3FDevSoundRecordDataWithoutInitializeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.2227 +	{
  1.2228 +	switch(iDevSoundState)
  1.2229 +		{
  1.2230 +		case EStateCreated:
  1.2231 +			{
  1.2232 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundRecordDataWithoutInitializeTest"),EFsmIncorrectErrorPassed));
  1.2233 +			if(aDevSoundEvent == EEventInitialize)
  1.2234 +				{
  1.2235 +				INFO_PRINTF1(_L("Call CMMFDevSound::RecordData without calling CMMFDevSound::InitializeL..."));
  1.2236 +				iMMFDevSound->RecordData();
  1.2237 +				StartTimer(KMicroSecsTwoSec);
  1.2238 +				}
  1.2239 +			else
  1.2240 +				{
  1.2241 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.2242 +				StopTest(aError, EFail);
  1.2243 +				}
  1.2244 +			break;
  1.2245 +			}
  1.2246 +		default:
  1.2247 +			{
  1.2248 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.2249 +			StopTest(aError, EFail);
  1.2250 +			}
  1.2251 +		}
  1.2252 +	}
  1.2253 +
  1.2254 +void RA3FDevSoundRecordDataWithoutInitializeTest::DoTimerCallback()
  1.2255 +	{
  1.2256 +	iTimer->Cancel();
  1.2257 +	ERR_PRINTF1(_L("Panic did not occur as expected when calling RecordData()."));
  1.2258 +	StopTest(KErrNone, EFail);
  1.2259 +	}
  1.2260 +
  1.2261 +/*
  1.2262 + *========================================================================================================
  1.2263 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0028
  1.2264 + */
  1.2265 +RA3FDevSoundRecordInitWithoutInitializeTest::RA3FDevSoundRecordInitWithoutInitializeTest(const TDesC& aTestName) 
  1.2266 +	:	RA3FDevSoundTestBase(aTestName)
  1.2267 +	{
  1.2268 +	}
  1.2269 +
  1.2270 +RA3FDevSoundRecordInitWithoutInitializeTest* RA3FDevSoundRecordInitWithoutInitializeTest::NewL(const TDesC& aTestName)
  1.2271 +	{
  1.2272 +	RA3FDevSoundRecordInitWithoutInitializeTest* self = new (ELeave) RA3FDevSoundRecordInitWithoutInitializeTest(aTestName);
  1.2273 +	return self;
  1.2274 +	}
  1.2275 +
  1.2276 +void RA3FDevSoundRecordInitWithoutInitializeTest::DoKickoffTestL()
  1.2277 +	{
  1.2278 +	}
  1.2279 +
  1.2280 +void RA3FDevSoundRecordInitWithoutInitializeTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.2281 +	{
  1.2282 +	switch(iDevSoundState)
  1.2283 +		{
  1.2284 +		case EStateCreated:
  1.2285 +			{
  1.2286 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundRecordInitWithoutInitializeTest"),EFsmIncorrectErrorPassed));
  1.2287 +			if(aDevSoundEvent == EEventInitialize)
  1.2288 +				{
  1.2289 +				INFO_PRINTF1(_L("Call CMMFDevSound::RecordInitL without calling CMMFDevSound::InitializeL..."));
  1.2290 +				TRAPD(err,iMMFDevSound->RecordInitL());
  1.2291 +				if(err == KErrNotReady)
  1.2292 +					{
  1.2293 +					ERR_PRINTF2(_L("Calling CMMFDevSound::RecordInitL  without calling CMMFDevSound::InitializeL left with expected error = %d"), err);
  1.2294 +					StopTest(err, EPass);
  1.2295 +					break;
  1.2296 +					}
  1.2297 +				else
  1.2298 +					{
  1.2299 +					ERR_PRINTF2(_L("CMMFDevSound::RecordInitL  without calling CMMFDevSound::InitializeL left with error = %d"), err);
  1.2300 +					ERR_PRINTF2(_L("Expected error = %d"), KErrNotReady);
  1.2301 +					StopTest(err, EFail);
  1.2302 +					}
  1.2303 +				}
  1.2304 +			else
  1.2305 +				{
  1.2306 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.2307 +				StopTest(aError, EFail);
  1.2308 +				}
  1.2309 +			break;
  1.2310 +			}
  1.2311 +		default:
  1.2312 +			{
  1.2313 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.2314 +			StopTest(aError, EFail);
  1.2315 +			}
  1.2316 +		}
  1.2317 +	}
  1.2318 +
  1.2319 +
  1.2320 +/*
  1.2321 + *========================================================================================================
  1.2322 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0029
  1.2323 + */
  1.2324 +RA3FDevSoundToneInitializationMoreThanOnceBeforeInitCompleteTest::RA3FDevSoundToneInitializationMoreThanOnceBeforeInitCompleteTest(const TDesC& aTestName) 
  1.2325 +	:	RA3FDevSoundTestBase(aTestName)
  1.2326 +	{
  1.2327 +	}
  1.2328 +
  1.2329 +RA3FDevSoundToneInitializationMoreThanOnceBeforeInitCompleteTest* RA3FDevSoundToneInitializationMoreThanOnceBeforeInitCompleteTest::NewL(const TDesC& aTestName)
  1.2330 +	{
  1.2331 +	RA3FDevSoundToneInitializationMoreThanOnceBeforeInitCompleteTest* self = new (ELeave) RA3FDevSoundToneInitializationMoreThanOnceBeforeInitCompleteTest(aTestName);
  1.2332 +	return self;
  1.2333 +	}
  1.2334 +
  1.2335 +void RA3FDevSoundToneInitializationMoreThanOnceBeforeInitCompleteTest::DoKickoffTestL()
  1.2336 +	{
  1.2337 +	}
  1.2338 +
  1.2339 +void RA3FDevSoundToneInitializationMoreThanOnceBeforeInitCompleteTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.2340 +	{
  1.2341 +	switch(iDevSoundState)
  1.2342 +		{
  1.2343 +		case EStateCreated:
  1.2344 +			{
  1.2345 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundToneInitializationMoreThanOnceBeforeInitCompleteTest"),EFsmIncorrectErrorPassed));
  1.2346 +			if(aDevSoundEvent == EEventInitialize)
  1.2347 +				{
  1.2348 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.2349 +				TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
  1.2350 +				if(err != KErrNone)
  1.2351 +					{
  1.2352 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.2353 +					StopTest(err);
  1.2354 +					break;
  1.2355 +					}
  1.2356 +				INFO_PRINTF1(_L("CMMFDevSound::InitializeL called twice before init complete"));
  1.2357 +				TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
  1.2358 +				if(err != KErrNotReady)
  1.2359 +					{
  1.2360 +					ERR_PRINTF2(_L("Calling CMMFDevSound::InitializeL more than once before init complete left with error = %d"), err);
  1.2361 +					ERR_PRINTF2(_L("Expected error = %d"), KErrNotReady);
  1.2362 +					StopTest(err, EFail);
  1.2363 +					}
  1.2364 +				else
  1.2365 +					{
  1.2366 +					INFO_PRINTF1(_L("Second call to CMMFDevSound::InitializeL leaves with KErrNotReady as expected"));
  1.2367 +					}
  1.2368 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.2369 +				iDevSoundState = EStateInitializing;
  1.2370 +				}
  1.2371 +			else
  1.2372 +				{
  1.2373 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.2374 +				StopTest(aError, EFail);
  1.2375 +				}
  1.2376 +			break;
  1.2377 +			}
  1.2378 +		case EStateInitializing:
  1.2379 +			{
  1.2380 +			if(aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.2381 +				{
  1.2382 +				INFO_PRINTF1(_L("========== Test Case Successfully Completed =========="));
  1.2383 +				StopTest();
  1.2384 +				}
  1.2385 +			else if(aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.2386 +				{
  1.2387 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
  1.2388 +				StopTest(aError);		
  1.2389 +				}
  1.2390 +			else
  1.2391 +				{
  1.2392 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.2393 +				StopTest(aError, EFail);
  1.2394 +				}
  1.2395 +			break;
  1.2396 +			}	
  1.2397 +		default:
  1.2398 +			{
  1.2399 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.2400 +			StopTest(aError, EFail);
  1.2401 +			}
  1.2402 +		}
  1.2403 +	}
  1.2404 +
  1.2405 +
  1.2406 +/*
  1.2407 + *========================================================================================================
  1.2408 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0030
  1.2409 + */
  1.2410 +RA3FDevSoundPlayInitializationMoreThanOnceBeforeInitCompleteTest::RA3FDevSoundPlayInitializationMoreThanOnceBeforeInitCompleteTest(const TDesC& aTestName) 
  1.2411 +	:	RA3FDevSoundTestBase(aTestName)
  1.2412 +	{
  1.2413 +	}
  1.2414 +
  1.2415 +RA3FDevSoundPlayInitializationMoreThanOnceBeforeInitCompleteTest* RA3FDevSoundPlayInitializationMoreThanOnceBeforeInitCompleteTest::NewL(const TDesC& aTestName)
  1.2416 +	{
  1.2417 +	RA3FDevSoundPlayInitializationMoreThanOnceBeforeInitCompleteTest* self = new (ELeave) RA3FDevSoundPlayInitializationMoreThanOnceBeforeInitCompleteTest(aTestName);
  1.2418 +	return self;
  1.2419 +	}
  1.2420 +
  1.2421 +void RA3FDevSoundPlayInitializationMoreThanOnceBeforeInitCompleteTest::DoKickoffTestL()
  1.2422 +	{
  1.2423 +	TPtrC fourccCode;
  1.2424 +	if(!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.2425 +		{
  1.2426 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.2427 +		StopTest(KErrNotFound);
  1.2428 +		return;
  1.2429 +		}
  1.2430 +	EncodingFromStringToTFourCC(fourccCode);
  1.2431 +	}
  1.2432 +
  1.2433 +void RA3FDevSoundPlayInitializationMoreThanOnceBeforeInitCompleteTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.2434 +	{
  1.2435 +	switch(iDevSoundState)
  1.2436 +		{
  1.2437 +		case EStateCreated:
  1.2438 +			{
  1.2439 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundPlayInitializationMoreThanOnceBeforeInitCompleteTest"),EFsmIncorrectErrorPassed));
  1.2440 +			if(aDevSoundEvent == EEventInitialize)
  1.2441 +				{
  1.2442 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.2443 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.2444 +				if(err != KErrNone)
  1.2445 +					{
  1.2446 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.2447 +					StopTest(err);
  1.2448 +					break;
  1.2449 +					}
  1.2450 +				INFO_PRINTF1(_L("CMMFDevSound::InitializeL called twice before init complete"));
  1.2451 +				TRAP(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.2452 +				if(err != KErrNotReady)
  1.2453 +					{
  1.2454 +					ERR_PRINTF2(_L("Calling CMMFDevSound::InitializeL more than once before init complete left with error = %d"), err);
  1.2455 +					ERR_PRINTF2(_L("Expected error = %d"), KErrNotReady);
  1.2456 +					StopTest(err, EFail);
  1.2457 +					}
  1.2458 +				else
  1.2459 +					{
  1.2460 +					INFO_PRINTF1(_L("Second call to CMMFDevSound::InitializeL leaves with KErrNotReady as expected"));
  1.2461 +					}
  1.2462 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.2463 +				iDevSoundState = EStateInitializing;
  1.2464 +				}
  1.2465 +			else
  1.2466 +				{
  1.2467 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.2468 +				StopTest(aError, EFail);
  1.2469 +				}
  1.2470 +			break;
  1.2471 +			}
  1.2472 +		case EStateInitializing:
  1.2473 +			{
  1.2474 +			if(aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.2475 +				{
  1.2476 +				INFO_PRINTF1(_L("========== Test Case Successfully Completed =========="));
  1.2477 +				StopTest();
  1.2478 +				}
  1.2479 +			else if(aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.2480 +				{
  1.2481 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
  1.2482 +				StopTest(aError);		
  1.2483 +				}
  1.2484 +			else
  1.2485 +				{
  1.2486 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.2487 +				StopTest(aError, EFail);
  1.2488 +				}
  1.2489 +			break;
  1.2490 +			}	
  1.2491 +		default:
  1.2492 +			{
  1.2493 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.2494 +			StopTest(aError, EFail);
  1.2495 +			}
  1.2496 +		}
  1.2497 +	}
  1.2498 +
  1.2499 +
  1.2500 +/*
  1.2501 + *========================================================================================================
  1.2502 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0031
  1.2503 + */
  1.2504 +RA3FDevSoundRecordInitializationMoreThanOnceBeforeInitCompleteTest::RA3FDevSoundRecordInitializationMoreThanOnceBeforeInitCompleteTest(const TDesC& aTestName) 
  1.2505 +	:	RA3FDevSoundTestBase(aTestName)
  1.2506 +	{
  1.2507 +	}
  1.2508 +
  1.2509 +RA3FDevSoundRecordInitializationMoreThanOnceBeforeInitCompleteTest* RA3FDevSoundRecordInitializationMoreThanOnceBeforeInitCompleteTest::NewL(const TDesC& aTestName)
  1.2510 +	{
  1.2511 +	RA3FDevSoundRecordInitializationMoreThanOnceBeforeInitCompleteTest* self = new (ELeave) RA3FDevSoundRecordInitializationMoreThanOnceBeforeInitCompleteTest(aTestName);
  1.2512 +	return self;
  1.2513 +	}
  1.2514 +
  1.2515 +void RA3FDevSoundRecordInitializationMoreThanOnceBeforeInitCompleteTest::DoKickoffTestL()
  1.2516 +	{
  1.2517 +	TPtrC fourccCode;
  1.2518 +	if(!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.2519 +		{
  1.2520 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.2521 +		StopTest(KErrNotFound);
  1.2522 +		return;
  1.2523 +		}
  1.2524 +	EncodingFromStringToTFourCC(fourccCode);
  1.2525 +	}
  1.2526 +
  1.2527 +void RA3FDevSoundRecordInitializationMoreThanOnceBeforeInitCompleteTest::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.2528 +	{
  1.2529 +	switch(iDevSoundState)
  1.2530 +		{
  1.2531 +		case EStateCreated:
  1.2532 +			{
  1.2533 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundRecordInitializationMoreThanOnceBeforeInitCompleteTest"),EFsmIncorrectErrorPassed));
  1.2534 +			if(aDevSoundEvent == EEventInitialize)
  1.2535 +				{
  1.2536 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
  1.2537 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStateRecording));
  1.2538 +				if(err != KErrNone)
  1.2539 +					{
  1.2540 +					INFO_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.2541 +					StopTest(err);
  1.2542 +					break;
  1.2543 +					}
  1.2544 +				INFO_PRINTF1(_L("CMMFDevSound::InitializeL called twice before init complete"));
  1.2545 +				TRAP(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStateRecording));
  1.2546 +				if(err != KErrNotReady)
  1.2547 +					{
  1.2548 +					ERR_PRINTF2(_L("Calling MMFDevSound::InitializeL more than once before init complete left with error = %d"), err);
  1.2549 +					ERR_PRINTF2(_L("Expected error = %d"), KErrNotReady);
  1.2550 +					StopTest(err, EFail);
  1.2551 +					}
  1.2552 +				else
  1.2553 +					{
  1.2554 +					INFO_PRINTF1(_L("Second call to CMMFDevSound::InitializeL leaves with KErrNotReady as expected"));
  1.2555 +					}
  1.2556 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.2557 +				iDevSoundState = EStateInitializing;
  1.2558 +				}
  1.2559 +			else
  1.2560 +				{
  1.2561 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.2562 +				StopTest(aError, EFail);
  1.2563 +				}
  1.2564 +			break;
  1.2565 +			}
  1.2566 +		case EStateInitializing:
  1.2567 +			{
  1.2568 +			if(aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.2569 +				{
  1.2570 +				INFO_PRINTF1(_L("========== Test Case Successfully Completed =========="));
  1.2571 +				StopTest();
  1.2572 +				}
  1.2573 +			else if(aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.2574 +				{
  1.2575 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
  1.2576 +				StopTest(aError);		
  1.2577 +				}
  1.2578 +			else
  1.2579 +				{
  1.2580 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.2581 +				StopTest(aError, EFail);
  1.2582 +				}
  1.2583 +			break;
  1.2584 +			}	
  1.2585 +		default:
  1.2586 +			{
  1.2587 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.2588 +			StopTest(aError, EFail);
  1.2589 +			}
  1.2590 +		}
  1.2591 +	}
  1.2592 +
  1.2593 +
  1.2594 +/*
  1.2595 + *========================================================================================================
  1.2596 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0032
  1.2597 + */
  1.2598 +RA3FDevSoundToneFirstInitializationLeavesThenSecondSucceeds::RA3FDevSoundToneFirstInitializationLeavesThenSecondSucceeds(const TDesC& aTestName) 
  1.2599 +	:	RA3FDevSoundTestBase(aTestName)
  1.2600 +	{
  1.2601 +	}
  1.2602 +
  1.2603 +RA3FDevSoundToneFirstInitializationLeavesThenSecondSucceeds* RA3FDevSoundToneFirstInitializationLeavesThenSecondSucceeds::NewL(const TDesC& aTestName)
  1.2604 +	{
  1.2605 +	RA3FDevSoundToneFirstInitializationLeavesThenSecondSucceeds* self = new (ELeave) RA3FDevSoundToneFirstInitializationLeavesThenSecondSucceeds(aTestName);
  1.2606 +	return self;
  1.2607 +	}
  1.2608 +
  1.2609 +void RA3FDevSoundToneFirstInitializationLeavesThenSecondSucceeds::DoKickoffTestL()
  1.2610 +	{
  1.2611 +	}
  1.2612 +
  1.2613 +void RA3FDevSoundToneFirstInitializationLeavesThenSecondSucceeds::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.2614 +	{
  1.2615 +	switch(iDevSoundState)
  1.2616 +		{
  1.2617 +		case EStateCreated:
  1.2618 +			{
  1.2619 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundToneFirstInitializationLeavesThenSecondSucceed"),EFsmIncorrectErrorPassed));
  1.2620 +			if(aDevSoundEvent == EEventInitialize)
  1.2621 +				{
  1.2622 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL to make it leave"));
  1.2623 +				TRAPD(err, iMMFDevSound->InitializeL(*this, EMMFStateConverting));
  1.2624 +				if(err != KErrNone)
  1.2625 +					{
  1.2626 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.2627 +					}
  1.2628 +				else
  1.2629 +					{
  1.2630 +					ERR_PRINTF1(_L("CMMFDevSound::InitializeL  did not leave as expected"));
  1.2631 +					StopTest(err, EFail);
  1.2632 +					}
  1.2633 +				INFO_PRINTF1(_L("CMMFDevSound::InitializeL called twice, but now using right parameters"));
  1.2634 +				TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStateTonePlaying));
  1.2635 +				if(err != KErrNone)
  1.2636 +					{
  1.2637 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.2638 +					StopTest(err);
  1.2639 +					break;
  1.2640 +					}
  1.2641 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.2642 +				iDevSoundState = EStateInitializing;
  1.2643 +				}
  1.2644 +			else
  1.2645 +				{
  1.2646 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.2647 +				StopTest(aError, EFail);
  1.2648 +				}
  1.2649 +			break;
  1.2650 +			}
  1.2651 +		case EStateInitializing:
  1.2652 +			{
  1.2653 +			if(aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.2654 +				{
  1.2655 +				INFO_PRINTF1(_L("========== Test Case Successfully Completed =========="));
  1.2656 +				StopTest();
  1.2657 +				}
  1.2658 +			else if(aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.2659 +				{
  1.2660 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
  1.2661 +				StopTest(aError);		
  1.2662 +				}
  1.2663 +			else
  1.2664 +				{
  1.2665 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.2666 +				StopTest(aError, EFail);
  1.2667 +				}
  1.2668 +			break;
  1.2669 +			}	
  1.2670 +		default:
  1.2671 +			{
  1.2672 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.2673 +			StopTest(aError, EFail);
  1.2674 +			}
  1.2675 +		}
  1.2676 +	}
  1.2677 +
  1.2678 +
  1.2679 +/*
  1.2680 + *========================================================================================================
  1.2681 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0033
  1.2682 + */
  1.2683 +RA3FDevSoundPlayFirstInitializationLeavesThenSecondSucceeds::RA3FDevSoundPlayFirstInitializationLeavesThenSecondSucceeds(const TDesC& aTestName) 
  1.2684 +	:	RA3FDevSoundTestBase(aTestName)
  1.2685 +	{
  1.2686 +	}
  1.2687 +
  1.2688 +RA3FDevSoundPlayFirstInitializationLeavesThenSecondSucceeds* RA3FDevSoundPlayFirstInitializationLeavesThenSecondSucceeds::NewL(const TDesC& aTestName)
  1.2689 +	{
  1.2690 +	RA3FDevSoundPlayFirstInitializationLeavesThenSecondSucceeds* self = new (ELeave) RA3FDevSoundPlayFirstInitializationLeavesThenSecondSucceeds(aTestName);
  1.2691 +	return self;
  1.2692 +	}
  1.2693 +
  1.2694 +void RA3FDevSoundPlayFirstInitializationLeavesThenSecondSucceeds::DoKickoffTestL()
  1.2695 +	{
  1.2696 +	TPtrC fourccCode;
  1.2697 +	if(!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.2698 +		{
  1.2699 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.2700 +		StopTest(KErrNotFound);
  1.2701 +		return;
  1.2702 +		}
  1.2703 +	EncodingFromStringToTFourCC(fourccCode);
  1.2704 +	}
  1.2705 +
  1.2706 +void RA3FDevSoundPlayFirstInitializationLeavesThenSecondSucceeds::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.2707 +	{
  1.2708 +	switch(iDevSoundState)
  1.2709 +		{
  1.2710 +		case EStateCreated:
  1.2711 +			{
  1.2712 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundPlayFirstInitializationLeavesThenSecondSucceed"),EFsmIncorrectErrorPassed));
  1.2713 +			if(aDevSoundEvent == EEventInitialize)
  1.2714 +				{
  1.2715 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL to make it leave"));
  1.2716 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStateConverting));
  1.2717 +				if(err != KErrNone)
  1.2718 +					{
  1.2719 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.2720 +					}
  1.2721 +				else
  1.2722 +					{
  1.2723 +					ERR_PRINTF1(_L("CMMFDevSound::InitializeL  did not leave as expected"));
  1.2724 +					StopTest(err, EFail);
  1.2725 +					}
  1.2726 +				INFO_PRINTF1(_L("CMMFDevSound::InitializeL called twice, but now using right parameters"));
  1.2727 +				TRAP(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStatePlaying));
  1.2728 +				if(err != KErrNone)
  1.2729 +					{
  1.2730 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.2731 +					StopTest(err);
  1.2732 +					break;
  1.2733 +					}
  1.2734 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.2735 +				iDevSoundState = EStateInitializing;
  1.2736 +				}
  1.2737 +			else
  1.2738 +				{
  1.2739 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.2740 +				StopTest(aError, EFail);
  1.2741 +				}
  1.2742 +			break;
  1.2743 +			}
  1.2744 +		case EStateInitializing:
  1.2745 +			{
  1.2746 +			if(aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.2747 +				{
  1.2748 +				INFO_PRINTF1(_L("========== Test Case Successfully Completed =========="));
  1.2749 +				StopTest();
  1.2750 +				}
  1.2751 +			else if(aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.2752 +				{
  1.2753 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
  1.2754 +				StopTest(aError);		
  1.2755 +				}
  1.2756 +			else
  1.2757 +				{
  1.2758 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.2759 +				StopTest(aError, EFail);
  1.2760 +				}
  1.2761 +			break;
  1.2762 +			}	
  1.2763 +		default:
  1.2764 +			{
  1.2765 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.2766 +			StopTest(aError, EFail);
  1.2767 +			}
  1.2768 +		}
  1.2769 +	}
  1.2770 +
  1.2771 +
  1.2772 +/*
  1.2773 + *========================================================================================================
  1.2774 + * MM-A3F-DEVSOUND-CHRTZ-INIT-0034
  1.2775 + */
  1.2776 +RA3FDevSoundRecordFirstInitializationLeavesThenSecondSucceeds::RA3FDevSoundRecordFirstInitializationLeavesThenSecondSucceeds(const TDesC& aTestName) 
  1.2777 +	:	RA3FDevSoundTestBase(aTestName)
  1.2778 +	{
  1.2779 +	}
  1.2780 +
  1.2781 +RA3FDevSoundRecordFirstInitializationLeavesThenSecondSucceeds* RA3FDevSoundRecordFirstInitializationLeavesThenSecondSucceeds::NewL(const TDesC& aTestName)
  1.2782 +	{
  1.2783 +	RA3FDevSoundRecordFirstInitializationLeavesThenSecondSucceeds* self = new (ELeave) RA3FDevSoundRecordFirstInitializationLeavesThenSecondSucceeds(aTestName);
  1.2784 +	return self;
  1.2785 +	}
  1.2786 +
  1.2787 +void RA3FDevSoundRecordFirstInitializationLeavesThenSecondSucceeds::DoKickoffTestL()
  1.2788 +	{
  1.2789 +	TPtrC fourccCode;
  1.2790 +	if(!GetStringFromConfig(iTestStepName, KFourccCode, fourccCode))
  1.2791 +		{
  1.2792 +		ERR_PRINTF2(KMsgErrorGetParameter, &KFourccCode);
  1.2793 +		StopTest(KErrNotFound);
  1.2794 +		return;
  1.2795 +		}
  1.2796 +	EncodingFromStringToTFourCC(fourccCode);
  1.2797 +	}
  1.2798 +
  1.2799 +void RA3FDevSoundRecordFirstInitializationLeavesThenSecondSucceeds::Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError)
  1.2800 +	{
  1.2801 +	switch(iDevSoundState)
  1.2802 +		{
  1.2803 +		case EStateCreated:
  1.2804 +			{
  1.2805 +			__ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RA3FDevSoundRecordFirstInitializationLeavesThenSecondSucceed"),EFsmIncorrectErrorPassed));
  1.2806 +			if(aDevSoundEvent == EEventInitialize)
  1.2807 +				{
  1.2808 +				INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL to make it leave"));
  1.2809 +				TRAPD(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStateConverting));
  1.2810 +				if(err != KErrNone)
  1.2811 +					{
  1.2812 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.2813 +					}
  1.2814 +				else
  1.2815 +					{
  1.2816 +					ERR_PRINTF1(_L("CMMFDevSound::InitializeL  did not leave as expected"));
  1.2817 +					StopTest(err, EFail);
  1.2818 +					}
  1.2819 +				INFO_PRINTF1(_L("CMMFDevSound::InitializeL called twice, but now using right parameters"));
  1.2820 +				TRAP(err, iMMFDevSound->InitializeL(*this, iFourCCCode, EMMFStateRecording));
  1.2821 +				if(err != KErrNone)
  1.2822 +					{
  1.2823 +					ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
  1.2824 +					StopTest(err);
  1.2825 +					break;
  1.2826 +					}
  1.2827 +				INFO_PRINTF1(_L("DevSound State: EStateInitializing"));
  1.2828 +				iDevSoundState = EStateInitializing;
  1.2829 +				}
  1.2830 +			else
  1.2831 +				{
  1.2832 +				ERR_PRINTF2(_L("DevSound EEventInitialize not received as expected. Received event: %d"), aDevSoundEvent);
  1.2833 +				StopTest(aError, EFail);
  1.2834 +				}
  1.2835 +			break;
  1.2836 +			}
  1.2837 +		case EStateInitializing:
  1.2838 +			{
  1.2839 +			if(aDevSoundEvent == EEventInitComplete && aError == KErrNone)
  1.2840 +				{
  1.2841 +				INFO_PRINTF1(_L("========== Test Case Successfully Completed =========="));
  1.2842 +				StopTest();
  1.2843 +				}
  1.2844 +			else if(aDevSoundEvent == EEventInitComplete && aError != KErrNone)
  1.2845 +				{
  1.2846 +				ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
  1.2847 +				StopTest(aError);		
  1.2848 +				}
  1.2849 +			else
  1.2850 +				{
  1.2851 +				ERR_PRINTF2(_L("DevSound EEventInitComplete not received as expected. Received event: %d"), aDevSoundEvent);
  1.2852 +				StopTest(aError, EFail);
  1.2853 +				}
  1.2854 +			break;
  1.2855 +			}	
  1.2856 +		default:
  1.2857 +			{
  1.2858 +			ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iDevSoundState);
  1.2859 +			StopTest(aError, EFail);
  1.2860 +			}
  1.2861 +		}
  1.2862 +	}