2019-02-10 19:00:16 +00:00
|
|
|
// 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.
|
|
|
|
|
2019-01-22 23:44:17 +00:00
|
|
|
package transform
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/drone/drone-runtime/engine"
|
|
|
|
"github.com/google/go-cmp/cmp"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestWithNetwork(t *testing.T) {
|
|
|
|
step := &engine.Step{
|
|
|
|
Metadata: engine.Metadata{
|
|
|
|
UID: "1",
|
|
|
|
Name: "build",
|
|
|
|
},
|
|
|
|
Docker: &engine.DockerStep{
|
|
|
|
Networks: nil,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
spec := &engine.Spec{
|
|
|
|
Steps: []*engine.Step{step},
|
|
|
|
}
|
|
|
|
nets := []string{"a", "b"}
|
|
|
|
WithNetworks(nets)(spec)
|
|
|
|
if diff := cmp.Diff(nets, step.Docker.Networks); diff != "" {
|
|
|
|
t.Errorf("Unexpected transform")
|
|
|
|
t.Log(diff)
|
|
|
|
}
|
|
|
|
}
|