summaryrefslogtreecommitdiffstats
path: root/tests/auto/unit/qmediaplayerwidgets/tst_qmediaplayerwidgets.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2021-01-21 11:17:10 +0100
committerLars Knoll <lars.knoll@qt.io>2021-01-29 08:49:18 +0000
commitf9dabe615d3652d684a674a09f8ebb65268bf680 (patch)
treee9f31f8dad2bf3972c1ed2eb463c737402763038 /tests/auto/unit/qmediaplayerwidgets/tst_qmediaplayerwidgets.cpp
parent20d2999959252929eb2ab106e83f63643d796af8 (diff)
Cleanup mock backend and tests using it.
Change-Id: I2a77c06ba544c918785fb1d60a54f36a320250f9 Reviewed-by: Doris Verria <doris.verria@qt.io> Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'tests/auto/unit/qmediaplayerwidgets/tst_qmediaplayerwidgets.cpp')
-rw-r--r--tests/auto/unit/qmediaplayerwidgets/tst_qmediaplayerwidgets.cpp174
1 files changed, 0 insertions, 174 deletions
diff --git a/tests/auto/unit/qmediaplayerwidgets/tst_qmediaplayerwidgets.cpp b/tests/auto/unit/qmediaplayerwidgets/tst_qmediaplayerwidgets.cpp
deleted file mode 100644
index bb58c1184..000000000
--- a/tests/auto/unit/qmediaplayerwidgets/tst_qmediaplayerwidgets.cpp
+++ /dev/null
@@ -1,174 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:GPL-EXCEPT$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3 as published by the Free Software
-** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-//TESTED_COMPONENT=src/multimedia
-
-#include <QtTest/QtTest>
-#include <QtCore/qdebug.h>
-#include <QtCore/qbuffer.h>
-
-#include <qgraphicsvideoitem.h>
-#include <qabstractvideosurface.h>
-#include <qmediaplayer.h>
-#include <qmediaplayercontrol.h>
-
-#include "mockmediaserviceprovider.h"
-#include "mockmediaplayerservice.h"
-#include "mockvideosurface.h"
-
-QT_USE_NAMESPACE
-
-class tst_QMediaPlayerWidgets: public QObject
-{
- Q_OBJECT
-
-public slots:
- void initTestCase();
- void cleanupTestCase();
- void init();
- void cleanup();
-
-private slots:
- void testSetVideoOutput();
- void testSetVideoOutputNoService();
- void testSetVideoOutputNoControl();
-
-private:
- MockMediaServiceProvider *provider;
- MockMediaPlayerService *mockService;
-};
-
-void tst_QMediaPlayerWidgets::initTestCase()
-{
- provider = new MockMediaServiceProvider;
- QMediaServiceProvider::setDefaultServiceProvider(provider);
-}
-
-void tst_QMediaPlayerWidgets::cleanupTestCase()
-{
- delete provider;
-}
-
-void tst_QMediaPlayerWidgets::init()
-{
- mockService = new MockMediaPlayerService;
- provider->service = mockService;
-}
-
-void tst_QMediaPlayerWidgets::cleanup()
-{
-}
-
-void tst_QMediaPlayerWidgets::testSetVideoOutput()
-{
- QVideoWidget widget;
- QGraphicsVideoItem item;
- MockVideoSurface surface;
-
- QMediaPlayer player;
-
- player.setVideoOutput(&widget);
- QVERIFY(widget.mediaSource() == &player);
-
- player.setVideoOutput(&item);
- QVERIFY(widget.mediaSource() == nullptr);
- QVERIFY(item.mediaSource() == &player);
-
- player.setVideoOutput(reinterpret_cast<QVideoWidget *>(0));
- QVERIFY(item.mediaSource() == nullptr);
-
- player.setVideoOutput(&widget);
- QVERIFY(widget.mediaSource() == &player);
-
- player.setVideoOutput(reinterpret_cast<QGraphicsVideoItem *>(0));
- QVERIFY(widget.mediaSource() == nullptr);
-
- player.setVideoOutput(&surface);
- QVERIFY(mockService->rendererControl->surface() == &surface);
-
- player.setVideoOutput(reinterpret_cast<QAbstractVideoSurface *>(0));
- QVERIFY(mockService->rendererControl->surface() == nullptr);
-
- player.setVideoOutput(&surface);
- QVERIFY(mockService->rendererControl->surface() == &surface);
-
- player.setVideoOutput(&widget);
- QVERIFY(mockService->rendererControl->surface() == nullptr);
- QVERIFY(widget.mediaSource() == &player);
-
- player.setVideoOutput(&surface);
- QVERIFY(mockService->rendererControl->surface() == &surface);
- QVERIFY(widget.mediaSource() == nullptr);
-}
-
-
-void tst_QMediaPlayerWidgets::testSetVideoOutputNoService()
-{
- QVideoWidget widget;
- QGraphicsVideoItem item;
- MockVideoSurface surface;
-
- provider->service = nullptr;
- QMediaPlayer player;
-
- player.setVideoOutput(&widget);
- QVERIFY(widget.mediaSource() == nullptr);
-
- player.setVideoOutput(&item);
- QVERIFY(item.mediaSource() == nullptr);
-
- player.setVideoOutput(&surface);
- // Nothing we can verify here other than it doesn't assert.
-}
-
-void tst_QMediaPlayerWidgets::testSetVideoOutputNoControl()
-{
- QVideoWidget widget;
- QGraphicsVideoItem item;
- MockVideoSurface surface;
-
- MockMediaPlayerService service;
- service.rendererRef = 1;
- service.windowRef = 1;
-
- provider->service = &service;
-
- QMediaPlayer player;
-
- player.setVideoOutput(&widget);
- QVERIFY(widget.mediaSource() == nullptr);
-
- player.setVideoOutput(&item);
- QVERIFY(item.mediaSource() == nullptr);
-
- player.setVideoOutput(&surface);
- QVERIFY(service.rendererControl->surface() == nullptr);
-}
-
-QTEST_MAIN(tst_QMediaPlayerWidgets)
-#include "tst_qmediaplayerwidgets.moc"