mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-12-15 11:22:49 +03:00
0d44822c43
Merge in DNS/adguard-home from 2639-testify-require-3 to master Updates #2639. Squashed commit of the following: commit 83d7afcbb7e5393db5a0242f3eaca063710d36b7 Merge: ef154b6de83b919d
Author: Eugene Burkov <e.burkov@adguard.com> Date: Fri Feb 12 13:07:58 2021 +0300 Merge branch 'master' into 2639-testify-require-3 commit ef154b6d3c89f975ce28369372757a1205baa655 Merge: 5b46073a2eb21ef4
Author: Eugene Burkov <e.burkov@adguard.com> Date: Fri Feb 12 12:40:43 2021 +0300 Merge branch 'master' into 2639-testify-require-3 commit 5b46073a09badef44c86a5f48c6bb874c8df2674 Merge: 7dd7b6e0890f0322
Author: Eugene Burkov <e.burkov@adguard.com> Date: Wed Feb 10 21:20:51 2021 +0300 Merge branch 'master' into 2639-testify-require-3 commit 7dd7b6e00ead2bf507af541c801a9ac770106440 Author: Eugene Burkov <e.burkov@adguard.com> Date: Wed Feb 10 21:19:36 2021 +0300 dhcpd: fix comment commit 9e74adbcf21dad58409c3dfc8e08b6470bfedc22 Author: Eugene Burkov <e.burkov@adguard.com> Date: Wed Feb 10 15:13:40 2021 +0300 all: imp tests drastically
110 lines
1.8 KiB
Go
110 lines
1.8 KiB
Go
package aghio
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"io/ioutil"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestLimitReadCloser(t *testing.T) {
|
|
testCases := []struct {
|
|
name string
|
|
n int64
|
|
want error
|
|
}{{
|
|
name: "positive",
|
|
n: 1,
|
|
want: nil,
|
|
}, {
|
|
name: "zero",
|
|
n: 0,
|
|
want: nil,
|
|
}, {
|
|
name: "negative",
|
|
n: -1,
|
|
want: fmt.Errorf("aghio: invalid n in LimitReadCloser: -1"),
|
|
}}
|
|
|
|
for _, tc := range testCases {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
_, err := LimitReadCloser(nil, tc.n)
|
|
assert.Equal(t, tc.want, err)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestLimitedReadCloser_Read(t *testing.T) {
|
|
testCases := []struct {
|
|
name string
|
|
limit int64
|
|
rStr string
|
|
want int
|
|
err error
|
|
}{{
|
|
name: "perfectly_match",
|
|
limit: 3,
|
|
rStr: "abc",
|
|
want: 3,
|
|
err: nil,
|
|
}, {
|
|
name: "eof",
|
|
limit: 3,
|
|
rStr: "",
|
|
want: 0,
|
|
err: io.EOF,
|
|
}, {
|
|
name: "limit_reached",
|
|
limit: 0,
|
|
rStr: "abc",
|
|
want: 0,
|
|
err: &LimitReachedError{
|
|
Limit: 0,
|
|
},
|
|
}, {
|
|
name: "truncated",
|
|
limit: 2,
|
|
rStr: "abc",
|
|
want: 2,
|
|
err: nil,
|
|
}}
|
|
|
|
for _, tc := range testCases {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
readCloser := ioutil.NopCloser(strings.NewReader(tc.rStr))
|
|
buf := make([]byte, tc.limit+1)
|
|
|
|
lreader, err := LimitReadCloser(readCloser, tc.limit)
|
|
require.Nil(t, err)
|
|
|
|
n, err := lreader.Read(buf)
|
|
require.Equal(t, tc.err, err)
|
|
assert.Equal(t, tc.want, n)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestLimitedReadCloser_LimitReachedError(t *testing.T) {
|
|
testCases := []struct {
|
|
name string
|
|
want string
|
|
err error
|
|
}{{
|
|
name: "simplest",
|
|
want: "attempted to read more than 0 bytes",
|
|
err: &LimitReachedError{
|
|
Limit: 0,
|
|
},
|
|
}}
|
|
|
|
for _, tc := range testCases {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
assert.Equal(t, tc.want, tc.err.Error())
|
|
})
|
|
}
|
|
}
|