[gzep] Small test improvements.
This commit is contained in:
parent
e2f5316a5e
commit
3c32064198
1 changed files with 13 additions and 11 deletions
|
@ -1,4 +1,4 @@
|
||||||
package gzep
|
package gzep_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
@ -9,6 +9,7 @@ import (
|
||||||
|
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
|
|
||||||
|
"gitlab.com/slon/shad-go/gzep"
|
||||||
"gitlab.com/slon/shad-go/tools/testtool"
|
"gitlab.com/slon/shad-go/tools/testtool"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -23,7 +24,7 @@ func BenchmarkEncode(b *testing.B) {
|
||||||
b.ResetTimer()
|
b.ResetTimer()
|
||||||
b.ReportAllocs()
|
b.ReportAllocs()
|
||||||
for n := 0; n < b.N; n++ {
|
for n := 0; n < b.N; n++ {
|
||||||
require.NoError(b, Encode(data, io.Discard))
|
require.NoError(b, gzep.Encode(data, io.Discard))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -40,9 +41,9 @@ func TestEncode_RoundTrip(t *testing.T) {
|
||||||
for _, tc := range testCases {
|
for _, tc := range testCases {
|
||||||
t.Run(tc.name, func(t *testing.T) {
|
t.Run(tc.name, func(t *testing.T) {
|
||||||
buf := new(bytes.Buffer)
|
buf := new(bytes.Buffer)
|
||||||
require.NoError(t, Encode([]byte(tc.in), buf))
|
require.NoError(t, gzep.Encode([]byte(tc.in), buf))
|
||||||
|
|
||||||
out, err := decode(buf.Bytes())
|
out, err := decode(buf)
|
||||||
require.NoError(t, err, tc.in)
|
require.NoError(t, err, tc.in)
|
||||||
require.Equal(t, tc.in, string(out))
|
require.Equal(t, tc.in, string(out))
|
||||||
})
|
})
|
||||||
|
@ -51,29 +52,30 @@ func TestEncode_RoundTrip(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestEncode_Stress(t *testing.T) {
|
func TestEncode_Stress(t *testing.T) {
|
||||||
n := 100
|
|
||||||
|
|
||||||
wg := &sync.WaitGroup{}
|
wg := &sync.WaitGroup{}
|
||||||
wg.Add(n)
|
|
||||||
|
n := 100
|
||||||
for i := 0; i < n; i++ {
|
for i := 0; i < n; i++ {
|
||||||
|
wg.Add(1)
|
||||||
go func() {
|
go func() {
|
||||||
defer wg.Done()
|
defer wg.Done()
|
||||||
|
|
||||||
require.NoError(t, Encode([]byte("payload"), io.Discard))
|
_ = gzep.Encode([]byte("stonks"), io.Discard)
|
||||||
}()
|
}()
|
||||||
}
|
}
|
||||||
|
|
||||||
wg.Wait()
|
wg.Wait()
|
||||||
}
|
}
|
||||||
|
|
||||||
func decode(data []byte) ([]byte, error) {
|
func decode(r io.Reader) ([]byte, error) {
|
||||||
r, err := gzip.NewReader(bytes.NewReader(data))
|
rr, err := gzip.NewReader(r)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
defer func() { _ = rr.Close() }()
|
||||||
|
|
||||||
buf := &bytes.Buffer{}
|
buf := &bytes.Buffer{}
|
||||||
if _, err := io.Copy(buf, r); err != nil {
|
if _, err := io.Copy(buf, rr); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue