videoplayback/hbvideoplaybackview/tsrc/testmpxvideoplaybackdocumentloader/src/testmpxvideoplaybackdocumentloader.cpp
changeset 34 bbb98528c666
child 35 3738fe97f027
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/videoplayback/hbvideoplaybackview/tsrc/testmpxvideoplaybackdocumentloader/src/testmpxvideoplaybackdocumentloader.cpp	Thu Apr 01 23:22:15 2010 +0300
@@ -0,0 +1,120 @@
+/**
+* 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 TestMPXVideoPlaybackDocumentLoader
+* 
+*/
+
+// Version : %version:  1 %
+
+
+#include <qdebug>
+#include <qobject>
+
+#include <hbmainwindow.h>
+#include <hbapplication.h>
+
+#include "mpxvideo_debug.h"
+#include "mpxvideoplaybackcontrolscontroller.h"
+#include "testmpxvideoplaybackdocumentloader.h"
+
+#define private public
+#include "mpxvideoplaybackdocumentloader.h"
+#undef private
+
+// ---------------------------------------------------------------------------
+// main
+// ---------------------------------------------------------------------------
+//
+int main(int argc, char *argv[])
+{
+    MPX_ENTER_EXIT(_L("TestMPXVideoPlaybackDocumentLoader::Main()"));
+
+    HbApplication app(argc, argv);
+    HbMainWindow window;
+
+    TestMPXVideoPlaybackDocumentLoader tv;
+
+    char *pass[3];
+    pass[0] = argv[0];
+    pass[1] = "-o";
+    pass[2] = "c:\\data\\testmpxvideoplaybackdocumentloader.txt";
+    
+    int res = QTest::qExec(&tv, 3, pass);
+    
+    return res;
+}
+
+
+// ---------------------------------------------------------------------------
+// init
+// ---------------------------------------------------------------------------
+//
+void TestMPXVideoPlaybackDocumentLoader::init()
+{
+    MPX_ENTER_EXIT(_L("TestMPXVideoPlaybackDocumentLoader::init()"));
+
+    mController = new QMPXVideoPlaybackControlsController();
+    mLoader = new QMPXVideoPlaybackDocumentLoader( mController );
+}
+
+// ---------------------------------------------------------------------------
+// cleanup
+// ---------------------------------------------------------------------------
+//
+void TestMPXVideoPlaybackDocumentLoader::cleanup()
+{
+    MPX_ENTER_EXIT(_L("TestMPXVideoPlaybackDocumentLoader::cleanup()"));
+
+    if ( mLoader )
+    {
+        delete mLoader;
+        mLoader = NULL;
+    }
+
+    if ( mController )
+    {
+        delete mController;
+        mController = NULL;
+    }
+}
+
+// ---------------------------------------------------------------------------
+// testCreateObject
+// ---------------------------------------------------------------------------
+//
+void TestMPXVideoPlaybackDocumentLoader::testCreateObject()
+{
+    MPX_ENTER_EXIT(_L("TestMPXVideoPlaybackDocumentLoader::testCreateObject()"));
+
+    init();
+
+    QObject *object = mLoader->createObject( "", "buttonBarLayout" );
+    QVERIFY( object->objectName() == "buttonBarLayout" );
+
+    object = mLoader->createObject( "", "progressBarLayout" );
+    QVERIFY( object->objectName() == "progressBarLayout" );
+
+    object = mLoader->createObject( "", "fileDetailsLayout" );
+    QVERIFY( object->objectName() == "fileDetailsLayout" );
+
+    object = mLoader->createObject( "", "volumeSlider" );
+    QVERIFY( object->objectName() == "volumeSlider" );
+
+    object = mLoader->createObject( "", "detailsPlaybackWindow" );
+    QVERIFY( object->objectName() == "detailsPlaybackWindow" );
+
+    cleanup();
+}
+
+// End of file