mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-21 20:45:51 +03:00
c59ab85e22
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
44 lines
898 B
C++
44 lines
898 B
C++
#ifndef TESTHELPER_H
|
|
#define TESTHELPER_H
|
|
|
|
#include "gui/accountstate.h"
|
|
#include "gui/folder.h"
|
|
#include "creds/httpcredentials.h"
|
|
|
|
class HttpCredentialsTest : public OCC::HttpCredentials
|
|
{
|
|
public:
|
|
HttpCredentialsTest(const QString& user, const QString& password)
|
|
: HttpCredentials(user, password)
|
|
{}
|
|
|
|
void askFromUser() override {
|
|
|
|
}
|
|
};
|
|
|
|
OCC::FolderDefinition folderDefinition(const QString &path);
|
|
|
|
class FakeAccountState : public OCC::AccountState
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit FakeAccountState(OCC::AccountPtr account)
|
|
: OCC::AccountState()
|
|
{
|
|
_account = account;
|
|
_state = Connected;
|
|
}
|
|
|
|
public slots:
|
|
void checkConnectivity() override {};
|
|
|
|
private slots:
|
|
void setState(OCC::AccountState::State state) override { Q_UNUSED(state) };
|
|
};
|
|
|
|
|
|
const QByteArray jsonValueToOccReply(const QJsonValue &jsonValue);
|
|
|
|
#endif // TESTHELPER_H
|