packer-cn/command/validate/command.go

102 lines
2.2 KiB
Go
Raw Normal View History

2013-06-13 13:03:44 -04:00
package validate
import (
"flag"
"fmt"
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
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")
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
}
if err := buildOptions.Validate(); err != nil {
env.Ui().Error(err.Error())
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
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{
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
builds, err := buildOptions.Builds(tpl, components)
if err != nil {
env.Ui().Error(err.Error())
return 1
2013-06-13 13:03:44 -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())
err := b.Prepare(nil)
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 {
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) {
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"
}