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 61 62 63 64 65 66 67 68 69 70 71 72
|
/*
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#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 = new 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"
|