mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-03 20:39:29 -05:00
* Updating the license from MPL to Business Source License Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at https://hashi.co/bsl-blog, FAQ at https://hashi.co/license-faq, and details of the license at www.hashicorp.com/bsl. * Update copyright file headers to BUSL-1.1 --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
66 lines
1.2 KiB
Go
66 lines
1.2 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package command
|
|
|
|
import (
|
|
"path/filepath"
|
|
"strings"
|
|
"testing"
|
|
|
|
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestFix(t *testing.T) {
|
|
s := &strings.Builder{}
|
|
ui := &packersdk.BasicUi{
|
|
Writer: s,
|
|
}
|
|
c := &FixCommand{
|
|
Meta: testMeta(t),
|
|
}
|
|
|
|
c.Ui = ui
|
|
|
|
args := []string{filepath.Join(testFixture("fix"), "template.json")}
|
|
if code := c.Run(args); code != 0 {
|
|
fatalCommand(t, c.Meta)
|
|
}
|
|
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)
|
|
}
|
|
}
|