-
Notifications
You must be signed in to change notification settings - Fork 0
/
header_test.go
86 lines (82 loc) · 1.65 KB
/
header_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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package main
import (
"net/http"
"reflect"
"testing"
"github.com/stretchr/testify/require"
)
func Test_getAccepts(t *testing.T) {
tests := []struct {
name string
given string
want accepts
wantErr bool
}{
{
name: "browser",
given: "ext/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8",
want: accepts{
any: true,
acceptHeaderFound: true,
},
},
{
name: "extra space",
given: "ext/html,application/xhtml+xml , application/xml;q=0.9",
want: accepts{
acceptHeaderFound: true,
},
},
{
name: "none",
},
{
name: "invalid",
given: `;;;;`,
want: accepts{
acceptHeaderFound: true,
},
wantErr: true,
},
{
name: "extra space",
given: "ext/html,application/xhtml+xml , application/xml;q=0.9",
want: accepts{
acceptHeaderFound: true,
},
},
{
name: "json",
given: "application/json",
want: accepts{
json: true,
acceptHeaderFound: true,
},
},
{
name: "ndjson",
given: "application/x-ndjson",
want: accepts{
ndjson: true,
acceptHeaderFound: true,
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
r, err := http.NewRequest(http.MethodGet, "fish.invalid", nil)
require.NoError(t, err)
if tt.given != "" {
r.Header.Set("Accept", tt.given)
}
got, err := getAccepts(r)
if (err != nil) != tt.wantErr {
t.Errorf("getAccepts() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("getAccepts() got = %v, want %v", got, tt.want)
}
})
}
}