Update test workflows and improve expression_test.go
/run_context_test.go
(#560)
* fix: give case insensitive secret more meanigful name * refactor: use `string` in generating `env:` and `steps:` for workflows Smaller text generation is much better to read with normal strings than raw string literals. * feat: sort keys for `env:` so it's always in specific order * fix: update test workflows
This commit is contained in:
parent
eb2774275f
commit
09679f0156
4 changed files with 475 additions and 469 deletions
16
.github/workflows/test-expressions.yml
vendored
16
.github/workflows/test-expressions.yml
vendored
|
@ -3,12 +3,12 @@ name: "Test how expressions are handled on Github"
|
|||
on: push
|
||||
|
||||
env:
|
||||
KEYWITHNOTHING: valuewithnothing
|
||||
KEY-WITH-HYPHENS: value-with-hyphens
|
||||
KEY_WITH_UNDERSCORES: value_with_underscores
|
||||
SOMETHING_TRUE: true
|
||||
SOMETHING_FALSE: false
|
||||
ACT: true
|
||||
KEY-WITH-HYPHENS: value-with-hyphens
|
||||
KEYWITHNOTHING: valuewithnothing
|
||||
KEY_WITH_UNDERSCORES: value_with_underscores
|
||||
SOMETHING_FALSE: false
|
||||
SOMETHING_TRUE: true
|
||||
|
||||
|
||||
jobs:
|
||||
|
@ -28,6 +28,12 @@ jobs:
|
|||
- name: €{{ env.KEY_WITH_UNDERSCORES }} -> ${{ env.KEY_WITH_UNDERSCORES }} should be equal to value_with_underscores
|
||||
run: echo "Done "
|
||||
|
||||
- name: €{{ secrets.CASE_INSENSITIVE_SECRET }} -> ${{ secrets.CASE_INSENSITIVE_SECRET }} should be equal to value
|
||||
run: echo "Done "
|
||||
|
||||
- name: €{{ secrets.case_insensitive_secret }} -> ${{ secrets.case_insensitive_secret }} should be equal to value
|
||||
run: echo "Done "
|
||||
|
||||
- name: €{{ env.UNKNOWN }} -> ${{ env.UNKNOWN }} should be equal to
|
||||
run: echo "Done "
|
||||
|
||||
|
|
6
.github/workflows/test-if.yml
vendored
6
.github/workflows/test-if.yml
vendored
|
@ -3,10 +3,10 @@ name: "Test what expressions result in true and false on Github"
|
|||
on: push
|
||||
|
||||
env:
|
||||
SOMETHING_TRUE: true
|
||||
SOMETHING_FALSE: false
|
||||
SOME_TEXT: text
|
||||
ACT: true
|
||||
SOMETHING_FALSE: false
|
||||
SOMETHING_TRUE: true
|
||||
SOME_TEXT: text
|
||||
|
||||
|
||||
jobs:
|
||||
|
|
|
@ -4,6 +4,7 @@ import (
|
|||
"fmt"
|
||||
"os"
|
||||
"regexp"
|
||||
"sort"
|
||||
"testing"
|
||||
|
||||
"github.com/nektos/act/pkg/model"
|
||||
|
@ -15,7 +16,7 @@ func TestEvaluate(t *testing.T) {
|
|||
Config: &Config{
|
||||
Workdir: ".",
|
||||
Secrets: map[string]string{
|
||||
"LOWER_CASE_SECRET": "value",
|
||||
"CASE_INSENSITIVE_SECRET": "value",
|
||||
},
|
||||
},
|
||||
Env: map[string]string{
|
||||
|
@ -107,7 +108,8 @@ func TestEvaluate(t *testing.T) {
|
|||
{"matrix.os", "Linux", ""},
|
||||
{"matrix.foo", "bar", ""},
|
||||
{"env.key", "value", ""},
|
||||
{"secrets.lower_case_secret", "value", ""},
|
||||
{"secrets.CASE_INSENSITIVE_SECRET", "value", ""},
|
||||
{"secrets.case_insensitive_secret", "value", ""},
|
||||
}
|
||||
|
||||
for _, table := range tables {
|
||||
|
@ -131,7 +133,7 @@ func TestInterpolate(t *testing.T) {
|
|||
Config: &Config{
|
||||
Workdir: ".",
|
||||
Secrets: map[string]string{
|
||||
"LOWER_CASE_SECRET": "value",
|
||||
"CASE_INSENSITIVE_SECRET": "value",
|
||||
},
|
||||
},
|
||||
Env: map[string]string{
|
||||
|
@ -160,7 +162,8 @@ func TestInterpolate(t *testing.T) {
|
|||
{" ${{ env.KEYWITHNOTHING }} ", " valuewithnothing "},
|
||||
{" ${{ env.KEY-WITH-HYPHENS }} ", " value-with-hyphens "},
|
||||
{" ${{ env.KEY_WITH_UNDERSCORES }} ", " value_with_underscores "},
|
||||
{" ${{ secrets.lower_case_secret }} ", " value "},
|
||||
{"${{ secrets.CASE_INSENSITIVE_SECRET }}", "value"},
|
||||
{"${{ secrets.case_insensitive_secret }}", "value"},
|
||||
{"${{ env.UNKNOWN }}", ""},
|
||||
{"${{ env.SOMETHING_TRUE }}", "true"},
|
||||
{"${{ env.SOMETHING_FALSE }}", "false"},
|
||||
|
@ -198,11 +201,15 @@ func updateTestExpressionWorkflow(t *testing.T, tables []struct {
|
|||
}, rc *RunContext) {
|
||||
|
||||
var envs string
|
||||
for k, v := range rc.Env {
|
||||
envs += fmt.Sprintf(
|
||||
` %s: %s
|
||||
`, k, v)
|
||||
keys := make([]string, 0, len(rc.Env))
|
||||
for k := range rc.Env {
|
||||
keys = append(keys, k)
|
||||
}
|
||||
sort.Strings(keys)
|
||||
for _, k := range keys {
|
||||
envs += fmt.Sprintf(" %s: %s\n", k, rc.Env[k])
|
||||
}
|
||||
|
||||
workflow := fmt.Sprintf(`
|
||||
name: "Test how expressions are handled on Github"
|
||||
on: push
|
||||
|
@ -223,10 +230,7 @@ jobs:
|
|||
})
|
||||
name := fmt.Sprintf(`%s -> %s should be equal to %s`, expr, table.in, table.out)
|
||||
echo := `run: echo "Done "`
|
||||
workflow += fmt.Sprintf(`
|
||||
- name: %s
|
||||
%s
|
||||
`, name, echo)
|
||||
workflow += fmt.Sprintf("\n - name: %s\n %s\n", name, echo)
|
||||
}
|
||||
|
||||
file, err := os.Create("../../.github/workflows/test-expressions.yml")
|
||||
|
|
|
@ -4,6 +4,7 @@ import (
|
|||
"fmt"
|
||||
"os"
|
||||
"regexp"
|
||||
"sort"
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
|
@ -158,11 +159,15 @@ func updateTestIfWorkflow(t *testing.T, tables []struct {
|
|||
}, rc *RunContext) {
|
||||
|
||||
var envs string
|
||||
for k, v := range rc.Env {
|
||||
envs += fmt.Sprintf(
|
||||
` %s: %s
|
||||
`, k, v)
|
||||
keys := make([]string, 0, len(rc.Env))
|
||||
for k := range rc.Env {
|
||||
keys = append(keys, k)
|
||||
}
|
||||
sort.Strings(keys)
|
||||
for _, k := range keys {
|
||||
envs += fmt.Sprintf(" %s: %s\n", k, rc.Env[k])
|
||||
}
|
||||
|
||||
workflow := fmt.Sprintf(`
|
||||
name: "Test what expressions result in true and false on Github"
|
||||
on: push
|
||||
|
@ -191,18 +196,9 @@ jobs:
|
|||
echo = `run: echo OK`
|
||||
name = fmt.Sprintf(`"✅ I should run, expr: %s"`, expr)
|
||||
}
|
||||
workflow += fmt.Sprintf(`
|
||||
- name: %s
|
||||
id: step%d
|
||||
if: %s
|
||||
%s
|
||||
`, name, i, table.in, echo)
|
||||
workflow += fmt.Sprintf("\n - name: %s\n id: step%d\n if: %s\n %s\n", name, i, table.in, echo)
|
||||
if table.out {
|
||||
workflow += fmt.Sprintf(`
|
||||
- name: "Double checking expr: %s"
|
||||
if: steps.step%d.conclusion == 'skipped'
|
||||
run: echo "%s should have been true, but wasn't"
|
||||
`, expr, i, table.in)
|
||||
workflow += fmt.Sprintf("\n - name: \"Double checking expr: %s\"\n if: steps.step%d.conclusion == 'skipped'\n run: echo \"%s should have been true, but wasn't\"\n", expr, i, table.in)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue