os/mm/mmlibs/mmfw/tsrc/mmfunittest/DevSoundTest/CIPlugins/src/teststepciilbcdecoderconfig.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#include "teststepciilbcdecoderconfig.h"
sl@0
    17
sl@0
    18
sl@0
    19
TVerdict CTestStepCIIlbcDecoderConfig::DoTestStepL()
sl@0
    20
	{
sl@0
    21
	iTestStepResult = ETestSuiteError;
sl@0
    22
sl@0
    23
	INFO_PRINTF1(_L("Initializing test CI device"));
sl@0
    24
sl@0
    25
	if (iTestStepName.Compare(_L("MM-MMF-DEVSOUNDCI-U-0054-HP")) == 0)
sl@0
    26
		{
sl@0
    27
		iTestStepResult = DoTestStep0054L();
sl@0
    28
		}
sl@0
    29
	else if (iTestStepName.Compare(_L("MM-MMF-DEVSOUNDCI-U-0055-HP")) == 0)
sl@0
    30
		{
sl@0
    31
		iTestStepResult = DoTestStep0055L();
sl@0
    32
		}
sl@0
    33
	else if (iTestStepName.Compare(_L("MM-MMF-DEVSOUNDCI-U-0056-HP")) == 0)
sl@0
    34
		{
sl@0
    35
		iTestStepResult = DoTestStep0056L();
sl@0
    36
		}
sl@0
    37
	else if (iTestStepName.Compare(_L("MM-MMF-DEVSOUNDCI-U-0057-HP")) == 0)
sl@0
    38
		{
sl@0
    39
		iTestStepResult = DoTestStep0057L();
sl@0
    40
		}
sl@0
    41
sl@0
    42
	return iTestStepResult;
sl@0
    43
	}
sl@0
    44
sl@0
    45
sl@0
    46
TVerdict CTestStepCIIlbcDecoderConfig::DoTestStep0054L()
sl@0
    47
	{
sl@0
    48
	iTestStepResult = EFail;
sl@0
    49
	
sl@0
    50
	INFO_PRINTF1(_L("IlbcDecoderIntfc - Instantiating"));
sl@0
    51
sl@0
    52
	//Initialize - with the UID of our test HwDevice
sl@0
    53
	#ifndef SYMBIAN_MULTIMEDIA_A3FDEVSOUND
sl@0
    54
	TUid testUID = {KUidIlbcDecoderIntfcTestDevice};
sl@0
    55
	#else
sl@0
    56
	TFourCC testUID('T','0','1','7');
sl@0
    57
	#endif
sl@0
    58
sl@0
    59
	iTestStepResult = TestInitialize(testUID, EMMFStatePlaying);
sl@0
    60
sl@0
    61
	if (iTestStepResult != EPass)
sl@0
    62
		{
sl@0
    63
		INFO_PRINTF1(_L("DevSound failed to instantiate the test device"));
sl@0
    64
		return EInconclusive;
sl@0
    65
		}
sl@0
    66
sl@0
    67
	// reset the value as previous test is pass
sl@0
    68
	iTestStepResult = EFail;  
sl@0
    69
sl@0
    70
	// KUidIlbcDecoderIntfc
sl@0
    71
	MIlbcDecoderIntfc* ptr = static_cast <MIlbcDecoderIntfc*> (iMMFDevSound->CustomInterface(KUidIlbcDecoderIntfc));
sl@0
    72
sl@0
    73
	if (ptr)
sl@0
    74
		{
sl@0
    75
		INFO_PRINTF1(_L("MIlbcDecoderIntfc instantiated successfully"));
sl@0
    76
sl@0
    77
		iTestStepResult = EPass;
sl@0
    78
		}
sl@0
    79
	else
sl@0
    80
		{
sl@0
    81
		ERR_PRINTF1(_L("MIlbcDecoderIntfc failed to retrieve the interface"));
sl@0
    82
		}
sl@0
    83
sl@0
    84
	return iTestStepResult;
sl@0
    85
	}
sl@0
    86
sl@0
    87
sl@0
    88
