packer-cn/command/fix_test.go

64 lines
1.1 KiB
Go
Raw Permalink Normal View History

package command
import (
"path/filepath"
2018-09-06 14:55:11 -04:00
"strings"
"testing"
2018-09-06 14:55:11 -04:00
2020-12-17 16:29:25 -05:00
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
2018-09-06 14:55:11 -04:00
"github.com/stretchr/testify/assert"
)
func TestFix(t *testing.T) {
2018-09-06 14:55:11 -04:00
s := &strings.Builder{}
ui := &packersdk.BasicUi{
2018-09-06 14:55:11 -04:00
Writer: s,
}
c := &FixCommand{
Meta: testMeta(t),
}
2018-09-06 14:55:11 -04:00
c.Ui = ui
args := []string{filepath.Join(testFixture("fix"), "template.json")}
if code := c.Run(args); code != 0 {
fatalCommand(t, c.Meta)
}
2018-09-06 14:55:11 -04:00
expected := `{
"builders": [
{
"type": "dummy"
}
],
"push": {
"name": "foo/bar"
}
}`
assert.Equal(t, expected, strings.TrimSpace(s.String()))
}
func TestFix_invalidTemplate(t *testing.T) {
c := &FixCommand{
Meta: testMeta(t),
}
args := []string{filepath.Join(testFixture("fix-invalid"), "template.json")}
if code := c.Run(args); code != 1 {
fatalCommand(t, c.Meta)
}
}
func TestFix_invalidTemplateDisableValidation(t *testing.T) {
c := &FixCommand{
Meta: testMeta(t),
}
args := []string{
"-validate=false",
filepath.Join(testFixture("fix-invalid"), "template.json"),
}
if code := c.Run(args); code != 0 {
fatalCommand(t, c.Meta)
}
}