mirror of
https://github.com/thegeeklab/drone-yaml.git
synced 2024-11-05 19:10:38 +00:00
38 lines
795 B
Go
38 lines
795 B
Go
// Copyright 2019 Drone.IO Inc. All rights reserved.
|
|
// Use of this source code is governed by the Drone Community
|
|
// License that can be found in the LICENSE file.
|
|
|
|
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)
|
|
}
|
|
}
|