MissionItemTest.h 1.41 KB
Newer Older
1 2
/****************************************************************************
 *
3
 * (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
4 5 6 7 8 9
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

10
#pragma once
Don Gagne's avatar
Don Gagne committed
11 12 13

#include "UnitTest.h"
#include "MultiSignalSpy.h"
14
#include "MissionItem.h"
Don Gagne's avatar
Don Gagne committed
15
#include "Vehicle.h"
16
#include "PlanMasterController.h"
Don Gagne's avatar
Don Gagne committed
17

18
/// Unit test for the MissionItem Object
Don Gagne's avatar
Don Gagne committed
19 20 21 22 23 24 25
class MissionItemTest : public UnitTest
{
    Q_OBJECT
    
public:
    MissionItemTest(void);
    
Don Gagne's avatar
Don Gagne committed
26 27 28
    void init(void) override;
    void cleanup(void) override;

Don Gagne's avatar
Don Gagne committed
29
private slots:
30 31 32 33
    void _testSetGet(void);
    void _testSignals(void);
    void _testFactSignals(void);
    void _testLoadFromStream(void);
34
    void _testSimpleLoadFromStream(void);
Don Gagne's avatar
Don Gagne committed
35 36
    void _testLoadFromJsonV1(void);
    void _testLoadFromJsonV2(void);
37 38
    void _testLoadFromJsonV3(void);
    void _testLoadFromJsonV3NaN(void);
39
    void _testSimpleLoadFromJson(void);
40
    void _testSaveToJson(void);
41 42

private:
43 44 45 46
    void _checkExpectedMissionItem(const MissionItem& missionItem, bool allNaNs = false);
    QJsonObject _createV1Json(void);
    QJsonObject _createV2Json(void);
    QJsonObject _createV3Json(bool allNaNs = false);
Don Gagne's avatar
Don Gagne committed
47

48 49
    int                     _seq = 10;
    PlanMasterController*   _masterController = nullptr;
Don Gagne's avatar
Don Gagne committed
50
};