1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/pkg/orchestrator/unknownOrchestrator_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

62 lines
1.5 KiB
Go

//go:build unit
// +build unit
package orchestrator
import (
"os"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func TestUnknownOrchestrator(t *testing.T) {
t.Run("BranchBuild", func(t *testing.T) {
defer resetEnv(os.Environ())
os.Clearenv()
p, _ := NewOrchestratorSpecificConfigProvider()
assert.False(t, p.IsPullRequest())
assert.Equal(t, "n/a", p.GetBuildURL())
assert.Equal(t, "n/a", p.GetBranch())
assert.Equal(t, "n/a", p.GetCommit())
assert.Equal(t, "n/a", p.GetRepoURL())
assert.Equal(t, "Unknown", p.OrchestratorType())
})
t.Run("PR", func(t *testing.T) {
defer resetEnv(os.Environ())
os.Clearenv()
p := UnknownOrchestratorConfigProvider{}
c := p.GetPullRequestConfig()
assert.False(t, p.IsPullRequest())
assert.Equal(t, "n/a", c.Branch)
assert.Equal(t, "n/a", c.Base)
assert.Equal(t, "n/a", c.Key)
})
t.Run("env variables", func(t *testing.T) {
defer resetEnv(os.Environ())
os.Clearenv()
p := UnknownOrchestratorConfigProvider{}
assert.Equal(t, "n/a", p.OrchestratorVersion())
assert.Equal(t, "n/a", p.GetBuildID())
assert.Equal(t, "n/a", p.GetJobName())
assert.Equal(t, "Unknown", p.OrchestratorType())
assert.Equal(t, time.Time{}.UTC(), p.GetPipelineStartTime())
assert.Equal(t, "FAILURE", p.GetBuildStatus())
assert.Equal(t, "n/a", p.GetRepoURL())
assert.Equal(t, "n/a", p.GetBuildURL())
assert.Equal(t, "n/a", p.GetStageName())
log, err := p.GetLog()
assert.Equal(t, []byte{}, log)
assert.Equal(t, nil, err)
})
}