/**************************************************************************** ** ** Copyright (C) 2015 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** ** This file is part of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL21$ ** 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 http://www.qt.io/terms-conditions. For further ** information use the contact form at http://www.qt.io/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 or version 3 as published by the Free ** Software Foundation and appearing in the file LICENSE.LGPLv21 and ** LICENSE.LGPLv3 included in the packaging of this file. Please review the ** following information to ensure the GNU Lesser General Public License ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** As a special exception, The Qt Company gives you certain additional ** rights. These rights are described in The Qt Company LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include #include #include #include #include "mockcameraservice.h" #include "mockmediaserviceprovider.h" QT_USE_NAMESPACE class tst_QCameraInfo: public QObject { Q_OBJECT public slots: void initTestCase(); void init(); void cleanup(); private slots: void constructor(); void defaultCamera(); void availableCameras(); void equality_operators(); private: MockSimpleCameraService *mockSimpleCameraService; MockCameraService *mockCameraService; MockMediaServiceProvider *provider; }; void tst_QCameraInfo::initTestCase() { } void tst_QCameraInfo::init() { provider = new MockMediaServiceProvider; mockSimpleCameraService = new MockSimpleCameraService; mockCameraService = new MockCameraService; provider->service = mockCameraService; QMediaServiceProvider::setDefaultServiceProvider(provider); } void tst_QCameraInfo::cleanup() { delete provider; delete mockCameraService; delete mockSimpleCameraService; } void tst_QCameraInfo::constructor() { // Service doesn't implement QVideoDeviceSelectorControl // QCameraInfo should not be valid in this case provider->service = mockSimpleCameraService; { QCamera camera; QCameraInfo info(camera); QVERIFY(info.isNull()); QVERIFY(info.deviceName().isEmpty()); QVERIFY(info.description().isEmpty()); QCOMPARE(info.position(), QCamera::UnspecifiedPosition); QCOMPARE(info.orientation(), 0); } // Service implements QVideoDeviceSelectorControl provider->service = mockCameraService; { // default camera QCamera camera; QCameraInfo info(camera); QVERIFY(!info.isNull()); QCOMPARE(info.deviceName(), QStringLiteral("othercamera")); QCOMPARE(info.description(), QStringLiteral("othercamera desc")); QCOMPARE(info.position(), QCamera::UnspecifiedPosition); QCOMPARE(info.orientation(), 0); } QCamera camera("backcamera"); QCameraInfo info(camera); QVERIFY(!info.isNull()); QCOMPARE(info.deviceName(), QStringLiteral("backcamera")); QCOMPARE(info.description(), QStringLiteral("backcamera desc")); QCOMPARE(info.position(), QCamera::BackFace); QCOMPARE(info.orientation(), 90); QCameraInfo info2(info); QVERIFY(!info2.isNull()); QCOMPARE(info2.deviceName(), QStringLiteral("backcamera")); QCOMPARE(info2.description(), QStringLiteral("backcamera desc")); QCOMPARE(info2.position(), QCamera::BackFace); QCOMPARE(info2.orientation(), 90); } void tst_QCameraInfo::defaultCamera() { provider->service = mockCameraService; QCameraInfo info = QCameraInfo::defaultCamera(); QVERIFY(!info.isNull()); QCOMPARE(info.deviceName(), QStringLiteral("othercamera")); QCOMPARE(info.description(), QStringLiteral("othercamera desc")); QCOMPARE(info.position(), QCamera::UnspecifiedPosition); QCOMPARE(info.orientation(), 0); QCamera camera(info); QCOMPARE(QCameraInfo(camera), info); } void tst_QCameraInfo::availableCameras() { provider->service = mockCameraService; QList cameras = QCameraInfo::availableCameras(); QCOMPARE(cameras.count(), 2); QCameraInfo info = cameras.at(0); QVERIFY(!info.isNull()); QCOMPARE(info.deviceName(), QStringLiteral("backcamera")); QCOMPARE(info.description(), QStringLiteral("backcamera desc")); QCOMPARE(info.position(), QCamera::BackFace); QCOMPARE(info.orientation(), 90); info = cameras.at(1); QVERIFY(!info.isNull()); QCOMPARE(info.deviceName(), QStringLiteral("othercamera")); QCOMPARE(info.description(), QStringLiteral("othercamera desc")); QCOMPARE(info.position(), QCamera::UnspecifiedPosition); QCOMPARE(info.orientation(), 0); cameras = QCameraInfo::availableCameras(QCamera::BackFace); QCOMPARE(cameras.count(), 1); info = cameras.at(0); QVERIFY(!info.isNull()); QCOMPARE(info.deviceName(), QStringLiteral("backcamera")); QCOMPARE(info.description(), QStringLiteral("backcamera desc")); QCOMPARE(info.position(), QCamera::BackFace); QCOMPARE(info.orientation(), 90); cameras = QCameraInfo::availableCameras(QCamera::FrontFace); QCOMPARE(cameras.count(), 0); } void tst_QCameraInfo::equality_operators() { provider->service = mockCameraService; QCameraInfo defaultCamera = QCameraInfo::defaultCamera(); QList cameras = QCameraInfo::availableCameras(); QVERIFY(defaultCamera == cameras.at(1)); QVERIFY(defaultCamera != cameras.at(0)); QVERIFY(cameras.at(0) != cameras.at(1)); { QCamera camera(defaultCamera); QVERIFY(QCameraInfo(camera) == defaultCamera); QVERIFY(QCameraInfo(camera) == cameras.at(1)); } { QCamera camera(cameras.at(0)); QVERIFY(QCameraInfo(camera) == cameras.at(0)); } } QTEST_MAIN(tst_QCameraInfo) #include "tst_qcamerainfo.moc"