|
|
|
|
@ -5,28 +5,40 @@ import (
|
|
|
|
|
"testing"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func TestValidateCommand(t *testing.T) {
|
|
|
|
|
func TestValidateCommandOKVersion(t *testing.T) {
|
|
|
|
|
c := &ValidateCommand{
|
|
|
|
|
Meta: testMetaFile(t),
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
args := []string{
|
|
|
|
|
filepath.Join(testFixture("validate"), "template.json"),
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
defer cleanup()
|
|
|
|
|
|
|
|
|
|
// This should pass with a valid configuration version
|
|
|
|
|
c.CoreConfig.Version = "102.0.0"
|
|
|
|
|
if code := c.Run(args); code != 0 {
|
|
|
|
|
fatalCommand(t, c.Meta)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if !fileExists("chocolate.txt") {
|
|
|
|
|
t.Error("Expected to find chocolate.txt")
|
|
|
|
|
func TestValidateCommandBadVersion(t *testing.T) {
|
|
|
|
|
c := &ValidateCommand{
|
|
|
|
|
Meta: testMetaFile(t),
|
|
|
|
|
}
|
|
|
|
|
if !fileExists("vanilla.txt") {
|
|
|
|
|
t.Error("Expected to find vanilla.txt")
|
|
|
|
|
args := []string{
|
|
|
|
|
filepath.Join(testFixture("validate"), "template.json"),
|
|
|
|
|
}
|
|
|
|
|
if fileExists("cherry.txt") {
|
|
|
|
|
t.Error("Expected NOT to find cherry.txt")
|
|
|
|
|
|
|
|
|
|
// This should fail with an invalid configuration version
|
|
|
|
|
c.CoreConfig.Version = "100.0.0"
|
|
|
|
|
if code := c.Run(args); code != 1 {
|
|
|
|
|
t.Errorf("Expected exit code 1")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
stdout, stderr := outputCommand(t, c.Meta)
|
|
|
|
|
expected := `Error initializing core: This template requires Packer version 101.0.0 or higher; using 100.0.0
|
|
|
|
|
`
|
|
|
|
|
if stderr != expected {
|
|
|
|
|
t.Fatalf("Expected:\n%s\nFound:\n%s\n", expected, stderr)
|
|
|
|
|
}
|
|
|
|
|
t.Log(stdout)
|
|
|
|
|
}
|
|
|
|
|
|