mmlibs/mmfw/tsrc/mmfunittest/aclnt/TSU_MMF_ACLNT_01/TestStepTonePrepareToPlayDescSeq.cpp
author hgs
Thu, 07 Oct 2010 22:34:12 +0100
changeset 0 b8ed18f6c07b
permissions -rw-r--r--
2010wk40

// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
// This file contains an example Test step implementation 
// This demonstrates the various functions provided
// by the CTestStep base class which are available within
// a test step 
// 
//

// EPOC includes
#include <e32base.h>
#include <e32test.h>
#include <e32keys.h>
#include <c32comm.h>
#include <f32file.h>
#include <etel.h>
#include <etelmm.h>
#include <testframework.h>

#include <mdaaudiotoneplayer.h>

// Test system includes
#include <testframework.h>

// Specific includes for this test suite
#include "TestStepUnitMMFAudClient.h"
#include "TestSuiteUnitMMFAudClient.h"

// Specific includes for these test steps
#include "TestStepTone.h"

#include "toneTest.h"

//#include <mmfaudiocontroller.h>
#include "mmfclienttoneplayer.h"
//#include "MmfClientAudioPlayer.h"
//#include <mmffourcc.h>
//#include <mmfpaniccodes.h>
//#include <mmfFormatImplementationUIDs.hrh>
// --------------------------------------------

/**
 *
 * Static constructor for CTestStepTonePrepareToPlayDescSeq.
 *
 *
 * @return	"CTestStepTonePrepareToPlayDescSeq*"
 *			The constructed CTestStepTonePrepareToPlayDescSeq
 *
 * @xxxx
 * 
 */
CTestStepTonePrepareToPlayDescSeq* CTestStepTonePrepareToPlayDescSeq::NewL()
	{
	CTestStepTonePrepareToPlayDescSeq* self = new(ELeave) CTestStepTonePrepareToPlayDescSeq;
	return self;
	}

/**
 *
 * Test step constructor.
 * Each test step initialises its own name.
 *
 * @xxxx
 * 
 */
CTestStepTonePrepareToPlayDescSeq::CTestStepTonePrepareToPlayDescSeq() : iError(KErrNone)
	{
	// store the name of this test case
	// this is the name that is used by the script file
	iTestStepName = _L("MM-MMF-ACLNT-U-0456-CP");
	
	// need a bigger heap size on EKA2 HW
#if !defined __WINS__
	iHeapSize = KHeapSizeToneTestEKA2;
#endif // EKA2
	}

/**
 *
 * Test step destructor.
 *
 * @xxxx
 * 
 */
CTestStepTonePrepareToPlayDescSeq::~CTestStepTonePrepareToPlayDescSeq()
	{
	}

void CTestStepTonePrepareToPlayDescSeq::MatoPrepareComplete(TInt aError)
	{
	iError = aError;
	CActiveScheduler::Stop();
	}

void CTestStepTonePrepareToPlayDescSeq::MatoPlayComplete(TInt aError)
	{
	iError = aError;
	CActiveScheduler::Stop();
	}

/**
 *
 * Test step Preamble.
 *
 * @xxxx
 * 
 */
enum TVerdict CTestStepTonePrepareToPlayDescSeq::DoTestStepPreambleL(void)
	{
    TInt err       = KErrNone;
	enum TVerdict verdict;
	// this installs the scheduler
	verdict = CTestStepUnitMMFAudClient::DoTestStepPreambleL();

	// Printing to the console and log file
	INFO_PRINTF1(_L("MM-MMF-ACLNT-U-0456-CP"));
	INFO_PRINTF1(_L("this is a test of CMdaAudioToneUtility::PrepareToPlayDesSequence() "));

	// get the file with the DTMF string
	if(!GetStringFromConfig(_L("SectionOne"), _L("DTMFStringFName1"), iFileName))
		{
		//INFO_PRINTF2(_L("file name %s not found..."), fileptr);
		return EInconclusive;
		}

	// create the Tone utility
	TRAP( err, (iTone = CMMFMdaAudioToneUtility::NewL(*this)) );
	if ( err != KErrNone ||
		 iTone->State() != EMdaAudioToneUtilityNotReady	)
		verdict = EInconclusive;

	return verdict;

	}

/**
 *
 * Test step Postamble.
 *
 * @xxxx
 * 
 */
enum TVerdict CTestStepTonePrepareToPlayDescSeq::DoTestStepPostambleL(void)
	{
	delete iTone;
	iTone = NULL;
	//[ Destroy the scheduler ]
	return CTestStepUnitMMFAudClient::DoTestStepPostambleL();
	}

	/**
 *
 * Do the test step.
 * Each test step must supply an implementation for DoTestStepL.
 *
 * @return	"TVerdict"
 *			The result of the test step
 *
 * @xxxx
 * 
 */
TVerdict CTestStepTonePrepareToPlayDescSeq::DoTestStepL()
	{
	iTestStepResult = EPass;

	//_LIT8(KDTMFStr1, "AB,C, DE, FG"); 
	//_LIT8(KDTMFStr2, "A5774 6788* #A *d GHET"); //HIJKLMNOPQRSTUVWXYZ");
	//_LIT8(KDTMFStrInvalid, "123   <>?$%&$%^&");
	
	iTone->PrepareToPlayDesSequence(KFixedSequenceData);
	CActiveScheduler::Start();

	TInt err1 = KErrNone;
	TInt type = 0;
	err1 = GetAudToneType(iTone, type);
	if (err1 != KErrNone ||
		type != CMMFToneConfig::EMmfToneTypeDesSeq  ||
		iError != KErrNone ||
		iTone->State() != EMdaAudioToneUtilityPrepared)
		return EFail;

	iTone->Play(); 
	CActiveScheduler::Start();

	if (iError != KErrNone	)
		return EFail;
	
	iTone->CancelPrepare();
	if (iTone->State() != EMdaAudioToneUtilityNotReady	)
		return EInconclusive;
	//repeat
	iTone->PrepareToPlayDesSequence(KFixedSequenceData);
	CActiveScheduler::Start();

	err1 = GetAudToneType(iTone, type);
	if (err1 != KErrNone ||
		type != CMMFToneConfig::EMmfToneTypeDesSeq  ||
		iError != KErrNone ||
		iTone->State() != EMdaAudioToneUtilityPrepared)
		return EFail;

	iTone->Play(); 
	CActiveScheduler::Start();
	if (iError != KErrNone	)
		return EFail;
	
	INFO_PRINTF1(_L("finished with this test step"));
	// test steps return a result
	return iTestStepResult;
	}