mirror of
https://github.com/thegeeklab/drone-yaml.git
synced 2024-11-05 19:10:38 +00:00
31 lines
535 B
Go
31 lines
535 B
Go
|
package transform
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/drone/drone-runtime/engine"
|
||
|
"github.com/google/go-cmp/cmp"
|
||
|
)
|
||
|
|
||
|
func TestWithEnviron(t *testing.T) {
|
||
|
step := &engine.Step{
|
||
|
Metadata: engine.Metadata{
|
||
|
UID: "1",
|
||
|
Name: "build",
|
||
|
},
|
||
|
Envs: map[string]string{},
|
||
|
}
|
||
|
spec := &engine.Spec{
|
||
|
Steps: []*engine.Step{step},
|
||
|
}
|
||
|
envs := map[string]string{
|
||
|
"GOOS": "linux",
|
||
|
"GOARCH": "amd64",
|
||
|
}
|
||
|
WithEnviron(envs)(spec)
|
||
|
if diff := cmp.Diff(envs, step.Envs); diff != "" {
|
||
|
t.Errorf("Unexpected transform")
|
||
|
t.Log(diff)
|
||
|
}
|
||
|
}
|