TVerdict CTestStepCIIlbcDecoderConfig::DoTestStep0055L()
sl@0
    89
	{
sl@0
    90
	iTestStepResult = EFail;
sl@0
    91
	TInt result = KErrGeneral;
sl@0
    92
sl@0
    93
	INFO_PRINTF1(_L("IlbcDecoderIntfc - SetDecoderMode"));
sl@0
    94
sl@0
    95
	//Initialize - with the UID of our test HwDevice
sl@0
    96
	#ifndef SYMBIAN_MULTIMEDIA_A3FDEVSOUND
sl@0
    97
	TUid testUID = {KUidIlbcDecoderIntfcTestDevice};
sl@0
    98
	#else
sl@0
    99
	TFourCC testUID('T','0','1','7');
sl@0
   100
	#endif
sl@0
   101
	
sl@0
   102
	iTestStepResult = TestInitialize(testUID, EMMFStatePlaying);
sl@0
   103
sl@0
   104
	if (iTestStepResult != EPass)
sl@0
   105
		{
sl@0
   106
		INFO_PRINTF1(_L("DevSound failed to instantiate the test device"));
sl@0
   107
		return EInconclusive;
sl@0
   108
		}
sl@0
   109
sl@0
   110
	// reset the value as previous test is pass
sl@0
   111
	iTestStepResult = EFail;  
sl@0
   112
sl@0
   113
	// KUidIlbcDecoderIntfc
sl@0
   114
	MIlbcDecoderIntfc* ptr = static_cast <MIlbcDecoderIntfc*> (iMMFDevSound->CustomInterface(KUidIlbcDecoderIntfc));
sl@0
   115
sl@0
   116
	if (ptr)
sl@0
   117
		{
sl@0
   118
		MIlbcDecoderIntfc::TDecodeMode decodeMode = MIlbcDecoderIntfc::E30msFrame;
sl@0
   119
		TInt setDecodeMode = MIlbcDecoderIntfc::E20msFrame;
sl@0
   120
sl@0
   121
		result = ptr->SetDecoderMode(decodeMode); // call method
sl@0
   122
sl@0
   123
		// This file is created by the test stub, the plugin device
sl@0
   124
		_LIT(KFileName, "c:\\temp\\IlbcDecoderConfig.txt");
sl@0
   125
sl@0
   126
		ReadFileL(KFileName, setDecodeMode);
sl@0
   127
sl@0
   128
		if (result == KErrNone)
sl@0
   129
			{
sl@0
   130
			if (static_cast<MIlbcDecoderIntfc::TDecodeMode>(setDecodeMode) == decodeMode)
sl@0
   131
				{
sl@0
   132
				INFO_PRINTF1(_L("MIlbcDecoderIntfc::SetDecoderMode finished successfully"));
sl@0
   133
sl@0
   134
				iTestStepResult = EPass;
sl@0
   135
				}
sl@0
   136
			else
sl@0
   137
				{
sl@0
   138
				ERR_PRINTF2(_L("MIlbcDecoderIntfc::SetDecoderMode failed with decodeMode %d"), decodeMode);
sl@0
   139
				}
sl@0
   140
			}
sl@0
   141
		else
sl@0
   142
			{
sl@0
   143
			ERR_PRINTF2(_L("MIlbcDecoderIntfc::SetDecoderMode failed with error %d"), result);
sl@0
   144
			}
sl@0
   145
		}
sl@0
   146
	else
sl@0
   147
		{
sl@0
   148
		INFO_PRINTF1(_L("MIlbcDecoderIntfc failed to retrieve the interface"));
sl@0
   149
		iTestStepResult = EInconclusive;
sl@0
   150
		}
sl@0
   151
sl@0
   152
	return iTestStepResult;
sl@0
   153
	}
sl@0
   154
sl@0
   155
sl@0
   156
