SetupViewTest.cc 3.36 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
/*=====================================================================
 
 QGroundControl Open Source Ground Control Station
 
 (c) 2009 - 2014 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 
 This file is part of the QGROUNDCONTROL project
 
 QGROUNDCONTROL is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation, either version 3 of the License, or
 (at your option) any later version.
 
 QGROUNDCONTROL is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.
 
 ======================================================================*/

/// @file
///     @author Don Gagne <don@thegagnes.com>

#include "SetupViewTest.h"
#include "MockLink.h"
#include "QGCMessageBox.h"
30
#include "MultiVehicleManager.h"
31

Don Gagne's avatar
Don Gagne committed
32
UT_REGISTER_TEST(SetupViewTest)
33

Don Gagne's avatar
Don Gagne committed
34
SetupViewTest::SetupViewTest(void) :
35
    _mainWindow(NULL)
36 37 38 39 40 41 42 43
{
    
}

void SetupViewTest::init(void)
{
    UnitTest::init();

Lorenz Meier's avatar
Lorenz Meier committed
44
    _mainWindow = MainWindow::_create();
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
    Q_CHECK_PTR(_mainWindow);
}

void SetupViewTest::cleanup(void)
{
    _mainWindow->close();
    delete _mainWindow;
    
    UnitTest::cleanup();
}

void SetupViewTest::_clickThrough_test(void)
{
    LinkManager* linkMgr = LinkManager::instance();
    Q_CHECK_PTR(linkMgr);
    
    MockLink* link = new MockLink();
    Q_CHECK_PTR(link);
63
    link->setFirmwareType(MAV_AUTOPILOT_PX4);
64
    LinkManager::instance()->_addLink(link);
65
    linkMgr->connectLink(link);
66 67
    
    // Wait for the Vehicle to get created
68 69 70 71
    QSignalSpy spyVehicle(MultiVehicleManager::instance(), SIGNAL(parameterReadyVehicleAvailableChanged(bool)));
    QCOMPARE(spyVehicle.wait(5000), true);
    QVERIFY(MultiVehicleManager::instance()->parameterReadyVehicleAvailable());
    QVERIFY(MultiVehicleManager::instance()->activeVehicle());
Don Gagne's avatar
Don Gagne committed
72

73
    AutoPilotPlugin* autopilot = MultiVehicleManager::instance()->activeVehicle()->autopilotPlugin();
Don Gagne's avatar
Don Gagne committed
74 75
    Q_ASSERT(autopilot);
    
76 77 78
    MainWindow* mainWindow = MainWindow::instance();
    Q_ASSERT(mainWindow);

79 80 81 82
    // Switch to the Setup view
    _mainWindow->showSetupView();
    QTest::qWait(1000);
    
83
    // Click through fixed buttons
84
    qDebug() << "Showing firmware";
85
    _mainWindow->showSetupFirmware();
86
    QTest::qWait(1000);
87
    qDebug() << "Showing parameters";
88
    _mainWindow->showSetupParameters();
89
    QTest::qWait(1000);
90
    qDebug() << "Showing summary";
91
    _mainWindow->showSetupSummary();
92
    QTest::qWait(1000);
93
    
94 95
    const QVariantList& components = autopilot->vehicleComponents();
    foreach(QVariant varComponent, components) {
96 97
        VehicleComponent* component = qobject_cast<VehicleComponent*>(qvariant_cast<QObject *>(varComponent));
        qDebug() << "Showing" << component->name();
98
        _mainWindow->showSetupVehicleComponent(component);
Don Gagne's avatar
Don Gagne committed
99
        QTest::qWait(1000);
100 101
    }

102
    // On MainWindow close we should get a message box telling the user to disconnect first.
103 104 105 106 107 108 109
    
    setExpectedMessageBox(QGCMessageBox::Yes);
    
    _mainWindow->close();
    QTest::qWait(1000); // Need to allow signals to move between threads
    checkExpectedMessageBox();
}