1
0
mirror of https://github.com/chylex/Nextcloud-Desktop.git synced 2024-10-25 21:42:48 +02:00
Nextcloud-Desktop/test/pushnotificationstestutils.h
Felix Weilbach 38d7e1e98f
Add push notifications for file changes
Resolves #2802

Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
2021-01-25 18:25:55 +01:00

74 lines
1.9 KiB
C++

/*
* Copyright (C) by Felix Weilbach <felix.weilbach@nextcloud.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
#pragma once
#include <functional>
#include <QWebSocketServer>
#include <QWebSocket>
#include "creds/abstractcredentials.h"
#include "account.h"
class FakeWebSocketServer : public QObject
{
Q_OBJECT
public:
explicit FakeWebSocketServer(quint16 port = 12345, QObject *parent = nullptr);
~FakeWebSocketServer();
void close();
static OCC::AccountPtr createAccount();
signals:
void closed();
void processTextMessage(QWebSocket *sender, const QString &message);
private slots:
void processTextMessageInternal(const QString &message);
void onNewConnection();
void socketDisconnected();
private:
QWebSocketServer *_webSocketServer;
QList<QWebSocket *> _clients;
};
class CredentialsStub : public OCC::AbstractCredentials
{
Q_OBJECT
public:
CredentialsStub(const QString &user, const QString &password);
virtual QString authType() const;
virtual QString user() const;
virtual QString password() const;
virtual QNetworkAccessManager *createQNAM() const;
virtual bool ready() const;
virtual void fetchFromKeychain();
virtual void askFromUser();
virtual bool stillValid(QNetworkReply *reply);
virtual void persist();
virtual void invalidateToken();
virtual void forgetSensitiveData();
private:
QString _user;
QString _password;
};