TVerdict CTestStepCIIlbcDecoderConfig::DoTestStep0056L()
sl@0
   157
	{
sl@0
   158
	iTestStepResult = EFail;
sl@0
   159
	TInt result = KErrGeneral;
sl@0
   160
sl@0
   161
	INFO_PRINTF1(_L("IlbcDecoderIntfc - SetComfortNoiseGeneration"));
sl@0
   162
sl@0
   163
	//Initialize - with the UID of our test HwDevice
sl@0
   164
	#ifndef SYMBIAN_MULTIMEDIA_A3FDEVSOUND
sl@0
   165
	TUid testUID = {KUidIlbcDecoderIntfcTestDevice};
sl@0
   166
	#else
sl@0
   167
	TFourCC testUID('T','0','1','7');
sl@0
   168
	#endif
sl@0
   169
	
sl@0
   170
	iTestStepResult = TestInitialize(testUID, EMMFStatePlaying);
sl@0
   171
sl@0
   172
	if (iTestStepResult != EPass)
sl@0
   173
		{
sl@0
   174
		INFO_PRINTF1(_L("DevSound failed to instantiate the test device"));
sl@0
   175
		return EInconclusive;
sl@0
   176
		}
sl@0
   177
sl@0
   178
	// reset the value as previous test is pass
sl@0
   179
	iTestStepResult = EFail;  
sl@0
   180
sl@0
   181
	// KUidIlbcDecoderIntfc
sl@0
   182
	MIlbcDecoderIntfc* ptr = static_cast <MIlbcDecoderIntfc*> (iMMFDevSound->CustomInterface(KUidIlbcDecoderIntfc));
sl@0
   183
sl@0
   184
	if (ptr)
sl@0
   185
		{
sl@0
   186
		TBool cng = ETrue;
sl@0
   187
sl@0
   188
		result = ptr->SetComfortNoiseGeneration(cng); // call method
sl@0
   189
		
sl@0
   190
		if (result == KErrNone)
sl@0
   191
			{
sl@0
   192
			INFO_PRINTF1(_L("MIlbcDecoderIntfc::SetComfortNoiseGeneration finished successfully"));
sl@0
   193
sl@0
   194
			result = ptr->GetComfortNoiseGeneration(cng);
sl@0
   195
sl@0
   196
			if ( (result == KErrNone) && cng)
sl@0
   197
				{
sl@0
   198
				INFO_PRINTF1(_L("MIlbcDecoderIntfc::GetComfortNoiseGeneration finished successfully"));
sl@0
   199
sl@0
   200
				result = ptr->SetComfortNoiseGeneration(EFalse);
sl@0
   201
sl@0
   202
				if (result == KErrNone)
sl@0
   203
					{
sl@0
   204
					INFO_PRINTF1(_L("MIlbcDecoderIntfc::SetComfortNoiseGeneration finished successfully"));
sl@0
   205
sl@0
   206
					result = ptr->GetComfortNoiseGeneration(cng);
sl@0
   207
sl@0
   208
					if ( (result == KErrNone) && !cng)
sl@0
   209
						{
sl@0
   210
						INFO_PRINTF1(_L("MIlbcDecoderIntfc::GetComfortNoiseGeneration finished successfully"));
sl@0
   211
sl@0
   212
						iTestStepResult = EPass;
sl@0
   213
						}
sl@0
   214
					else
sl@0
   215
						{
sl@0
   216
						ERR_PRINTF3(_L("MIlbcDecoderIntfc::GetComfortNoiseGeneration failed with result %d  cng %d"), result, cng);
sl@0
   217
						}
sl@0
   218
					}
sl@0
   219
				else
sl@0
   220
					{
sl@0
   221
					ERR_PRINTF2(_L("MIlbcDecoderIntfc::SetComfortNoiseGeneration failed with result %d"), result);
sl@0
   222
					}
sl@0
   223
				}
sl@0
   224
			else
sl@0
   225
				{
sl@0
   226
				ERR_PRINTF3(_L("MIlbcDecoderIntfc::GetComfortNoiseGeneration failed with result %d  cng %d"), result, cng);
sl@0
   227
				}
sl@0
   228
			}
sl@0
   229
		else
sl@0
   230
			{
sl@0
   231
			ERR_PRINTF2(_L("MIlbcDecoderIntfc::SetComfortNoiseGeneration failed with result %d"), result);
sl@0
   232
			}
sl@0
   233
		}
sl@0
   234
	else
sl@0
   235
		{
sl@0
   236
		INFO_PRINTF1(_L("MIlbcDecoderIntfc failed to retrieve the interface"));
sl@0
   237
		iTestStepResult = EInconclusive;
sl@0
   238
		}
sl@0
   239
sl@0
   240
	return iTestStepResult;
sl@0
   241
	}
sl@0
   242
sl@0
   243
sl@0
   244
