-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfile-format_test.go
103 lines (92 loc) · 1.94 KB
/
file-format_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
package main
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestDecodeCISpec(t *testing.T) {
var sampleSpec = `
name: "GoCD-CI"
env:
FOO: bar
BAR: baz
BAZ: day
cmd:
- echo "Hello World"
artifacts: {}
`
spec, err := DecodeCISpec(sampleSpec)
assert.Nil(t, err)
expectedSpec := CISpec{
Name: "GoCD-CI",
Env: map[string]string{"FOO": "bar", "BAR": "baz", "BAZ": "day"},
Cmd: []string{"echo \"Hello World\""},
Artifacts: make(map[string]string),
}
assert.Equal(t, expectedSpec, spec)
}
func TestDecodeCISpecFromBytes(t *testing.T) {
var sampleSpec = `
name: "GoCD-CI"
env:
FOO: bar
BAR: baz
BAZ: day
cmd:
- echo "Hello World"
artifacts: {}
`
spec, err := DecodeCISpecFromBytes([]byte(sampleSpec))
assert.Nil(t, err)
expectedSpec := CISpec{
Name: "GoCD-CI",
Env: map[string]string{"FOO": "bar", "BAR": "baz", "BAZ": "day"},
Cmd: []string{"echo \"Hello World\""},
Artifacts: make(map[string]string),
}
assert.Equal(t, expectedSpec, spec)
}
func TestDecodeCISpecWithoutArtifacts(t *testing.T) {
var sampleSpec = `
name: "GoCD-CI"
env:
FOO: bar
BAR: baz
BAZ: day
cmd:
- echo "Hello World"
`
spec, err := DecodeCISpec(sampleSpec)
assert.Nil(t, err)
expectedSpec := CISpec{
Name: "GoCD-CI",
Env: map[string]string{"FOO": "bar", "BAR": "baz", "BAZ": "day"},
Cmd: []string{"echo \"Hello World\""},
}
assert.Equal(t, expectedSpec, spec)
}
func TestDecodeCISpecWithoutEnv(t *testing.T) {
var sampleSpec = `
name: "GoCD-CI"
cmd:
- echo "Hello World"
`
spec, err := DecodeCISpec(sampleSpec)
assert.Nil(t, err)
expectedSpec := CISpec{
Name: "GoCD-CI",
Cmd: []string{"echo \"Hello World\""},
Env: make(map[string]string),
}
assert.Equal(t, expectedSpec, spec)
}
func TestDecodeCISpecWithoutCommandShouldError(t *testing.T) {
var sampleSpec = `
name: "GoCD-CI"
env:
FOO: bar
BAR: baz
BAZ: day
`
_, err := DecodeCISpec(sampleSpec)
assert.Error(t, err)
}