go-sdk/gitea/status_test.go
Gusted 8fab37e740 Enforce golangci-lint + gofumpt (#587)
- Enforce [gofumpt](https://github.com/mvdan/gofumpt) to enforce a more idiomatic go style.
- Enforce golangci-lint a bunch of linters! Which were able to detect a few issues in the current codebase and have been fixed by this PR.
- Updated the Makefile to use `go install ....` instead of the old deprecated way of `go get`

Reviewed-on: gitea/go-sdk#587
Reviewed-by: John Olheiser <john.olheiser@gmail.com>
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: Gusted <williamzijl7@hotmail.com>
Co-committed-by: Gusted <williamzijl7@hotmail.com>
2022-04-28 23:33:21 +08:00

80 lines
2.6 KiB
Go

// Copyright 2020 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package gitea
import (
"log"
"testing"
"github.com/stretchr/testify/assert"
)
func TestCommitStatus(t *testing.T) {
log.Println("== TestCommitStatus ==")
c := newTestClient()
user, _, err := c.GetMyUserInfo()
assert.NoError(t, err)
repoName := "CommitStatuses"
origRepo, err := createTestRepo(t, repoName, c)
if !assert.NoError(t, err) {
return
}
commits, _, _ := c.ListRepoCommits(user.UserName, repoName, ListCommitOptions{
ListOptions: ListOptions{},
SHA: origRepo.DefaultBranch,
})
if !assert.Len(t, commits, 1) {
return
}
sha := commits[0].SHA
combiStats, resp, err := c.GetCombinedStatus(user.UserName, repoName, sha)
assert.NoError(t, err)
assert.NotNil(t, resp)
assert.NotNil(t, combiStats)
assert.EqualValues(t, 0, combiStats.TotalCount)
statuses, resp, err := c.ListStatuses(user.UserName, repoName, sha, ListStatusesOption{})
assert.NoError(t, err)
assert.NotNil(t, resp)
assert.NotNil(t, statuses)
assert.Len(t, statuses, 0)
createStatus(t, c, user.UserName, repoName, sha, "http://dummy.test", "start testing", "ultraCI", StatusPending)
createStatus(t, c, user.UserName, repoName, sha, "https://more.secure", "just a warning", "warn/bot", StatusWarning)
createStatus(t, c, user.UserName, repoName, sha, "http://dummy.test", "test failed", "ultraCI", StatusFailure)
createStatus(t, c, user.UserName, repoName, sha, "http://dummy.test", "start testing", "ultraCI", StatusPending)
createStatus(t, c, user.UserName, repoName, sha, "http://dummy.test", "test passed", "ultraCI", StatusSuccess)
statuses, resp, err = c.ListStatuses(user.UserName, repoName, sha, ListStatusesOption{})
assert.NoError(t, err)
assert.NotNil(t, resp)
assert.NotNil(t, statuses)
assert.Len(t, statuses, 5)
combiStats, resp, err = c.GetCombinedStatus(user.UserName, repoName, sha)
assert.NoError(t, err)
assert.NotNil(t, resp)
assert.NotNil(t, combiStats)
assert.EqualValues(t, 2, combiStats.TotalCount)
assert.EqualValues(t, StatusState("warning"), combiStats.State)
assert.Len(t, combiStats.Statuses, 2)
}
func createStatus(t *testing.T, c *Client, userName, repoName, sha, url, desc, context string, state StatusState) {
stats, resp, err := c.CreateStatus(userName, repoName, sha, CreateStatusOption{
State: state,
TargetURL: url,
Description: desc,
Context: context,
})
assert.NoError(t, err)
assert.NotNil(t, resp)
assert.NotNil(t, stats)
assert.EqualValues(t, state, stats.State)
}