-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathslackauth_test.go
132 lines (124 loc) · 2.61 KB
/
slackauth_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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
package slackauth
import (
"net/http"
"net/http/httptest"
reflect "reflect"
"testing"
"github.com/stretchr/testify/assert"
)
func Test_checkWorkspaceURL(t *testing.T) {
t.Parallel()
t.Run("error", func(t *testing.T) {
t.Parallel()
err := checkWorkspaceURL("http://127.0.0.1:9999")
assert.ErrorIs(t, err, ErrWorkspaceNotFound)
})
t.Run("404", func(t *testing.T) {
t.Parallel()
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
http.NotFound(w, r)
}))
defer srv.Close()
err := checkWorkspaceURL(srv.URL)
assert.ErrorIs(t, err, ErrWorkspaceNotFound)
})
t.Run("ok", func(t *testing.T) {
t.Parallel()
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
}))
defer srv.Close()
err := checkWorkspaceURL(srv.URL)
assert.NoError(t, err)
})
}
func Test_isURLSafe(t *testing.T) {
type args struct {
s string
}
tests := []struct {
name string
args args
want bool
}{
{
name: "empty",
args: args{s: ""},
want: true,
},
{
name: "safe",
args: args{s: "abcABC123-_.~"},
want: true,
},
{
name: "unsafe",
args: args{s: "abcABC123-_.~!@#$%^&*()"},
want: false,
},
{
name: "unicode",
args: args{s: "🍌"},
want: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := isURLSafe(tt.args.s); got != tt.want {
t.Errorf("isURLSafe() = %v, want %v", got, tt.want)
}
})
}
}
func Test_filterCookies(t *testing.T) {
type args struct {
cookies []*http.Cookie
}
tests := []struct {
name string
args args
want []*http.Cookie
}{
{
name: "Retains valid domains",
args: args{
cookies: []*http.Cookie{
{Domain: ".slack.com"},
{Domain: ".example.com"},
{Domain: ".google.co.nz"},
{Domain: ".google.com.au"},
{Domain: ""},
{Domain: ".endlessefforts.onelogin.com"},
},
},
want: []*http.Cookie{
{Domain: ".slack.com"},
{Domain: ".google.co.nz"},
{Domain: ".google.com.au"},
{Domain: ".endlessefforts.onelogin.com"},
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := filterCookies(tt.args.cookies); !reflect.DeepEqual(got, tt.want) {
t.Errorf("filterCookies() = %v, want %v", got, tt.want)
}
})
}
}
func Benchmark_filterCookies(b *testing.B) {
// generate a large list of slack cookies
var cc = make([]*http.Cookie, 1_000_000)
for i := range cc {
cc[i] = &http.Cookie{
Domain: ".slack.com",
}
}
var res []*http.Cookie
b.ResetTimer()
for range b.N {
res = filterCookies(cc)
}
_ = res
}