Files
flagger/pkg/loadtester/bash.go
2020-03-31 01:22:47 +08:00

40 lines
894 B
Go

package loadtester
import (
"context"
"fmt"
"os/exec"
)
const TaskTypeBash = "bash"
type BashTask struct {
TaskBase
command string
logCmdOutput bool
}
func (task *BashTask) Hash() string {
return hash(task.canary + task.command)
}
func (task *BashTask) Run(ctx context.Context) (*TaskRunResult, error) {
cmd := exec.CommandContext(ctx, "bash", "-c", task.command)
out, err := cmd.CombinedOutput()
if err != nil {
task.logger.With("canary", task.canary).Errorf("command failed %s %v %s", task.command, err, out)
return &TaskRunResult{false, out}, fmt.Errorf("command %s failed: %s: %w", task.command, out, err)
} else {
if task.logCmdOutput {
fmt.Printf("%s\n", out)
}
task.logger.With("canary", task.canary).Infof("command finished %s", task.command)
}
return &TaskRunResult{true, out}, nil
}
func (task *BashTask) String() string {
return task.command
}