act/actions/runner_test.go

72 lines
1.7 KiB
Go
Raw Normal View History

2019-01-31 01:53:39 -06:00
package actions
import (
"context"
"testing"
log "github.com/sirupsen/logrus"
"gotest.tools/assert"
)
func TestGraphEvent(t *testing.T) {
runnerConfig := &RunnerConfig{
Ctx: context.Background(),
WorkflowPath: "multi.workflow",
WorkingDir: "testdata",
EventName: "push",
}
runner, err := NewRunner(runnerConfig)
assert.NilError(t, err)
graph, err := runner.GraphEvent("push")
assert.NilError(t, err)
assert.DeepEqual(t, graph, [][]string{{"build"}})
graph, err = runner.GraphEvent("release")
assert.NilError(t, err)
assert.DeepEqual(t, graph, [][]string{{"deploy"}})
}
2019-01-31 01:53:39 -06:00
func TestRunEvent(t *testing.T) {
2019-02-07 11:09:19 -06:00
if testing.Short() {
t.Skip("skipping integration test")
}
2019-01-31 01:53:39 -06:00
tables := []struct {
workflowPath string
eventName string
errorMessage string
}{
{"basic.workflow", "push", ""},
{"pipe.workflow", "push", ""},
{"fail.workflow", "push", "exit with `FAILURE`: 1"},
2019-03-01 21:36:07 -06:00
{"buildfail.workflow", "push", "COPY failed"},
2019-01-31 01:53:39 -06:00
{"regex.workflow", "push", "exit with `NEUTRAL`: 78"},
2019-02-07 11:09:19 -06:00
{"gitref.workflow", "push", ""},
{"env.workflow", "push", ""},
2019-02-15 10:44:36 -06:00
{"detect_event.workflow", "", ""},
2019-01-31 01:53:39 -06:00
}
log.SetLevel(log.DebugLevel)
for _, table := range tables {
2019-05-22 23:39:57 -05:00
table := table
t.Run(table.workflowPath, func(t *testing.T) {
runnerConfig := &RunnerConfig{
Ctx: context.Background(),
WorkflowPath: table.workflowPath,
WorkingDir: "testdata",
EventName: table.eventName,
}
runner, err := NewRunner(runnerConfig)
2019-01-31 01:53:39 -06:00
assert.NilError(t, err, table.workflowPath)
2019-05-22 23:39:57 -05:00
err = runner.RunEvent()
if table.errorMessage == "" {
assert.NilError(t, err, table.workflowPath)
} else {
assert.ErrorContains(t, err, table.errorMessage)
}
})
2019-01-31 01:53:39 -06:00
}
}