constellation/cli/internal/cmd/version_test.go
Thomas Tendyck bd63aa3c6b add license headers
sed -i '1i/*\nCopyright (c) Edgeless Systems GmbH\n\nSPDX-License-Identifier: AGPL-3.0-only\n*/\n' `grep -rL --include='*.go' 'DO NOT EDIT'`
gofumpt -w .
2022-09-05 09:17:25 +02:00

75 lines
1.3 KiB
Go

/*
Copyright (c) Edgeless Systems GmbH
SPDX-License-Identifier: AGPL-3.0-only
*/
package cmd
import (
"bytes"
"io"
"runtime/debug"
"testing"
"github.com/edgelesssys/constellation/internal/constants"
"github.com/stretchr/testify/assert"
)
func TestVersionCmd(t *testing.T) {
assert := assert.New(t)
cmd := NewVersionCmd()
b := &bytes.Buffer{}
cmd.SetOut(b)
err := cmd.Execute()
assert.NoError(err)
s, err := io.ReadAll(b)
assert.NoError(err)
assert.Contains(string(s), constants.VersionInfo)
}
func TestParseBuildInfo(t *testing.T) {
assert := assert.New(t)
info := debug.BuildInfo{
GoVersion: "go1.18.3",
Settings: []debug.BuildSetting{
{
Key: "-compiler",
Value: "gc",
},
{
Key: "GOARCH",
Value: "amd64",
},
{
Key: "GOOS",
Value: "linux",
},
{
Key: "vcs.time",
Value: "2022-06-20T11:57:25Z",
},
{
Key: "vcs.modified",
Value: "true",
},
{
Key: "vcs.revision",
Value: "abcdef",
},
},
}
commit, state, date, goVersion, compiler, platform := parseBuildInfo(&info)
assert.Equal("abcdef", commit)
assert.Equal("dirty", state)
assert.Equal("2022-06-20T11:57:25Z", date)
assert.Equal("go1.18.3", goVersion)
assert.Equal("gc", compiler)
assert.Equal("linux/amd64", platform)
}