multimediacommsengine/mmcesrv/mmcemediamanager/tsrc/ut_mediamanager/src/UT_TMCEStartingAnswererStreams.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 25 May 2010 13:07:26 +0300
branchRCL_3
changeset 18 91f50911ea81
parent 0 1bce908db942
permissions -rw-r--r--
Revision: 201019 Kit: 2010121

/*
* Copyright (c) 2006 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:    
*
*/




//  CLASS HEADER
#include "UT_tmcestartinganswererstreams.h"

//  EXTERNAL INCLUDES
#include <digia/eunit/EUnitMacros.h>
#include <sdpdocument.h>
#include "mcemediamanager.h"
#include "mcesdpsession.h"
#include "CMccController_stub.h"
#define RESET()\
    iMcc->Reset();\
    iServer->Reset()
    
#include "mcestartinganswererstreams.h"
#define SETUP()\
    iSession->SetObserver( *iServer );\
    iManager->CreateSessionL( *iSession );\
    delete iSession->iNegotiationState;\
    iSession->iNegotiationState = NULL;\
    TMceStartingAnswererStreams::SetAsCurrentStateL( *iSession );\
    iState = static_cast<TMcePreparingStreams*>( iSession->iNegotiationState )


//  INTERNAL INCLUDES

// CONSTRUCTION
UT_TMceStartingAnswererStreams* UT_TMceStartingAnswererStreams::NewL()
    {
    UT_TMceStartingAnswererStreams* self = UT_TMceStartingAnswererStreams::NewLC(); 
    CleanupStack::Pop();

    return self;
    }

UT_TMceStartingAnswererStreams* UT_TMceStartingAnswererStreams::NewLC()
    {
    UT_TMceStartingAnswererStreams* self = new( ELeave ) UT_TMceStartingAnswererStreams();
    CleanupStack::PushL( self );

	self->ConstructL(); 

    return self;
    }

// Destructor (virtual by CBase)
UT_TMceStartingAnswererStreams::~UT_TMceStartingAnswererStreams()
    {
    }

// Default constructor
UT_TMceStartingAnswererStreams::UT_TMceStartingAnswererStreams()
    {
    }

// Second phase construct
void UT_TMceStartingAnswererStreams::ConstructL()
    {
    // The ConstructL from the base class CEUnitTestSuiteClass must be called.
    // It generates the test case table.
    CEUnitTestSuiteClass::ConstructL();
    }

//  METHODS


void UT_TMceStartingAnswererStreams::SetupL()
    {
	CMccControllerStub::OpenL();
    iMcc = CMccControllerStub::Stub();
    iServer = new (ELeave) CMceServerStub();
    iManager = CMceMediaManager::NewL( *iServer );
    iSdpDocument = CSdpDocument::DecodeL( KMceMMTestSdpAnswerAudioIMS5PrecsSendrecv );
    
    iSession = MceMediaManagerTestHelper::CreateAudioOutSessionL();
    SETUP();
    RESET();
    } 

void UT_TMceStartingAnswererStreams::Teardown()
    {
	delete iSdpDocument;
    iSdpDocument = NULL;
	CMceComSession::Delete( iSession, *iManager );
	delete iManager;
	iManager = NULL;
	delete iServer;
	iServer = NULL;
	CMccControllerStub::Close();
	iMcc = NULL;
    }


void UT_TMceStartingAnswererStreams::UT_TMceStartingAnswererStreams_BasicL()
    { 
    EUNIT_ASSERT( iState->Id() == KMceStartingAnswererStreams );
    EUNIT_ASSERT( iState->CallbackAllowed() );
    
    EUNIT_ASSERT( iState->StackIndex() == 0 );
    iState->Pushed();
    EUNIT_ASSERT( iState->StackIndex() == -1 );
    }

//
// Tests
//
// void EntryL();
//
//
void UT_TMceStartingAnswererStreams::UT_TMceStartingAnswererStreams_EntryLL()
    {
    
    iState->EntryL();
    EUNIT_ASSERT( iMcc->iActions[ 0 ].iAction == CMccControllerStub::ENone );
    
    }

//
// Tests
//
// void StreamsPreparedL();
//
//
void UT_TMceStartingAnswererStreams::UT_TMceStartingAnswererStreams_StreamsPreparedLL()
    {

    EUNIT_ASSERT_LEAVE( iState->StreamsPreparedL() );

    }

//
// Tests
//
// void StreamsStartedL();
//
//
void UT_TMceStartingAnswererStreams::UT_TMceStartingAnswererStreams_StreamsStartedLL()
    {

    iState->StreamsStartedL();
    EUNIT_ASSERT( iSession->NegotiationState().Id() == KMceMediaNegotiated );
    EUNIT_ASSERT( !iSession->NegotiationState().CallbackAllowed() );

    
    }


	
//  TEST TABLE

EUNIT_BEGIN_TEST_TABLE( 
    UT_TMceStartingAnswererStreams,
    "TMceStartingAnswererStreams tests",
    "UNIT" )


EUNIT_TEST(
    "Basic test",
    "TMceStartingAnswererStreams",
    "<basic>",
    "FUNCTIONALITY",
    SetupL, UT_TMceStartingAnswererStreams_BasicL, Teardown)

EUNIT_TEST(
    "EntryL - test",
    "TMceStartingAnswererStreams",
    "EntryL",
    "FUNCTIONALITY",
    SetupL, UT_TMceStartingAnswererStreams_EntryLL, Teardown)

EUNIT_TEST(
    "StreamsPreparedL - test",
    "TMceStartingAnswererStreams",
    "StreamsPreparedL",
    "FUNCTIONALITY",
    SetupL, UT_TMceStartingAnswererStreams_StreamsPreparedLL, Teardown)

EUNIT_TEST(
    "StreamsStartedL - test",
    "TMceStartingAnswererStreams",
    "StreamsStartedL",
    "FUNCTIONALITY",
    SetupL, UT_TMceStartingAnswererStreams_StreamsStartedLL, Teardown)

EUNIT_END_TEST_TABLE

//  END OF FILE