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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
/*
* Copyright (C) 2013-2015 Canonical Ltd.
*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License version 3, as published by
* the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranties of MERCHANTABILITY,
* SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef MOCK_TASK_CONTROLLER_H
#define MOCK_TASK_CONTROLLER_H
#include <QtMir/Application/taskcontroller.h>
#include <QMap>
#include <core/posix/fork.h>
#include <gmock/gmock.h>
namespace qtmir
{
struct MockTaskController : public qtmir::TaskController
{
MockTaskController(std::shared_ptr<miroil::PromptSessionManager> promptSessionManager, QObject *parent = nullptr);
virtual ~MockTaskController();
MOCK_METHOD2(appIdHasProcessId, bool(const QString&, pid_t));
MOCK_CONST_METHOD1(getInfoForApp, QSharedPointer<qtmir::ApplicationInfo> (const QString &));
MOCK_METHOD1(stop, bool(const QString&));
MOCK_METHOD2(start, bool(const QString&, const QStringList&));
MOCK_METHOD1(suspend, bool(const QString&));
MOCK_METHOD1(resume, bool(const QString&));
bool doAppIdHasProcessId(const QString& appId, pid_t pid);
QSharedPointer<qtmir::ApplicationInfo> doGetInfoForApp(const QString& appId) const;
bool doStop(const QString& appId);
bool doStart(const QString& appId, const QStringList& args);
bool doSuspend(const QString& appId);
bool doResume(const QString& appId);
private:
QMap<QString, core::posix::ChildProcess> children;
};
} // namespace qtmir
#endif // MOCK_TASK_CONTROLLER_H
|