ed01f464ed
This commit moves the githubContext, jobContext and stepResult structs from the runner package to the model package in preparation for #908 because the expression.go file lives in the runner package and would introduce cyclic dependencies with the exprparser package. Co-authored-by: Markus Wolf <markus.wolf@new-work.se> Co-authored-by: Markus Wolf <markus.wolf@new-work.se> Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
117 lines
3 KiB
Go
117 lines
3 KiB
Go
package runner
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/sirupsen/logrus/hooks/test"
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/nektos/act/pkg/common"
|
|
"github.com/nektos/act/pkg/model"
|
|
)
|
|
|
|
func TestSetEnv(t *testing.T) {
|
|
a := assert.New(t)
|
|
ctx := context.Background()
|
|
rc := new(RunContext)
|
|
handler := rc.commandHandler(ctx)
|
|
|
|
handler("::set-env name=x::valz\n")
|
|
a.Equal("valz", rc.Env["x"])
|
|
}
|
|
|
|
func TestSetOutput(t *testing.T) {
|
|
a := assert.New(t)
|
|
ctx := context.Background()
|
|
rc := new(RunContext)
|
|
rc.StepResults = make(map[string]*model.StepResult)
|
|
handler := rc.commandHandler(ctx)
|
|
|
|
rc.CurrentStep = "my-step"
|
|
rc.StepResults[rc.CurrentStep] = &model.StepResult{
|
|
Outputs: make(map[string]string),
|
|
}
|
|
handler("::set-output name=x::valz\n")
|
|
a.Equal("valz", rc.StepResults["my-step"].Outputs["x"])
|
|
|
|
handler("::set-output name=x::percent2%25\n")
|
|
a.Equal("percent2%", rc.StepResults["my-step"].Outputs["x"])
|
|
|
|
handler("::set-output name=x::percent2%25%0Atest\n")
|
|
a.Equal("percent2%\ntest", rc.StepResults["my-step"].Outputs["x"])
|
|
|
|
handler("::set-output name=x::percent2%25%0Atest another3%25test\n")
|
|
a.Equal("percent2%\ntest another3%test", rc.StepResults["my-step"].Outputs["x"])
|
|
|
|
handler("::set-output name=x%3A::percent2%25%0Atest\n")
|
|
a.Equal("percent2%\ntest", rc.StepResults["my-step"].Outputs["x:"])
|
|
|
|
handler("::set-output name=x%3A%2C%0A%25%0D%3A::percent2%25%0Atest\n")
|
|
a.Equal("percent2%\ntest", rc.StepResults["my-step"].Outputs["x:,\n%\r:"])
|
|
}
|
|
|
|
func TestAddpath(t *testing.T) {
|
|
a := assert.New(t)
|
|
ctx := context.Background()
|
|
rc := new(RunContext)
|
|
handler := rc.commandHandler(ctx)
|
|
|
|
handler("::add-path::/zoo\n")
|
|
a.Equal("/zoo", rc.ExtraPath[0])
|
|
|
|
handler("::add-path::/boo\n")
|
|
a.Equal("/boo", rc.ExtraPath[1])
|
|
}
|
|
|
|
func TestStopCommands(t *testing.T) {
|
|
logger, hook := test.NewNullLogger()
|
|
|
|
a := assert.New(t)
|
|
ctx := common.WithLogger(context.Background(), logger)
|
|
rc := new(RunContext)
|
|
handler := rc.commandHandler(ctx)
|
|
|
|
handler("::set-env name=x::valz\n")
|
|
a.Equal("valz", rc.Env["x"])
|
|
handler("::stop-commands::my-end-token\n")
|
|
handler("::set-env name=x::abcd\n")
|
|
a.Equal("valz", rc.Env["x"])
|
|
handler("::my-end-token::\n")
|
|
handler("::set-env name=x::abcd\n")
|
|
a.Equal("abcd", rc.Env["x"])
|
|
|
|
messages := make([]string, 0)
|
|
for _, entry := range hook.AllEntries() {
|
|
messages = append(messages, entry.Message)
|
|
}
|
|
|
|
a.Contains(messages, " \U00002699 ::set-env name=x::abcd\n")
|
|
}
|
|
|
|
func TestAddpathADO(t *testing.T) {
|
|
a := assert.New(t)
|
|
ctx := context.Background()
|
|
rc := new(RunContext)
|
|
handler := rc.commandHandler(ctx)
|
|
|
|
handler("##[add-path]/zoo\n")
|
|
a.Equal("/zoo", rc.ExtraPath[0])
|
|
|
|
handler("##[add-path]/boo\n")
|
|
a.Equal("/boo", rc.ExtraPath[1])
|
|
}
|
|
|
|
func TestAddmask(t *testing.T) {
|
|
logger, hook := test.NewNullLogger()
|
|
|
|
a := assert.New(t)
|
|
ctx := context.Background()
|
|
loggerCtx := common.WithLogger(ctx, logger)
|
|
|
|
rc := new(RunContext)
|
|
handler := rc.commandHandler(loggerCtx)
|
|
handler("::add-mask::my-secret-value\n")
|
|
|
|
a.NotEqual(" \U00002699 *my-secret-value", hook.LastEntry().Message)
|
|
}
|