-
Notifications
You must be signed in to change notification settings - Fork 5
/
actionHandlers_test.go
122 lines (98 loc) · 2.46 KB
/
actionHandlers_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
package main
import (
"github.com/stretchr/testify/assert"
"reflect"
"testing"
)
func TestFindActionHandler(t *testing.T) {
var handler func(chan bool, []dep, perform) int
handler = findActionHandler("git")
assert.Equal(t, reflect.ValueOf(gitActionHandler), reflect.ValueOf(handler))
handler = findActionHandler("secret")
assert.Equal(t, reflect.ValueOf(secretesActionHandler), reflect.ValueOf(handler))
handler = findActionHandler("other")
assert.Equal(t, reflect.ValueOf(defaultActionHandler), reflect.ValueOf(handler))
}
func TestGitHandlerClone(t *testing.T) {
defer func() {
mockDefaultAction = nil
}()
called := 0
mockDefaultAction = func(complete chan<- bool, dep dep, perform perform) {
assert.Equal(t, "git", dep.Kind)
assert.Equal(t, "clone", perform.Action[0])
assert.Equal(t, "source", perform.Action[1])
assert.Equal(t, "location", perform.Action[2])
assert.True(t, perform.DryRun)
called++
complete <- true
}
perform := perform{
Action: []string{"clone", "source", "location"},
DryRun: true,
}
deps := []dep{
{
Kind: "git",
},
}
complete := make(chan bool)
n := gitActionHandler(complete, deps, perform)
drainChannel(n, complete)
assert.Equal(t, 1, n)
assert.Equal(t, 1, called)
}
func TestGitHandlerStatus(t *testing.T) {
defer func() {
mockDefaultAction = nil
}()
called := 0
mockDefaultAction = func(complete chan<- bool, dep dep, perform perform) {
assert.Equal(t, "git", dep.Kind)
assert.Equal(t, "status", perform.Action[0])
assert.False(t, perform.DryRun)
called++
complete <- true
}
perform := perform{
Action: []string{"status"},
}
deps := []dep{
{
Kind: "git",
},
}
complete := make(chan bool)
n := gitActionHandler(complete, deps, perform)
drainChannel(n, complete)
assert.Equal(t, 1, n)
assert.Equal(t, 1, called)
}
func TestSecretsHandler(t *testing.T) {
defer func() { mockDefaultAction = nil }()
called := 0
mockDefaultAction = func(complete chan<- bool, dep dep, perform perform) {
assert.Equal(t, "secret", dep.Kind)
assert.Equal(t, "doesn't", perform.Action[0])
assert.Equal(t, "matter", perform.Action[1])
called++
complete <- true
}
perform := perform{
Action: []string{"doesn't", "matter", "...yet"},
DryRun: true,
}
deps := []dep{
{
Kind: "secret",
},
{
Kind: "secret",
},
}
complete := make(chan bool)
n := secretesActionHandler(complete, deps, perform)
drainChannel(n, complete)
assert.Equal(t, 2, n)
assert.Equal(t, 2, called)
}