2020-09-16 20:10:06 +00:00
|
|
|
package e2eutil
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
|
|
|
"os/exec"
|
|
|
|
"regexp"
|
2021-01-22 14:18:17 +00:00
|
|
|
"strings"
|
2020-09-16 20:10:06 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Register registers a jobspec from a file but with a unique ID.
|
|
|
|
// The caller is responsible for recording that ID for later cleanup.
|
|
|
|
func Register(jobID, jobFilePath string) error {
|
2021-06-18 17:08:27 +00:00
|
|
|
cmd := exec.Command("nomad", "job", "run", "-detach", "-")
|
2020-09-16 20:10:06 +00:00
|
|
|
stdin, err := cmd.StdinPipe()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("could not open stdin?: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
content, err := ioutil.ReadFile(jobFilePath)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("could not open job file: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// hack off the first line to replace with our unique ID
|
2020-11-13 14:31:21 +00:00
|
|
|
var re = regexp.MustCompile(`(?m)^job ".*" \{`)
|
2020-09-16 20:10:06 +00:00
|
|
|
jobspec := re.ReplaceAllString(string(content),
|
|
|
|
fmt.Sprintf("job \"%s\" {", jobID))
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
defer stdin.Close()
|
|
|
|
io.WriteString(stdin, jobspec)
|
|
|
|
}()
|
|
|
|
|
|
|
|
out, err := cmd.CombinedOutput()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("could not register job: %w\n%v", err, string(out))
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2020-10-14 12:43:28 +00:00
|
|
|
|
2021-03-24 21:42:10 +00:00
|
|
|
// PeriodicForce forces a periodic job to dispatch
|
2021-01-22 14:18:17 +00:00
|
|
|
func PeriodicForce(jobID string) error {
|
|
|
|
// nomad job periodic force
|
|
|
|
cmd := exec.Command("nomad", "job", "periodic", "force", jobID)
|
|
|
|
|
|
|
|
out, err := cmd.CombinedOutput()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("could not register job: %w\n%v", err, string(out))
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-03-24 21:42:10 +00:00
|
|
|
// Dispatch dispatches a parameterized job
|
|
|
|
func Dispatch(jobID string, meta map[string]string, payload string) error {
|
|
|
|
// nomad job periodic force
|
|
|
|
args := []string{"job", "dispatch"}
|
|
|
|
for k, v := range meta {
|
|
|
|
args = append(args, "-meta", fmt.Sprintf("%v=%v", k, v))
|
|
|
|
}
|
|
|
|
args = append(args, jobID)
|
|
|
|
if payload != "" {
|
|
|
|
args = append(args, "-")
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd := exec.Command("nomad", args...)
|
|
|
|
cmd.Stdin = strings.NewReader(payload)
|
|
|
|
|
|
|
|
out, err := cmd.CombinedOutput()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("could not dispatch job: %w\n%v", err, string(out))
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-01-22 14:18:17 +00:00
|
|
|
// JobInspectTemplate runs nomad job inspect and formats the output
|
|
|
|
// using the specified go template
|
|
|
|
func JobInspectTemplate(jobID, template string) (string, error) {
|
|
|
|
cmd := exec.Command("nomad", "job", "inspect", "-t", template, jobID)
|
|
|
|
out, err := cmd.CombinedOutput()
|
|
|
|
if err != nil {
|
|
|
|
return "", fmt.Errorf("could not inspect job: %w\n%v", err, string(out))
|
|
|
|
}
|
|
|
|
outStr := string(out)
|
|
|
|
outStr = strings.TrimSuffix(outStr, "\n")
|
|
|
|
return outStr, nil
|
|
|
|
}
|
|
|
|
|
2020-10-14 12:43:28 +00:00
|
|
|
// Register registers a jobspec from a string, also with a unique ID.
|
|
|
|
// The caller is responsible for recording that ID for later cleanup.
|
|
|
|
func RegisterFromJobspec(jobID, jobspec string) error {
|
|
|
|
|
2021-07-09 13:25:44 +00:00
|
|
|
cmd := exec.Command("nomad", "job", "run", "-detach", "-")
|
2020-10-14 12:43:28 +00:00
|
|
|
stdin, err := cmd.StdinPipe()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("could not open stdin?: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// hack off the first line to replace with our unique ID
|
|
|
|
var re = regexp.MustCompile(`^job "\w+" \{`)
|
|
|
|
jobspec = re.ReplaceAllString(jobspec,
|
|
|
|
fmt.Sprintf("job \"%s\" {", jobID))
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
defer stdin.Close()
|
|
|
|
io.WriteString(stdin, jobspec)
|
|
|
|
}()
|
|
|
|
|
|
|
|
out, err := cmd.CombinedOutput()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("could not register job: %w\n%v", err, string(out))
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2021-02-18 17:21:53 +00:00
|
|
|
|
|
|
|
func ChildrenJobSummary(jobID string) ([]map[string]string, error) {
|
|
|
|
out, err := Command("nomad", "job", "status", jobID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("nomad job status failed: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
section, err := GetSection(out, "Children Job Summary")
|
|
|
|
if err != nil {
|
2021-03-24 21:42:10 +00:00
|
|
|
section, err = GetSection(out, "Parameterized Job Summary")
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("could not find children job summary section: %w", err)
|
|
|
|
}
|
2021-02-18 17:21:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
summary, err := ParseColumns(section)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("could not parse children job summary section: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return summary, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func PreviouslyLaunched(jobID string) ([]map[string]string, error) {
|
|
|
|
out, err := Command("nomad", "job", "status", jobID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("nomad job status failed: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
section, err := GetSection(out, "Previously Launched Jobs")
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("could not find previously launched jobs section: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
summary, err := ParseColumns(section)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("could not parse previously launched jobs section: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return summary, nil
|
|
|
|
}
|
2021-03-24 21:42:10 +00:00
|
|
|
|
|
|
|
func DispatchedJobs(jobID string) ([]map[string]string, error) {
|
|
|
|
out, err := Command("nomad", "job", "status", jobID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("nomad job status failed: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
section, err := GetSection(out, "Dispatched Jobs")
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("could not find previously launched jobs section: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
summary, err := ParseColumns(section)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("could not parse previously launched jobs section: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return summary, nil
|
|
|
|
}
|