debian-mirror-gitlab/workhorse/internal/upload/destination/reader_test.go

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
898 B
Go
Raw Normal View History

2022-05-07 20:08:51 +05:30
package destination
2021-02-22 17:27:13 +05:30
import (
"fmt"
2022-07-23 23:45:48 +05:30
"io"
2021-02-22 17:27:13 +05:30
"strings"
"testing"
"testing/iotest"
"github.com/stretchr/testify/require"
)
func TestHardLimitReader(t *testing.T) {
const text = "hello world"
r := iotest.OneByteReader(
&hardLimitReader{
r: strings.NewReader(text),
n: int64(len(text)),
},
)
2022-07-23 23:45:48 +05:30
out, err := io.ReadAll(r)
2021-02-22 17:27:13 +05:30
require.NoError(t, err)
require.Equal(t, text, string(out))
}
func TestHardLimitReaderFail(t *testing.T) {
const text = "hello world"
for bufSize := len(text) / 2; bufSize < len(text)*2; bufSize++ {
t.Run(fmt.Sprintf("bufsize:%d", bufSize), func(t *testing.T) {
r := &hardLimitReader{
r: iotest.DataErrReader(strings.NewReader(text)),
n: int64(len(text)) - 1,
}
buf := make([]byte, bufSize)
var err error
for i := 0; err == nil && i < 1000; i++ {
_, err = r.Read(buf)
}
require.Equal(t, ErrEntityTooLarge, err)
})
}
}