-
Notifications
You must be signed in to change notification settings - Fork 34
/
main_test.go
43 lines (40 loc) · 1.07 KB
/
main_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
package main
import (
"path"
"reflect"
"testing"
)
func Test_ensureFastlaneVersionAndCreateCmdSlice(t *testing.T) {
gemfilePath := path.Join("testdata", "Gemfile")
tests := []struct {
name string
forceVersion string
gemfilePth string
want []string
want1 string
wantErr bool
}{
{
name: "test bundler install",
gemfilePth: gemfilePath,
want: []string{"bundle", "_2.4.12_", "exec", "fastlane"},
want1: "testdata",
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, got1, err := ensureFastlaneVersionAndCreateCmdSlice(tt.forceVersion, tt.gemfilePth)
if (err != nil) != tt.wantErr {
t.Errorf("ensureFastlaneVersionAndCreateCmdSlice() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("ensureFastlaneVersionAndCreateCmdSlice() got = %v, want %v", got, tt.want)
}
if got1 != tt.want1 {
t.Errorf("ensureFastlaneVersionAndCreateCmdSlice() got1 = %v, want %v", got1, tt.want1)
}
})
}
}