mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
ccc1c976ee
* Reorders getApiInformation, changes variables to get start time, adjusts and adds test cases * Changes the way to get apiInformation and reduces number of requests * Changes getting pipeline start time from correct env variable * Refactors getApiInformation functionality * Adds GetBuildReason() for Azure and Jenkins * Updates JobURL for ADO
48 lines
1.3 KiB
Go
48 lines
1.3 KiB
Go
package orchestrator
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestGitHubActions(t *testing.T) {
|
|
t.Run("BranchBuild", func(t *testing.T) {
|
|
defer resetEnv(os.Environ())
|
|
os.Clearenv()
|
|
os.Unsetenv("GITHUB_HEAD_REF")
|
|
os.Setenv("GITHUB_ACTIONS", "true")
|
|
os.Setenv("GITHUB_REF", "refs/heads/feat/test-gh-actions")
|
|
os.Setenv("GITHUB_RUN_ID", "42")
|
|
os.Setenv("GITHUB_SHA", "abcdef42713")
|
|
os.Setenv("GITHUB_SERVER_URL", "github.com/")
|
|
os.Setenv("GITHUB_REPOSITORY", "foo/bar")
|
|
|
|
p, _ := NewOrchestratorSpecificConfigProvider()
|
|
|
|
assert.False(t, p.IsPullRequest())
|
|
assert.Equal(t, "github.com/foo/bar/actions/runs/42", p.GetBuildURL())
|
|
assert.Equal(t, "feat/test-gh-actions", p.GetBranch())
|
|
assert.Equal(t, "abcdef42713", p.GetCommit())
|
|
assert.Equal(t, "github.com/foo/bar", p.GetRepoURL())
|
|
assert.Equal(t, "GitHubActions", p.OrchestratorType())
|
|
})
|
|
|
|
t.Run("PR", func(t *testing.T) {
|
|
defer resetEnv(os.Environ())
|
|
os.Clearenv()
|
|
os.Setenv("GITHUB_HEAD_REF", "feat/test-gh-actions")
|
|
os.Setenv("GITHUB_BASE_REF", "main")
|
|
os.Setenv("GITHUB_EVENT_PULL_REQUEST_NUMBER", "42")
|
|
|
|
p := GitHubActionsConfigProvider{}
|
|
c := p.GetPullRequestConfig()
|
|
|
|
assert.True(t, p.IsPullRequest())
|
|
assert.Equal(t, "feat/test-gh-actions", c.Branch)
|
|
assert.Equal(t, "main", c.Base)
|
|
assert.Equal(t, "42", c.Key)
|
|
})
|
|
}
|