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