2015-09-25 01:29:46 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
type ValidateCommand struct {
|
|
|
|
Meta
|
2016-08-16 10:49:14 +00:00
|
|
|
JobGetter
|
2015-09-25 01:29:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *ValidateCommand) Help() string {
|
|
|
|
helpText := `
|
2016-12-24 20:39:33 +00:00
|
|
|
Usage: nomad validate [options] <path>
|
2015-09-25 01:29:46 +00:00
|
|
|
|
2016-07-01 18:51:53 +00:00
|
|
|
Checks if a given HCL job file has a valid specification. This can be used to
|
|
|
|
check for any syntax errors or validation problems with a job.
|
2015-09-25 01:29:46 +00:00
|
|
|
|
2016-07-22 20:48:14 +00:00
|
|
|
If the supplied path is "-", the jobfile is read from stdin. Otherwise
|
2016-08-11 13:34:31 +00:00
|
|
|
it is read from the file at the supplied path or downloaded and
|
|
|
|
read from URL specified.
|
2015-09-25 01:29:46 +00:00
|
|
|
`
|
|
|
|
return strings.TrimSpace(helpText)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *ValidateCommand) Synopsis() string {
|
|
|
|
return "Checks if a given job specification is valid"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *ValidateCommand) Run(args []string) int {
|
|
|
|
flags := c.Meta.FlagSet("validate", FlagSetNone)
|
|
|
|
flags.Usage = func() { c.Ui.Output(c.Help()) }
|
|
|
|
if err := flags.Parse(args); err != nil {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that we got exactly one node
|
|
|
|
args = flags.Args()
|
|
|
|
if len(args) != 1 {
|
|
|
|
c.Ui.Error(c.Help())
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2016-08-10 14:30:19 +00:00
|
|
|
// Get Job struct from Jobfile
|
2016-08-16 10:49:14 +00:00
|
|
|
job, err := c.JobGetter.StructJob(args[0])
|
2015-09-25 01:29:46 +00:00
|
|
|
if err != nil {
|
2016-08-10 14:30:19 +00:00
|
|
|
c.Ui.Error(fmt.Sprintf("Error getting job struct: %s", err))
|
2015-09-25 01:29:46 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2015-12-18 20:17:50 +00:00
|
|
|
// Initialize any fields that need to be.
|
2016-07-20 23:07:15 +00:00
|
|
|
job.Canonicalize()
|
2015-12-18 20:17:50 +00:00
|
|
|
|
2015-09-25 01:29:46 +00:00
|
|
|
// Check that the job is valid
|
|
|
|
if err := job.Validate(); err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Error validating job: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Done!
|
|
|
|
c.Ui.Output("Job validation successful")
|
|
|
|
return 0
|
|
|
|
}
|