2019-05-10 11:33:45 +00:00
|
|
|
// Copyright (C) 2014 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"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/syncthing/syncthing/lib/protocol"
|
2021-03-03 07:53:50 +00:00
|
|
|
protocolmocks "github.com/syncthing/syncthing/lib/protocol/mocks"
|
2019-05-10 11:33:45 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/scanner"
|
|
|
|
)
|
|
|
|
|
|
|
|
type downloadProgressMessage struct {
|
|
|
|
folder string
|
|
|
|
updates []protocol.FileDownloadProgressUpdate
|
|
|
|
}
|
|
|
|
|
2021-03-03 07:53:50 +00:00
|
|
|
func newFakeConnection(id protocol.DeviceID, model Model) *fakeConnection {
|
|
|
|
f := &fakeConnection{
|
|
|
|
Connection: new(protocolmocks.Connection),
|
|
|
|
id: id,
|
|
|
|
model: model,
|
|
|
|
}
|
|
|
|
f.RequestCalls(func(ctx context.Context, folder, name string, blockNo int, offset int64, size int, hash []byte, weakHash uint32, fromTemporary bool) ([]byte, error) {
|
|
|
|
return f.fileData[name], nil
|
|
|
|
})
|
|
|
|
f.IDReturns(id)
|
|
|
|
f.CloseCalls(func(err error) {
|
2021-03-22 20:50:19 +00:00
|
|
|
model.Closed(id, err)
|
2021-03-03 07:53:50 +00:00
|
|
|
f.ClosedReturns(true)
|
|
|
|
})
|
|
|
|
return f
|
|
|
|
}
|
|
|
|
|
2019-05-10 11:33:45 +00:00
|
|
|
type fakeConnection struct {
|
2021-03-03 07:53:50 +00:00
|
|
|
*protocolmocks.Connection
|
2019-05-10 11:33:45 +00:00
|
|
|
id protocol.DeviceID
|
|
|
|
downloadProgressMessages []downloadProgressMessage
|
|
|
|
files []protocol.FileInfo
|
|
|
|
fileData map[string][]byte
|
|
|
|
folder string
|
2021-03-03 07:53:50 +00:00
|
|
|
model Model
|
2019-05-10 11:33:45 +00:00
|
|
|
mut sync.Mutex
|
|
|
|
}
|
|
|
|
|
2021-03-03 07:53:50 +00:00
|
|
|
func (f *fakeConnection) setIndexFn(fn func(_ context.Context, folder string, fs []protocol.FileInfo) error) {
|
|
|
|
f.IndexCalls(fn)
|
|
|
|
f.IndexUpdateCalls(fn)
|
2019-05-10 11:33:45 +00:00
|
|
|
}
|
|
|
|
|
2019-11-25 10:07:36 +00:00
|
|
|
func (f *fakeConnection) DownloadProgress(_ context.Context, folder string, updates []protocol.FileDownloadProgressUpdate) {
|
2019-05-10 11:33:45 +00:00
|
|
|
f.downloadProgressMessages = append(f.downloadProgressMessages, downloadProgressMessage{
|
|
|
|
folder: folder,
|
|
|
|
updates: updates,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-03-15 06:58:01 +00:00
|
|
|
func (f *fakeConnection) addFileLocked(name string, flags uint32, ftype protocol.FileInfoType, data []byte, version protocol.Vector, localFlags uint32) {
|
2019-05-10 11:33:45 +00:00
|
|
|
blockSize := protocol.BlockSize(int64(len(data)))
|
|
|
|
blocks, _ := scanner.Blocks(context.TODO(), bytes.NewReader(data), blockSize, int64(len(data)), nil, true)
|
|
|
|
|
2021-03-15 06:58:01 +00:00
|
|
|
file := protocol.FileInfo{
|
|
|
|
Name: name,
|
|
|
|
Type: ftype,
|
|
|
|
Version: version,
|
|
|
|
Sequence: time.Now().UnixNano(),
|
|
|
|
LocalFlags: localFlags,
|
2019-05-10 11:33:45 +00:00
|
|
|
}
|
2021-03-15 06:58:01 +00:00
|
|
|
switch ftype {
|
|
|
|
case protocol.FileInfoTypeFile, protocol.FileInfoTypeDirectory:
|
|
|
|
file.ModifiedS = time.Now().Unix()
|
|
|
|
file.Permissions = flags
|
|
|
|
if ftype == protocol.FileInfoTypeFile {
|
|
|
|
file.Size = int64(len(data))
|
|
|
|
file.RawBlockSize = blockSize
|
|
|
|
file.Blocks = blocks
|
|
|
|
}
|
|
|
|
default: // Symlink
|
|
|
|
file.Name = name
|
|
|
|
file.Type = ftype
|
|
|
|
file.Version = version
|
|
|
|
file.SymlinkTarget = string(data)
|
|
|
|
file.NoPermissions = true
|
|
|
|
}
|
|
|
|
f.files = append(f.files, file)
|
2019-05-10 11:33:45 +00:00
|
|
|
|
|
|
|
if f.fileData == nil {
|
|
|
|
f.fileData = make(map[string][]byte)
|
|
|
|
}
|
|
|
|
f.fileData[name] = data
|
|
|
|
}
|
|
|
|
|
2021-03-15 06:58:01 +00:00
|
|
|
func (f *fakeConnection) addFileWithLocalFlags(name string, ftype protocol.FileInfoType, localFlags uint32) {
|
|
|
|
f.mut.Lock()
|
|
|
|
defer f.mut.Unlock()
|
|
|
|
|
|
|
|
var version protocol.Vector
|
|
|
|
version = version.Update(f.id.Short())
|
|
|
|
f.addFileLocked(name, 0, ftype, nil, version, localFlags)
|
|
|
|
}
|
|
|
|
|
2019-05-10 11:33:45 +00:00
|
|
|
func (f *fakeConnection) addFile(name string, flags uint32, ftype protocol.FileInfoType, data []byte) {
|
|
|
|
f.mut.Lock()
|
|
|
|
defer f.mut.Unlock()
|
|
|
|
|
|
|
|
var version protocol.Vector
|
|
|
|
version = version.Update(f.id.Short())
|
2021-03-15 06:58:01 +00:00
|
|
|
f.addFileLocked(name, flags, ftype, data, version, 0)
|
2019-05-10 11:33:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f *fakeConnection) updateFile(name string, flags uint32, ftype protocol.FileInfoType, data []byte) {
|
|
|
|
f.mut.Lock()
|
|
|
|
defer f.mut.Unlock()
|
|
|
|
|
|
|
|
for i, fi := range f.files {
|
|
|
|
if fi.Name == name {
|
|
|
|
f.files = append(f.files[:i], f.files[i+1:]...)
|
2021-03-15 06:58:01 +00:00
|
|
|
f.addFileLocked(name, flags, ftype, data, fi.Version.Update(f.id.Short()), 0)
|
2019-05-10 11:33:45 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *fakeConnection) deleteFile(name string) {
|
|
|
|
f.mut.Lock()
|
|
|
|
defer f.mut.Unlock()
|
|
|
|
|
|
|
|
for i, fi := range f.files {
|
|
|
|
if fi.Name == name {
|
|
|
|
fi.Deleted = true
|
|
|
|
fi.ModifiedS = time.Now().Unix()
|
|
|
|
fi.Version = fi.Version.Update(f.id.Short())
|
|
|
|
fi.Sequence = time.Now().UnixNano()
|
|
|
|
fi.Blocks = nil
|
|
|
|
|
|
|
|
f.files = append(append(f.files[:i], f.files[i+1:]...), fi)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *fakeConnection) sendIndexUpdate() {
|
2021-03-15 06:58:01 +00:00
|
|
|
toSend := make([]protocol.FileInfo, len(f.files))
|
|
|
|
for i := range f.files {
|
|
|
|
toSend[i] = prepareFileInfoForIndex(f.files[i])
|
|
|
|
}
|
|
|
|
f.model.IndexUpdate(f.id, f.folder, toSend)
|
2019-05-10 11:33:45 +00:00
|
|
|
}
|
|
|
|
|
2021-05-16 15:23:27 +00:00
|
|
|
func addFakeConn(m *testModel, dev protocol.DeviceID, folderID string) *fakeConnection {
|
2021-03-03 07:53:50 +00:00
|
|
|
fc := newFakeConnection(dev, m)
|
2020-09-29 11:17:38 +00:00
|
|
|
m.AddConnection(fc, protocol.Hello{})
|
2019-05-10 11:33:45 +00:00
|
|
|
|
|
|
|
m.ClusterConfig(dev, protocol.ClusterConfig{
|
|
|
|
Folders: []protocol.Folder{
|
|
|
|
{
|
2021-05-16 15:23:27 +00:00
|
|
|
ID: folderID,
|
2019-05-10 11:33:45 +00:00
|
|
|
Devices: []protocol.Device{
|
|
|
|
{ID: myID},
|
2021-05-16 15:23:27 +00:00
|
|
|
{ID: dev},
|
2019-05-10 11:33:45 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
return fc
|
|
|
|
}
|