mirror of
https://github.com/chylex/Nextcloud-Desktop.git
synced 2024-11-13 22:42:46 +01:00
19491ff85f
- When the the users logs because of 401 or 403 errors, it checks if the server requested the remote wipe. If yes, locally deletes account and folders connected to the account and notify the server. If no, proceeds to ask the user to login again. - The app password is restored in the keychain. - WIP: The change also includes a test class for RemoteWipe. Signed-off-by: Camila San <hello@camila.codes>
84 lines
2.2 KiB
C++
84 lines
2.2 KiB
C++
/*
|
|
* This software is in the public domain, furnished "as is", without technical
|
|
* support, and with no warranty, express or implied, as to its usefulness for
|
|
* any purpose.
|
|
*
|
|
*/
|
|
|
|
#include <qglobal.h>
|
|
#include <QTemporaryDir>
|
|
#include <QtTest>
|
|
|
|
#include "remotewipe.h"
|
|
|
|
#include "common/utility.h"
|
|
#include "folderman.h"
|
|
#include "account.h"
|
|
#include "accountstate.h"
|
|
#include "configfile.h"
|
|
|
|
#include "testhelper.h"
|
|
|
|
using namespace OCC;
|
|
|
|
class TestRemoteWipe: public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
private slots:
|
|
// TODO
|
|
void testWipe(){
|
|
// QTemporaryDir dir;
|
|
// ConfigFile::setConfDir(dir.path()); // we don't want to pollute the user's config file
|
|
// QVERIFY(dir.isValid());
|
|
|
|
// QDir dirToRemove(dir.path());
|
|
// QVERIFY(dirToRemove.mkpath("nextcloud"));
|
|
|
|
// QString dirPath = dirToRemove.canonicalPath();
|
|
|
|
// AccountPtr account = Account::create();
|
|
// QVERIFY(account);
|
|
|
|
// auto manager = AccountManager::instance();
|
|
// QVERIFY(manager);
|
|
|
|
// AccountState *newAccountState = manager->addAccount(account);
|
|
// manager->save();
|
|
// QVERIFY(newAccountState);
|
|
|
|
// QUrl url("http://example.de");
|
|
// HttpCredentialsTest *cred = new HttpCredentialsTest("testuser", "secret");
|
|
// account->setCredentials(cred);
|
|
// account->setUrl( url );
|
|
|
|
// FolderMan *folderman = FolderMan::instance();
|
|
// folderman->addFolder(newAccountState, folderDefinition(dirPath + "/sub/nextcloud/"));
|
|
|
|
// // check if account exists
|
|
// qDebug() << "Does account exists?!";
|
|
// QVERIFY(!account->id().isEmpty());
|
|
|
|
// manager->deleteAccount(newAccountState);
|
|
// manager->save();
|
|
|
|
// // check if account exists
|
|
// qDebug() << "Does account exists yet?!";
|
|
// QVERIFY(account);
|
|
|
|
// // check if folder exists
|
|
// QVERIFY(dirToRemove.exists());
|
|
|
|
// // remote folders
|
|
// qDebug() << "Removing folder for account " << newAccountState->account()->url();
|
|
|
|
// folderman->slotWipeFolderForAccount(newAccountState);
|
|
|
|
// // check if folders dont exist anymore
|
|
// QCOMPARE(dirToRemove.exists(), false);
|
|
}
|
|
};
|
|
|
|
QTEST_APPLESS_MAIN(TestRemoteWipe)
|
|
#include "testremotewipe.moc"
|