1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/checkIfStepActive_test.go
Jk1484 ffc931aad1
feat(golangBuild): use 'unit' build tag to include tests during test execution (#4345)
* Added unit tag as argument. Added description to runTests command. Changed code generator to have unit build tag in generated unit test files.

* Added unit build tag to all unit test files.

* added to new unit test unit build tag

* Update verify-go.yml

* small fix

---------

Co-authored-by: Muhammadali Nazarov <Muhammadali.Nazarov@acronis.com>
Co-authored-by: Christopher Fenner <26137398+CCFenner@users.noreply.github.com>
2023-05-03 21:02:11 +05:00

149 lines
4.5 KiB
Go

//go:build unit
// +build unit
package cmd
import (
"io"
"io/ioutil"
"os"
"os/exec"
"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 checkStepActiveFileExistsMock(filename string) (bool, error) {
switch filename {
case ".pipeline/config.yml":
return true, nil
default:
return false, 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{"step"}
assert.Equal(t, exp, gotReq, "required flags incorrect")
})
t.Run("Optional flags", func(t *testing.T) {
exp := []string{"stage", "stageConfig", "stageOutputFile", "stepOutputFile", "useV1"}
assert.Equal(t, exp, gotOpt, "optional flags incorrect")
})
t.Run("Run", func(t *testing.T) {
t.Run("Success case - set stage and stageName parameters", func(t *testing.T) {
checkStepActiveOptions.openFile = checkStepActiveOpenFileMock
checkStepActiveOptions.fileExists = checkStepActiveFileExistsMock
checkStepActiveOptions.stageName = "testStage"
checkStepActiveOptions.stepName = "testStep"
checkStepActiveOptions.stageConfigFile = "stage-config.yml"
GeneralConfig.CustomConfig = ".pipeline/config.yml"
GeneralConfig.DefaultConfig = []string{".pipeline/defaults.yaml"}
GeneralConfig.StageName = "testStage1"
cmd.Run(cmd, []string{})
})
t.Run("Success case - set only stage parameter", func(t *testing.T) {
checkStepActiveOptions.openFile = checkStepActiveOpenFileMock
checkStepActiveOptions.fileExists = checkStepActiveFileExistsMock
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{})
})
t.Run("Success case - set only stageName parameter", func(t *testing.T) {
checkStepActiveOptions.openFile = checkStepActiveOpenFileMock
checkStepActiveOptions.fileExists = checkStepActiveFileExistsMock
checkStepActiveOptions.stepName = "testStep"
checkStepActiveOptions.stageConfigFile = "stage-config.yml"
GeneralConfig.CustomConfig = ".pipeline/config.yml"
GeneralConfig.DefaultConfig = []string{".pipeline/defaults.yaml"}
GeneralConfig.StageName = "testStage"
cmd.Run(cmd, []string{})
})
})
}
func TestFailIfNoConfigFound(t *testing.T) {
if os.Getenv("TEST_FAIL_IF_NO_CONFIG_FOUND") == "1" {
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)
}
})
checkStepActiveOptions.openFile = checkStepActiveOpenFileMock
checkStepActiveOptions.fileExists = checkStepActiveFileExistsMock
checkStepActiveOptions.stageName = "testStage"
checkStepActiveOptions.stepName = "testStep"
checkStepActiveOptions.stageConfigFile = "stage-config.yml"
GeneralConfig.CustomConfig = ".pipeline/unknown.yml"
GeneralConfig.DefaultConfig = []string{".pipeline/defaults.yaml"}
GeneralConfig.StageName = "testStage1"
cmd.Run(cmd, []string{})
return
}
cmd := exec.Command(os.Args[0], "-test.run=TestFailIfNoConfigFound")
cmd.Env = append(os.Environ(), "TEST_FAIL_IF_NO_CONFIG_FOUND=1")
err := cmd.Run()
if e, ok := err.(*exec.ExitError); ok && !e.Success() {
t.Log(e.Error())
t.Log("Stderr: ", string(e.Stderr))
return
}
t.Fatalf("process ran with err %v, want exit status 1", err)
}