mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
6c5434f957
* feat: first parts of new run struct * add parts for new stage condition handling * update conditions * feat: finalize conditions and tests * feat(checkIfStepActive): support new CRD style conditions * feat(docs): allow generating stage docs * chore(docs): make step directory configurable * fix: tests * add option to output file * Update checkIfStepActive_test.go
77 lines
1.8 KiB
Go
77 lines
1.8 KiB
Go
package cmd
|
|
|
|
import (
|
|
"io"
|
|
"io/ioutil"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/spf13/cobra"
|
|
flag "github.com/spf13/pflag"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func checkStepActiveOpenFileMock(name string, tokens map[string]string) (io.ReadCloser, error) {
|
|
var fileContent string
|
|
switch name {
|
|
case ".pipeline/defaults.yaml":
|
|
fileContent = `
|
|
general:
|
|
stages:
|
|
steps:`
|
|
case "stage-config.yml":
|
|
fileContent = `
|
|
stages:
|
|
testStage:
|
|
stepConditions:
|
|
testStep:
|
|
config: testConfig`
|
|
case ".pipeline/config.yml":
|
|
fileContent = `
|
|
steps:
|
|
testStep:
|
|
testConfig: 'testValue'`
|
|
default:
|
|
fileContent = ""
|
|
}
|
|
return ioutil.NopCloser(strings.NewReader(fileContent)), nil
|
|
}
|
|
|
|
func TestCheckStepActiveCommand(t *testing.T) {
|
|
cmd := CheckStepActiveCommand()
|
|
|
|
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) {
|
|
exp := []string{"stage", "step"}
|
|
assert.Equal(t, exp, gotReq, "required flags incorrect")
|
|
})
|
|
|
|
t.Run("Optional flags", func(t *testing.T) {
|
|
exp := []string{"stageConfig", "stageOutputFile", "stepOutputFile", "useV1"}
|
|
assert.Equal(t, exp, gotOpt, "optional flags incorrect")
|
|
})
|
|
|
|
t.Run("Run", func(t *testing.T) {
|
|
t.Run("Success case", func(t *testing.T) {
|
|
checkStepActiveOptions.openFile = checkStepActiveOpenFileMock
|
|
checkStepActiveOptions.stageName = "testStage"
|
|
checkStepActiveOptions.stepName = "testStep"
|
|
checkStepActiveOptions.stageConfigFile = "stage-config.yml"
|
|
GeneralConfig.CustomConfig = ".pipeline/config.yml"
|
|
GeneralConfig.DefaultConfig = []string{".pipeline/defaults.yaml"}
|
|
cmd.Run(cmd, []string{})
|
|
})
|
|
})
|
|
}
|