1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
package tools_test
import (
"bytes"
"io"
"testing"
"github.com/git-lfs/git-lfs/v3/errors"
"github.com/git-lfs/git-lfs/v3/tools"
"github.com/stretchr/testify/assert"
)
func TestRetriableReaderReturnsSuccessfulReads(t *testing.T) {
r := tools.NewRetriableReader(bytes.NewBuffer([]byte{0x1, 0x2, 0x3, 0x4}))
var buf [4]byte
n, err := r.Read(buf[:])
assert.Nil(t, err)
assert.Equal(t, 4, n)
assert.Equal(t, []byte{0x1, 0x2, 0x3, 0x4}, buf[:])
}
func TestRetriableReaderReturnsEOFs(t *testing.T) {
r := tools.NewRetriableReader(bytes.NewBuffer([]byte{ /* empty */ }))
var buf [1]byte
n, err := r.Read(buf[:])
assert.Equal(t, io.EOF, err)
assert.Equal(t, 0, n)
}
func TestRetriableReaderMakesErrorsRetriable(t *testing.T) {
expected := errors.New("example error")
r := tools.NewRetriableReader(&ErrReader{expected})
var buf [1]byte
n, err := r.Read(buf[:])
assert.Equal(t, 0, n)
assert.EqualError(t, err, "LFS: "+expected.Error())
assert.True(t, errors.IsRetriableError(err))
}
func TestRetriableReaderDoesNotRewrap(t *testing.T) {
// expected is already "retriable", as would be the case if the
// underlying reader was a *RetriableReader itself.
expected := errors.NewRetriableError(errors.New("example error"))
r := tools.NewRetriableReader(&ErrReader{expected})
var buf [1]byte
n, err := r.Read(buf[:])
assert.Equal(t, 0, n)
// errors.NewRetriableError wraps the given error with the prefix
// message "LFS", so these two errors should be equal, indicating that
// the RetriableReader did not re-wrap the error it received.
assert.EqualError(t, err, expected.Error())
assert.True(t, errors.IsRetriableError(err))
}
// ErrReader implements io.Reader and only returns errors.
type ErrReader struct {
// err is the error that this reader will return.
err error
}
// Read implements io.Reader#Read, and returns (0, e.err).
func (e *ErrReader) Read(p []byte) (n int, err error) {
return 0, e.err
}
|