@@ -564,63 +564,6 @@ private slots:
564
564
QVERIFY (cls.find (" zallowed/sub2/file" ));
565
565
}
566
566
567
- // Test for issue #7293
568
- void testAllowedMoveForbiddenDelete () {
569
- FakeFolder fakeFolder{FileInfo{}};
570
-
571
- QObject::connect (&fakeFolder.syncEngine (), &SyncEngine::aboutToRemoveRemnantsReadOnlyFolders,
572
- [&](const QList<SyncFileItemPtr> &folders, const QString &localPath, std::function<void (bool )> callback) {
573
- for (const auto &oneFolder : folders) {
574
- FileSystem::removeRecursively (localPath + oneFolder->_file );
575
- }
576
- callback (false );
577
- });
578
-
579
- // Some of this test depends on the order of discovery. With threading
580
- // that order becomes effectively random, but we want to make sure to test
581
- // all cases and thus disable threading.
582
- auto syncOpts = fakeFolder.syncEngine ().syncOptions ();
583
- syncOpts._parallelNetworkJobs = 1 ;
584
- fakeFolder.syncEngine ().setSyncOptions (syncOpts);
585
-
586
- auto &lm = fakeFolder.localModifier ();
587
- auto &rm = fakeFolder.remoteModifier ();
588
- rm.mkdir (" changeonly" );
589
- rm.mkdir (" changeonly/sub1" );
590
- rm.insert (" changeonly/sub1/file1" );
591
- rm.insert (" changeonly/sub1/filetorname1a" );
592
- rm.insert (" changeonly/sub1/filetorname1z" );
593
- rm.mkdir (" changeonly/sub2" );
594
- rm.insert (" changeonly/sub2/file2" );
595
- rm.insert (" changeonly/sub2/filetorname2a" );
596
- rm.insert (" changeonly/sub2/filetorname2z" );
597
-
598
- setAllPerm (rm.find (" changeonly" ), RemotePermissions::fromServerString (" NSV" ));
599
-
600
- QVERIFY (fakeFolder.syncOnce ());
601
-
602
- lm.rename (" changeonly/sub1/filetorname1a" , " changeonly/sub1/aaa1_renamed" );
603
- lm.rename (" changeonly/sub1/filetorname1z" , " changeonly/sub1/zzz1_renamed" );
604
-
605
- lm.rename (" changeonly/sub2/filetorname2a" , " changeonly/sub2/aaa2_renamed" );
606
- lm.rename (" changeonly/sub2/filetorname2z" , " changeonly/sub2/zzz2_renamed" );
607
-
608
- auto expectedState = fakeFolder.currentLocalState ();
609
-
610
- QVERIFY (fakeFolder.syncOnce ());
611
- QCOMPARE (fakeFolder.currentLocalState (), expectedState);
612
- QCOMPARE (fakeFolder.currentRemoteState (), expectedState);
613
-
614
- lm.rename (" changeonly/sub1" , " changeonly/aaa" );
615
- lm.rename (" changeonly/sub2" , " changeonly/zzz" );
616
-
617
- expectedState = fakeFolder.currentLocalState ();
618
-
619
- QVERIFY (fakeFolder.syncOnce ());
620
- QCOMPARE (fakeFolder.currentLocalState (), expectedState);
621
- QCOMPARE (fakeFolder.currentRemoteState (), expectedState);
622
- }
623
-
624
567
void testParentMoveNotAllowedChildrenRestored ()
625
568
{
626
569
FakeFolder fakeFolder{FileInfo{}};
@@ -722,7 +665,7 @@ private slots:
722
665
723
666
remote.mkdir (" readWriteFolder" );
724
667
725
- remote.find (" readWriteFolder" )->permissions = RemotePermissions::fromServerString (" WDNVRSM " );
668
+ remote.find (" readWriteFolder" )->permissions = RemotePermissions::fromServerString (" CKWDNVRSM " );
726
669
727
670
QVERIFY (fakeFolder.syncOnce ());
728
671
QCOMPARE (fakeFolder.currentLocalState (), fakeFolder.currentRemoteState ());
@@ -757,7 +700,7 @@ private slots:
757
700
QVERIFY (folderStatus.permissions () & std::filesystem::perms::owner_read);
758
701
QVERIFY (!static_cast <bool >(folderStatus.permissions () & std::filesystem::perms::owner_write));
759
702
760
- remote.find (" testFolder" )->permissions = RemotePermissions::fromServerString (" WDNVRSM " );
703
+ remote.find (" testFolder" )->permissions = RemotePermissions::fromServerString (" CKWDNVRSM " );
761
704
762
705
QVERIFY (fakeFolder.syncOnce ());
763
706
QCOMPARE (fakeFolder.currentLocalState (), fakeFolder.currentRemoteState ());
@@ -815,7 +758,7 @@ private slots:
815
758
QVERIFY (subFolderReadOnlyStatus.permissions () & std::filesystem::perms::owner_read);
816
759
QVERIFY (!static_cast <bool >(subFolderReadOnlyStatus.permissions () & std::filesystem::perms::owner_write));
817
760
818
- remote.find (" testFolder/subFolderReadOnly" )->permissions = RemotePermissions::fromServerString (" WDNVRSm " );
761
+ remote.find (" testFolder/subFolderReadOnly" )->permissions = RemotePermissions::fromServerString (" CKWDNVRSm " );
819
762
remote.find (" testFolder/subFolderReadWrite" )->permissions = RemotePermissions::fromServerString (" m" );
820
763
remote.mkdir (" testFolder/newSubFolder" );
821
764
remote.create (" testFolder/testFile" , 12 , ' 9' );
0 commit comments