mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-22 04:55:33 +03:00
5be0e84719
Squashed commit of the following: commit 081d10e6909def3a075707e75dbd0c5f63f91903 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Thu Jul 20 14:17:01 2023 +0300 aghnet: fix docs commit 7433b72c0653cb33fe5ff810ae8a1346a6994f95 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Thu Jul 20 14:03:16 2023 +0300 all: imp tests; upd golibs
96 lines
1.8 KiB
Go
96 lines
1.8 KiB
Go
package aghio_test
|
|
|
|
import (
|
|
"io"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/aghio"
|
|
"github.com/AdguardTeam/golibs/testutil"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestLimitReader(t *testing.T) {
|
|
testCases := []struct {
|
|
wantErrMsg string
|
|
name string
|
|
n int64
|
|
}{{
|
|
wantErrMsg: "",
|
|
name: "positive",
|
|
n: 1,
|
|
}, {
|
|
wantErrMsg: "",
|
|
name: "zero",
|
|
n: 0,
|
|
}, {
|
|
wantErrMsg: "limit must be non-negative",
|
|
name: "negative",
|
|
n: -1,
|
|
}}
|
|
|
|
for _, tc := range testCases {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
_, err := aghio.LimitReader(nil, tc.n)
|
|
testutil.AssertErrorMsg(t, tc.wantErrMsg, err)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestLimitedReader_Read(t *testing.T) {
|
|
testCases := []struct {
|
|
err error
|
|
name string
|
|
rStr string
|
|
limit int64
|
|
want int
|
|
}{{
|
|
err: nil,
|
|
name: "perfectly_match",
|
|
rStr: "abc",
|
|
limit: 3,
|
|
want: 3,
|
|
}, {
|
|
err: io.EOF,
|
|
name: "eof",
|
|
rStr: "",
|
|
limit: 3,
|
|
want: 0,
|
|
}, {
|
|
err: &aghio.LimitReachedError{
|
|
Limit: 0,
|
|
},
|
|
name: "limit_reached",
|
|
rStr: "abc",
|
|
limit: 0,
|
|
want: 0,
|
|
}, {
|
|
err: nil,
|
|
name: "truncated",
|
|
rStr: "abc",
|
|
limit: 2,
|
|
want: 2,
|
|
}}
|
|
|
|
for _, tc := range testCases {
|
|
readCloser := io.NopCloser(strings.NewReader(tc.rStr))
|
|
lreader, err := aghio.LimitReader(readCloser, tc.limit)
|
|
require.NoError(t, err)
|
|
require.NotNil(t, lreader)
|
|
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
buf := make([]byte, tc.limit+1)
|
|
n, rerr := lreader.Read(buf)
|
|
require.Equal(t, rerr, tc.err)
|
|
|
|
assert.Equal(t, tc.want, n)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestLimitedReader_LimitReachedError(t *testing.T) {
|
|
testutil.AssertErrorMsg(t, "attempted to read more than 0 bytes", &aghio.LimitReachedError{
|
|
Limit: 0,
|
|
})
|
|
}
|