2016-08-04 15:59:46 +03:00
|
|
|
/*
|
|
|
|
* 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 <QtTest>
|
|
|
|
#include "syncenginetestutils.h"
|
2016-10-10 17:55:31 +03:00
|
|
|
#include <syncengine.h>
|
2016-08-04 15:59:46 +03:00
|
|
|
|
|
|
|
using namespace OCC;
|
|
|
|
|
|
|
|
bool itemDidComplete(const QSignalSpy &spy, const QString &path)
|
|
|
|
{
|
|
|
|
for(const QList<QVariant> &args : spy) {
|
2017-01-25 13:12:38 +03:00
|
|
|
auto item = args[0].value<SyncFileItemPtr>();
|
|
|
|
if (item->destination() == path)
|
2016-08-04 15:59:46 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool itemDidCompleteSuccessfully(const QSignalSpy &spy, const QString &path)
|
|
|
|
{
|
|
|
|
for(const QList<QVariant> &args : spy) {
|
2017-01-25 13:12:38 +03:00
|
|
|
auto item = args[0].value<SyncFileItemPtr>();
|
|
|
|
if (item->destination() == path)
|
|
|
|
return item->_status == SyncFileItem::Success;
|
2016-08-04 15:59:46 +03:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
class TestSyncEngine : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void testFileDownload() {
|
|
|
|
FakeFolder fakeFolder{FileInfo::A12_B12_C12_S12()};
|
2017-01-25 13:12:38 +03:00
|
|
|
QSignalSpy completeSpy(&fakeFolder.syncEngine(), SIGNAL(itemCompleted(const SyncFileItemPtr &)));
|
2016-08-04 15:59:46 +03:00
|
|
|
fakeFolder.remoteModifier().insert("A/a0");
|
|
|
|
fakeFolder.syncOnce();
|
|
|
|
QVERIFY(itemDidCompleteSuccessfully(completeSpy, "A/a0"));
|
|
|
|
QCOMPARE(fakeFolder.currentLocalState(), fakeFolder.currentRemoteState());
|
|
|
|
}
|
|
|
|
|
|
|
|
void testFileUpload() {
|
|
|
|
FakeFolder fakeFolder{FileInfo::A12_B12_C12_S12()};
|
2017-01-25 13:12:38 +03:00
|
|
|
QSignalSpy completeSpy(&fakeFolder.syncEngine(), SIGNAL(itemCompleted(const SyncFileItemPtr &)));
|
2016-08-04 15:59:46 +03:00
|
|
|
fakeFolder.localModifier().insert("A/a0");
|
|
|
|
fakeFolder.syncOnce();
|
|
|
|
QVERIFY(itemDidCompleteSuccessfully(completeSpy, "A/a0"));
|
|
|
|
QCOMPARE(fakeFolder.currentLocalState(), fakeFolder.currentRemoteState());
|
|
|
|
}
|
|
|
|
|
|
|
|
void testDirDownload() {
|
|
|
|
FakeFolder fakeFolder{FileInfo::A12_B12_C12_S12()};
|
2017-01-25 13:12:38 +03:00
|
|
|
QSignalSpy completeSpy(&fakeFolder.syncEngine(), SIGNAL(itemCompleted(const SyncFileItemPtr &)));
|
2016-08-04 15:59:46 +03:00
|
|
|
fakeFolder.remoteModifier().mkdir("Y");
|
|
|
|
fakeFolder.remoteModifier().mkdir("Z");
|
|
|
|
fakeFolder.remoteModifier().insert("Z/d0");
|
|
|
|
fakeFolder.syncOnce();
|
|
|
|
QVERIFY(itemDidCompleteSuccessfully(completeSpy, "Y"));
|
|
|
|
QVERIFY(itemDidCompleteSuccessfully(completeSpy, "Z"));
|
|
|
|
QVERIFY(itemDidCompleteSuccessfully(completeSpy, "Z/d0"));
|
|
|
|
QCOMPARE(fakeFolder.currentLocalState(), fakeFolder.currentRemoteState());
|
|
|
|
}
|
|
|
|
|
|
|
|
void testDirUpload() {
|
|
|
|
FakeFolder fakeFolder{FileInfo::A12_B12_C12_S12()};
|
2017-01-25 13:12:38 +03:00
|
|
|
QSignalSpy completeSpy(&fakeFolder.syncEngine(), SIGNAL(itemCompleted(const SyncFileItemPtr &)));
|
2016-08-04 15:59:46 +03:00
|
|
|
fakeFolder.localModifier().mkdir("Y");
|
|
|
|
fakeFolder.localModifier().mkdir("Z");
|
|
|
|
fakeFolder.localModifier().insert("Z/d0");
|
|
|
|
fakeFolder.syncOnce();
|
|
|
|
QVERIFY(itemDidCompleteSuccessfully(completeSpy, "Y"));
|
|
|
|
QVERIFY(itemDidCompleteSuccessfully(completeSpy, "Z"));
|
|
|
|
QVERIFY(itemDidCompleteSuccessfully(completeSpy, "Z/d0"));
|
|
|
|
QCOMPARE(fakeFolder.currentLocalState(), fakeFolder.currentRemoteState());
|
|
|
|
}
|
|
|
|
|
|
|
|
void testLocalDelete() {
|
|
|
|
FakeFolder fakeFolder{FileInfo::A12_B12_C12_S12()};
|
2017-01-25 13:12:38 +03:00
|
|
|
QSignalSpy completeSpy(&fakeFolder.syncEngine(), SIGNAL(itemCompleted(const SyncFileItemPtr &)));
|
2016-08-04 15:59:46 +03:00
|
|
|
fakeFolder.remoteModifier().remove("A/a1");
|
|
|
|
fakeFolder.syncOnce();
|
|
|
|
QVERIFY(itemDidCompleteSuccessfully(completeSpy, "A/a1"));
|
|
|
|
QCOMPARE(fakeFolder.currentLocalState(), fakeFolder.currentRemoteState());
|
|
|
|
}
|
|
|
|
|
|
|
|
void testRemoteDelete() {
|
|
|
|
FakeFolder fakeFolder{FileInfo::A12_B12_C12_S12()};
|
2017-01-25 13:12:38 +03:00
|
|
|
QSignalSpy completeSpy(&fakeFolder.syncEngine(), SIGNAL(itemCompleted(const SyncFileItemPtr &)));
|
2016-08-04 15:59:46 +03:00
|
|
|
fakeFolder.localModifier().remove("A/a1");
|
|
|
|
fakeFolder.syncOnce();
|
|
|
|
QVERIFY(itemDidCompleteSuccessfully(completeSpy, "A/a1"));
|
|
|
|
QCOMPARE(fakeFolder.currentLocalState(), fakeFolder.currentRemoteState());
|
|
|
|
}
|
|
|
|
|
|
|
|
void testEmlLocalChecksum() {
|
|
|
|
FakeFolder fakeFolder{FileInfo{}};
|
|
|
|
fakeFolder.localModifier().insert("a1.eml", 64, 'A');
|
|
|
|
fakeFolder.localModifier().insert("a2.eml", 64, 'A');
|
|
|
|
fakeFolder.localModifier().insert("a3.eml", 64, 'A');
|
|
|
|
// Upload and calculate the checksums
|
|
|
|
// fakeFolder.syncOnce();
|
|
|
|
fakeFolder.syncOnce();
|
|
|
|
|
2017-01-25 13:12:38 +03:00
|
|
|
QSignalSpy completeSpy(&fakeFolder.syncEngine(), SIGNAL(itemCompleted(const SyncFileItemPtr &)));
|
2016-08-04 15:59:46 +03:00
|
|
|
// Touch the file without changing the content, shouldn't upload
|
|
|
|
fakeFolder.localModifier().setContents("a1.eml", 'A');
|
|
|
|
// Change the content/size
|
|
|
|
fakeFolder.localModifier().setContents("a2.eml", 'B');
|
|
|
|
fakeFolder.localModifier().appendByte("a3.eml");
|
|
|
|
fakeFolder.syncOnce();
|
|
|
|
|
|
|
|
QVERIFY(!itemDidComplete(completeSpy, "a1.eml"));
|
|
|
|
QVERIFY(itemDidCompleteSuccessfully(completeSpy, "a2.eml"));
|
|
|
|
QVERIFY(itemDidCompleteSuccessfully(completeSpy, "a3.eml"));
|
|
|
|
QCOMPARE(fakeFolder.currentLocalState(), fakeFolder.currentRemoteState());
|
|
|
|
}
|
2016-09-22 10:02:47 +03:00
|
|
|
|
|
|
|
void testRemoteChangeInMovedFolder() {
|
|
|
|
// issue #5192
|
|
|
|
FakeFolder fakeFolder{FileInfo{ QString(), {
|
|
|
|
FileInfo { QStringLiteral("folder"), {
|
|
|
|
FileInfo{ QStringLiteral("folderA"), { { QStringLiteral("file.txt"), 400 } } },
|
|
|
|
QStringLiteral("folderB")
|
|
|
|
}
|
|
|
|
}}}};
|
|
|
|
|
|
|
|
QCOMPARE(fakeFolder.currentLocalState(), fakeFolder.currentRemoteState());
|
|
|
|
|
|
|
|
// Edit a file in a moved directory.
|
|
|
|
fakeFolder.remoteModifier().setContents("folder/folderA/file.txt", 'a');
|
|
|
|
fakeFolder.remoteModifier().rename("folder/folderA", "folder/folderB/folderA");
|
|
|
|
fakeFolder.syncOnce();
|
|
|
|
QCOMPARE(fakeFolder.currentLocalState(), fakeFolder.currentRemoteState());
|
|
|
|
auto oldState = fakeFolder.currentLocalState();
|
2016-10-10 17:55:31 +03:00
|
|
|
QVERIFY(oldState.find("folder/folderB/folderA/file.txt"));
|
|
|
|
QVERIFY(!oldState.find("folder/folderA/file.txt"));
|
2016-09-22 10:02:47 +03:00
|
|
|
|
|
|
|
// This sync should not remove the file
|
|
|
|
fakeFolder.syncOnce();
|
|
|
|
QCOMPARE(fakeFolder.currentLocalState(), fakeFolder.currentRemoteState());
|
|
|
|
QCOMPARE(fakeFolder.currentLocalState(), oldState);
|
|
|
|
|
|
|
|
}
|
2016-10-10 17:55:31 +03:00
|
|
|
|
|
|
|
void testSelectiveSyncModevFolder() {
|
|
|
|
// issue #5224
|
|
|
|
FakeFolder fakeFolder{FileInfo{ QString(), {
|
|
|
|
FileInfo { QStringLiteral("parentFolder"), {
|
|
|
|
FileInfo{ QStringLiteral("subFolderA"), { { QStringLiteral("fileA.txt"), 400 } } },
|
|
|
|
FileInfo{ QStringLiteral("subFolderB"), { { QStringLiteral("fileB.txt"), 400 } } }
|
|
|
|
}
|
|
|
|
}}}};
|
|
|
|
|
|
|
|
QCOMPARE(fakeFolder.currentLocalState(), fakeFolder.currentRemoteState());
|
|
|
|
auto expectedServerState = fakeFolder.currentRemoteState();
|
|
|
|
|
|
|
|
// Remove subFolderA with selectiveSync:
|
|
|
|
fakeFolder.syncEngine().journal()->setSelectiveSyncList(SyncJournalDb::SelectiveSyncBlackList,
|
|
|
|
{"parentFolder/subFolderA/"});
|
|
|
|
fakeFolder.syncEngine().journal()->avoidReadFromDbOnNextSync("parentFolder/subFolderA/");
|
|
|
|
|
|
|
|
fakeFolder.syncOnce();
|
|
|
|
|
|
|
|
{
|
|
|
|
// Nothing changed on the server
|
|
|
|
QCOMPARE(fakeFolder.currentRemoteState(), expectedServerState);
|
|
|
|
// The local state should not have subFolderA
|
|
|
|
auto remoteState = fakeFolder.currentRemoteState();
|
|
|
|
remoteState.remove("parentFolder/subFolderA");
|
|
|
|
QCOMPARE(fakeFolder.currentLocalState(), remoteState);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rename parentFolder on the server
|
|
|
|
fakeFolder.remoteModifier().rename("parentFolder", "parentFolderRenamed");
|
|
|
|
expectedServerState = fakeFolder.currentRemoteState();
|
|
|
|
fakeFolder.syncOnce();
|
|
|
|
|
|
|
|
{
|
|
|
|
QCOMPARE(fakeFolder.currentRemoteState(), expectedServerState);
|
|
|
|
auto remoteState = fakeFolder.currentRemoteState();
|
|
|
|
// The subFolderA should still be there on the server.
|
|
|
|
QVERIFY(remoteState.find("parentFolderRenamed/subFolderA/fileA.txt"));
|
|
|
|
// But not on the client because of the selective sync
|
|
|
|
remoteState.remove("parentFolderRenamed/subFolderA");
|
|
|
|
QCOMPARE(fakeFolder.currentLocalState(), remoteState);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rename it again, locally this time.
|
|
|
|
fakeFolder.localModifier().rename("parentFolderRenamed", "parentThirdName");
|
|
|
|
fakeFolder.syncOnce();
|
|
|
|
|
|
|
|
{
|
|
|
|
auto remoteState = fakeFolder.currentRemoteState();
|
|
|
|
// The subFolderA should still be there on the server.
|
|
|
|
QVERIFY(remoteState.find("parentThirdName/subFolderA/fileA.txt"));
|
|
|
|
// But not on the client because of the selective sync
|
|
|
|
remoteState.remove("parentThirdName/subFolderA");
|
|
|
|
QCOMPARE(fakeFolder.currentLocalState(), remoteState);
|
|
|
|
|
|
|
|
expectedServerState = fakeFolder.currentRemoteState();
|
2017-01-25 13:12:38 +03:00
|
|
|
QSignalSpy completeSpy(&fakeFolder.syncEngine(), SIGNAL(itemCompleted(const SyncFileItemPtr &)));
|
2016-10-10 17:55:31 +03:00
|
|
|
fakeFolder.syncOnce(); // This sync should do nothing
|
|
|
|
QCOMPARE(completeSpy.count(), 0);
|
|
|
|
|
|
|
|
QCOMPARE(fakeFolder.currentRemoteState(), expectedServerState);
|
|
|
|
QCOMPARE(fakeFolder.currentLocalState(), remoteState);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-04 15:59:46 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
QTEST_GUILESS_MAIN(TestSyncEngine)
|
|
|
|
#include "testsyncengine.moc"
|