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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260
|
/*
* 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 "syncenginetestutils.h"
#include "testutils.h"
#include "accessmanager.h"
#include "gui/accountmanager.h"
#include "httplogger.h"
#include "libsync/configfile.h"
#include "libsync/syncresult.h"
#include <thread>
using namespace std::chrono_literals;
using namespace std::chrono;
namespace {
inline auto chunkingNgUploadPathC()
{
return QStringLiteral("/owncloud/remote.php/dav/uploads/admin/");
}
}
PathComponents::PathComponents(const QString &path)
: QStringList { path.split(QLatin1Char('/'), Qt::SkipEmptyParts) }
{
}
PathComponents::PathComponents(const QStringList &pathComponents)
: QStringList { pathComponents }
{
}
PathComponents PathComponents::parentDirComponents() const
{
return PathComponents { mid(0, size() - 1) };
}
PathComponents PathComponents::subComponents() const &
{
return PathComponents { mid(1) };
}
void DiskFileModifier::remove(const QString &relativePath)
{
_processArguments.append({QStringLiteral("remove"), relativePath});
}
void DiskFileModifier::insert(const QString &relativePath, quint64 size, char contentChar)
{
// In the test helper, the insert command is implemented by filling a QByteArray, and then
// writing that to disk. The size of the QByteArray is an int, so make sure that we don't end
// up with a negative int when converting from quint64 -> int.
Q_ASSERT(size <= std::numeric_limits<int>::max());
_processArguments.append({QStringLiteral("insert"), relativePath, QString::number(size), QChar::fromLatin1(contentChar)});
}
void DiskFileModifier::setContents(const QString &relativePath, quint64 newSize, char contentChar)
{
_processArguments.append({QStringLiteral("contents"), relativePath, QString::number(newSize), QChar::fromLatin1(contentChar)});
}
void DiskFileModifier::appendByte(const QString &relativePath, char contentChar)
{
_processArguments.append({QStringLiteral("appendbyte"), relativePath, QChar::fromLatin1(contentChar)});
}
void DiskFileModifier::mkdir(const QString &relativePath)
{
_processArguments.append({QStringLiteral("mkdir"), relativePath});
}
void DiskFileModifier::rename(const QString &from, const QString &to)
{
_processArguments.append({QStringLiteral("rename"), from, to});
}
void DiskFileModifier::setModTime(const QString &relativePath, const QDateTime &modTime)
{
_processArguments.append({QStringLiteral("mtime"), relativePath, QString::number(modTime.toSecsSinceEpoch())});
}
class HelperProcess : public QProcess
{
public:
HelperProcess(const QDir &rootDir, QStringList processArguments) // copy is on purpose
{
if (processArguments.isEmpty()) { // fast-path:
finished = true;
succeeded = true;
return;
}
setProcessChannelMode(QProcess::MergedChannels);
processArguments.prepend(rootDir.absolutePath());
QObject::connect(this, &QProcess::readyRead, [this]() {
while (canReadLine()) {
qDebug() << "helper output:" << readLine();
}
});
QObject::connect(this, QOverload<int, QProcess::ExitStatus>::of(&QProcess::finished),
[this](int exitCode, QProcess::ExitStatus exitStatus) {
qDebug() << "helper finished:" << exitCode << exitStatus;
this->finished = true;
this->succeeded = exitStatus == QProcess::NormalExit && exitCode == 0;
});
qDebug() << "Starting helper:" << TEST_HELPER_EXE << processArguments;
start(QStringLiteral(TEST_HELPER_EXE), processArguments);
}
public:
bool finished = false;
bool succeeded = true;
};
bool DiskFileModifier::applyModifications()
{
if (_processArguments.isEmpty()) {
return true;
}
HelperProcess helper(_rootDir, _processArguments);
helper.waitForStarted();
_processArguments.clear(); // the helper has a copy, we clean it now for the next run
do {
std::this_thread::sleep_for(50ms);
QThread::currentThread()->eventDispatcher()->processEvents(QEventLoop::AllEvents);
} while (!helper.finished);
if (!helper.succeeded) {
qWarning() << Q_FUNC_INFO << "failed";
}
return helper.succeeded;
}
FileInfo FileInfo::A12_B12_C12_S12()
{
FileInfo fi { QString {}, {
{ QStringLiteral("A"), { { QStringLiteral("a1"), 4 }, { QStringLiteral("a2"), 4 } } },
{ QStringLiteral("B"), { { QStringLiteral("b1"), 16 }, { QStringLiteral("b2"), 16 } } },
{ QStringLiteral("C"), { { QStringLiteral("c1"), 24 }, { QStringLiteral("c2"), 24 } } },
} };
FileInfo sharedFolder { QStringLiteral("S"), { { QStringLiteral("s1"), 32 }, { QStringLiteral("s2"), 32 } } };
sharedFolder.isShared = true;
sharedFolder.children[QStringLiteral("s1")].isShared = true;
sharedFolder.children[QStringLiteral("s2")].isShared = true;
fi.children.insert(sharedFolder.name, std::move(sharedFolder));
return fi;
}
FileInfo::FileInfo(const QString &name, const std::initializer_list<FileInfo> &children)
: name { name }
{
for (const auto &source : children)
addChild(source);
}
FileInfo &FileInfo::addChild(const FileInfo &info)
{
FileInfo &dest = this->children[info.name] = info;
dest.parentPath = path();
dest.fixupParentPathRecursively();
return dest;
}
void FileInfo::remove(const QString &relativePath)
{
const PathComponents pathComponents { relativePath };
FileInfo *parent = findInvalidatingEtags(pathComponents.parentDirComponents());
Q_ASSERT(parent);
parent->children.remove(pathComponents.fileName());
}
void FileInfo::insert(const QString &relativePath, quint64 size, char contentChar)
{
create(relativePath, size, contentChar);
}
void FileInfo::setContents(const QString &relativePath, quint64 newSize, char contentChar)
{
FileInfo *file = findInvalidatingEtags(relativePath);
Q_ASSERT(file);
file->contentChar = contentChar;
file->contentSize = newSize;
if (!file->isDehydratedPlaceholder) {
file->fileSize = newSize;
}
}
void FileInfo::appendByte(const QString &relativePath, char contentChar)
{
Q_UNUSED(contentChar)
FileInfo *file = findInvalidatingEtags(relativePath);
Q_ASSERT(file);
if (!file->isDehydratedPlaceholder) {
file->contentSize += 1;
}
file->fileSize += 1;
}
void FileInfo::mkdir(const QString &relativePath)
{
createDir(relativePath);
}
void FileInfo::rename(const QString &oldPath, const QString &newPath)
{
const PathComponents newPathComponents { newPath };
FileInfo *dir = findInvalidatingEtags(newPathComponents.parentDirComponents());
Q_ASSERT(dir);
Q_ASSERT(dir->isDir);
const PathComponents pathComponents { oldPath };
FileInfo *parent = findInvalidatingEtags(pathComponents.parentDirComponents());
Q_ASSERT(parent);
FileInfo fi = parent->children.take(pathComponents.fileName());
fi.parentPath = dir->path();
fi.name = newPathComponents.fileName();
fi.fixupParentPathRecursively();
dir->children.insert(newPathComponents.fileName(), std::move(fi));
}
void FileInfo::setModTime(const QString &relativePath, const QDateTime &modTime)
{
FileInfo *file = findInvalidatingEtags(relativePath);
Q_ASSERT(file);
file->setLastModified(modTime);
}
FileInfo *FileInfo::find(PathComponents pathComponents, const bool invalidateEtags)
{
if (pathComponents.isEmpty()) {
if (invalidateEtags) {
etag = generateEtag();
}
return this;
}
QString childName = pathComponents.pathRoot();
auto it = children.find(childName);
if (it != children.end()) {
auto file = it->find(std::move(pathComponents).subComponents(), invalidateEtags);
if (file && invalidateEtags) {
// Update parents on the way back
etag = generateEtag();
}
return file;
}
return nullptr;
}
FileInfo *FileInfo::createDir(const QString &relativePath)
{
const PathComponents pathComponents { relativePath };
FileInfo *parent = findInvalidatingEtags(pathComponents.parentDirComponents());
Q_ASSERT(parent);
FileInfo &child = parent->children[pathComponents.fileName()] = FileInfo { pathComponents.fileName() };
child.parentPath = parent->path();
child.etag = generateEtag();
return &child;
}
FileInfo *FileInfo::create(const QString &relativePath, quint64 size, char contentChar)
{
const PathComponents pathComponents { relativePath };
FileInfo *parent = findInvalidatingEtags(pathComponents.parentDirComponents());
Q_ASSERT(parent);
FileInfo &child = parent->children[pathComponents.fileName()] = FileInfo { pathComponents.fileName(), size };
child.parentPath = parent->path();
child.contentChar = contentChar;
child.etag = generateEtag();
return &child;
}
bool FileInfo::equals(const FileInfo &other, CompareWhat compareWhat) const
{
// Only check the content and contentSize if both files are hydrated:
if (!isDehydratedPlaceholder && !other.isDehydratedPlaceholder) {
if (contentSize != other.contentSize || contentChar != other.contentChar) {
qDebug() << "1" << name << "!=" << other.name;
return false;
}
}
// We need to check this before we use isDir in the next if-statement:
if (isDir != other.isDir) {
qDebug() << "2" << name << "!=" << other.name;
return false;
}
if (compareWhat == CompareLastModified) {
// Don't check directory mtime: it might change when (unsynced) files get created.
if (!isDir && _lastModifiedInSecondsUTC != other._lastModifiedInSecondsUTC) {
qDebug() << "3" << name << "!=" << other.name;
return false;
}
}
if (name != other.name || fileSize != other.fileSize) {
qDebug() << "4" << name << "!=" << other.name;
return false;
}
if (children.size() != other.children.size()) {
qDebug() << "5" << name << "!=" << other.name;
return false;
}
for (auto it = children.constBegin(), eit = children.constEnd(); it != eit; ++it) {
auto oit = other.children.constFind(it.key());
if (oit == other.children.constEnd()) {
qDebug() << "6" << name << "!=" << other.name;
return false;
} else if (!it.value().equals(oit.value(), compareWhat)) {
qDebug() << "7" << name << "!=" << other.name;
return false;
}
}
return true;
}
QString FileInfo::path() const
{
return (parentPath.isEmpty() ? QString() : (parentPath + QLatin1Char('/'))) + name;
}
QString FileInfo::absolutePath() const
{
if (parentPath.endsWith(QLatin1Char('/'))) {
return parentPath + name;
} else {
return parentPath + QLatin1Char('/') + name;
}
}
void FileInfo::fixupParentPathRecursively()
{
auto p = path();
for (auto it = children.begin(); it != children.end(); ++it) {
Q_ASSERT(it.key() == it->name);
it->parentPath = p;
it->fixupParentPathRecursively();
}
}
FileInfo *FileInfo::findInvalidatingEtags(PathComponents pathComponents)
{
return find(std::move(pathComponents), true);
}
FakePropfindReply::FakePropfindReply(FileInfo &remoteRootFileInfo, QNetworkAccessManager::Operation op, const QNetworkRequest &request, QObject *parent)
: FakeReply { parent }
{
setRequest(request);
setUrl(request.url());
setOperation(op);
open(QIODevice::ReadOnly);
QString fileName = getFilePathFromUrl(request.url());
Q_ASSERT(!fileName.isNull()); // for root, it should be empty
const FileInfo *fileInfo = remoteRootFileInfo.find(fileName);
if (!fileInfo) {
QMetaObject::invokeMethod(this, &FakePropfindReply::respond404, Qt::QueuedConnection);
return;
}
const auto prefix = QUrl(request.url().path().left(request.url().path().size() - fileName.size()));
// Don't care about the request and just return a full propfind
const QString davUri { QStringLiteral("DAV:") };
const QString ocUri { QStringLiteral("http://owncloud.org/ns") };
QBuffer buffer { &payload };
buffer.open(QIODevice::WriteOnly);
QXmlStreamWriter xml(&buffer);
xml.writeNamespace(davUri, QStringLiteral("d"));
xml.writeNamespace(ocUri, QStringLiteral("oc"));
xml.writeStartDocument();
xml.writeStartElement(davUri, QStringLiteral("multistatus"));
auto writeFileResponse = [&](const FileInfo &fileInfo) {
xml.writeStartElement(davUri, QStringLiteral("response"));
const auto href = OCC::Utility::concatUrlPath(prefix, QString::fromUtf8(QUrl::toPercentEncoding(fileInfo.absolutePath(), "/"))).path();
xml.writeTextElement(davUri, QStringLiteral("href"), href);
xml.writeStartElement(davUri, QStringLiteral("propstat"));
xml.writeStartElement(davUri, QStringLiteral("prop"));
if (fileInfo.isDir) {
xml.writeStartElement(davUri, QStringLiteral("resourcetype"));
xml.writeEmptyElement(davUri, QStringLiteral("collection"));
xml.writeEndElement(); // resourcetype
} else
xml.writeEmptyElement(davUri, QStringLiteral("resourcetype"));
auto gmtDate = fileInfo.lastModifiedInUtc();
xml.writeTextElement(davUri, QStringLiteral("getlastmodified"), OCC::Utility::formatRFC1123Date(gmtDate));
xml.writeTextElement(davUri, QStringLiteral("getcontentlength"), QString::number(fileInfo.contentSize));
xml.writeTextElement(davUri, QStringLiteral("getetag"), QStringLiteral("\"%1\"").arg(QString::fromUtf8(fileInfo.etag)));
xml.writeTextElement(ocUri, QStringLiteral("permissions"), !fileInfo.permissions.isNull() ? QString(fileInfo.permissions.toString()) : fileInfo.isShared ? QStringLiteral("SRDNVCKW")
: QStringLiteral("RDNVCKW"));
xml.writeTextElement(ocUri, QStringLiteral("id"), QString::fromUtf8(fileInfo.fileId));
xml.writeTextElement(ocUri, QStringLiteral("checksums"), QString::fromUtf8(fileInfo.checksums));
buffer.write(fileInfo.extraDavProperties);
xml.writeEndElement(); // prop
xml.writeTextElement(davUri, QStringLiteral("status"), QStringLiteral("HTTP/1.1 200 OK"));
xml.writeEndElement(); // propstat
xml.writeEndElement(); // response
};
writeFileResponse(*fileInfo);
const int depth = request.rawHeader(QByteArrayLiteral("Depth")).toInt();
if (depth > 0) {
for (const FileInfo &childFileInfo : fileInfo->children) {
writeFileResponse(childFileInfo);
}
}
xml.writeEndElement(); // multistatus
xml.writeEndDocument();
QMetaObject::invokeMethod(this, &FakePropfindReply::respond, Qt::QueuedConnection);
}
void FakePropfindReply::respond()
{
setHeader(QNetworkRequest::ContentLengthHeader, payload.size());
setHeader(QNetworkRequest::ContentTypeHeader, QByteArrayLiteral("application/xml; charset=utf-8"));
setAttribute(QNetworkRequest::HttpStatusCodeAttribute, 207);
Q_EMIT metaDataChanged();
if (bytesAvailable())
Q_EMIT readyRead();
checkedFinished();
}
void FakePropfindReply::respond404()
{
if (isFinished()) {
return;
}
setAttribute(QNetworkRequest::HttpStatusCodeAttribute, 404);
setError(InternalServerError, QStringLiteral("Not Found"));
Q_EMIT metaDataChanged();
checkedFinished();
}
qint64 FakePropfindReply::bytesAvailable() const
{
return payload.size() + QIODevice::bytesAvailable();
}
qint64 FakePropfindReply::readData(char *data, qint64 maxlen)
{
qint64 len = std::min(qint64 { payload.size() }, maxlen);
std::copy(payload.cbegin(), payload.cbegin() + len, data);
payload.remove(0, static_cast<int>(len));
return len;
}
FakePutReply::FakePutReply(FileInfo &remoteRootFileInfo, QNetworkAccessManager::Operation op, const QNetworkRequest &request, const QByteArray &putPayload, QObject *parent)
: FakeReply { parent }
{
setRequest(request);
setUrl(request.url());
setOperation(op);
open(QIODevice::ReadOnly);
fileInfo = perform(remoteRootFileInfo, request, putPayload);
QMetaObject::invokeMethod(this, &FakePutReply::respond, Qt::QueuedConnection);
}
FileInfo *FakePutReply::perform(FileInfo &remoteRootFileInfo, const QNetworkRequest &request, const QByteArray &putPayload)
{
QString fileName = getFilePathFromUrl(request.url());
Q_ASSERT(!fileName.isEmpty());
FileInfo *fileInfo = remoteRootFileInfo.find(fileName);
if (fileInfo) {
fileInfo->contentSize = putPayload.size();
fileInfo->contentChar = putPayload.at(0);
} else {
// Assume that the file is filled with the same character
fileInfo = remoteRootFileInfo.create(fileName, putPayload.size(), putPayload.at(0));
}
fileInfo->fileSize = fileInfo->contentSize; // it's hydrated on the server, so these are the same
fileInfo->setLastModifiedFromSecondsUTC(request.rawHeader("X-OC-Mtime").toLongLong());
remoteRootFileInfo.find(fileName, /*invalidate_etags=*/true);
return fileInfo;
}
void FakePutReply::respond()
{
Q_EMIT uploadProgress(fileInfo->contentSize, fileInfo->contentSize);
setRawHeader("OC-ETag", fileInfo->etag);
setRawHeader("ETag", fileInfo->etag);
setRawHeader("OC-FileID", fileInfo->fileId);
setRawHeader("X-OC-MTime", "accepted"); // Prevents Q_ASSERT(!_runningNow) since we'll call PropagateItemJob::done twice in that case.
setAttribute(QNetworkRequest::HttpStatusCodeAttribute, 200);
Q_EMIT metaDataChanged();
checkedFinished();
}
FakeMkcolReply::FakeMkcolReply(FileInfo &remoteRootFileInfo, QNetworkAccessManager::Operation op, const QNetworkRequest &request, QObject *parent)
: FakeReply { parent }
{
setRequest(request);
setUrl(request.url());
setOperation(op);
open(QIODevice::ReadOnly);
QString fileName = getFilePathFromUrl(request.url());
Q_ASSERT(!fileName.isEmpty());
fileInfo = remoteRootFileInfo.createDir(fileName);
if (!fileInfo) {
abort();
return;
}
QMetaObject::invokeMethod(this, &FakeMkcolReply::respond, Qt::QueuedConnection);
}
void FakeMkcolReply::respond()
{
if (error() == QNetworkReply::NoError) {
setRawHeader("OC-FileId", fileInfo->fileId);
setAttribute(QNetworkRequest::HttpStatusCodeAttribute, 201);
Q_EMIT metaDataChanged();
}
checkedFinished();
}
FakeDeleteReply::FakeDeleteReply(FileInfo &remoteRootFileInfo, QNetworkAccessManager::Operation op, const QNetworkRequest &request, QObject *parent)
: FakeReply { parent }
{
setRequest(request);
setUrl(request.url());
setOperation(op);
open(QIODevice::ReadOnly);
QString fileName = getFilePathFromUrl(request.url());
Q_ASSERT(!fileName.isEmpty());
remoteRootFileInfo.remove(fileName);
QMetaObject::invokeMethod(this, &FakeDeleteReply::respond, Qt::QueuedConnection);
}
void FakeDeleteReply::respond()
{
setAttribute(QNetworkRequest::HttpStatusCodeAttribute, 204);
Q_EMIT metaDataChanged();
checkedFinished();
}
FakeMoveReply::FakeMoveReply(FileInfo &remoteRootFileInfo, QNetworkAccessManager::Operation op, const QNetworkRequest &request, QObject *parent)
: FakeReply { parent }
{
setRequest(request);
setUrl(request.url());
setOperation(op);
open(QIODevice::ReadOnly);
QString fileName = getFilePathFromUrl(request.url());
Q_ASSERT(!fileName.isEmpty());
QString dest = getFilePathFromUrl(QUrl::fromEncoded(request.rawHeader("Destination")));
Q_ASSERT(!dest.isEmpty());
remoteRootFileInfo.rename(fileName, dest);
QMetaObject::invokeMethod(this, &FakeMoveReply::respond, Qt::QueuedConnection);
}
void FakeMoveReply::respond()
{
if (error() == QNetworkReply::NoError) {
setAttribute(QNetworkRequest::HttpStatusCodeAttribute, 201);
Q_EMIT metaDataChanged();
}
checkedFinished();
}
FakeGetReply::FakeGetReply(FileInfo &remoteRootFileInfo, QNetworkAccessManager::Operation op, const QNetworkRequest &request, QObject *parent)
: FakeReply { parent }
, _range(parseRange(request))
{
setRequest(request);
setUrl(request.url());
setOperation(op);
open(QIODevice::ReadOnly);
QString fileName = getFilePathFromUrl(request.url());
Q_ASSERT(!fileName.isEmpty());
fileInfo = remoteRootFileInfo.find(fileName);
if (!fileInfo) {
qDebug() << "Could not find file" << fileName << "on the remote";
state = State::FileNotFound;
}
QMetaObject::invokeMethod(this, &FakeGetReply::respond, Qt::QueuedConnection);
}
std::pair<qint64, qint64> FakeGetReply::parseRange(const QNetworkRequest &request)
{
if (request.hasRawHeader("Range")) {
const QString range = QString::fromUtf8(request.rawHeader("Range"));
const QRegularExpression bytesPattern(QStringLiteral(R"(bytes=(?P<start>\d+)-(?P<end>\d*))"));
const QRegularExpressionMatch match = bytesPattern.match(range);
if (match.hasMatch()) {
const int start = match.captured(QStringLiteral("start")).toInt();
const QString end = match.captured(QStringLiteral("end"));
if (end.isEmpty()) {
// until the end
return { start, -1 };
} else {
// to the end of the range
return { start, end.toLongLong() };
}
}
}
return { 0, 0 };
}
void FakeGetReply::respond()
{
qDebug() << this << state;
if (state != State::Aborted) {
switch (state) {
case State::Aborted:
Q_UNREACHABLE();
case State::FileNotFound:
setAttribute(QNetworkRequest::HttpStatusCodeAttribute, 404);
setError(ContentNotFoundError, QStringLiteral("File Not Found"));
Q_EMIT metaDataChanged();
break;
case State::Ok:
payload = fileInfo->contentChar;
if (_range.second != 0) {
if (_range.second == -1) {
size = fileInfo->contentSize - _range.first;
} else {
size = _range.second - _range.first;
}
setRawHeader("Content-Range", QByteArrayLiteral("bytes ") + QByteArray::number(_range.first) + '-');
} else {
size = fileInfo->contentSize;
}
setHeader(QNetworkRequest::ContentLengthHeader, size);
setAttribute(QNetworkRequest::HttpStatusCodeAttribute, 200);
setRawHeader("OC-ETag", fileInfo->etag);
setRawHeader("ETag", fileInfo->etag);
setRawHeader("OC-FileId", fileInfo->fileId);
setRawHeader("X-OC-Mtime", QByteArray::number(fileInfo->lastModifiedInSecondsUTC()));
Q_EMIT metaDataChanged();
if (bytesAvailable()) {
Q_EMIT readyRead();
}
}
checkedFinished();
}
}
void FakeGetReply::abort()
{
state = State::Aborted;
FakeReply::abort();
}
qint64 FakeGetReply::bytesAvailable() const
{
switch (state) {
case State::Ok:
return size + QIODevice::bytesAvailable();
case State::Aborted:
Q_FALLTHROUGH();
case State::FileNotFound:
return 0;
}
Q_UNREACHABLE(); // Unreachable, but GCC on CentOS 7 does not understand that.
}
qint64 FakeGetReply::readData(char *data, qint64 maxlen)
{
qint64 len = std::min(qint64 { size }, maxlen);
std::fill_n(data, len, payload);
size -= len;
return len;
}
FakeChunkMoveReply::FakeChunkMoveReply(FileInfo &uploadsFileInfo, FileInfo &remoteRootFileInfo, QNetworkAccessManager::Operation op, const QNetworkRequest &request, QObject *parent)
: FakeReply { parent }
{
setRequest(request);
setUrl(request.url());
setOperation(op);
open(QIODevice::ReadOnly);
fileInfo = perform(uploadsFileInfo, remoteRootFileInfo, request);
if (!fileInfo) {
QTimer::singleShot(0, this, &FakeChunkMoveReply::respondPreconditionFailed);
} else {
QTimer::singleShot(0, this, &FakeChunkMoveReply::respond);
}
}
FileInfo *FakeChunkMoveReply::perform(FileInfo &uploadsFileInfo, FileInfo &remoteRootFileInfo, const QNetworkRequest &request)
{
QString source = getFilePathFromUrl(request.url());
Q_ASSERT(!source.isEmpty());
Q_ASSERT(source.endsWith(QLatin1String("/.file")));
source = source.left(source.length() - qstrlen("/.file"));
auto sourceFolder = uploadsFileInfo.find(source);
Q_ASSERT(sourceFolder);
Q_ASSERT(sourceFolder->isDir);
int count = 0;
qlonglong size = 0;
qlonglong prev = 0;
char payload = '\0';
QString fileName = getFilePathFromUrl(QUrl::fromEncoded(request.rawHeader("Destination")));
Q_ASSERT(!fileName.isEmpty());
const auto &sourceFolderChildren = sourceFolder->children;
// Compute the size and content from the chunks if possible
for (auto it = sourceFolderChildren.cbegin(); it != sourceFolderChildren.cend(); ++it) {
const auto &chunkNameLongLong = it.key().toLongLong();
const auto &x = it.value();
if (chunkNameLongLong != prev)
break;
Q_ASSERT(!x.isDir);
Q_ASSERT(x.contentSize > 0); // There should not be empty chunks
size += x.contentSize;
Q_ASSERT(!payload || payload == x.contentChar);
payload = x.contentChar;
++count;
prev = chunkNameLongLong + x.contentSize;
}
Q_ASSERT(sourceFolderChildren.count() == count); // There should not be holes or extra files
// NOTE: This does not actually assemble the file data from the chunks!
FileInfo *fileInfo = remoteRootFileInfo.find(fileName);
if (fileInfo) {
// The client should put this header
Q_ASSERT(request.hasRawHeader("If"));
// And it should condition on the destination file
auto start = QByteArray("<" + request.rawHeader("Destination") + ">");
Q_ASSERT(request.rawHeader("If").startsWith(start));
if (request.rawHeader("If") != start + " ([\"" + fileInfo->etag + "\"])") {
return nullptr;
}
fileInfo->contentSize = size;
fileInfo->contentChar = payload;
fileInfo->fileSize = fileInfo->contentSize; // it's hydrated on the server, so these are the same
} else {
Q_ASSERT(!request.hasRawHeader("If"));
// Assume that the file is filled with the same character
fileInfo = remoteRootFileInfo.create(fileName, size, payload);
}
fileInfo->setLastModifiedFromSecondsUTC(request.rawHeader("X-OC-Mtime").toLongLong());
remoteRootFileInfo.find(fileName, /*invalidate_etags=*/true);
return fileInfo;
}
void FakeChunkMoveReply::respond()
{
setAttribute(QNetworkRequest::HttpStatusCodeAttribute, 201);
setRawHeader("OC-ETag", fileInfo->etag);
setRawHeader("ETag", fileInfo->etag);
setRawHeader("OC-FileId", fileInfo->fileId);
Q_EMIT metaDataChanged();
checkedFinished();
}
void FakeChunkMoveReply::respondPreconditionFailed()
{
setAttribute(QNetworkRequest::HttpStatusCodeAttribute, 412);
setError(InternalServerError, QStringLiteral("Precondition Failed"));
Q_EMIT metaDataChanged();
checkedFinished();
}
FakePayloadReply::FakePayloadReply(QNetworkAccessManager::Operation op, const QNetworkRequest &request, const QByteArray &body, QObject *parent)
: FakeReply { parent }
, _body(body)
{
setRequest(request);
setUrl(request.url());
setOperation(op);
open(QIODevice::ReadOnly);
QTimer::singleShot(10ms, this, &FakePayloadReply::respond);
setAttribute(QNetworkRequest::HttpStatusCodeAttribute, 200);
}
void FakePayloadReply::respond()
{
if (error() == QNetworkReply::NoError) {
setHeader(QNetworkRequest::ContentLengthHeader, _body.size());
Q_EMIT metaDataChanged();
Q_EMIT readyRead();
checkedFinished();
}
}
qint64 FakePayloadReply::readData(char *buf, qint64 max)
{
max = qMin<qint64>(max, _body.size());
memcpy(buf, _body.constData(), max);
_body = _body.mid(max);
return max;
}
qint64 FakePayloadReply::bytesAvailable() const
{
return _body.size();
}
FakeErrorReply::FakeErrorReply(QNetworkAccessManager::Operation op, const QNetworkRequest &request, QObject *parent, int httpErrorCode, const QByteArray &body)
: FakeReply { parent }
, _body(body)
{
setRequest(request);
setUrl(request.url());
setOperation(op);
open(QIODevice::ReadOnly);
setAttribute(QNetworkRequest::HttpStatusCodeAttribute, httpErrorCode);
switch (httpErrorCode) {
case 401:
setError(AuthenticationRequiredError, QStringLiteral("Fake credentials error"));
break;
case 403:
setError(ContentAccessDenied, QStringLiteral("Fake access denied error"));
break;
default:
setError(InternalServerError, QStringLiteral("Internal Server Fake Error"));
}
QMetaObject::invokeMethod(this, &FakeErrorReply::respond, Qt::QueuedConnection);
}
void FakeErrorReply::respond()
{
Q_EMIT metaDataChanged();
Q_EMIT readyRead();
// finishing can come strictly after readyRead was called
QTimer::singleShot(5ms, this, &FakeErrorReply::slotSetFinished);
}
void FakeErrorReply::slotSetFinished()
{
checkedFinished();
}
qint64 FakeErrorReply::readData(char *buf, qint64 max)
{
max = qMin<qint64>(max, _body.size());
memcpy(buf, _body.constData(), max);
_body = _body.mid(max);
return max;
}
qint64 FakeErrorReply::bytesAvailable() const
{
return _body.size();
}
FakeHangingReply::FakeHangingReply(QNetworkAccessManager::Operation op, const QNetworkRequest &request, QObject *parent)
: FakeReply(parent)
{
setRequest(request);
setUrl(request.url());
setOperation(op);
open(QIODevice::ReadOnly);
}
FakeAM::FakeAM(FileInfo initialRoot, QObject *parent)
: OCC::AccessManager(parent)
, _remoteRootFileInfo{std::move(initialRoot)}
{
setCookieJar(new OCC::CookieJar);
}
QNetworkReply *FakeAM::createRequest(QNetworkAccessManager::Operation op, const QNetworkRequest &request, QIODevice *outgoingData)
{
QNetworkReply *reply = nullptr;
auto newRequest = request;
newRequest.setRawHeader("X-Request-ID", OCC::AccessManager::generateRequestId());
if (_override) {
if (auto _reply = _override(op, newRequest, outgoingData)) {
reply = _reply;
}
}
if (!reply) {
const QString fileName = getFilePathFromUrl(newRequest.url());
if (fileName.isNull()) {
// we don't actually handle this case but thats ok for now
newRequest.setTransferTimeout(duration_cast<milliseconds>(5min).count());
qWarning() << "Ignoring request to" << newRequest.url();
reply = new FakeHangingReply(op, newRequest, this);
} else if (_errorPaths.contains(fileName)) {
reply = new FakeErrorReply { op, newRequest, this, _errorPaths[fileName] };
}
}
if (!reply) {
// detect chunking ng upload
const bool isUpload = newRequest.url().path().startsWith(chunkingNgUploadPathC());
FileInfo &info = isUpload ? _uploadFileInfo : _remoteRootFileInfo;
const auto verb = newRequest.attribute(QNetworkRequest::CustomVerbAttribute).toByteArray();
if (verb == QByteArrayLiteral("PROPFIND"))
// Ignore outgoingData always returning somethign good enough, works for now.
reply = new FakePropfindReply { info, op, newRequest, this };
else if (verb == QByteArrayLiteral("GET") || op == QNetworkAccessManager::GetOperation)
reply = new FakeGetReply { info, op, newRequest, this };
else if (verb == QByteArrayLiteral("PUT") || op == QNetworkAccessManager::PutOperation)
reply = new FakePutReply { info, op, newRequest, outgoingData->readAll(), this };
else if (verb == QByteArrayLiteral("MKCOL"))
reply = new FakeMkcolReply { info, op, newRequest, this };
else if (verb == QByteArrayLiteral("DELETE") || op == QNetworkAccessManager::DeleteOperation)
reply = new FakeDeleteReply { info, op, newRequest, this };
else if (verb == QByteArrayLiteral("MOVE") && !isUpload)
reply = new FakeMoveReply { info, op, newRequest, this };
else if (verb == QByteArrayLiteral("MOVE") && isUpload)
reply = new FakeChunkMoveReply { info, _remoteRootFileInfo, op, newRequest, this };
else {
qDebug() << verb << outgoingData;
Q_UNREACHABLE();
}
}
// timeout would be handled by Qt
if (request.transferTimeout() != 0) {
QTimer::singleShot(request.transferTimeout(), reply, [reply] {
reply->abort();
});
}
OCC::HttpLogger::logRequest(reply, op, outgoingData);
return reply;
}
FakeFolder::FakeFolder(const FileInfo &fileTemplate, OCC::Vfs::Mode vfsMode, bool filesAreDehydrated)
: _localModifier(_tempDir.path())
{
// Needs to be done once
OCC::SyncEngine::minimumFileAgeForUpload = 0s;
QDir rootDir { _tempDir.path() };
qDebug() << "FakeFolder operating on" << rootDir;
toDisk(rootDir, filesAreDehydrated ? FileInfo() : fileTemplate);
_fakeAm = new FakeAM(fileTemplate, this);
_accountState = std::move(OCC::TestUtils::createDummyAccount());
account()->setCredentials(new FakeCredentials{_fakeAm});
_journalDb.reset(new OCC::SyncJournalDb(localPath() + QStringLiteral(".sync_test.db")));
// TODO: davUrl
_syncEngine.reset(new OCC::SyncEngine(account(), account()->davUrl(), localPath(), QString(), _journalDb.get()));
_syncEngine->setSyncOptions(OCC::SyncOptions { QSharedPointer<OCC::Vfs>(OCC::VfsPluginManager::instance().createVfsFromPlugin(vfsMode).release()) });
// Ignore temporary files from the download. (This is in the default exclude list, but we don't load it)
_syncEngine->addManualExclude(QStringLiteral("]*.~*"));
auto vfs = _syncEngine->syncOptions()._vfs;
if (vfsMode != vfs->mode()) {
vfs.reset(OCC::VfsPluginManager::instance().createVfsFromPlugin(vfsMode).release());
Q_ASSERT(vfs);
}
// Ensure we have a valid Vfs instance "running"
switchToVfs(vfs);
if (vfsMode != OCC::Vfs::Off) {
const auto pinState = filesAreDehydrated ? OCC::PinState::OnlineOnly : OCC::PinState::AlwaysLocal;
syncJournal().internalPinStates().setForPath("", pinState);
OC_ENFORCE(vfs->setPinState(QString(), pinState));
}
// A new folder will update the local file state database on first sync.
// To have a state matching what users will encounter, we have to a sync
// using an identical local/remote file tree first.
OC_ENFORCE(syncOnce())
}
FakeFolder::~FakeFolder() { }
void FakeFolder::switchToVfs(QSharedPointer<OCC::Vfs> vfs)
{
auto opts = _syncEngine->syncOptions();
opts._vfs->stop();
QObject::disconnect(_syncEngine.get(), nullptr, opts._vfs.data(), nullptr);
opts._vfs = vfs;
_syncEngine->setSyncOptions(opts);
OCC::VfsSetupParams vfsParams(account(), account()->davUrl(), false, &syncEngine());
vfsParams.filesystemPath = localPath();
vfsParams.remotePath = QLatin1Char('/');
vfsParams.journal = _journalDb.get();
vfsParams.providerName = QStringLiteral("OC-TEST");
vfsParams.providerDisplayName = QStringLiteral("OC-TEST");
vfsParams.providerVersion = QVersionNumber(0, 1, 0);
vfsParams.multipleAccountsRegistered = false;
QObject::connect(_syncEngine.get(), &QObject::destroyed, vfs.data(), [vfs]() {
vfs->stop();
vfs->unregisterFolder();
});
QObject::connect(&_syncEngine->syncFileStatusTracker(), &OCC::SyncFileStatusTracker::fileStatusChanged,
vfs.data(), &OCC::Vfs::fileStatusChanged);
QObject::connect(vfs.get(), &OCC::Vfs::error, vfs.get(), [](const QString &error) {
QFAIL(qUtf8Printable(error));
});
QSignalSpy spy(vfs.get(), &OCC::Vfs::started);
vfs->start(vfsParams);
// don't use QVERIFY outside of the test slot
if (spy.isEmpty() && !spy.wait()) {
QFAIL("VFS Setup failed");
}
}
FileInfo FakeFolder::currentLocalState()
{
QDir rootDir { _tempDir.path() };
FileInfo rootTemplate;
fromDisk(rootDir, rootTemplate);
rootTemplate.fixupParentPathRecursively();
return rootTemplate;
}
QString FakeFolder::localPath() const
{
// SyncEngine wants a trailing slash
if (_tempDir.path().endsWith(QLatin1Char('/')))
return _tempDir.path();
return _tempDir.path() + QLatin1Char('/');
}
void FakeFolder::scheduleSync()
{
// Have to be done async, else, an error before exec() does not terminate the event loop.
QMetaObject::invokeMethod(_syncEngine.get(), &OCC::SyncEngine::startSync, Qt::QueuedConnection);
}
void FakeFolder::execUntilBeforePropagation()
{
QSignalSpy spy(_syncEngine.get(), &OCC::SyncEngine::aboutToPropagate);
QVERIFY(spy.wait());
}
void FakeFolder::execUntilItemCompleted(const QString &relativePath)
{
QSignalSpy spy(_syncEngine.get(), &OCC::SyncEngine::itemCompleted);
QElapsedTimer t;
t.start();
while (t.elapsed() < 5000) {
spy.clear();
QVERIFY(spy.wait());
for (const QList<QVariant> &args : spy) {
auto item = args[0].value<OCC::SyncFileItemPtr>();
if (item->destination() == relativePath)
return;
}
}
QVERIFY(false);
}
bool FakeFolder::isDehydratedPlaceholder(const QString &filePath)
{
return vfs()->isDehydratedPlaceholder(filePath);
}
QSharedPointer<OCC::Vfs> FakeFolder::vfs() const
{
return _syncEngine->syncOptions()._vfs;
}
void FakeFolder::toDisk(QDir &dir, const FileInfo &templateFi)
{
for (const auto &child : templateFi.children) {
if (child.isDir) {
QDir subDir(dir);
dir.mkdir(child.name);
subDir.cd(child.name);
toDisk(subDir, child);
} else {
QFile file { dir.filePath(child.name) };
file.open(QFile::WriteOnly);
file.write(QByteArray {}.fill(child.contentChar, child.contentSize));
file.close();
OCC::FileSystem::setModTime(file.fileName(), child.lastModifiedInSecondsUTC());
}
}
}
void FakeFolder::fromDisk(QDir &dir, FileInfo &templateFi)
{
const auto infoList = dir.entryInfoList(QDir::AllEntries | QDir::NoDotAndDotDot);
for (const auto &diskChild : infoList) {
if (diskChild.isHidden() || diskChild.fileName().startsWith(QStringLiteral(".sync_"))) {
// Skip system files, sqlite db files, sync log, etc.
continue;
}
if (diskChild.isDir()) {
QDir subDir = dir;
subDir.cd(diskChild.fileName());
FileInfo &subFi = templateFi.children[diskChild.fileName()] = FileInfo { diskChild.fileName() };
subFi.setLastModified(diskChild.lastModified());
fromDisk(subDir, subFi);
} else {
FileInfo fi(diskChild.fileName());
fi.isDir = false;
fi.fileSize = diskChild.size();
fi.isDehydratedPlaceholder = isDehydratedPlaceholder(diskChild.absoluteFilePath());
fi.setLastModified(diskChild.lastModified());
if (fi.isDehydratedPlaceholder) {
fi.contentChar = '\0';
fi.contentSize = 0;
} else {
QFile f { diskChild.filePath() };
OC_ENFORCE(f.open(QFile::ReadOnly));
auto content = f.read(1);
if (content.size() == 0) {
qWarning() << "Empty file at:" << diskChild.filePath();
fi.contentChar = FileInfo::DefaultContentChar;
} else {
fi.contentChar = content.at(0);
}
fi.contentSize = fi.fileSize;
}
templateFi.children.insert(fi.name, fi);
}
}
}
FileInfo &findOrCreateDirs(FileInfo &base, const PathComponents &components)
{
if (components.isEmpty())
return base;
auto childName = components.pathRoot();
auto it = base.children.find(childName);
if (it != base.children.end()) {
return findOrCreateDirs(*it, components.subComponents());
}
auto &newDir = base.children[childName] = FileInfo { childName };
newDir.parentPath = base.path();
return findOrCreateDirs(newDir, components.subComponents());
}
FileInfo FakeFolder::dbState() const
{
FileInfo result;
_journalDb->getFilesBelowPath("", [&](const OCC::SyncJournalFileRecord &record) {
auto components = PathComponents(QString::fromUtf8(record._path));
auto &parentDir = findOrCreateDirs(result, components.parentDirComponents());
auto name = components.fileName();
auto &item = parentDir.children[name];
item.name = name;
item.parentPath = parentDir.path();
item.contentSize = record._fileSize;
item.isDir = record._type == ItemTypeDirectory;
item.permissions = record._remotePerm;
item.etag = record._etag;
item.setLastModifiedFromSecondsUTC(record._modtime);
item.fileId = record._fileId;
item.checksums = record._checksumHeader;
// item.contentChar can't be set from the db
});
return result;
}
bool FakeFolder::execUntilFinished()
{
QSignalSpy spy(_syncEngine.get(), &OCC::SyncEngine::finished);
bool ok = spy.wait(3600000);
Q_ASSERT(ok && "Sync timed out");
return spy[0][0].toBool();
}
bool FakeFolder::syncOnce()
{
QObject connectScope;
QList<QPair<QString, OCC::ErrorCategory>> errors;
connect(_syncEngine.get(), &OCC::SyncEngine::syncError, &connectScope,
[&errors](const QString &message, OCC::ErrorCategory category) { errors << qMakePair(message, category); });
OCC::SyncResult result;
connect(
_syncEngine.get(), &OCC::SyncEngine::itemCompleted, &connectScope, [&result](const OCC::SyncFileItemPtr &item) { result.processCompletedItem(item); });
scheduleSync();
const bool ok = execUntilFinished();
if (!ok) {
qWarning() << Q_FUNC_INFO << "failed. Errors:" << errors << "Another sync needed:" << _syncEngine->isAnotherSyncNeeded() << result.errorStrings();
}
return ok;
}
OCC::SyncFileItemPtr ItemCompletedSpy::findItem(const QString &path) const
{
for (const QList<QVariant> &args : *this) {
auto item = args[0].value<OCC::SyncFileItemPtr>();
if (item->destination() == path)
return item;
}
return nullptr;
}
FakeReply::FakeReply(QObject *parent)
: QNetworkReply(parent)
{
setRawHeader(QByteArrayLiteral("Date"), OCC::Utility::formatRFC1123Date(QDateTime::currentDateTimeUtc()).toUtf8());
QTimer::singleShot(0, this, [this] {
// emulate the real world
// don't Q_EMIT if we where already aborted
if (!isFinished() && error() != QNetworkReply::OperationCanceledError) {
Q_EMIT requestSent();
}
});
}
FakeReply::~FakeReply() { }
void FakeReply::checkedFinished()
{
// It can happen that this job is cancelled before the full data is read, and the job is aborted. This being the test framework, processing happens
// synchronously, so between the signals above and here, the job can get aborted, which emits the finished signal. So do NOT emit it again if
// this is the case.
if (!isFinished()) {
setFinished(true);
Q_EMIT finished();
}
}
void FakeReply::abort()
{
if (!isFinished()) {
setError(OperationCanceledError, QStringLiteral("Operation Canceled"));
Q_EMIT metaDataChanged();
checkedFinished();
}
}
QString getFilePathFromUrl(const QUrl &url)
{
const QString path = url.path();
// old school dav url
const QString sRootUrl = QStringLiteral("/owncloud/remote.php/webdav/");
// more modern dav url including user name
const QString sRootUrl2 = QStringLiteral("/owncloud/remote.php/dav/files/admin/");
if (path.startsWith(sRootUrl)) {
return path.mid(sRootUrl.length());
} else if (path.startsWith(sRootUrl2)) {
return path.mid(sRootUrl2.length());
} else if (path.startsWith(chunkingNgUploadPathC())) {
return path.mid(chunkingNgUploadPathC().length());
}
return {};
}
|