forked from prebid/prebid-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompression_test.go
47 lines (43 loc) · 1.01 KB
/
compression_test.go
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
package config
import (
"testing"
"github.com/prebid/prebid-server/v3/util/httputil"
"github.com/stretchr/testify/assert"
)
func TestReqCompressionCfgIsSupported(t *testing.T) {
testCases := []struct {
description string
cfg CompressionInfo
contentEncoding httputil.ContentEncoding
wantSupported bool
}{
{
description: "Compression type not supported",
cfg: CompressionInfo{
GZIP: true,
},
contentEncoding: httputil.ContentEncoding("invalid"),
wantSupported: false,
},
{
description: "Compression type supported",
cfg: CompressionInfo{
GZIP: true,
},
contentEncoding: httputil.ContentEncodingGZIP,
wantSupported: true,
},
{
description: "Compression not enabled",
cfg: CompressionInfo{
GZIP: false,
},
contentEncoding: httputil.ContentEncodingGZIP,
wantSupported: false,
},
}
for _, test := range testCases {
got := test.cfg.IsSupported(test.contentEncoding)
assert.Equal(t, got, test.wantSupported, test.description)
}
}