videoplayback/hbvideoplaybackview/tsrc/testdetailsplaybackwindow/src/testdetailsplaybackwindow.cpp
author hgs
Fri, 16 Apr 2010 18:13:14 +0300
changeset 36 8aed59de29f9
child 20 b9e04db066d4
permissions -rw-r--r--
201015

/**
* Copyright (c) 2010 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:   tester for methods in TestDetailsPlaybackWindow
* 
*/

// Version : %version:  3 %


#include <qdebug>
#include <qgraphicsscenemouseevent>

#include <hbmainwindow.h>
#include <hbapplication.h>

#include "hbpushbutton.h"
#include "mpxvideoplaybackviewfiledetails.h"
#include "mpxvideoplaybackcontrolscontroller.h"
#include "testdetailsplaybackwindow.h"


#define private public
#include "mpxvideoplaybackdetailsplaybackwindow.h"
#undef private

// ---------------------------------------------------------------------------
// main
// ---------------------------------------------------------------------------
//
int main(int argc, char *argv[])
{
    MPX_ENTER_EXIT(_L("TestDetailsPlaybackWindow::Main()"));

    HbApplication app(argc, argv);
    HbMainWindow window;

    TestDetailsPlaybackWindow tv;

    char *pass[3];
    pass[0] = argv[0];
    pass[1] = "-o";
    pass[2] = "c:\\data\\testdetailsplaybackwindow.txt";
    
    int res = QTest::qExec(&tv, 3, pass);
    
    return res;
}

// ---------------------------------------------------------------------------
// init
// ---------------------------------------------------------------------------
//
void TestDetailsPlaybackWindow::init( bool attachOperation )
{
    MPX_ENTER_EXIT(_L("TestDetailsPlaybackWindow::init()"));

    mController = new QMPXVideoPlaybackControlsController( attachOperation );   
    mWindow = new QMPXVideoPlaybackDetailsPlaybackWindow( mController );

    mWindow->initialize();
}

// ---------------------------------------------------------------------------
// cleanup
// ---------------------------------------------------------------------------
//
void TestDetailsPlaybackWindow::cleanup()
{
    MPX_ENTER_EXIT(_L("TestDetailsPlaybackWindow::cleanup()"));

    if ( mController )
    {
        delete mController;
        mController = NULL;
    }

    if ( mWindow )
    {
        delete mWindow;
        mWindow = NULL;
    }
}

// ---------------------------------------------------------------------------
// testUpdateState
// ---------------------------------------------------------------------------
//
void TestDetailsPlaybackWindow::testUpdateState()
{
    MPX_ENTER_EXIT(
            _L("TestDetailsPlaybackWindow::testUpdateState()"));

    init();

    TMPXPlaybackState state = EPbStatePlaying;
    mWindow->updateState( state );
    QVERIFY( mWindow->mPlayButton->isVisible() == false );
    
    state = EPbStatePaused;
    mWindow->updateState( state );
    QVERIFY( mWindow->mPlayButton->isVisible() == true );

    cleanup();
}

// ---------------------------------------------------------------------------
// testMousePressEvent
// ---------------------------------------------------------------------------
//
void TestDetailsPlaybackWindow::testMousePressEvent()
{
    MPX_ENTER_EXIT(
            _L("TestDetailsPlaybackWindow::testMousePressEvent()"));

    init();

    QGraphicsSceneMouseEvent* event = 
            new QGraphicsSceneMouseEvent( QEvent::GraphicsSceneMousePress );
    event->setAccepted( false );

    mWindow->mousePressEvent( event );

    QVERIFY( event->isAccepted() );

    cleanup();
}

// ---------------------------------------------------------------------------
// testMouseReleaseEvent
// ---------------------------------------------------------------------------
//
void TestDetailsPlaybackWindow::testMouseReleaseEvent()
{
    MPX_ENTER_EXIT(
            _L("TestDetailsPlaybackWindow::testMouseReleaseEvent()"));

    init();

    QGraphicsSceneMouseEvent* event = 
            new QGraphicsSceneMouseEvent( QEvent::GraphicsSceneMouseRelease );

    mWindow->mouseReleaseEvent( event );
    QVERIFY( mController->mCommand == EMPXPbvCmdPlayPause );

    delete event;
    event = NULL;

    cleanup();
}

// ---------------------------------------------------------------------------
// testPlayPause
// ---------------------------------------------------------------------------
//
void TestDetailsPlaybackWindow::testPlayPause()
{
    MPX_ENTER_EXIT(
            _L("TestDetailsPlaybackWindow::testPlayPause()"));

    init();

    mWindow->mPlayButton->release();
    QVERIFY( mController->mCommand == EMPXPbvCmdPlayPause );

    cleanup();
}

// ---------------------------------------------------------------------------
// testAttach
// ---------------------------------------------------------------------------
//
void TestDetailsPlaybackWindow::testAttach()
{
    MPX_ENTER_EXIT(
            _L("TestDetailsPlaybackWindow::testAttach()"));

    //
    // test when 'attach' operation is enabled
    //
    init( true );
    
    //
    // connect signal/slot
    //
    connect( this, SIGNAL( commandSignal() ), mController, SLOT( attachVideo() ) );
    
    //
    // emit signal
    //
    emit commandSignal();     
    
    //
    // verify the controller attachVideo() slot has been called
    //
    QVERIFY( mController->mCommand == EMPXPbvCmdClose );
    QVERIFY( mController->mAttachVideoDone == true );

    //
    // disconnect signal/slot
    //
    disconnect( this, SIGNAL( commandSignal() ), mController, SLOT( attachVideo() ) );

    //
    // clean up
    //
    cleanup();
        
}


// End of file