TCPLinkTest.h 1.95 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.
 *
 ****************************************************************************/

Don Gagne's avatar
Don Gagne committed
10 11 12 13

#ifndef TCPLINKTEST_H
#define TCPLINKTEST_H

Don Gagne's avatar
Don Gagne committed
14
#include "UnitTest.h"
Don Gagne's avatar
Don Gagne committed
15 16 17 18 19 20 21 22
#include "TCPLink.h"
#include "MultiSignalSpy.h"

/// @file
///     @brief TCPLink class unit test
///
///     @author Don Gagne <don@thegagnes.com>

23
class TCPLinkTest : public UnitTest
Don Gagne's avatar
Don Gagne committed
24 25 26 27
{
    Q_OBJECT

public:
28
    TCPLinkTest(void);
29 30 31 32
    
signals:
    void waitForBytesWritten(int msecs);
    void waitForReadyRead(int msecs);
Don Gagne's avatar
Don Gagne committed
33 34 35 36 37 38 39 40 41 42 43 44 45

private slots:
    void init(void);
    void cleanup(void);
    
    void _connectFail_test(void);
    void _connectSucceed_test(void);
  
private:
    enum {
        bytesReceivedSignalIndex = 0,
        connectedSignalIndex,
        disconnectedSignalIndex,
46
        //nameChangedSignalIndex,
Don Gagne's avatar
Don Gagne committed
47 48
        communicationErrorSignalIndex,
        communicationUpdateSignalIndex,
49
        //deleteLinkSignalIndex,
Don Gagne's avatar
Don Gagne committed
50 51 52 53 54 55 56
        maxSignalIndex
    };
    
    enum {
        bytesReceivedSignalMask =       1 << bytesReceivedSignalIndex,
        connectedSignalMask =           1 << connectedSignalIndex,
        disconnectedSignalMask =        1 << disconnectedSignalIndex,
57
        //nameChangedSignalMask =         1 << nameChangedSignalIndex,
Don Gagne's avatar
Don Gagne committed
58 59
        communicationErrorSignalMask =  1 << communicationErrorSignalIndex,
        communicationUpdateSignalMask = 1 << communicationUpdateSignalIndex,
60
        //deleteLinkSignalMask =          1 << deleteLinkSignalIndex,
Don Gagne's avatar
Don Gagne committed
61 62
    };
    
63 64 65 66 67
    SharedLinkConfigurationPointer  _sharedConfig;
    TCPLink*                        _link;
    MultiSignalSpy*                 _multiSpy;
    static const size_t             _cSignals = maxSignalIndex;
    const char*                     _rgSignals[_cSignals];
Don Gagne's avatar
Don Gagne committed
68 69 70
};

#endif