syncthing/lib/protocol/common_test.go

82 lines
1.6 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
import (
"io"
"time"
)
type TestModel struct {
data []byte
2014-09-28 13:05:25 +02:00
folder string
2014-09-22 21:42:11 +02:00
name string
offset int64
size int
2015-01-24 22:56:12 +01:00
hash []byte
flags uint32
options []Option
2014-09-22 21:42:11 +02:00
closedCh chan bool
}
func newTestModel() *TestModel {
return &TestModel{
closedCh: make(chan bool),
}
}
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) {
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) isClosed() bool {
select {
case <-t.closedCh:
return true
case <-time.After(1 * time.Second):
return false // Timeout
}
}
type ErrPipe struct {
io.PipeWriter
written int
max int
err error
closed bool
}
func (e *ErrPipe) Write(data []byte) (int, error) {
if e.closed {
return 0, e.err
}
if e.written+len(data) > e.max {
n, _ := e.PipeWriter.Write(data[:e.max-e.written])
e.PipeWriter.CloseWithError(e.err)
e.closed = true
return n, e.err
}
return e.PipeWriter.Write(data)
}