-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmozillainstallhash_test.go
71 lines (69 loc) · 1.53 KB
/
mozillainstallhash_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
package mozillainstallhash
import "testing"
func TestMozillaInstallHash(t *testing.T) {
type args struct {
installPath string
}
tests := []struct {
name string
args args
want string
}{
{
name: "Default Windows Firefox Release Path",
args: args{
installPath: "C:\\Program Files\\Mozilla Firefox",
},
want: "308046B0AF4A39CB",
},
{
name: "Default Windows Firefox Nightly Path",
args: args{
installPath: "C:\\Program Files\\Firefox Nightly",
},
want: "6F193CCC56814779",
},
{
name: "Default macOS Firefox Release Path",
args: args{
installPath: "/Applications/Firefox.app/Contents/MacOS",
},
want: "2656FF1E876E9973",
},
{
name: "Default macOS Firefox Nightly Path",
args: args{
installPath: "/Applications/Firefox Nightly.app/Contents/MacOS",
},
want: "31210A081F86E80E",
},
{
name: "Default Arch Linux Firefox Release Path",
args: args{
installPath: "/usr/lib/firefox",
},
want: "4F96D1932A9F858E",
},
{
name: "Default Arch Linux Firefox Nightly Path",
args: args{
installPath: "/opt/firefox-nightly",
},
want: "6BA5C87ECB35E12F",
},
{
name: "Alternative Linux Firefox Release Path",
args: args{
installPath: "/opt/firefox",
},
want: "6AFDA46A1A8AD48",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got, err := MozillaInstallHash(tt.args.installPath); err != nil || got != tt.want {
t.Errorf("MozillaInstallHash() = %v, %v, want %v, <nil>", got, err, tt.want)
}
})
}
}