mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
ffc931aad1
* 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>
84 lines
2.0 KiB
Go
84 lines
2.0 KiB
Go
//go:build unit
|
|
// +build unit
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/http"
|
|
"testing"
|
|
|
|
"github.com/google/go-github/v45/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")
|
|
})
|
|
}
|