mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
59 lines
1.4 KiB
Go
59 lines
1.4 KiB
Go
// +build integration
|
|
// can be execute with go test -tags=integration ./integration/...
|
|
|
|
package main
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/SAP/jenkins-library/pkg/command"
|
|
"github.com/SAP/jenkins-library/pkg/piperenv"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestPiperGithubPublishRelease(t *testing.T) {
|
|
t.Parallel()
|
|
token := os.Getenv("PIPER_INTEGRATION_GITHUB_TOKEN")
|
|
if len(token) == 0 {
|
|
t.Fatal("No GitHub token maintained")
|
|
}
|
|
|
|
owner := os.Getenv("PIPER_INTEGRATION_GITHUB_OWNER")
|
|
if len(owner) == 0 {
|
|
owner = "OliverNocon"
|
|
}
|
|
repository := os.Getenv("PIPER_INTEGRATION_GITHUB_REPOSITORY")
|
|
if len(repository) == 0 {
|
|
repository = "piper-integration"
|
|
}
|
|
|
|
dir, err := ioutil.TempDir("", "")
|
|
defer os.RemoveAll(dir) // clean up
|
|
assert.NoError(t, err, "Error when creating temp dir")
|
|
|
|
//prepare pipeline environment
|
|
now := time.Now()
|
|
piperenv.SetResourceParameter(filepath.Join(dir, ".pipeline"), "commonPipelineEnvironment", "artifactVersion", now.Format("20060102150405"))
|
|
|
|
cmd := command.Command{}
|
|
cmd.SetDir(dir)
|
|
|
|
piperOptions := []string{
|
|
"githubPublishRelease",
|
|
"--owner",
|
|
owner,
|
|
"--repository",
|
|
repository,
|
|
"--token",
|
|
token,
|
|
"--noTelemetry",
|
|
}
|
|
|
|
err = cmd.RunExecutable(getPiperExecutable(), piperOptions...)
|
|
assert.NoError(t, err, "Calling piper with arguments %v failed.", piperOptions)
|
|
}
|