-
Notifications
You must be signed in to change notification settings - Fork 3
/
x-download-options_test.go
53 lines (44 loc) · 1.19 KB
/
x-download-options_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
package helmet
import "testing"
func TestXDownloadOptions_String(t *testing.T) {
t.Parallel()
testCases := []struct {
name string
xDownloadOptions XDownloadOptions
expectedHeader string
}{
{name: "Empty", xDownloadOptions: "", expectedHeader: ""},
{name: "No Open", xDownloadOptions: XDownloadOptionsNoOpen, expectedHeader: "noopen"},
}
for _, tc := range testCases {
tc := tc
t.Run(tc.name, func(t *testing.T) {
t.Parallel()
header := tc.xDownloadOptions.String()
if header != tc.expectedHeader {
t.Errorf("Expected: %s\tActual: %s\n", tc.expectedHeader, header)
}
})
}
}
func TestXDownloadOptions_Empty(t *testing.T) {
t.Parallel()
testCases := []struct {
name string
xDownloadOptions XDownloadOptions
expectedEmpty bool
}{
{name: "Empty", xDownloadOptions: "", expectedEmpty: true},
{name: "No Open", xDownloadOptions: XDownloadOptionsNoOpen, expectedEmpty: false},
}
for _, tc := range testCases {
tc := tc
t.Run(tc.name, func(t *testing.T) {
t.Parallel()
exists := tc.xDownloadOptions.Empty()
if exists != tc.expectedEmpty {
t.Errorf("Expected: %t\tActual: %t\n", tc.expectedEmpty, exists)
}
})
}
}