| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149 |
- // Copyright (C) 2016 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 (
- "bytes"
- "context"
- "errors"
- "io/ioutil"
- "os"
- "path/filepath"
- "runtime"
- "strconv"
- "strings"
- "testing"
- "time"
- "github.com/syncthing/syncthing/lib/config"
- "github.com/syncthing/syncthing/lib/events"
- "github.com/syncthing/syncthing/lib/fs"
- "github.com/syncthing/syncthing/lib/protocol"
- )
- func TestRequestSimple(t *testing.T) {
- // Verify that the model performs a request and creates a file based on
- // an incoming index update.
- m, fc, fcfg := setupModelWithConnection()
- tfs := fcfg.Filesystem()
- defer cleanupModelAndRemoveDir(m, tfs.URI())
- // We listen for incoming index updates and trigger when we see one for
- // the expected test file.
- done := make(chan struct{})
- fc.mut.Lock()
- fc.indexFn = func(_ context.Context, folder string, fs []protocol.FileInfo) {
- select {
- case <-done:
- t.Error("More than one index update sent")
- default:
- }
- for _, f := range fs {
- if f.Name == "testfile" {
- close(done)
- return
- }
- }
- }
- fc.mut.Unlock()
- // Send an update for the test file, wait for it to sync and be reported back.
- contents := []byte("test file contents\n")
- fc.addFile("testfile", 0644, protocol.FileInfoTypeFile, contents)
- fc.sendIndexUpdate()
- <-done
- // Verify the contents
- if err := equalContents(filepath.Join(tfs.URI(), "testfile"), contents); err != nil {
- t.Error("File did not sync correctly:", err)
- }
- }
- func TestSymlinkTraversalRead(t *testing.T) {
- // Verify that a symlink can not be traversed for reading.
- if runtime.GOOS == "windows" {
- t.Skip("no symlink support on CI")
- return
- }
- m, fc, fcfg := setupModelWithConnection()
- defer cleanupModelAndRemoveDir(m, fcfg.Filesystem().URI())
- // We listen for incoming index updates and trigger when we see one for
- // the expected test file.
- done := make(chan struct{})
- fc.mut.Lock()
- fc.indexFn = func(_ context.Context, folder string, fs []protocol.FileInfo) {
- select {
- case <-done:
- t.Error("More than one index update sent")
- default:
- }
- for _, f := range fs {
- if f.Name == "symlink" {
- close(done)
- return
- }
- }
- }
- fc.mut.Unlock()
- // Send an update for the symlink, wait for it to sync and be reported back.
- contents := []byte("..")
- fc.addFile("symlink", 0644, protocol.FileInfoTypeSymlink, contents)
- fc.sendIndexUpdate()
- <-done
- // Request a file by traversing the symlink
- res, err := m.Request(device1, "default", "symlink/requests_test.go", 10, 0, nil, 0, false)
- if err == nil || res != nil {
- t.Error("Managed to traverse symlink")
- }
- }
- func TestSymlinkTraversalWrite(t *testing.T) {
- // Verify that a symlink can not be traversed for writing.
- if runtime.GOOS == "windows" {
- t.Skip("no symlink support on CI")
- return
- }
- m, fc, fcfg := setupModelWithConnection()
- defer cleanupModelAndRemoveDir(m, fcfg.Filesystem().URI())
- // We listen for incoming index updates and trigger when we see one for
- // the expected names.
- done := make(chan struct{}, 1)
- badReq := make(chan string, 1)
- badIdx := make(chan string, 1)
- fc.mut.Lock()
- fc.indexFn = func(_ context.Context, folder string, fs []protocol.FileInfo) {
- for _, f := range fs {
- if f.Name == "symlink" {
- done <- struct{}{}
- return
- }
- if strings.HasPrefix(f.Name, "symlink") {
- badIdx <- f.Name
- return
- }
- }
- }
- fc.requestFn = func(_ context.Context, folder, name string, offset int64, size int, hash []byte, fromTemporary bool) ([]byte, error) {
- if name != "symlink" && strings.HasPrefix(name, "symlink") {
- badReq <- name
- }
- return fc.fileData[name], nil
- }
- fc.mut.Unlock()
- // Send an update for the symlink, wait for it to sync and be reported back.
- contents := []byte("..")
- fc.addFile("symlink", 0644, protocol.FileInfoTypeSymlink, contents)
- fc.sendIndexUpdate()
- <-done
- // Send an update for things behind the symlink, wait for requests for
- // blocks for any of them to come back, or index entries. Hopefully none
- // of that should happen.
- contents = []byte("testdata testdata\n")
- fc.addFile("symlink/testfile", 0644, protocol.FileInfoTypeFile, contents)
- fc.addFile("symlink/testdir", 0644, protocol.FileInfoTypeDirectory, contents)
- fc.addFile("symlink/testsyml", 0644, protocol.FileInfoTypeSymlink, contents)
- fc.sendIndexUpdate()
- select {
- case name := <-badReq:
- t.Fatal("Should not have requested the data for", name)
- case name := <-badIdx:
- t.Fatal("Should not have sent the index entry for", name)
- case <-time.After(3 * time.Second):
- // Unfortunately not much else to trigger on here. The puller sleep
- // interval is 1s so if we didn't get any requests within two
- // iterations we should be fine.
- }
- }
- func TestRequestCreateTmpSymlink(t *testing.T) {
- // Test that an update for a temporary file is invalidated
- m, fc, fcfg := setupModelWithConnection()
- defer cleanupModelAndRemoveDir(m, fcfg.Filesystem().URI())
- // We listen for incoming index updates and trigger when we see one for
- // the expected test file.
- goodIdx := make(chan struct{})
- name := fs.TempName("testlink")
- fc.mut.Lock()
- fc.indexFn = func(_ context.Context, folder string, fs []protocol.FileInfo) {
- for _, f := range fs {
- if f.Name == name {
- if f.IsInvalid() {
- goodIdx <- struct{}{}
- } else {
- t.Error("Received index with non-invalid temporary file")
- close(goodIdx)
- }
- return
- }
- }
- }
- fc.mut.Unlock()
- // Send an update for the test file, wait for it to sync and be reported back.
- fc.addFile(name, 0644, protocol.FileInfoTypeSymlink, []byte(".."))
- fc.sendIndexUpdate()
- select {
- case <-goodIdx:
- case <-time.After(3 * time.Second):
- t.Fatal("Timed out without index entry being sent")
- }
- }
- func TestRequestVersioningSymlinkAttack(t *testing.T) {
- if runtime.GOOS == "windows" {
- t.Skip("no symlink support on Windows")
- }
- // Sets up a folder with trashcan versioning and tries to use a
- // deleted symlink to escape
- w, fcfg := tmpDefaultWrapper()
- defer func() {
- os.RemoveAll(fcfg.Filesystem().URI())
- os.Remove(w.ConfigPath())
- }()
- fcfg.Versioning = config.VersioningConfiguration{Type: "trashcan"}
- w.SetFolder(fcfg)
- m, fc := setupModelWithConnectionFromWrapper(w)
- defer cleanupModel(m)
- // Create a temporary directory that we will use as target to see if
- // we can escape to it
- tmpdir, err := ioutil.TempDir("", "syncthing-test")
- if err != nil {
- t.Fatal(err)
- }
- defer os.RemoveAll(tmpdir)
- // We listen for incoming index updates and trigger when we see one for
- // the expected test file.
- idx := make(chan int)
- fc.mut.Lock()
- fc.indexFn = func(_ context.Context, folder string, fs []protocol.FileInfo) {
- idx <- len(fs)
- }
- fc.mut.Unlock()
- waitForIdx := func() {
- select {
- case c := <-idx:
- if c == 0 {
- t.Fatal("Got empty index update")
- }
- case <-time.After(5 * time.Second):
- t.Fatal("timed out before receiving index update")
- }
- }
- // Send an update for the test file, wait for it to sync and be reported back.
- fc.addFile("foo", 0644, protocol.FileInfoTypeSymlink, []byte(tmpdir))
- fc.sendIndexUpdate()
- waitForIdx()
- // Delete the symlink, hoping for it to get versioned
- fc.deleteFile("foo")
- fc.sendIndexUpdate()
- waitForIdx()
- // Recreate foo and a file in it with some data
- fc.updateFile("foo", 0755, protocol.FileInfoTypeDirectory, nil)
- fc.addFile("foo/test", 0644, protocol.FileInfoTypeFile, []byte("testtesttest"))
- fc.sendIndexUpdate()
- waitForIdx()
- // Remove the test file and see if it escaped
- fc.deleteFile("foo/test")
- fc.sendIndexUpdate()
- waitForIdx()
- path := filepath.Join(tmpdir, "test")
- if _, err := os.Lstat(path); !os.IsNotExist(err) {
- t.Fatal("File escaped to", path)
- }
- }
- func TestPullInvalidIgnoredSO(t *testing.T) {
- pullInvalidIgnored(t, config.FolderTypeSendOnly)
- }
- func TestPullInvalidIgnoredSR(t *testing.T) {
- pullInvalidIgnored(t, config.FolderTypeSendReceive)
- }
- // This test checks that (un-)ignored/invalid/deleted files are treated as expected.
- func pullInvalidIgnored(t *testing.T, ft config.FolderType) {
- w := createTmpWrapper(defaultCfgWrapper.RawCopy())
- fcfg := testFolderConfigTmp()
- fss := fcfg.Filesystem()
- fcfg.Type = ft
- w.SetFolder(fcfg)
- m := setupModel(w)
- defer cleanupModelAndRemoveDir(m, fss.URI())
- folderIgnoresAlwaysReload(m, fcfg)
- fc := addFakeConn(m, device1)
- fc.folder = "default"
- if err := m.SetIgnores("default", []string{"*ignored*"}); err != nil {
- panic(err)
- }
- contents := []byte("test file contents\n")
- otherContents := []byte("other test file contents\n")
- invIgn := "invalid:ignored"
- invDel := "invalid:deleted"
- ign := "ignoredNonExisting"
- ignExisting := "ignoredExisting"
- fc.addFile(invIgn, 0644, protocol.FileInfoTypeFile, contents)
- fc.addFile(invDel, 0644, protocol.FileInfoTypeFile, contents)
- fc.deleteFile(invDel)
- fc.addFile(ign, 0644, protocol.FileInfoTypeFile, contents)
- fc.addFile(ignExisting, 0644, protocol.FileInfoTypeFile, contents)
- if err := writeFile(fss, ignExisting, otherContents, 0644); err != nil {
- panic(err)
- }
- done := make(chan struct{})
- fc.mut.Lock()
- fc.indexFn = func(_ context.Context, folder string, fs []protocol.FileInfo) {
- expected := map[string]struct{}{invIgn: {}, ign: {}, ignExisting: {}}
- for _, f := range fs {
- if _, ok := expected[f.Name]; !ok {
- t.Errorf("Unexpected file %v was added to index", f.Name)
- }
- if !f.IsInvalid() {
- t.Errorf("File %v wasn't marked as invalid", f.Name)
- }
- delete(expected, f.Name)
- }
- for name := range expected {
- t.Errorf("File %v wasn't added to index", name)
- }
- close(done)
- }
- fc.mut.Unlock()
- sub := m.evLogger.Subscribe(events.FolderErrors)
- defer sub.Unsubscribe()
- fc.sendIndexUpdate()
- select {
- case ev := <-sub.C():
- t.Fatalf("Errors while scanning/pulling: %v", ev)
- case <-time.After(5 * time.Second):
- t.Fatalf("timed out before index was received")
- case <-done:
- }
- done = make(chan struct{})
- expected := map[string]struct{}{ign: {}, ignExisting: {}}
- // The indexes will normally arrive in one update, but it is possible
- // that they arrive in separate ones.
- fc.mut.Lock()
- fc.indexFn = func(_ context.Context, folder string, fs []protocol.FileInfo) {
- for _, f := range fs {
- if _, ok := expected[f.Name]; !ok {
- t.Errorf("Unexpected file %v was updated in index", f.Name)
- continue
- }
- if f.IsInvalid() {
- t.Errorf("File %v is still marked as invalid", f.Name)
- }
- if f.Name == ign {
- // The unignored deleted file should have an
- // empty version, to make it not override
- // existing global files.
- if !f.Deleted {
- t.Errorf("File %v was not marked as deleted", f.Name)
- }
- if len(f.Version.Counters) != 0 {
- t.Errorf("File %v has version %v, expected empty", f.Name, f.Version)
- }
- } else {
- // The unignored existing file should have a
- // version with only a local counter, to make
- // it conflict changed global files.
- if f.Deleted {
- t.Errorf("File %v is marked as deleted", f.Name)
- }
- if len(f.Version.Counters) != 1 || f.Version.Counter(myID.Short()) == 0 {
- t.Errorf("File %v has version %v, expected one entry for ourselves", f.Name, f.Version)
- }
- }
- delete(expected, f.Name)
- }
- if len(expected) == 0 {
- close(done)
- }
- }
- // Make sure pulling doesn't interfere, as index updates are racy and
- // thus we cannot distinguish between scan and pull results.
- fc.requestFn = func(_ context.Context, folder, name string, offset int64, size int, hash []byte, fromTemporary bool) ([]byte, error) {
- return nil, nil
- }
- fc.mut.Unlock()
- if err := m.SetIgnores("default", []string{"*:ignored*"}); err != nil {
- panic(err)
- }
- select {
- case <-time.After(5 * time.Second):
- t.Fatal("timed out before receiving index updates for all existing files, missing", expected)
- case <-done:
- }
- }
- func TestIssue4841(t *testing.T) {
- m, fc, fcfg := setupModelWithConnection()
- defer cleanupModelAndRemoveDir(m, fcfg.Filesystem().URI())
- received := make(chan []protocol.FileInfo)
- fc.mut.Lock()
- fc.indexFn = func(_ context.Context, _ string, fs []protocol.FileInfo) {
- received <- fs
- }
- fc.mut.Unlock()
- checkReceived := func(fs []protocol.FileInfo) protocol.FileInfo {
- t.Helper()
- if len(fs) != 1 {
- t.Fatalf("Sent index with %d files, should be 1", len(fs))
- }
- if fs[0].Name != "foo" {
- t.Fatalf(`Sent index with file %v, should be "foo"`, fs[0].Name)
- }
- return fs[0]
- }
- // Setup file from remote that was ignored locally
- folder := m.folderRunners[defaultFolderConfig.ID].(*sendReceiveFolder)
- folder.updateLocals([]protocol.FileInfo{{
- Name: "foo",
- Type: protocol.FileInfoTypeFile,
- LocalFlags: protocol.FlagLocalIgnored,
- Version: protocol.Vector{}.Update(device1.Short()),
- }})
- checkReceived(<-received)
- // Scan without ignore patterns with "foo" not existing locally
- if err := m.ScanFolder("default"); err != nil {
- t.Fatal("Failed scanning:", err)
- }
- f := checkReceived(<-received)
- if !f.Version.Equal(protocol.Vector{}) {
- t.Errorf("Got Version == %v, expected empty version", f.Version)
- }
- }
- func TestRescanIfHaveInvalidContent(t *testing.T) {
- m, fc, fcfg := setupModelWithConnection()
- tfs := fcfg.Filesystem()
- defer cleanupModelAndRemoveDir(m, tfs.URI())
- payload := []byte("hello")
- must(t, writeFile(tfs, "foo", payload, 0777))
- received := make(chan []protocol.FileInfo)
- fc.mut.Lock()
- fc.indexFn = func(_ context.Context, _ string, fs []protocol.FileInfo) {
- received <- fs
- }
- fc.mut.Unlock()
- checkReceived := func(fs []protocol.FileInfo) protocol.FileInfo {
- t.Helper()
- if len(fs) != 1 {
- t.Fatalf("Sent index with %d files, should be 1", len(fs))
- }
- if fs[0].Name != "foo" {
- t.Fatalf(`Sent index with file %v, should be "foo"`, fs[0].Name)
- }
- return fs[0]
- }
- // Scan without ignore patterns with "foo" not existing locally
- if err := m.ScanFolder("default"); err != nil {
- t.Fatal("Failed scanning:", err)
- }
- f := checkReceived(<-received)
- if f.Blocks[0].WeakHash != 103547413 {
- t.Fatalf("unexpected weak hash: %d != 103547413", f.Blocks[0].WeakHash)
- }
- res, err := m.Request(device1, "default", "foo", int32(len(payload)), 0, f.Blocks[0].Hash, f.Blocks[0].WeakHash, false)
- if err != nil {
- t.Fatal(err)
- }
- buf := res.Data()
- if !bytes.Equal(buf, payload) {
- t.Errorf("%s != %s", buf, payload)
- }
- payload = []byte("bye")
- buf = make([]byte, len(payload))
- must(t, writeFile(tfs, "foo", payload, 0777))
- _, err = m.Request(device1, "default", "foo", int32(len(payload)), 0, f.Blocks[0].Hash, f.Blocks[0].WeakHash, false)
- if err == nil {
- t.Fatalf("expected failure")
- }
- select {
- case fs := <-received:
- f := checkReceived(fs)
- if f.Blocks[0].WeakHash != 41943361 {
- t.Fatalf("unexpected weak hash: %d != 41943361", f.Blocks[0].WeakHash)
- }
- case <-time.After(time.Second):
- t.Fatalf("timed out")
- }
- }
- func TestParentDeletion(t *testing.T) {
- m, fc, fcfg := setupModelWithConnection()
- testFs := fcfg.Filesystem()
- defer cleanupModelAndRemoveDir(m, testFs.URI())
- parent := "foo"
- child := filepath.Join(parent, "bar")
- received := make(chan []protocol.FileInfo)
- fc.addFile(parent, 0777, protocol.FileInfoTypeDirectory, nil)
- fc.addFile(child, 0777, protocol.FileInfoTypeDirectory, nil)
- fc.mut.Lock()
- fc.indexFn = func(_ context.Context, folder string, fs []protocol.FileInfo) {
- received <- fs
- }
- fc.mut.Unlock()
- fc.sendIndexUpdate()
- // Get back index from initial setup
- select {
- case fs := <-received:
- if len(fs) != 2 {
- t.Fatalf("Sent index with %d files, should be 2", len(fs))
- }
- case <-time.After(time.Second):
- t.Fatalf("timed out")
- }
- // Delete parent dir
- must(t, testFs.RemoveAll(parent))
- // Scan only the child dir (not the parent)
- if err := m.ScanFolderSubdirs("default", []string{child}); err != nil {
- t.Fatal("Failed scanning:", err)
- }
- select {
- case fs := <-received:
- if len(fs) != 1 {
- t.Fatalf("Sent index with %d files, should be 1", len(fs))
- }
- if fs[0].Name != child {
- t.Fatalf(`Sent index with file "%v", should be "%v"`, fs[0].Name, child)
- }
- case <-time.After(time.Second):
- t.Fatalf("timed out")
- }
- // Recreate the child dir on the remote
- fc.updateFile(child, 0777, protocol.FileInfoTypeDirectory, nil)
- fc.sendIndexUpdate()
- // Wait for the child dir to be recreated and sent to the remote
- select {
- case fs := <-received:
- l.Debugln("sent:", fs)
- found := false
- for _, f := range fs {
- if f.Name == child {
- if f.Deleted {
- t.Fatalf(`File "%v" is still deleted`, child)
- }
- found = true
- }
- }
- if !found {
- t.Fatalf(`File "%v" is missing in index`, child)
- }
- case <-time.After(5 * time.Second):
- t.Fatalf("timed out")
- }
- }
- // TestRequestSymlinkWindows checks that symlinks aren't marked as deleted on windows
- // Issue: https://github.com/syncthing/syncthing/issues/5125
- func TestRequestSymlinkWindows(t *testing.T) {
- if runtime.GOOS != "windows" {
- t.Skip("windows specific test")
- }
- m, fc, fcfg := setupModelWithConnection()
- defer cleanupModelAndRemoveDir(m, fcfg.Filesystem().URI())
- received := make(chan []protocol.FileInfo)
- fc.mut.Lock()
- fc.indexFn = func(_ context.Context, folder string, fs []protocol.FileInfo) {
- select {
- case <-received:
- t.Error("More than one index update sent")
- default:
- }
- received <- fs
- }
- fc.mut.Unlock()
- fc.addFile("link", 0644, protocol.FileInfoTypeSymlink, nil)
- fc.sendIndexUpdate()
- select {
- case fs := <-received:
- close(received)
- // expected first index
- if len(fs) != 1 {
- t.Fatalf("Expected just one file in index, got %v", fs)
- }
- f := fs[0]
- if f.Name != "link" {
- t.Fatalf(`Got file info with path "%v", expected "link"`, f.Name)
- }
- if !f.IsInvalid() {
- t.Errorf(`File info was not marked as invalid`)
- }
- case <-time.After(time.Second):
- t.Fatalf("timed out before pull was finished")
- }
- sub := m.evLogger.Subscribe(events.StateChanged | events.LocalIndexUpdated)
- defer sub.Unsubscribe()
- m.ScanFolder("default")
- for {
- select {
- case ev := <-sub.C():
- switch data := ev.Data.(map[string]interface{}); {
- case ev.Type == events.LocalIndexUpdated:
- t.Fatalf("Local index was updated unexpectedly: %v", data)
- case ev.Type == events.StateChanged:
- if data["from"] == "scanning" {
- return
- }
- }
- case <-time.After(5 * time.Second):
- t.Fatalf("Timed out before scan finished")
- }
- }
- }
- func equalContents(path string, contents []byte) error {
- if bs, err := ioutil.ReadFile(path); err != nil {
- return err
- } else if !bytes.Equal(bs, contents) {
- return errors.New("incorrect data")
- }
- return nil
- }
- func TestRequestRemoteRenameChanged(t *testing.T) {
- m, fc, fcfg := setupModelWithConnection()
- tfs := fcfg.Filesystem()
- tmpDir := tfs.URI()
- defer cleanupModelAndRemoveDir(m, tfs.URI())
- received := make(chan []protocol.FileInfo)
- fc.mut.Lock()
- fc.indexFn = func(_ context.Context, folder string, fs []protocol.FileInfo) {
- select {
- case <-received:
- t.Error("More than one index update sent")
- default:
- }
- received <- fs
- }
- fc.mut.Unlock()
- // setup
- a := "a"
- b := "b"
- data := map[string][]byte{
- a: []byte("aData"),
- b: []byte("bData"),
- }
- for _, n := range [2]string{a, b} {
- fc.addFile(n, 0644, protocol.FileInfoTypeFile, data[n])
- }
- fc.sendIndexUpdate()
- select {
- case fs := <-received:
- close(received)
- if len(fs) != 2 {
- t.Fatalf("Received index with %v indexes instead of 2", len(fs))
- }
- case <-time.After(10 * time.Second):
- t.Fatal("timed out")
- }
- for _, n := range [2]string{a, b} {
- must(t, equalContents(filepath.Join(tmpDir, n), data[n]))
- }
- var gotA, gotB, gotConfl bool
- done := make(chan struct{})
- fc.mut.Lock()
- fc.indexFn = func(_ context.Context, folder string, fs []protocol.FileInfo) {
- select {
- case <-done:
- t.Error("Received more index updates than expected")
- return
- default:
- }
- for _, f := range fs {
- switch {
- case f.Name == a:
- if gotA {
- t.Error("Got more than one index update for", f.Name)
- }
- gotA = true
- case f.Name == b:
- if gotB {
- t.Error("Got more than one index update for", f.Name)
- }
- if f.Version.Counter(fc.id.Short()) == 0 {
- // This index entry might be superseeded
- // by the final one or sent before it separately.
- break
- }
- gotB = true
- case strings.HasPrefix(f.Name, "b.sync-conflict-"):
- if gotConfl {
- t.Error("Got more than one index update for conflicts of", f.Name)
- }
- gotConfl = true
- default:
- t.Error("Got unexpected file in index update", f.Name)
- }
- }
- if gotA && gotB && gotConfl {
- close(done)
- }
- }
- fc.mut.Unlock()
- fd, err := tfs.OpenFile(b, fs.OptReadWrite, 0644)
- if err != nil {
- t.Fatal(err)
- }
- otherData := []byte("otherData")
- if _, err = fd.Write(otherData); err != nil {
- t.Fatal(err)
- }
- fd.Close()
- // rename
- fc.deleteFile(a)
- fc.updateFile(b, 0644, protocol.FileInfoTypeFile, data[a])
- // Make sure the remote file for b is newer and thus stays global -> local conflict
- fc.mut.Lock()
- for i := range fc.files {
- if fc.files[i].Name == b {
- fc.files[i].ModifiedS += 100
- break
- }
- }
- fc.mut.Unlock()
- fc.sendIndexUpdate()
- select {
- case <-done:
- case <-time.After(10 * time.Second):
- t.Errorf("timed out without receiving all expected index updates")
- }
- // Check outcome
- tfs.Walk(".", func(path string, info fs.FileInfo, err error) error {
- switch {
- case path == a:
- t.Errorf(`File "a" was not removed`)
- case path == b:
- if err := equalContents(filepath.Join(tmpDir, b), data[a]); err != nil {
- t.Error(`File "b" has unexpected content (renamed from a on remote)`)
- }
- case strings.HasPrefix(path, b+".sync-conflict-"):
- if err := equalContents(filepath.Join(tmpDir, path), otherData); err != nil {
- t.Error(`Sync conflict of "b" has unexptected content`)
- }
- case path == "." || strings.HasPrefix(path, ".stfolder"):
- default:
- t.Error("Found unexpected file", path)
- }
- return nil
- })
- }
- func TestRequestRemoteRenameConflict(t *testing.T) {
- m, fc, fcfg := setupModelWithConnection()
- tfs := fcfg.Filesystem()
- tmpDir := tfs.URI()
- defer cleanupModelAndRemoveDir(m, tmpDir)
- recv := make(chan int)
- fc.mut.Lock()
- fc.indexFn = func(_ context.Context, folder string, fs []protocol.FileInfo) {
- recv <- len(fs)
- }
- fc.mut.Unlock()
- // setup
- a := "a"
- b := "b"
- data := map[string][]byte{
- a: []byte("aData"),
- b: []byte("bData"),
- }
- for _, n := range [2]string{a, b} {
- fc.addFile(n, 0644, protocol.FileInfoTypeFile, data[n])
- }
- fc.sendIndexUpdate()
- select {
- case i := <-recv:
- if i != 2 {
- t.Fatalf("received %v items in index, expected 1", i)
- }
- case <-time.After(10 * time.Second):
- t.Fatal("timed out")
- }
- for _, n := range [2]string{a, b} {
- must(t, equalContents(filepath.Join(tmpDir, n), data[n]))
- }
- fd, err := tfs.OpenFile(b, fs.OptReadWrite, 0644)
- if err != nil {
- t.Fatal(err)
- }
- otherData := []byte("otherData")
- if _, err = fd.Write(otherData); err != nil {
- t.Fatal(err)
- }
- fd.Close()
- m.ScanFolders()
- select {
- case i := <-recv:
- if i != 1 {
- t.Fatalf("received %v items in index, expected 1", i)
- }
- case <-time.After(10 * time.Second):
- t.Fatal("timed out")
- }
- // make sure the following rename is more recent (not concurrent)
- time.Sleep(2 * time.Second)
- // rename
- fc.deleteFile(a)
- fc.updateFile(b, 0644, protocol.FileInfoTypeFile, data[a])
- fc.sendIndexUpdate()
- select {
- case <-recv:
- case <-time.After(10 * time.Second):
- t.Fatal("timed out")
- }
- // Check outcome
- foundB := false
- foundBConfl := false
- tfs.Walk(".", func(path string, info fs.FileInfo, err error) error {
- switch {
- case path == a:
- t.Errorf(`File "a" was not removed`)
- case path == b:
- foundB = true
- case strings.HasPrefix(path, b) && strings.Contains(path, ".sync-conflict-"):
- foundBConfl = true
- }
- return nil
- })
- if !foundB {
- t.Errorf(`File "b" was removed`)
- }
- if !foundBConfl {
- t.Errorf(`No conflict file for "b" was created`)
- }
- }
- func TestRequestDeleteChanged(t *testing.T) {
- m, fc, fcfg := setupModelWithConnection()
- tfs := fcfg.Filesystem()
- defer cleanupModelAndRemoveDir(m, tfs.URI())
- done := make(chan struct{})
- fc.mut.Lock()
- fc.indexFn = func(_ context.Context, folder string, fs []protocol.FileInfo) {
- select {
- case <-done:
- t.Error("More than one index update sent")
- default:
- }
- close(done)
- }
- fc.mut.Unlock()
- // setup
- a := "a"
- data := []byte("aData")
- fc.addFile(a, 0644, protocol.FileInfoTypeFile, data)
- fc.sendIndexUpdate()
- select {
- case <-done:
- done = make(chan struct{})
- case <-time.After(10 * time.Second):
- t.Fatal("timed out")
- }
- fc.mut.Lock()
- fc.indexFn = func(_ context.Context, folder string, fs []protocol.FileInfo) {
- select {
- case <-done:
- t.Error("More than one index update sent")
- default:
- }
- close(done)
- }
- fc.mut.Unlock()
- fd, err := tfs.OpenFile(a, fs.OptReadWrite, 0644)
- if err != nil {
- t.Fatal(err)
- }
- otherData := []byte("otherData")
- if _, err = fd.Write(otherData); err != nil {
- t.Fatal(err)
- }
- fd.Close()
- // rename
- fc.deleteFile(a)
- fc.sendIndexUpdate()
- select {
- case <-done:
- case <-time.After(10 * time.Second):
- t.Fatal("timed out")
- }
- // Check outcome
- if _, err := tfs.Lstat(a); err != nil {
- if fs.IsNotExist(err) {
- t.Error(`Modified file "a" was removed`)
- } else {
- t.Error(`Error stating file "a":`, err)
- }
- }
- }
- func TestNeedFolderFiles(t *testing.T) {
- m, fc, fcfg := setupModelWithConnection()
- tfs := fcfg.Filesystem()
- tmpDir := tfs.URI()
- defer cleanupModelAndRemoveDir(m, tmpDir)
- sub := m.evLogger.Subscribe(events.RemoteIndexUpdated)
- defer sub.Unsubscribe()
- errPreventSync := errors.New("you aren't getting any of this")
- fc.mut.Lock()
- fc.requestFn = func(context.Context, string, string, int64, int, []byte, bool) ([]byte, error) {
- return nil, errPreventSync
- }
- fc.mut.Unlock()
- data := []byte("foo")
- num := 20
- for i := 0; i < num; i++ {
- fc.addFile(strconv.Itoa(i), 0644, protocol.FileInfoTypeFile, data)
- }
- fc.sendIndexUpdate()
- select {
- case <-sub.C():
- case <-time.After(5 * time.Second):
- t.Fatal("Timed out before receiving index")
- }
- progress, queued, rest := m.NeedFolderFiles(fcfg.ID, 1, 100)
- if got := len(progress) + len(queued) + len(rest); got != num {
- t.Errorf("Got %v needed items, expected %v", got, num)
- }
- exp := 10
- for page := 1; page < 3; page++ {
- progress, queued, rest := m.NeedFolderFiles(fcfg.ID, page, exp)
- if got := len(progress) + len(queued) + len(rest); got != exp {
- t.Errorf("Got %v needed items on page %v, expected %v", got, page, exp)
- }
- }
- }
- // TestIgnoreDeleteUnignore checks that the deletion of an ignored file is not
- // propagated upon un-ignoring.
- // https://github.com/syncthing/syncthing/issues/6038
- func TestIgnoreDeleteUnignore(t *testing.T) {
- w, fcfg := tmpDefaultWrapper()
- m := setupModel(w)
- fss := fcfg.Filesystem()
- tmpDir := fss.URI()
- defer cleanupModelAndRemoveDir(m, tmpDir)
- folderIgnoresAlwaysReload(m, fcfg)
- fc := addFakeConn(m, device1)
- fc.folder = "default"
- fc.mut.Lock()
- fc.mut.Unlock()
- file := "foobar"
- contents := []byte("test file contents\n")
- basicCheck := func(fs []protocol.FileInfo) {
- t.Helper()
- if len(fs) != 1 {
- t.Fatal("expected a single index entry, got", len(fs))
- } else if fs[0].Name != file {
- t.Fatalf("expected a index entry for %v, got one for %v", file, fs[0].Name)
- }
- }
- done := make(chan struct{})
- fc.mut.Lock()
- fc.indexFn = func(_ context.Context, folder string, fs []protocol.FileInfo) {
- basicCheck(fs)
- close(done)
- }
- fc.mut.Unlock()
- if err := writeFile(fss, file, contents, 0644); err != nil {
- panic(err)
- }
- m.ScanFolders()
- select {
- case <-time.After(5 * time.Second):
- t.Fatalf("timed out before index was received")
- case <-done:
- }
- done = make(chan struct{})
- fc.mut.Lock()
- fc.indexFn = func(_ context.Context, folder string, fs []protocol.FileInfo) {
- basicCheck(fs)
- f := fs[0]
- if !f.IsInvalid() {
- t.Errorf("Received non-invalid index update")
- }
- close(done)
- }
- fc.mut.Unlock()
- if err := m.SetIgnores("default", []string{"foobar"}); err != nil {
- panic(err)
- }
- select {
- case <-time.After(5 * time.Second):
- t.Fatal("timed out before receiving index update")
- case <-done:
- }
- done = make(chan struct{})
- fc.mut.Lock()
- fc.indexFn = func(_ context.Context, folder string, fs []protocol.FileInfo) {
- basicCheck(fs)
- f := fs[0]
- if f.IsInvalid() {
- t.Errorf("Received invalid index update")
- }
- if !f.Version.Equal(protocol.Vector{}) && f.Deleted {
- t.Error("Received deleted index entry with non-empty version")
- }
- l.Infoln(f)
- close(done)
- }
- fc.mut.Unlock()
- if err := fss.Remove(file); err != nil {
- t.Fatal(err)
- }
- if err := m.SetIgnores("default", []string{}); err != nil {
- panic(err)
- }
- select {
- case <-time.After(5 * time.Second):
- t.Fatalf("timed out before index was received")
- case <-done:
- }
- }
- // TestRequestLastFileProgress checks that the last pulled file (here only) is registered
- // as in progress.
- func TestRequestLastFileProgress(t *testing.T) {
- m, fc, fcfg := setupModelWithConnection()
- tfs := fcfg.Filesystem()
- defer cleanupModelAndRemoveDir(m, tfs.URI())
- done := make(chan struct{})
- fc.mut.Lock()
- fc.requestFn = func(_ context.Context, folder, name string, _ int64, _ int, _ []byte, _ bool) ([]byte, error) {
- defer close(done)
- progress, queued, rest := m.NeedFolderFiles(folder, 1, 10)
- if len(queued)+len(rest) != 0 {
- t.Error(`There should not be any queued or "rest" items`)
- }
- if len(progress) != 1 {
- t.Error("Expected exactly one item in progress.")
- }
- return fc.fileData[name], nil
- }
- fc.mut.Unlock()
- contents := []byte("test file contents\n")
- fc.addFile("testfile", 0644, protocol.FileInfoTypeFile, contents)
- fc.sendIndexUpdate()
- select {
- case <-done:
- case <-time.After(5 * time.Second):
- t.Fatal("Timed out before file was requested")
- }
- }
|