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

10
#pragma once
11 12 13 14

#include "UnitTest.h"
#include "TCPLink.h"
#include "MultiSignalSpy.h"
15
#include "SurveyComplexItem.h"
16 17 18

#include <QGeoCoordinate>

19 20
/// Unit test for SurveyComplexItem
class SurveyComplexItemTest : public UnitTest
21 22 23 24
{
    Q_OBJECT
    
public:
25
    SurveyComplexItemTest(void);
26 27 28 29 30 31 32

protected:
    void init(void) final;
    void cleanup(void) final;
    
private slots:
    void _testDirty(void);
33 34
    void _testGridAngle(void);
    void _testEntryLocation(void);
35
    void _testItemCount(void);
36 37

private:
38

39
    double _clampGridAngle180(double gridAngle);
40
    void _setPolygon(void);
41

42 43
    // SurveyComplexItem signals

44
    enum {
45 46 47 48 49 50 51
        surveyVisualTransectPointsChangedIndex = 0,
        surveyCameraShotsChangedIndex,
        surveyCoveredAreaChangedIndex,
        surveyTimeBetweenShotsChangedIndex,
        surveyRefly90DegreesChangedIndex,
        surveyDirtyChangedIndex,
        surveyMaxSignalIndex
52 53 54
    };

    enum {
55 56 57 58 59 60
        surveyVisualTransectPointsChangedMask = 1 << surveyVisualTransectPointsChangedIndex,
        surveyCameraShotsChangedMask =          1 << surveyCameraShotsChangedIndex,
        surveyCoveredAreaChangedMask =          1 << surveyCoveredAreaChangedIndex,
        surveyTimeBetweenShotsChangedMask =     1 << surveyTimeBetweenShotsChangedIndex,
        surveyRefly90DegreesChangedMask =       1 << surveyRefly90DegreesChangedIndex,
        surveyDirtyChangedMask =                1 << surveyDirtyChangedIndex
61 62
    };

63
    static const size_t _cSurveySignals = surveyMaxSignalIndex;
Don Gagne's avatar
Don Gagne committed
64
    const char*         _rgSurveySignals[_cSurveySignals];
65

Don Gagne's avatar
Don Gagne committed
66
    Vehicle*                _offlineVehicle;
67
    MultiSignalSpy*         _multiSpy;
68
    SurveyComplexItem*      _surveyItem;
69
    QGCMapPolygon*          _mapPolygon;
70 71
    QList<QGeoCoordinate>   _polyPoints;
};