2013-06-13 13:03:44 -04:00
|
|
|
package validate
|
|
|
|
|
|
|
|
import (
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
2013-08-09 18:12:33 -04:00
|
|
|
cmdcommon "github.com/mitchellh/packer/common/command"
|
2013-06-13 13:03:44 -04:00
|
|
|
"github.com/mitchellh/packer/packer"
|
|
|
|
"log"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Command byte
|
|
|
|
|
|
|
|
func (Command) Help() string {
|
|
|
|
return strings.TrimSpace(helpString)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c Command) Run(env packer.Environment, args []string) int {
|
|
|
|
var cfgSyntaxOnly bool
|
2013-08-09 18:21:24 -04:00
|
|
|
buildOptions := new(cmdcommon.BuildOptions)
|
2013-06-13 13:03:44 -04:00
|
|
|
|
|
|
|
cmdFlags := flag.NewFlagSet("validate", flag.ContinueOnError)
|
|
|
|
cmdFlags.Usage = func() { env.Ui().Say(c.Help()) }
|
|
|
|
cmdFlags.BoolVar(&cfgSyntaxOnly, "syntax-only", false, "check syntax only")
|
2013-08-09 18:21:24 -04:00
|
|
|
cmdcommon.BuildOptionFlags(cmdFlags, buildOptions)
|
2013-06-13 13:03:44 -04:00
|
|
|
if err := cmdFlags.Parse(args); err != nil {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
args = cmdFlags.Args()
|
|
|
|
if len(args) != 1 {
|
|
|
|
cmdFlags.Usage()
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2013-08-09 18:21:24 -04:00
|
|
|
if err := buildOptions.Validate(); err != nil {
|
2013-08-09 18:12:33 -04:00
|
|
|
env.Ui().Error(err.Error())
|
|
|
|
env.Ui().Error("")
|
|
|
|
env.Ui().Error(c.Help())
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2013-08-09 18:46:59 -04:00
|
|
|
userVars, err := buildOptions.AllUserVars()
|
|
|
|
if err != nil {
|
|
|
|
env.Ui().Error(fmt.Sprintf("Error compiling user variables: %s", err))
|
|
|
|
env.Ui().Error("")
|
|
|
|
env.Ui().Error(c.Help())
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2013-06-13 13:03:44 -04:00
|
|
|
// Parse the template into a machine-usable format
|
2013-08-09 18:13:44 -04:00
|
|
|
log.Printf("Reading template: %s", args[0])
|
|
|
|
tpl, err := packer.ParseTemplateFile(args[0])
|
2013-06-13 13:03:44 -04:00
|
|
|
if err != nil {
|
|
|
|
env.Ui().Error(fmt.Sprintf("Failed to parse template: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
if cfgSyntaxOnly {
|
|
|
|
env.Ui().Say("Syntax-only check passed. Everything looks okay.")
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
errs := make([]error, 0)
|
|
|
|
|
|
|
|
// The component finder for our builds
|
|
|
|
components := &packer.ComponentFinder{
|
2013-06-18 19:29:29 -04:00
|
|
|
Builder: env.Builder,
|
|
|
|
Hook: env.Hook,
|
|
|
|
PostProcessor: env.PostProcessor,
|
|
|
|
Provisioner: env.Provisioner,
|
2013-06-13 13:03:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, get all the builds
|
2013-08-09 18:21:24 -04:00
|
|
|
builds, err := buildOptions.Builds(tpl, components)
|
2013-08-09 18:12:33 -04:00
|
|
|
if err != nil {
|
|
|
|
env.Ui().Error(err.Error())
|
|
|
|
return 1
|
2013-06-13 13:03:44 -04:00
|
|
|
}
|
|
|
|
|
2013-06-13 13:21:56 -04:00
|
|
|
// Check the configuration of all builds
|
|
|
|
for _, b := range builds {
|
2013-06-19 00:10:34 -04:00
|
|
|
log.Printf("Preparing build: %s", b.Name())
|
2013-08-09 18:46:59 -04:00
|
|
|
err := b.Prepare(userVars)
|
2013-06-13 13:21:56 -04:00
|
|
|
if err != nil {
|
|
|
|
errs = append(errs, fmt.Errorf("Errors validating build '%s'. %s", b.Name(), err))
|
|
|
|
}
|
|
|
|
}
|
2013-06-13 13:06:06 -04:00
|
|
|
|
2013-06-13 13:03:44 -04:00
|
|
|
if len(errs) > 0 {
|
2013-06-13 13:21:56 -04:00
|
|
|
env.Ui().Error("Template validation failed. Errors are shown below.\n")
|
|
|
|
for i, err := range errs {
|
|
|
|
env.Ui().Error(err.Error())
|
|
|
|
|
2013-06-13 13:24:10 -04:00
|
|
|
if (i + 1) < len(errs) {
|
2013-06-13 13:21:56 -04:00
|
|
|
env.Ui().Error("")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-13 13:03:44 -04:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
env.Ui().Say("Template validated successfully.")
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (Command) Synopsis() string {
|
|
|
|
return "check that a template is valid"
|
|
|
|
}
|