forked from qt-creator/qt-creator
Change-Id: I7134d7de30bcf9f9dcfad42520dd45ee083a852d Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
87 lines
2.6 KiB
C++
87 lines
2.6 KiB
C++
/**************************************************************************
|
|
**
|
|
** This file is part of Qt Creator
|
|
**
|
|
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
|
|
**
|
|
** Contact: http://www.qt-project.org/
|
|
**
|
|
**
|
|
** GNU Lesser General Public License Usage
|
|
**
|
|
** This file may be used under the terms of the GNU Lesser General Public
|
|
** License version 2.1 as published by the Free Software Foundation and
|
|
** appearing in the file LICENSE.LGPL included in the packaging of this file.
|
|
** Please review the following information to ensure the GNU Lesser General
|
|
** Public License version 2.1 requirements will be met:
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
**
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
**
|
|
** Other Usage
|
|
**
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
**
|
|
**
|
|
**************************************************************************/
|
|
|
|
#ifndef REMOTEPROCESSTEST_H
|
|
#define REMOTEPROCESSTEST_H
|
|
|
|
#include <ssh/sshremoteprocessrunner.h>
|
|
|
|
#include <QObject>
|
|
|
|
QT_FORWARD_DECLARE_CLASS(QTextStream)
|
|
QT_FORWARD_DECLARE_CLASS(QTimer)
|
|
|
|
class RemoteProcessTest : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
RemoteProcessTest(const QSsh::SshConnectionParameters ¶ms);
|
|
~RemoteProcessTest();
|
|
void run();
|
|
|
|
private slots:
|
|
void handleConnectionError();
|
|
void handleProcessStarted();
|
|
void handleProcessStdout();
|
|
void handleProcessStderr();
|
|
void handleProcessClosed(int exitStatus);
|
|
void handleTimeout();
|
|
void handleReadyRead();
|
|
void handleReadyReadStdout();
|
|
void handleReadyReadStderr();
|
|
void handleConnected();
|
|
|
|
private:
|
|
enum State {
|
|
Inactive, TestingSuccess, TestingFailure, TestingCrash, TestingTerminal, TestingIoDevice,
|
|
TestingProcessChannels
|
|
};
|
|
|
|
QString testString() const;
|
|
void handleSuccessfulCrashTest();
|
|
void handleSuccessfulIoTest();
|
|
|
|
const QSsh::SshConnectionParameters m_sshParams;
|
|
QTimer * const m_timeoutTimer;
|
|
QTextStream *m_textStream;
|
|
QSsh::SshRemoteProcessRunner * const m_remoteRunner;
|
|
QSsh::SshRemoteProcess::Ptr m_catProcess;
|
|
QSsh::SshRemoteProcess::Ptr m_echoProcess;
|
|
QSsh::SshConnection *m_sshConnection;
|
|
QByteArray m_remoteStdout;
|
|
QByteArray m_remoteStderr;
|
|
QByteArray m_remoteData;
|
|
State m_state;
|
|
bool m_started;
|
|
};
|
|
|
|
|
|
#endif // REMOTEPROCESSTEST_H
|