forked from goreleaser/goreleaser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main_test.go
51 lines (46 loc) · 1.01 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
44
45
46
47
48
49
50
51
package main
import (
"testing"
"github.com/goreleaser/goreleaser/internal/golden"
"github.com/stretchr/testify/require"
)
func TestVersion(t *testing.T) {
const goVersion = "go1.20.3"
const compiler = "gc"
const platform = "linux/amd64"
for name, tt := range map[string]struct {
version, commit, date, builtBy, treeState string
}{
"all empty": {},
"complete": {
version: "1.2.3",
date: "12/12/12",
commit: "aaaa",
builtBy: "me",
treeState: "clean",
},
"only version": {
version: "1.2.3",
},
"version and date": {
version: "1.2.3",
date: "12/12/12",
},
"version, date, built by": {
version: "1.2.3",
date: "12/12/12",
builtBy: "me",
},
} {
tt := tt
t.Run(name, func(t *testing.T) {
v := buildVersion(tt.version, tt.commit, tt.date, tt.builtBy, tt.treeState)
v.GoVersion = goVersion
v.Compiler = compiler
v.Platform = platform
out, err := v.JSONString()
require.NoError(t, err)
golden.RequireEqualJSON(t, []byte(out))
})
}
}