2020-02-10 18:35:00 -06:00
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
2020-02-12 01:55:20 -06:00
|
|
|
"github.com/stretchr/testify/assert"
|
2020-02-10 18:35:00 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestReadWorkflow_StringEvent(t *testing.T) {
|
|
|
|
yaml := `
|
|
|
|
name: local-action-docker-url
|
|
|
|
on: push
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: ./actions/docker-url
|
|
|
|
`
|
|
|
|
|
|
|
|
workflow, err := ReadWorkflow(strings.NewReader(yaml))
|
2020-02-12 01:55:20 -06:00
|
|
|
assert.NoError(t, err, "read workflow should succeed")
|
2020-02-10 18:35:00 -06:00
|
|
|
|
2020-02-12 01:55:20 -06:00
|
|
|
assert.Len(t, workflow.On(), 1)
|
|
|
|
assert.Contains(t, workflow.On(), "push")
|
2020-02-10 18:35:00 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestReadWorkflow_ListEvent(t *testing.T) {
|
|
|
|
yaml := `
|
|
|
|
name: local-action-docker-url
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: ./actions/docker-url
|
|
|
|
`
|
|
|
|
|
|
|
|
workflow, err := ReadWorkflow(strings.NewReader(yaml))
|
2020-02-12 01:55:20 -06:00
|
|
|
assert.NoError(t, err, "read workflow should succeed")
|
2020-02-10 18:35:00 -06:00
|
|
|
|
2020-02-12 01:55:20 -06:00
|
|
|
assert.Len(t, workflow.On(), 2)
|
|
|
|
assert.Contains(t, workflow.On(), "push")
|
|
|
|
assert.Contains(t, workflow.On(), "pull_request")
|
2020-02-10 18:35:00 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestReadWorkflow_MapEvent(t *testing.T) {
|
|
|
|
yaml := `
|
|
|
|
name: local-action-docker-url
|
2021-04-01 13:36:41 -05:00
|
|
|
on:
|
2020-02-10 18:35:00 -06:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: ./actions/docker-url
|
|
|
|
`
|
|
|
|
|
|
|
|
workflow, err := ReadWorkflow(strings.NewReader(yaml))
|
2020-02-12 01:55:20 -06:00
|
|
|
assert.NoError(t, err, "read workflow should succeed")
|
|
|
|
assert.Len(t, workflow.On(), 2)
|
|
|
|
assert.Contains(t, workflow.On(), "push")
|
|
|
|
assert.Contains(t, workflow.On(), "pull_request")
|
2020-02-10 18:35:00 -06:00
|
|
|
}
|
2020-02-25 00:35:08 -06:00
|
|
|
|
|
|
|
func TestReadWorkflow_StringContainer(t *testing.T) {
|
|
|
|
yaml := `
|
|
|
|
name: local-action-docker-url
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
container: nginx:latest
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: ./actions/docker-url
|
|
|
|
test2:
|
2021-04-01 13:36:41 -05:00
|
|
|
container:
|
2020-02-25 00:35:08 -06:00
|
|
|
image: nginx:latest
|
|
|
|
env:
|
|
|
|
foo: bar
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: ./actions/docker-url
|
|
|
|
`
|
|
|
|
|
|
|
|
workflow, err := ReadWorkflow(strings.NewReader(yaml))
|
|
|
|
assert.NoError(t, err, "read workflow should succeed")
|
|
|
|
assert.Len(t, workflow.Jobs, 2)
|
|
|
|
assert.Contains(t, workflow.Jobs["test"].Container().Image, "nginx:latest")
|
|
|
|
assert.Contains(t, workflow.Jobs["test2"].Container().Image, "nginx:latest")
|
|
|
|
assert.Contains(t, workflow.Jobs["test2"].Container().Env["foo"], "bar")
|
|
|
|
}
|
2021-04-01 13:36:41 -05:00
|
|
|
|
2021-11-27 12:05:56 -06:00
|
|
|
func TestReadWorkflow_ObjectContainer(t *testing.T) {
|
|
|
|
yaml := `
|
|
|
|
name: local-action-docker-url
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
container:
|
|
|
|
image: r.example.org/something:latest
|
|
|
|
credentials:
|
|
|
|
username: registry-username
|
|
|
|
password: registry-password
|
|
|
|
env:
|
|
|
|
HOME: /home/user
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: ./actions/docker-url
|
|
|
|
`
|
|
|
|
|
|
|
|
workflow, err := ReadWorkflow(strings.NewReader(yaml))
|
|
|
|
assert.NoError(t, err, "read workflow should succeed")
|
|
|
|
assert.Len(t, workflow.Jobs, 1)
|
|
|
|
|
|
|
|
container := workflow.GetJob("test").Container()
|
|
|
|
|
|
|
|
assert.Contains(t, container.Image, "r.example.org/something:latest")
|
|
|
|
assert.Contains(t, container.Env["HOME"], "/home/user")
|
|
|
|
assert.Contains(t, container.Credentials["username"], "registry-username")
|
|
|
|
assert.Contains(t, container.Credentials["password"], "registry-password")
|
|
|
|
}
|
|
|
|
|
2021-04-01 13:36:41 -05:00
|
|
|
func TestReadWorkflow_StepsTypes(t *testing.T) {
|
|
|
|
yaml := `
|
|
|
|
name: invalid step definition
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: test1
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
run: echo
|
|
|
|
- name: test2
|
|
|
|
run: echo
|
|
|
|
- name: test3
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: test4
|
|
|
|
uses: docker://nginx:latest
|
|
|
|
- name: test5
|
|
|
|
uses: ./local-action
|
|
|
|
`
|
|
|
|
|
|
|
|
workflow, err := ReadWorkflow(strings.NewReader(yaml))
|
|
|
|
assert.NoError(t, err, "read workflow should succeed")
|
|
|
|
assert.Len(t, workflow.Jobs, 1)
|
|
|
|
assert.Len(t, workflow.Jobs["test"].Steps, 5)
|
|
|
|
assert.Equal(t, workflow.Jobs["test"].Steps[0].Type(), StepTypeInvalid)
|
|
|
|
assert.Equal(t, workflow.Jobs["test"].Steps[1].Type(), StepTypeRun)
|
|
|
|
assert.Equal(t, workflow.Jobs["test"].Steps[2].Type(), StepTypeUsesActionRemote)
|
|
|
|
assert.Equal(t, workflow.Jobs["test"].Steps[3].Type(), StepTypeUsesDockerURL)
|
|
|
|
assert.Equal(t, workflow.Jobs["test"].Steps[4].Type(), StepTypeUsesActionLocal)
|
|
|
|
}
|
2021-05-05 00:57:33 -05:00
|
|
|
|
2021-07-01 10:20:20 -05:00
|
|
|
// See: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idoutputs
|
|
|
|
func TestReadWorkflow_JobOutputs(t *testing.T) {
|
|
|
|
yaml := `
|
|
|
|
name: job outputs definition
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test1:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- id: test1_1
|
|
|
|
run: |
|
|
|
|
echo "::set-output name=a_key::some-a_value"
|
|
|
|
echo "::set-output name=b-key::some-b-value"
|
|
|
|
outputs:
|
|
|
|
some_a_key: ${{ steps.test1_1.outputs.a_key }}
|
|
|
|
some-b-key: ${{ steps.test1_1.outputs.b-key }}
|
|
|
|
|
|
|
|
test2:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs:
|
|
|
|
- test1
|
|
|
|
steps:
|
|
|
|
- name: test2_1
|
|
|
|
run: |
|
|
|
|
echo "${{ needs.test1.outputs.some_a_key }}"
|
|
|
|
echo "${{ needs.test1.outputs.some-b-key }}"
|
|
|
|
`
|
|
|
|
|
|
|
|
workflow, err := ReadWorkflow(strings.NewReader(yaml))
|
|
|
|
assert.NoError(t, err, "read workflow should succeed")
|
|
|
|
assert.Len(t, workflow.Jobs, 2)
|
|
|
|
|
|
|
|
assert.Len(t, workflow.Jobs["test1"].Steps, 1)
|
|
|
|
assert.Equal(t, StepTypeRun, workflow.Jobs["test1"].Steps[0].Type())
|
|
|
|
assert.Equal(t, "test1_1", workflow.Jobs["test1"].Steps[0].ID)
|
|
|
|
assert.Len(t, workflow.Jobs["test1"].Outputs, 2)
|
|
|
|
assert.Contains(t, workflow.Jobs["test1"].Outputs, "some_a_key")
|
|
|
|
assert.Contains(t, workflow.Jobs["test1"].Outputs, "some-b-key")
|
|
|
|
assert.Equal(t, "${{ steps.test1_1.outputs.a_key }}", workflow.Jobs["test1"].Outputs["some_a_key"])
|
|
|
|
assert.Equal(t, "${{ steps.test1_1.outputs.b-key }}", workflow.Jobs["test1"].Outputs["some-b-key"])
|
|
|
|
}
|
|
|
|
|
2021-08-09 10:35:05 -05:00
|
|
|
func TestReadWorkflow_Strategy(t *testing.T) {
|
|
|
|
w, err := NewWorkflowPlanner("testdata/strategy/push.yml", true)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
p := w.PlanJob("strategy-only-max-parallel")
|
|
|
|
|
|
|
|
assert.Equal(t, len(p.Stages), 1)
|
|
|
|
assert.Equal(t, len(p.Stages[0].Runs), 1)
|
|
|
|
|
|
|
|
wf := p.Stages[0].Runs[0].Workflow
|
|
|
|
|
|
|
|
job := wf.Jobs["strategy-only-max-parallel"]
|
|
|
|
assert.Equal(t, job.GetMatrixes(), []map[string]interface{}{{}})
|
|
|
|
assert.Equal(t, job.Matrix(), map[string][]interface{}(nil))
|
|
|
|
assert.Equal(t, job.Strategy.MaxParallel, 2)
|
|
|
|
assert.Equal(t, job.Strategy.FailFast, true)
|
|
|
|
|
|
|
|
job = wf.Jobs["strategy-only-fail-fast"]
|
|
|
|
assert.Equal(t, job.GetMatrixes(), []map[string]interface{}{{}})
|
|
|
|
assert.Equal(t, job.Matrix(), map[string][]interface{}(nil))
|
|
|
|
assert.Equal(t, job.Strategy.MaxParallel, 4)
|
|
|
|
assert.Equal(t, job.Strategy.FailFast, false)
|
|
|
|
|
|
|
|
job = wf.Jobs["strategy-no-matrix"]
|
|
|
|
assert.Equal(t, job.GetMatrixes(), []map[string]interface{}{{}})
|
|
|
|
assert.Equal(t, job.Matrix(), map[string][]interface{}(nil))
|
|
|
|
assert.Equal(t, job.Strategy.MaxParallel, 2)
|
|
|
|
assert.Equal(t, job.Strategy.FailFast, false)
|
|
|
|
|
|
|
|
job = wf.Jobs["strategy-all"]
|
|
|
|
assert.Equal(t, job.GetMatrixes(),
|
|
|
|
[]map[string]interface{}{
|
|
|
|
{"datacenter": "site-c", "node-version": "14.x", "site": "staging"},
|
|
|
|
{"datacenter": "site-c", "node-version": "16.x", "site": "staging"},
|
|
|
|
{"datacenter": "site-d", "node-version": "16.x", "site": "staging"},
|
|
|
|
{"datacenter": "site-a", "node-version": "10.x", "site": "prod"},
|
|
|
|
{"datacenter": "site-b", "node-version": "12.x", "site": "dev"},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
assert.Equal(t, job.Matrix(),
|
|
|
|
map[string][]interface{}{
|
|
|
|
"datacenter": {"site-c", "site-d"},
|
|
|
|
"exclude": {
|
|
|
|
map[string]interface{}{"datacenter": "site-d", "node-version": "14.x", "site": "staging"},
|
|
|
|
},
|
|
|
|
"include": {
|
|
|
|
map[string]interface{}{"php-version": 5.4},
|
|
|
|
map[string]interface{}{"datacenter": "site-a", "node-version": "10.x", "site": "prod"},
|
|
|
|
map[string]interface{}{"datacenter": "site-b", "node-version": "12.x", "site": "dev"},
|
|
|
|
},
|
|
|
|
"node-version": {"14.x", "16.x"},
|
|
|
|
"site": {"staging"},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
assert.Equal(t, job.Strategy.MaxParallel, 2)
|
|
|
|
assert.Equal(t, job.Strategy.FailFast, false)
|
|
|
|
}
|
|
|
|
|
2021-05-05 00:57:33 -05:00
|
|
|
func TestStep_ShellCommand(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
|
|
shell string
|
|
|
|
want string
|
|
|
|
}{
|
2021-12-22 00:37:16 -06:00
|
|
|
{"pwsh -v '. {0}'", "pwsh -v '. {0}'"},
|
2021-05-05 00:57:33 -05:00
|
|
|
{"pwsh", "pwsh -command . '{0}'"},
|
|
|
|
{"powershell", "powershell -command . '{0}'"},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.shell, func(t *testing.T) {
|
|
|
|
got := (&Step{Shell: tt.shell}).ShellCommand()
|
|
|
|
assert.Equal(t, got, tt.want)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|