SetupViewTest.cc 2.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 34 35

void SetupViewTest::_clickThrough_test(void)
{
36
    _connectMockLink();
37
    
38
    AutoPilotPlugin* autopilot = qgcApp()->toolbox()->multiVehicleManager()->activeVehicle()->autopilotPlugin();
Don Gagne's avatar
Don Gagne committed
39
    Q_ASSERT(autopilot);
40 41

    _createMainWindow();
42

43 44 45 46
    // Switch to the Setup view
    _mainWindow->showSetupView();
    QTest::qWait(1000);
    
47
    // Click through fixed buttons
48
    qDebug() << "Showing firmware";
49
    _mainWindow->showSetupFirmware();
50
    QTest::qWait(1000);
51
    qDebug() << "Showing parameters";
52
    _mainWindow->showSetupParameters();
53
    QTest::qWait(1000);
54
    qDebug() << "Showing summary";
55
    _mainWindow->showSetupSummary();
56
    QTest::qWait(1000);
57
    
58 59
    const QVariantList& components = autopilot->vehicleComponents();
    foreach(QVariant varComponent, components) {
60 61
        VehicleComponent* component = qobject_cast<VehicleComponent*>(qvariant_cast<QObject *>(varComponent));
        qDebug() << "Showing" << component->name();
62
        _mainWindow->showSetupVehicleComponent(component);
Don Gagne's avatar
Don Gagne committed
63
        QTest::qWait(1000);
64 65
    }

66
    // On MainWindow close we should get a message box telling the user to disconnect first.
67 68 69
    
    setExpectedMessageBox(QGCMessageBox::Yes);
    
70
    _closeMainWindow();
71 72
    checkExpectedMessageBox();
}