2019-10-24 10:59:58 +02:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
2020-01-24 15:30:27 +02:00
|
|
|
"fmt"
|
2019-10-24 10:59:58 +02:00
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/SAP/jenkins-library/pkg/config"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
flag "github.com/spf13/pflag"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
2019-10-25 14:58:59 +02:00
|
|
|
func configOpenFileMock(name string) (io.ReadCloser, error) {
|
2019-10-24 10:59:58 +02:00
|
|
|
var r string
|
|
|
|
switch name {
|
|
|
|
case "TestAddCustomDefaults_default1":
|
|
|
|
r = "default1"
|
|
|
|
case "TestAddCustomDefaults_default2":
|
|
|
|
r = "default3"
|
|
|
|
default:
|
|
|
|
r = ""
|
|
|
|
}
|
|
|
|
return ioutil.NopCloser(strings.NewReader(r)), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestConfigCommand(t *testing.T) {
|
|
|
|
cmd := ConfigCommand()
|
|
|
|
|
|
|
|
gotReq := []string{}
|
|
|
|
gotOpt := []string{}
|
|
|
|
|
|
|
|
cmd.Flags().VisitAll(func(pflag *flag.Flag) {
|
|
|
|
annotations, found := pflag.Annotations[cobra.BashCompOneRequiredFlag]
|
|
|
|
if found && annotations[0] == "true" {
|
|
|
|
gotReq = append(gotReq, pflag.Name)
|
|
|
|
} else {
|
|
|
|
gotOpt = append(gotOpt, pflag.Name)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("Required flags", func(t *testing.T) {
|
2019-11-22 11:14:21 +02:00
|
|
|
exp := []string{"stepMetadata"}
|
2019-10-24 10:59:58 +02:00
|
|
|
assert.Equal(t, exp, gotReq, "required flags incorrect")
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("Optional flags", func(t *testing.T) {
|
|
|
|
exp := []string{"contextConfig", "output", "parametersJSON"}
|
|
|
|
assert.Equal(t, exp, gotOpt, "optional flags incorrect")
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("Run", func(t *testing.T) {
|
|
|
|
t.Run("Success case", func(t *testing.T) {
|
2019-10-25 14:58:59 +02:00
|
|
|
configOptions.openFile = configOpenFileMock
|
2020-05-26 07:58:03 +02:00
|
|
|
cmd.Run(cmd, []string{})
|
2019-10-24 10:59:58 +02:00
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDefaultsAndFilters(t *testing.T) {
|
|
|
|
metadata := config.StepData{
|
|
|
|
Spec: config.StepSpec{
|
|
|
|
Inputs: config.StepInputs{
|
|
|
|
Parameters: []config.StepParameters{
|
|
|
|
{Name: "paramOne", Scope: []string{"GENERAL", "STEPS", "STAGES", "PARAMETERS", "ENV"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Run("Context config", func(t *testing.T) {
|
|
|
|
configOptions.contextConfig = true
|
|
|
|
defer func() { configOptions.contextConfig = false }()
|
2019-11-22 11:14:21 +02:00
|
|
|
defaults, filters, err := defaultsAndFilters(&metadata, "stepName")
|
2019-10-24 10:59:58 +02:00
|
|
|
|
|
|
|
assert.Equal(t, 1, len(defaults), "getting defaults failed")
|
|
|
|
assert.Equal(t, 0, len(filters.All), "wrong number of filter values")
|
|
|
|
assert.NoError(t, err, "error occured but none expected")
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("Step config", func(t *testing.T) {
|
2019-11-22 11:14:21 +02:00
|
|
|
defaults, filters, err := defaultsAndFilters(&metadata, "stepName")
|
2019-10-24 10:59:58 +02:00
|
|
|
assert.Equal(t, 0, len(defaults), "getting defaults failed")
|
2020-01-28 00:40:53 +02:00
|
|
|
assert.Equal(t, 2, len(filters.All), "wrong number of filter values")
|
2019-10-24 10:59:58 +02:00
|
|
|
assert.NoError(t, err, "error occured but none expected")
|
|
|
|
})
|
2020-01-24 15:30:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestApplyContextConditions(t *testing.T) {
|
2019-10-24 10:59:58 +02:00
|
|
|
|
2020-01-24 15:30:27 +02:00
|
|
|
tt := []struct {
|
2020-05-20 10:50:35 +02:00
|
|
|
name string
|
2020-01-24 15:30:27 +02:00
|
|
|
metadata config.StepData
|
|
|
|
conf config.StepConfig
|
|
|
|
expected map[string]interface{}
|
|
|
|
}{
|
|
|
|
{
|
2020-05-20 10:50:35 +02:00
|
|
|
name: "no context conditions",
|
2020-01-24 15:30:27 +02:00
|
|
|
metadata: config.StepData{Spec: config.StepSpec{Containers: []config.Container{}}},
|
|
|
|
conf: config.StepConfig{Config: map[string]interface{}{}},
|
|
|
|
expected: map[string]interface{}{},
|
|
|
|
},
|
|
|
|
{
|
2020-05-20 10:50:35 +02:00
|
|
|
name: "context condition not met",
|
2020-01-24 15:30:27 +02:00
|
|
|
metadata: config.StepData{Spec: config.StepSpec{Containers: []config.Container{
|
|
|
|
{
|
2020-05-20 10:50:35 +02:00
|
|
|
Image: "myDefaultImage:latest",
|
2020-01-24 15:30:27 +02:00
|
|
|
Conditions: []config.Condition{
|
|
|
|
{
|
|
|
|
ConditionRef: "strings-equal",
|
|
|
|
Params: []config.Param{
|
|
|
|
{Name: "param1", Value: "val2"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}}},
|
|
|
|
conf: config.StepConfig{Config: map[string]interface{}{
|
|
|
|
"param1": "val1",
|
|
|
|
"val1": map[string]interface{}{"dockerImage": "myTestImage:latest"},
|
|
|
|
}},
|
|
|
|
expected: map[string]interface{}{
|
|
|
|
"param1": "val1",
|
|
|
|
"val1": map[string]interface{}{"dockerImage": "myTestImage:latest"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2020-05-20 10:50:35 +02:00
|
|
|
name: "context condition met",
|
2020-01-24 15:30:27 +02:00
|
|
|
metadata: config.StepData{Spec: config.StepSpec{Containers: []config.Container{
|
|
|
|
{
|
2020-05-20 10:50:35 +02:00
|
|
|
Image: "myDefaultImage:latest",
|
2020-01-24 15:30:27 +02:00
|
|
|
Conditions: []config.Condition{
|
|
|
|
{
|
|
|
|
ConditionRef: "strings-equal",
|
|
|
|
Params: []config.Param{
|
|
|
|
{Name: "param1", Value: "val1"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}}},
|
|
|
|
conf: config.StepConfig{Config: map[string]interface{}{
|
|
|
|
"param1": "val1",
|
|
|
|
"val1": map[string]interface{}{"dockerImage": "myTestImage:latest"},
|
|
|
|
}},
|
|
|
|
expected: map[string]interface{}{
|
|
|
|
"param1": "val1",
|
|
|
|
"dockerImage": "myTestImage:latest",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2020-05-20 10:50:35 +02:00
|
|
|
name: "context condition met - root defined already",
|
|
|
|
metadata: config.StepData{Spec: config.StepSpec{Containers: []config.Container{
|
|
|
|
{
|
|
|
|
Image: "myDefaultImage:latest",
|
|
|
|
Conditions: []config.Condition{
|
|
|
|
{
|
|
|
|
ConditionRef: "strings-equal",
|
|
|
|
Params: []config.Param{
|
|
|
|
{Name: "param1", Value: "val1"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}}},
|
|
|
|
conf: config.StepConfig{Config: map[string]interface{}{
|
|
|
|
"param1": "val1",
|
|
|
|
"dockerImage": "myTestImage:latest",
|
|
|
|
}},
|
|
|
|
expected: map[string]interface{}{
|
|
|
|
"param1": "val1",
|
|
|
|
"dockerImage": "myTestImage:latest",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "context condition met - root defined and deep value defined",
|
|
|
|
metadata: config.StepData{Spec: config.StepSpec{Containers: []config.Container{
|
|
|
|
{
|
|
|
|
Image: "myDefaultImage:latest",
|
|
|
|
Conditions: []config.Condition{
|
|
|
|
{
|
|
|
|
ConditionRef: "strings-equal",
|
|
|
|
Params: []config.Param{
|
|
|
|
{Name: "param1", Value: "val1"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}}},
|
|
|
|
conf: config.StepConfig{Config: map[string]interface{}{
|
|
|
|
"param1": "val1",
|
|
|
|
"val1": map[string]interface{}{"dockerImage": "mySubTestImage:latest"},
|
|
|
|
"dockerImage": "myTestImage:latest",
|
|
|
|
}},
|
|
|
|
expected: map[string]interface{}{
|
|
|
|
"param1": "val1",
|
|
|
|
"dockerImage": "myTestImage:latest",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "context condition met - root defined as empty",
|
|
|
|
metadata: config.StepData{Spec: config.StepSpec{Containers: []config.Container{
|
|
|
|
{
|
|
|
|
Image: "myDefaultImage:latest",
|
|
|
|
Conditions: []config.Condition{
|
|
|
|
{
|
|
|
|
ConditionRef: "strings-equal",
|
|
|
|
Params: []config.Param{
|
|
|
|
{Name: "param1", Value: "val1"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}}},
|
|
|
|
conf: config.StepConfig{Config: map[string]interface{}{
|
|
|
|
"param1": "val1",
|
|
|
|
"dockerImage": "",
|
|
|
|
}},
|
|
|
|
expected: map[string]interface{}{
|
|
|
|
"param1": "val1",
|
|
|
|
"dockerImage": "",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
//ToDo: Sidecar behavior not properly working, expects sidecarImage, ... parameters and not dockerImage
|
|
|
|
{
|
|
|
|
name: "sidecar context condition met",
|
2020-01-24 15:30:27 +02:00
|
|
|
metadata: config.StepData{Spec: config.StepSpec{Sidecars: []config.Container{
|
|
|
|
{
|
|
|
|
Image: "myTestImage:latest",
|
|
|
|
Conditions: []config.Condition{
|
|
|
|
{
|
|
|
|
ConditionRef: "strings-equal",
|
|
|
|
Params: []config.Param{
|
|
|
|
{Name: "param1", Value: "val1"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}}},
|
|
|
|
conf: config.StepConfig{Config: map[string]interface{}{
|
|
|
|
"param1": "val1",
|
|
|
|
"val1": map[string]interface{}{"dockerImage": "myTestImage:latest"},
|
|
|
|
}},
|
|
|
|
expected: map[string]interface{}{
|
|
|
|
"param1": "val1",
|
|
|
|
"dockerImage": "myTestImage:latest",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for run, test := range tt {
|
2020-05-20 10:50:35 +02:00
|
|
|
t.Run(test.name, func(t *testing.T) {
|
|
|
|
applyContextConditions(test.metadata, &test.conf)
|
|
|
|
assert.Equalf(t, test.expected, test.conf.Config, fmt.Sprintf("Run %v failed", run))
|
|
|
|
})
|
2020-01-24 15:30:27 +02:00
|
|
|
}
|
2019-10-24 10:59:58 +02:00
|
|
|
}
|