nextcloud-desktop/test/testfolderstatusmodel.cpp
Matthieu Gallien 9949d0cb20 add test skeleton for OCC::FolderStatusModel
Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
2025-02-12 09:49:09 +01:00

82 lines
2.7 KiB
C++

/*
* Copyright (C) by Matthieu Gallien <matthieu.gallien@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.
*/
#include <QtTest>
#include <QStandardPaths>
#include <QAbstractItemModelTester>
#include "accountstate.h"
#include "folderman.h"
#include "folderstatusmodel.h"
#include "logger.h"
#include "syncenginetestutils.h"
#include "testhelper.h"
using namespace OCC;
using namespace OCC::Utility;
class TestFolderStatusModel : public QObject
{
Q_OBJECT
std::unique_ptr<FolderMan> _folderMan;
public:
private Q_SLOTS:
void initTestCase()
{
Logger::instance()->setLogFlush(true);
Logger::instance()->setLogDebug(true);
QStandardPaths::setTestModeEnabled(true);
_folderMan.reset(new FolderMan{});
}
void startModel()
{
FakeFolder fakeFolder{FileInfo::A12_B12_C12_S12()};
const auto account = fakeFolder.account();
const auto capabilities = QVariantMap {
{QStringLiteral("end-to-end-encryption"), QVariantMap {
{QStringLiteral("enabled"), true},
{QStringLiteral("api-version"), QString::number(2.0)},
}},
};
account->setCapabilities(capabilities);
account->setCredentials(new FakeCredentials{fakeFolder.networkAccessManager()});
account->setUrl(QUrl(("owncloud://somehost/owncloud")));
auto accountState = FakeAccountState(account);
QVERIFY(accountState.isConnected());
auto folderDef = folderDefinition(fakeFolder.localPath());
folderDef.targetPath = "";
const auto folder = FolderMan::instance()->addFolder(&accountState, folderDef);
QVERIFY(folder);
FolderStatusModel test;
test.setAccountState(&accountState);
QSKIP("Initial test implementation is known to be broken");
QAbstractItemModelTester modeltester(&test);
test.fetchMore({});
}
};
QTEST_MAIN(TestFolderStatusModel)
#include "testfolderstatusmodel.moc"