TVerdict CTestStepCIIlbcDecoderConfig::DoTestStep0057L()
sl@0
   245
	{
sl@0
   246
	iTestStepResult = EFail;
sl@0
   247
	TInt result = KErrGeneral;
sl@0
   248
sl@0
   249
	INFO_PRINTF1(_L("IlbcDecoderIntfc - GetComfortNoiseGeneration"));
sl@0
   250
sl@0
   251
	//Initialize - with the UID of our test HwDevice
sl@0
   252
	#ifndef SYMBIAN_MULTIMEDIA_A3FDEVSOUND
sl@0
   253
	TUid testUID = {KUidIlbcDecoderIntfcTestDevice};
sl@0
   254
	#else
sl@0
   255
	TFourCC testUID('T','0','1','7');
sl@0
   256
	#endif
sl@0
   257
	
sl@0
   258
	iTestStepResult = TestInitialize(testUID, EMMFStatePlaying);
sl@0
   259
sl@0
   260
	if (iTestStepResult != EPass)
sl@0
   261
		{
sl@0
   262
		INFO_PRINTF1(_L("DevSound failed to instantiate the test device"));
sl@0
   263
		return EInconclusive;
sl@0
   264
		}
sl@0
   265
sl@0
   266
	// reset the value as previous test is pass
sl@0
   267
	iTestStepResult = EFail;  
sl@0
   268
sl@0
   269
	// KUidIlbcDecoderIntfc
sl@0
   270
	MIlbcDecoderIntfc* ptr = static_cast <MIlbcDecoderIntfc*> (iMMFDevSound->CustomInterface(KUidIlbcDecoderIntfc));
sl@0
   271
sl@0
   272
	if (ptr)
sl@0
   273
		{
sl@0
   274
		TBool cng = ETrue;
sl@0
   275
sl@0
   276
		result = ptr->SetComfortNoiseGeneration(cng); // call method
sl@0
   277
		
sl@0
   278
		if (result == KErrNone)
sl@0
   279
			{
sl@0
   280
			INFO_PRINTF1(_L("MIlbcDecoderIntfc::SetCng finished successfully"));
sl@0
   281
			
sl@0
   282
			result = ptr->GetComfortNoiseGeneration(cng);
sl@0
   283
sl@0
   284
			if ( (result == KErrNone) && cng)
sl@0
   285
				{
sl@0
   286
				INFO_PRINTF1(_L("MIlbcDecoderIntfc::GetComfortNoiseGeneration finished successfully"));
sl@0
   287
				
sl@0
   288
				result = ptr->SetComfortNoiseGeneration(EFalse);
sl@0
   289
				
sl@0
   290
				if (result == KErrNone)
sl@0
   291
					{
sl@0
   292
					INFO_PRINTF1(_L("MIlbcDecoderIntfc::SetComfortNoiseGeneration finished successfully"));
sl@0
   293
					
sl@0
   294
					result = ptr->GetComfortNoiseGeneration(cng);
sl@0
   295
sl@0
   296
					if ( (result == KErrNone) && !cng)
sl@0
   297
						{
sl@0
   298
						INFO_PRINTF1(_L("MIlbcDecoderIntfc::GetComfortNoiseGeneration finished successfully"));
sl@0
   299
						
sl@0
   300
						iTestStepResult = EPass;
sl@0
   301
						}
sl@0
   302
					else
sl@0
   303
						{
sl@0
   304
						ERR_PRINTF3(_L("MIlbcDecoderIntfc::GetComfortNoiseGeneration failed with result %d  cng %d"), result, cng);
sl@0
   305
						}
sl@0
   306
					}
sl@0
   307
				else
sl@0
   308
					{
sl@0
   309
					ERR_PRINTF2(_L("MIlbcDecoderIntfc::SetComfortNoiseGeneration failed with result %d"), result);
sl@0
   310
					}
sl@0
   311
				}
sl@0
   312
			else
sl@0
   313
				{
sl@0
   314
				ERR_PRINTF3(_L("MIlbcDecoderIntfc::GetCng failed with result %d  cng %d"), result, cng);
sl@0
   315
				}
sl@0
   316
			}
sl@0
   317
		else
sl@0
   318
			{
sl@0
   319
			ERR_PRINTF2(_L("MIlbcDecoderIntfc::SetCng failed with result %d"), result);
sl@0
   320
			}
sl@0
   321
		}
sl@0
   322
	else
sl@0
   323
		{
sl@0
   324
		INFO_PRINTF1(_L("MIlbcDecoderIntfc failed to retrieve the interface"));
sl@0
   325
		iTestStepResult = EInconclusive;
sl@0
   326
		}
sl@0
   327
sl@0
   328
	return iTestStepResult;
sl@0
   329
	}