2018-07-12 08:15:57 +00:00
|
|
|
// Copyright (C) 2018 The Syncthing Authors.
|
|
|
|
//
|
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
2018-08-19 21:34:26 +00:00
|
|
|
"bytes"
|
|
|
|
"context"
|
2018-07-12 08:15:57 +00:00
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/syncthing/syncthing/lib/config"
|
|
|
|
"github.com/syncthing/syncthing/lib/db"
|
2019-11-29 08:11:52 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/db/backend"
|
2018-07-12 08:15:57 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/fs"
|
|
|
|
"github.com/syncthing/syncthing/lib/protocol"
|
2018-08-19 21:34:26 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/scanner"
|
2018-07-12 08:15:57 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestRecvOnlyRevertDeletes(t *testing.T) {
|
|
|
|
// Make sure that we delete extraneous files and directories when we hit
|
|
|
|
// Revert.
|
|
|
|
|
2019-03-20 17:38:03 +00:00
|
|
|
// Get us a model up and running
|
2018-07-12 08:15:57 +00:00
|
|
|
|
2020-02-12 06:47:05 +00:00
|
|
|
m, f := setupROFolder(t)
|
2019-04-07 11:29:17 +00:00
|
|
|
ffs := f.Filesystem()
|
2020-02-12 06:47:05 +00:00
|
|
|
defer cleanupModel(m)
|
2018-07-12 08:15:57 +00:00
|
|
|
|
2019-03-20 17:38:03 +00:00
|
|
|
// Create some test data
|
2018-07-12 08:15:57 +00:00
|
|
|
|
2019-03-20 17:38:03 +00:00
|
|
|
for _, dir := range []string{".stfolder", "ignDir", "unknownDir"} {
|
|
|
|
must(t, ffs.MkdirAll(dir, 0755))
|
|
|
|
}
|
2020-02-12 06:47:05 +00:00
|
|
|
must(t, writeFile(ffs, "ignDir/ignFile", []byte("hello\n"), 0644))
|
|
|
|
must(t, writeFile(ffs, "unknownDir/unknownFile", []byte("hello\n"), 0644))
|
|
|
|
must(t, writeFile(ffs, ".stignore", []byte("ignDir\n"), 0644))
|
2018-07-12 08:15:57 +00:00
|
|
|
|
2019-03-20 17:38:03 +00:00
|
|
|
knownFiles := setupKnownFiles(t, ffs, []byte("hello\n"))
|
2018-07-12 08:15:57 +00:00
|
|
|
|
|
|
|
// Send and index update for the known stuff
|
|
|
|
|
|
|
|
m.Index(device1, "ro", knownFiles)
|
2019-04-07 11:29:17 +00:00
|
|
|
f.updateLocalsFromScanning(knownFiles)
|
2018-07-12 08:15:57 +00:00
|
|
|
|
2020-02-12 06:35:24 +00:00
|
|
|
m.fmut.RLock()
|
|
|
|
snap := m.folderFiles["ro"].Snapshot()
|
|
|
|
m.fmut.RUnlock()
|
|
|
|
size := snap.GlobalSize()
|
|
|
|
snap.Release()
|
2018-07-12 08:15:57 +00:00
|
|
|
if size.Files != 1 || size.Directories != 1 {
|
|
|
|
t.Fatalf("Global: expected 1 file and 1 directory: %+v", size)
|
|
|
|
}
|
|
|
|
|
2020-02-12 06:47:05 +00:00
|
|
|
// Scan, should discover the other stuff in the folder
|
2018-07-12 08:15:57 +00:00
|
|
|
|
2020-02-12 06:47:05 +00:00
|
|
|
must(t, m.ScanFolder("ro"))
|
2018-07-12 08:15:57 +00:00
|
|
|
|
|
|
|
// We should now have two files and two directories.
|
|
|
|
|
2020-01-21 17:23:08 +00:00
|
|
|
size = globalSize(t, m, "ro")
|
2018-07-12 08:15:57 +00:00
|
|
|
if size.Files != 2 || size.Directories != 2 {
|
|
|
|
t.Fatalf("Global: expected 2 files and 2 directories: %+v", size)
|
|
|
|
}
|
2020-01-21 17:23:08 +00:00
|
|
|
size = localSize(t, m, "ro")
|
2018-07-12 08:15:57 +00:00
|
|
|
if size.Files != 2 || size.Directories != 2 {
|
|
|
|
t.Fatalf("Local: expected 2 files and 2 directories: %+v", size)
|
|
|
|
}
|
2020-01-21 17:23:08 +00:00
|
|
|
size = receiveOnlyChangedSize(t, m, "ro")
|
2018-07-12 08:15:57 +00:00
|
|
|
if size.Files+size.Directories == 0 {
|
|
|
|
t.Fatalf("ROChanged: expected something: %+v", size)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Revert should delete the unknown stuff
|
|
|
|
|
|
|
|
m.Revert("ro")
|
|
|
|
|
|
|
|
// These should still exist
|
2019-03-20 17:38:03 +00:00
|
|
|
for _, p := range []string{"knownDir/knownFile", "ignDir/ignFile"} {
|
|
|
|
if _, err := ffs.Stat(p); err != nil {
|
2018-07-12 08:15:57 +00:00
|
|
|
t.Error("Unexpected error:", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// These should have been removed
|
2019-03-20 17:38:03 +00:00
|
|
|
for _, p := range []string{"unknownDir", "unknownDir/unknownFile"} {
|
|
|
|
if _, err := ffs.Stat(p); !fs.IsNotExist(err) {
|
2018-07-12 08:15:57 +00:00
|
|
|
t.Error("Unexpected existing thing:", p)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// We should now have one file and directory again.
|
|
|
|
|
2020-01-21 17:23:08 +00:00
|
|
|
size = globalSize(t, m, "ro")
|
2018-07-12 08:15:57 +00:00
|
|
|
if size.Files != 1 || size.Directories != 1 {
|
|
|
|
t.Fatalf("Global: expected 1 files and 1 directories: %+v", size)
|
|
|
|
}
|
2020-01-21 17:23:08 +00:00
|
|
|
size = localSize(t, m, "ro")
|
2018-07-12 08:15:57 +00:00
|
|
|
if size.Files != 1 || size.Directories != 1 {
|
|
|
|
t.Fatalf("Local: expected 1 files and 1 directories: %+v", size)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRecvOnlyRevertNeeds(t *testing.T) {
|
|
|
|
// Make sure that a new file gets picked up and considered latest, then
|
|
|
|
// gets considered old when we hit Revert.
|
|
|
|
|
2019-03-20 17:38:03 +00:00
|
|
|
// Get us a model up and running
|
|
|
|
|
2020-02-12 06:47:05 +00:00
|
|
|
m, f := setupROFolder(t)
|
2019-04-07 11:29:17 +00:00
|
|
|
ffs := f.Filesystem()
|
2020-02-12 06:47:05 +00:00
|
|
|
defer cleanupModel(m)
|
2018-07-12 08:15:57 +00:00
|
|
|
|
|
|
|
// Create some test data
|
|
|
|
|
2019-03-20 17:38:03 +00:00
|
|
|
must(t, ffs.MkdirAll(".stfolder", 0755))
|
2018-07-12 08:15:57 +00:00
|
|
|
oldData := []byte("hello\n")
|
2019-03-20 17:38:03 +00:00
|
|
|
knownFiles := setupKnownFiles(t, ffs, oldData)
|
2018-07-12 08:15:57 +00:00
|
|
|
|
|
|
|
// Send and index update for the known stuff
|
|
|
|
|
|
|
|
m.Index(device1, "ro", knownFiles)
|
2019-04-07 11:29:17 +00:00
|
|
|
f.updateLocalsFromScanning(knownFiles)
|
2018-07-12 08:15:57 +00:00
|
|
|
|
2020-02-12 06:47:05 +00:00
|
|
|
// Scan the folder.
|
2018-07-12 08:15:57 +00:00
|
|
|
|
2020-02-12 06:47:05 +00:00
|
|
|
must(t, m.ScanFolder("ro"))
|
2018-07-12 08:15:57 +00:00
|
|
|
|
|
|
|
// Everything should be in sync.
|
|
|
|
|
2020-01-21 17:23:08 +00:00
|
|
|
size := globalSize(t, m, "ro")
|
2018-07-12 08:15:57 +00:00
|
|
|
if size.Files != 1 || size.Directories != 1 {
|
|
|
|
t.Fatalf("Global: expected 1 file and 1 directory: %+v", size)
|
|
|
|
}
|
2020-01-21 17:23:08 +00:00
|
|
|
size = localSize(t, m, "ro")
|
2018-07-12 08:15:57 +00:00
|
|
|
if size.Files != 1 || size.Directories != 1 {
|
|
|
|
t.Fatalf("Local: expected 1 file and 1 directory: %+v", size)
|
|
|
|
}
|
2020-01-21 17:23:08 +00:00
|
|
|
size = needSize(t, m, "ro")
|
2018-07-12 08:15:57 +00:00
|
|
|
if size.Files+size.Directories > 0 {
|
|
|
|
t.Fatalf("Need: expected nothing: %+v", size)
|
|
|
|
}
|
2020-01-21 17:23:08 +00:00
|
|
|
size = receiveOnlyChangedSize(t, m, "ro")
|
2018-07-12 08:15:57 +00:00
|
|
|
if size.Files+size.Directories > 0 {
|
|
|
|
t.Fatalf("ROChanged: expected nothing: %+v", size)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the file.
|
|
|
|
|
|
|
|
newData := []byte("totally different data\n")
|
2020-02-12 06:47:05 +00:00
|
|
|
must(t, writeFile(ffs, "knownDir/knownFile", newData, 0644))
|
2018-07-12 08:15:57 +00:00
|
|
|
|
|
|
|
// Rescan.
|
|
|
|
|
2019-03-09 18:45:36 +00:00
|
|
|
must(t, m.ScanFolder("ro"))
|
2018-07-12 08:15:57 +00:00
|
|
|
|
|
|
|
// We now have a newer file than the rest of the cluster. Global state should reflect this.
|
|
|
|
|
2020-01-21 17:23:08 +00:00
|
|
|
size = globalSize(t, m, "ro")
|
2018-07-12 08:15:57 +00:00
|
|
|
const sizeOfDir = 128
|
2018-10-10 10:43:07 +00:00
|
|
|
if size.Files != 1 || size.Bytes != sizeOfDir+int64(len(oldData)) {
|
|
|
|
t.Fatalf("Global: expected no change due to the new file: %+v", size)
|
2018-07-12 08:15:57 +00:00
|
|
|
}
|
2020-01-21 17:23:08 +00:00
|
|
|
size = localSize(t, m, "ro")
|
2018-07-12 08:15:57 +00:00
|
|
|
if size.Files != 1 || size.Bytes != sizeOfDir+int64(len(newData)) {
|
|
|
|
t.Fatalf("Local: expected the new file to be reflected: %+v", size)
|
|
|
|
}
|
2020-01-21 17:23:08 +00:00
|
|
|
size = needSize(t, m, "ro")
|
2018-07-12 08:15:57 +00:00
|
|
|
if size.Files+size.Directories > 0 {
|
|
|
|
t.Fatalf("Need: expected nothing: %+v", size)
|
|
|
|
}
|
2020-01-21 17:23:08 +00:00
|
|
|
size = receiveOnlyChangedSize(t, m, "ro")
|
2018-07-12 08:15:57 +00:00
|
|
|
if size.Files+size.Directories == 0 {
|
|
|
|
t.Fatalf("ROChanged: expected something: %+v", size)
|
|
|
|
}
|
|
|
|
|
|
|
|
// We hit the Revert button. The file that was new should become old.
|
|
|
|
|
|
|
|
m.Revert("ro")
|
|
|
|
|
2020-01-21 17:23:08 +00:00
|
|
|
size = globalSize(t, m, "ro")
|
2018-07-12 08:15:57 +00:00
|
|
|
if size.Files != 1 || size.Bytes != sizeOfDir+int64(len(oldData)) {
|
|
|
|
t.Fatalf("Global: expected the global size to revert: %+v", size)
|
|
|
|
}
|
2020-01-21 17:23:08 +00:00
|
|
|
size = localSize(t, m, "ro")
|
2018-07-12 08:15:57 +00:00
|
|
|
if size.Files != 1 || size.Bytes != sizeOfDir+int64(len(newData)) {
|
|
|
|
t.Fatalf("Local: expected the local size to remain: %+v", size)
|
|
|
|
}
|
2020-01-21 17:23:08 +00:00
|
|
|
size = needSize(t, m, "ro")
|
2018-07-12 08:15:57 +00:00
|
|
|
if size.Files != 1 || size.Bytes != int64(len(oldData)) {
|
|
|
|
t.Fatalf("Local: expected to need the old file data: %+v", size)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-10 10:43:07 +00:00
|
|
|
func TestRecvOnlyUndoChanges(t *testing.T) {
|
2019-03-20 17:38:03 +00:00
|
|
|
// Get us a model up and running
|
|
|
|
|
2020-02-12 06:47:05 +00:00
|
|
|
m, f := setupROFolder(t)
|
2019-04-07 11:29:17 +00:00
|
|
|
ffs := f.Filesystem()
|
2020-02-12 06:47:05 +00:00
|
|
|
defer cleanupModel(m)
|
2018-10-10 10:43:07 +00:00
|
|
|
|
|
|
|
// Create some test data
|
|
|
|
|
2019-03-20 17:38:03 +00:00
|
|
|
must(t, ffs.MkdirAll(".stfolder", 0755))
|
2018-10-10 10:43:07 +00:00
|
|
|
oldData := []byte("hello\n")
|
2019-03-20 17:38:03 +00:00
|
|
|
knownFiles := setupKnownFiles(t, ffs, oldData)
|
2018-10-10 10:43:07 +00:00
|
|
|
|
2020-02-12 06:47:05 +00:00
|
|
|
// Send an index update for the known stuff
|
2018-10-10 10:43:07 +00:00
|
|
|
|
|
|
|
m.Index(device1, "ro", knownFiles)
|
2019-04-07 11:29:17 +00:00
|
|
|
f.updateLocalsFromScanning(knownFiles)
|
2018-10-10 10:43:07 +00:00
|
|
|
|
2020-02-12 06:47:05 +00:00
|
|
|
// Scan the folder.
|
2018-10-10 10:43:07 +00:00
|
|
|
|
2020-02-12 06:47:05 +00:00
|
|
|
must(t, m.ScanFolder("ro"))
|
2018-10-10 10:43:07 +00:00
|
|
|
|
|
|
|
// Everything should be in sync.
|
|
|
|
|
2020-01-21 17:23:08 +00:00
|
|
|
size := globalSize(t, m, "ro")
|
2018-10-10 10:43:07 +00:00
|
|
|
if size.Files != 1 || size.Directories != 1 {
|
|
|
|
t.Fatalf("Global: expected 1 file and 1 directory: %+v", size)
|
|
|
|
}
|
2020-01-21 17:23:08 +00:00
|
|
|
size = localSize(t, m, "ro")
|
2018-10-10 10:43:07 +00:00
|
|
|
if size.Files != 1 || size.Directories != 1 {
|
|
|
|
t.Fatalf("Local: expected 1 file and 1 directory: %+v", size)
|
|
|
|
}
|
2020-01-21 17:23:08 +00:00
|
|
|
size = needSize(t, m, "ro")
|
2018-10-10 10:43:07 +00:00
|
|
|
if size.Files+size.Directories > 0 {
|
|
|
|
t.Fatalf("Need: expected nothing: %+v", size)
|
|
|
|
}
|
2020-01-21 17:23:08 +00:00
|
|
|
size = receiveOnlyChangedSize(t, m, "ro")
|
2018-10-10 10:43:07 +00:00
|
|
|
if size.Files+size.Directories > 0 {
|
|
|
|
t.Fatalf("ROChanged: expected nothing: %+v", size)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a file and modify another
|
|
|
|
|
2020-02-12 06:47:05 +00:00
|
|
|
const file = "foo"
|
|
|
|
must(t, writeFile(ffs, file, []byte("hello\n"), 0644))
|
|
|
|
must(t, writeFile(ffs, "knownDir/knownFile", []byte("bye\n"), 0644))
|
2018-10-10 10:43:07 +00:00
|
|
|
|
2020-02-12 06:47:05 +00:00
|
|
|
must(t, m.ScanFolder("ro"))
|
2018-10-10 10:43:07 +00:00
|
|
|
|
2020-01-21 17:23:08 +00:00
|
|
|
size = receiveOnlyChangedSize(t, m, "ro")
|
2018-10-10 10:43:07 +00:00
|
|
|
if size.Files != 2 {
|
|
|
|
t.Fatalf("Receive only: expected 2 files: %+v", size)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove the file again and undo the modification
|
|
|
|
|
2020-02-12 06:47:05 +00:00
|
|
|
must(t, ffs.Remove(file))
|
|
|
|
must(t, writeFile(ffs, "knownDir/knownFile", oldData, 0644))
|
|
|
|
must(t, ffs.Chtimes("knownDir/knownFile", knownFiles[1].ModTime(), knownFiles[1].ModTime()))
|
2018-10-10 10:43:07 +00:00
|
|
|
|
2020-02-12 06:47:05 +00:00
|
|
|
must(t, m.ScanFolder("ro"))
|
2018-10-10 10:43:07 +00:00
|
|
|
|
2020-01-21 17:23:08 +00:00
|
|
|
size = receiveOnlyChangedSize(t, m, "ro")
|
2018-10-10 10:43:07 +00:00
|
|
|
if size.Files+size.Directories+size.Deleted != 0 {
|
|
|
|
t.Fatalf("Receive only: expected all zero: %+v", size)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-20 17:38:03 +00:00
|
|
|
func setupKnownFiles(t *testing.T, ffs fs.Filesystem, data []byte) []protocol.FileInfo {
|
|
|
|
t.Helper()
|
2019-01-11 12:56:05 +00:00
|
|
|
|
2019-03-20 17:38:03 +00:00
|
|
|
must(t, ffs.MkdirAll("knownDir", 0755))
|
2020-02-12 06:47:05 +00:00
|
|
|
must(t, writeFile(ffs, "knownDir/knownFile", data, 0644))
|
2018-07-12 08:15:57 +00:00
|
|
|
|
|
|
|
t0 := time.Now().Add(-1 * time.Minute)
|
2019-03-20 17:38:03 +00:00
|
|
|
must(t, ffs.Chtimes("knownDir/knownFile", t0, t0))
|
2018-07-12 08:15:57 +00:00
|
|
|
|
2019-03-20 17:38:03 +00:00
|
|
|
fi, err := ffs.Stat("knownDir/knownFile")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2018-08-19 21:34:26 +00:00
|
|
|
blocks, _ := scanner.Blocks(context.TODO(), bytes.NewReader(data), protocol.BlockSize(int64(len(data))), int64(len(data)), nil, true)
|
2018-07-12 08:15:57 +00:00
|
|
|
knownFiles := []protocol.FileInfo{
|
|
|
|
{
|
|
|
|
Name: "knownDir",
|
|
|
|
Type: protocol.FileInfoTypeDirectory,
|
|
|
|
Permissions: 0755,
|
|
|
|
Version: protocol.Vector{Counters: []protocol.Counter{{ID: 42, Value: 42}}},
|
|
|
|
Sequence: 42,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "knownDir/knownFile",
|
|
|
|
Type: protocol.FileInfoTypeFile,
|
|
|
|
Permissions: 0644,
|
|
|
|
Size: fi.Size(),
|
|
|
|
ModifiedS: fi.ModTime().Unix(),
|
|
|
|
ModifiedNs: int32(fi.ModTime().UnixNano() % 1e9),
|
|
|
|
Version: protocol.Vector{Counters: []protocol.Counter{{ID: 42, Value: 42}}},
|
|
|
|
Sequence: 42,
|
2018-08-19 21:34:26 +00:00
|
|
|
Blocks: blocks,
|
2018-07-12 08:15:57 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
return knownFiles
|
|
|
|
}
|
|
|
|
|
2020-02-12 06:47:05 +00:00
|
|
|
func setupROFolder(t *testing.T) (*model, *receiveOnlyFolder) {
|
|
|
|
t.Helper()
|
|
|
|
|
2019-03-20 17:38:03 +00:00
|
|
|
w := createTmpWrapper(defaultCfg)
|
2020-02-12 06:47:05 +00:00
|
|
|
fcfg := testFolderConfigFake()
|
2019-03-20 17:38:03 +00:00
|
|
|
fcfg.ID = "ro"
|
2020-02-12 06:47:05 +00:00
|
|
|
fcfg.Label = "ro"
|
2018-07-12 08:15:57 +00:00
|
|
|
fcfg.Type = config.FolderTypeReceiveOnly
|
2019-03-20 17:38:03 +00:00
|
|
|
w.SetFolder(fcfg)
|
2019-11-29 08:29:59 +00:00
|
|
|
|
2019-11-29 08:11:52 +00:00
|
|
|
m := newModel(w, myID, "syncthing", "dev", db.NewLowlevel(backend.OpenMemory()), nil)
|
2019-11-22 20:30:16 +00:00
|
|
|
m.ServeBackground()
|
2020-02-12 06:47:05 +00:00
|
|
|
must(t, m.ScanFolder("ro"))
|
2018-07-12 08:15:57 +00:00
|
|
|
|
2019-11-22 20:30:16 +00:00
|
|
|
m.fmut.RLock()
|
2020-02-12 06:47:05 +00:00
|
|
|
defer m.fmut.RUnlock()
|
|
|
|
f := m.folderRunners["ro"].(*receiveOnlyFolder)
|
2019-03-20 17:38:03 +00:00
|
|
|
|
2019-04-07 11:29:17 +00:00
|
|
|
return m, f
|
2019-11-29 08:29:59 +00:00
|
|
|
}
|
2020-02-12 06:47:05 +00:00
|
|
|
|
|
|
|
func writeFile(fs fs.Filesystem, filename string, data []byte, perm fs.FileMode) error {
|
|
|
|
fd, err := fs.Create(filename)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
_, err = fd.Write(data)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := fd.Close(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return fs.Chmod(filename, perm)
|
|
|
|
}
|