drone-yaml/yaml/compiler/transform/combine_test.go

38 lines
800 B
Go
Raw Normal View History

2019-02-10 20:00:16 +01:00
// Copyright 2019 Drone.IO Inc. All rights reserved.
// Use of this source code is governed by the Drone Non-Commercial License
// that can be found in the LICENSE file.
2019-02-10 20:00:16 +01:00
2019-01-23 00:44:17 +01:00
package transform
import (
"testing"
"github.com/drone/drone-runtime/engine"
"github.com/google/go-cmp/cmp"
)
func TestCombine(t *testing.T) {
step := &engine.Step{
Metadata: engine.Metadata{
UID: "1",
Name: "build",
},
Envs: map[string]string{},
}
spec := &engine.Spec{
Steps: []*engine.Step{step},
}
Combine(
WithEnviron(map[string]string{"GOOS": "linux"}),
WithEnviron(map[string]string{"GOARCH": "amd64"}),
)(spec)
want := map[string]string{
"GOOS": "linux",
"GOARCH": "amd64",
}
if diff := cmp.Diff(want, step.Envs); diff != "" {
t.Errorf("Unexpected transform")
t.Log(diff)
}
}