-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbrowser_test.go
112 lines (107 loc) · 2.43 KB
/
browser_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
package slackauth
import (
"net/http"
"os"
"path/filepath"
"testing"
"time"
)
func Test_options_browserPath(t *testing.T) {
// create a fake browser
tmp := t.TempDir()
fakeChromeBin := filepath.Join(tmp, "chrome")
if err := os.WriteFile(fakeChromeBin, nil, 0o755); err != nil {
t.Fatal(err)
}
lookPathBin, lookPathOk := lookPath() // whatever is discovered here is fine
type fields struct {
cookies []*http.Cookie
userAgent string
autoTimeout time.Duration
forceUser bool
useBundledBrwsr bool
localBrowser string
codeFn func(email string) (code int, err error)
debug bool
lg Logger
}
tests := []struct {
name string
fields fields
wantPath string
wantOk bool
}{
{
name: "bundled browser",
fields: fields{
useBundledBrwsr: true,
},
wantPath: "",
wantOk: false,
},
{
name: "local browser",
fields: fields{
localBrowser: fakeChromeBin,
},
wantPath: fakeChromeBin,
wantOk: true,
},
{
name: "look path browser",
fields: fields{},
wantPath: lookPathBin,
wantOk: lookPathOk,
},
{
name: "force user overrides the use of bundled browser",
fields: fields{
useBundledBrwsr: true,
forceUser: true,
localBrowser: fakeChromeBin,
},
wantPath: fakeChromeBin,
wantOk: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
o := options{
cookies: tt.fields.cookies,
userAgent: tt.fields.userAgent,
autoTimeout: tt.fields.autoTimeout,
forceUser: tt.fields.forceUser,
useBundledBrwsr: tt.fields.useBundledBrwsr,
localBrowser: tt.fields.localBrowser,
codeFn: tt.fields.codeFn,
debug: tt.fields.debug,
lg: tt.fields.lg,
}
gotPath, gotOk := o.browserPath()
if gotPath != tt.wantPath {
t.Errorf("options.browserPath() gotPath = %v, want %v", gotPath, tt.wantPath)
}
if gotOk != tt.wantOk {
t.Errorf("options.browserPath() gotOk = %v, want %v", gotOk, tt.wantOk)
}
})
}
}
func TestRemoveBrowser(t *testing.T) {
tests := []struct {
name string
wantErr bool
}{
{
name: "no error",
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if err := RemoveBrowser(); (err != nil) != tt.wantErr {
t.Errorf("RemoveBrowser() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}