summaryrefslogtreecommitdiffstats
path: root/lib/model/requests_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'lib/model/requests_test.go')
-rw-r--r--lib/model/requests_test.go20
1 files changed, 12 insertions, 8 deletions
diff --git a/lib/model/requests_test.go b/lib/model/requests_test.go
index a0c491d71b..35df4fdd9e 100644
--- a/lib/model/requests_test.go
+++ b/lib/model/requests_test.go
@@ -330,9 +330,7 @@ func pullInvalidIgnored(t *testing.T, ft config.FolderType) {
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)
- }
+ writeFile(t, fss, ignExisting, otherContents)
done := make(chan struct{})
fc.setIndexFn(func(_ context.Context, folder string, fs []protocol.FileInfo) error {
@@ -486,7 +484,7 @@ func TestRescanIfHaveInvalidContent(t *testing.T) {
payload := []byte("hello")
- must(t, writeFile(tfs, "foo", payload, 0777))
+ writeFile(t, tfs, "foo", payload)
received := make(chan []protocol.FileInfo)
fc.setIndexFn(func(_ context.Context, _ string, fs []protocol.FileInfo) error {
@@ -526,7 +524,7 @@ func TestRescanIfHaveInvalidContent(t *testing.T) {
payload = []byte("bye")
buf = make([]byte, len(payload))
- must(t, writeFile(tfs, "foo", payload, 0777))
+ writeFile(t, tfs, "foo", payload)
_, err = m.Request(device1, "default", "foo", 0, int32(len(payload)), 0, f.Blocks[0].Hash, f.Blocks[0].WeakHash, false)
if err == nil {
@@ -1066,9 +1064,7 @@ func TestIgnoreDeleteUnignore(t *testing.T) {
return nil
})
- if err := writeFile(fss, file, contents, 0644); err != nil {
- panic(err)
- }
+ writeFile(t, fss, file, contents)
m.ScanFolders()
select {
@@ -1430,6 +1426,14 @@ func TestRequestReceiveEncrypted(t *testing.T) {
// Simulate request from device that is untrusted too, i.e. with non-empty, but garbage hash
_, err := m.Request(device1, fcfg.ID, name, 0, 1064, 0, []byte("garbage"), 0, false)
must(t, err)
+
+ changed, err := m.LocalChangedFolderFiles(fcfg.ID, 1, 10)
+ must(t, err)
+ if l := len(changed); l != 1 {
+ t.Errorf("Expected one locally changed file, got %v", l)
+ } else if changed[0].Name != files[0].Name {
+ t.Errorf("Expected %v, got %v", files[0].Name, changed[0].Name)
+ }
}
func TestRequestGlobalInvalidToValid(t *testing.T) {