syncthing/lib/protocol/common_test.go

63 lines
1.3 KiB
Go
Raw Normal View History

2015-01-13 13:31:14 +01:00
// Copyright (C) 2014 The Protocol Authors.
2014-09-22 21:42:11 +02:00
package protocol
2016-04-09 03:10:31 +02:00
import "time"
2014-09-22 21:42:11 +02:00
type TestModel struct {
2016-01-12 09:19:44 +01:00
data []byte
folder string
name string
offset int64
size int
hash []byte
flags uint32
options []Option
closedCh chan struct{}
closedErr error
2014-09-22 21:42:11 +02:00
}
func newTestModel() *TestModel {
return &TestModel{
2016-01-12 09:19:44 +01:00
closedCh: make(chan struct{}),
2014-09-22 21:42:11 +02:00
}
}
func (t *TestModel) Index(deviceID DeviceID, folder string, files []FileInfo, flags uint32, options []Option) {
2014-09-22 21:42:11 +02:00
}
func (t *TestModel) IndexUpdate(deviceID DeviceID, folder string, files []FileInfo, flags uint32, options []Option) {
2014-09-22 21:42:11 +02:00
}
2015-08-09 10:00:28 +02:00
func (t *TestModel) Request(deviceID DeviceID, folder, name string, offset int64, hash []byte, flags uint32, options []Option, buf []byte) error {
t.folder = folder
2014-09-22 21:42:11 +02:00
t.name = name
t.offset = offset
2015-08-09 10:00:28 +02:00
t.size = len(buf)
2015-01-24 22:56:12 +01:00
t.hash = hash
t.flags = flags
t.options = options
2015-07-29 22:23:43 +02:00
copy(buf, t.data)
return nil
2014-09-22 21:42:11 +02:00
}
func (t *TestModel) Close(deviceID DeviceID, err error) {
2016-01-12 09:19:44 +01:00
t.closedErr = err
2014-09-22 21:42:11 +02:00
close(t.closedCh)
}
func (t *TestModel) ClusterConfig(deviceID DeviceID, config ClusterConfigMessage) {
2014-09-22 21:42:11 +02:00
}
func (t *TestModel) DownloadProgress(DeviceID, string, []FileDownloadProgressUpdate, uint32, []Option) {
}
2016-01-12 09:19:44 +01:00
func (t *TestModel) closedError() error {
2014-09-22 21:42:11 +02:00
select {
case <-t.closedCh:
2016-01-12 09:19:44 +01:00
return t.closedErr
2014-09-22 21:42:11 +02:00
case <-time.After(1 * time.Second):
2016-01-12 09:19:44 +01:00
return nil // Timeout
2014-09-22 21:42:11 +02:00
}
}