mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
911d4bc770
* Make sonarExecuteScan orchestrator-agnostic
* Increase coverage + support empty or false env vars
* Use cleared env for unit tests
* Refactor to standalone package
* Fix review findings
* Fix review findings
* Fix unit test
* Add logging
* Refactor
* Add to codeowners 😎
* Apply suggestions from code review
* Remove unreachable code
* no message
* fix typos
Co-authored-by: Christopher Fenner <26137398+CCFenner@users.noreply.github.com>
41 lines
942 B
Go
41 lines
942 B
Go
package orchestrator
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestJenkins(t *testing.T) {
|
|
t.Run("BranchBuild", func(t *testing.T) {
|
|
defer resetEnv(os.Environ())
|
|
os.Clearenv()
|
|
os.Setenv("JENKINS_URL", "https://foo.bar/baz")
|
|
os.Setenv("BRANCH_NAME", "feat/test-jenkins")
|
|
|
|
p, _ := NewOrchestratorSpecificConfigProvider()
|
|
c := p.GetBranchBuildConfig()
|
|
|
|
assert.False(t, p.IsPullRequest())
|
|
assert.Equal(t, "feat/test-jenkins", c.Branch)
|
|
})
|
|
|
|
t.Run("PR", func(t *testing.T) {
|
|
defer resetEnv(os.Environ())
|
|
os.Clearenv()
|
|
os.Setenv("BRANCH_NAME", "PR-42")
|
|
os.Setenv("CHANGE_BRANCH", "feat/test-jenkins")
|
|
os.Setenv("CHANGE_TARGET", "main")
|
|
os.Setenv("CHANGE_ID", "42")
|
|
|
|
p := JenkinsConfigProvider{}
|
|
c := p.GetPullRequestConfig()
|
|
|
|
assert.True(t, p.IsPullRequest())
|
|
assert.Equal(t, "feat/test-jenkins", c.Branch)
|
|
assert.Equal(t, "main", c.Base)
|
|
assert.Equal(t, "42", c.Key)
|
|
})
|
|
}
|