-
Notifications
You must be signed in to change notification settings - Fork 14
/
push_test.go
47 lines (45 loc) · 1.05 KB
/
push_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
package main
import (
"reflect"
"testing"
)
func Test_push(t *testing.T) {
cases := []struct {
tags []string
expects []commandArguments
}{
{
tags: []string{"master", "latest"},
expects: []commandArguments{
{"docker", []string{"push", "master"}},
{"docker", []string{"push", "latest"}},
},
},
{
tags: []string{"v1.0.0", "v1.0", "v1"},
expects: []commandArguments{
{"docker", []string{"push", "v1.0.0"}},
{"docker", []string{"push", "v1.0"}},
{"docker", []string{"push", "v1"}},
},
},
{
tags: []string{"image:2", "image:2.0", "image:2.0.1"},
expects: []commandArguments{
{"docker", []string{"push", "image:2"}},
{"docker", []string{"push", "image:2.0"}},
{"docker", []string{"push", "image:2.0.1"}},
},
},
}
for _, c := range cases {
cmd := &mockCommander{}
inputs := Inputs{Tags: c.tags}
_ = push(cmd, inputs)
for i, expect := range c.expects {
if !reflect.DeepEqual(expect, cmd.commands[i]) {
t.Errorf("expect command %v, actual is %v", expect, cmd.commands[i])
}
}
}
}