1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/githubCommentIssue_test.go
Oliver Nocon cf7ca8f791
add step to create a GitHub comment (#2479)
* add step to create a GitHub comment

* add docs

* mandatory parameters

* add command

* Update githubCommentIssue.go

* add groovy library step

Co-authored-by: Sven Merk <33895725+nevskrem@users.noreply.github.com>
2020-12-21 16:21:07 +01:00

81 lines
1.9 KiB
Go

package cmd
import (
"context"
"fmt"
"net/http"
"testing"
"github.com/google/go-github/v32/github"
"github.com/stretchr/testify/assert"
)
type ghIssueCommentMock struct {
issueComment *github.IssueComment
issueID int64
issueError error
owner string
repo string
number int
}
func (g *ghIssueCommentMock) CreateComment(ctx context.Context, owner string, repo string, number int, comment *github.IssueComment) (*github.IssueComment, *github.Response, error) {
g.issueComment = comment
g.owner = owner
g.repo = repo
g.number = number
issueComment := github.IssueComment{ID: &g.issueID, Body: comment.Body}
ghRes := github.Response{Response: &http.Response{Status: "200"}}
if g.issueError != nil {
ghRes.Status = "401"
}
return &issueComment, &ghRes, g.issueError
}
func TestRunGithubCommentIssue(t *testing.T) {
ctx := context.Background()
t.Parallel()
t.Run("Success", func(t *testing.T) {
// init
ghIssueCommentService := ghIssueCommentMock{
issueID: 1,
}
config := githubCommentIssueOptions{
Owner: "TEST",
Repository: "test",
Body: "This is my test body",
Number: 1,
}
// test
err := runGithubCommentIssue(ctx, &config, nil, &ghIssueCommentService)
// assert
assert.NoError(t, err)
assert.Equal(t, config.Owner, ghIssueCommentService.owner)
assert.Equal(t, config.Repository, ghIssueCommentService.repo)
assert.Equal(t, config.Body, ghIssueCommentService.issueComment.GetBody())
assert.Equal(t, config.Number, ghIssueCommentService.number)
})
t.Run("Error", func(t *testing.T) {
// init
ghIssueCommentService := ghIssueCommentMock{
issueError: fmt.Errorf("error creating comment"),
}
config := githubCommentIssueOptions{
Number: 1,
}
// test
err := runGithubCommentIssue(ctx, &config, nil, &ghIssueCommentService)
// assert
assert.EqualError(t, err, "Error occurred when creating comment on issue 1: error creating comment")
})
}