mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-06 00:49:48 +00:00
104 lines
3 KiB
Go
104 lines
3 KiB
Go
package server
|
|
|
|
import (
|
|
"database/sql"
|
|
"encoding/xml"
|
|
"net/http"
|
|
"net/url"
|
|
"testing"
|
|
|
|
"github.com/drone/drone/pkg/ccmenu"
|
|
"github.com/drone/drone/pkg/server/recorder"
|
|
"github.com/drone/drone/pkg/store/mock"
|
|
common "github.com/drone/drone/pkg/types"
|
|
|
|
. "github.com/drone/drone/Godeps/_workspace/src/github.com/franela/goblin"
|
|
"github.com/drone/drone/Godeps/_workspace/src/github.com/gin-gonic/gin"
|
|
"github.com/drone/drone/Godeps/_workspace/src/github.com/stretchr/testify/mock"
|
|
)
|
|
|
|
var badgeTests = []struct {
|
|
branch string
|
|
badge []byte
|
|
state string
|
|
activity string
|
|
status string
|
|
err error
|
|
}{
|
|
{"", badgeSuccess, common.StateSuccess, "Sleeping", "Success", nil},
|
|
{"master", badgeSuccess, common.StateSuccess, "Sleeping", "Success", nil},
|
|
{"", badgeStarted, common.StateRunning, "Building", "Unknown", nil},
|
|
{"", badgeError, common.StateError, "Sleeping", "Exception", nil},
|
|
{"", badgeError, common.StateKilled, "Sleeping", "Exception", nil},
|
|
{"", badgeFailure, common.StateFailure, "Sleeping", "Failure", nil},
|
|
{"", badgeNone, "", "", "", sql.ErrNoRows},
|
|
}
|
|
|
|
func TestBadges(t *testing.T) {
|
|
store := new(mocks.Store)
|
|
url_, _ := url.Parse("http://localhost:8080")
|
|
|
|
g := Goblin(t)
|
|
g.Describe("Badges", func() {
|
|
|
|
g.It("should serve svg badges", func() {
|
|
for _, test := range badgeTests {
|
|
rw := recorder.New()
|
|
ctx := &gin.Context{Engine: gin.Default(), Writer: rw}
|
|
ctx.Request = &http.Request{
|
|
Form: url.Values{},
|
|
}
|
|
if len(test.branch) != 0 {
|
|
ctx.Request.Form.Set("branch", test.branch)
|
|
}
|
|
|
|
repo := &common.Repo{FullName: "foo/bar"}
|
|
ctx.Set("datastore", store)
|
|
ctx.Set("repo", repo)
|
|
|
|
commit := &common.Build{Status: test.state}
|
|
store.On("BuildLast", repo, test.branch).Return(commit, test.err).Once()
|
|
GetBadge(ctx)
|
|
|
|
g.Assert(rw.Code).Equal(200)
|
|
g.Assert(rw.Body.Bytes()).Equal(test.badge)
|
|
g.Assert(rw.HeaderMap.Get("Content-Type")).Equal("image/svg+xml")
|
|
}
|
|
})
|
|
|
|
g.It("should serve ccmenu xml", func() {
|
|
|
|
for _, test := range badgeTests {
|
|
rw := recorder.New()
|
|
ctx := &gin.Context{Engine: gin.Default(), Writer: rw}
|
|
ctx.Request = &http.Request{URL: url_}
|
|
|
|
repo := &common.Repo{FullName: "foo/bar"}
|
|
ctx.Set("datastore", store)
|
|
ctx.Set("repo", repo)
|
|
|
|
commits := []*common.Build{
|
|
&common.Build{Status: test.state},
|
|
}
|
|
store.On("BuildList", repo, mock.AnythingOfType("int"), mock.AnythingOfType("int")).Return(commits, test.err).Once()
|
|
GetCC(ctx)
|
|
|
|
// in an error scenario (ie no build exists) we should
|
|
// return a 404 not found error.
|
|
if test.err != nil {
|
|
g.Assert(rw.Status()).Equal(404)
|
|
continue
|
|
}
|
|
|
|
// else parse the CCMenu xml output and verify
|
|
// it matches the expected values.
|
|
cc := &ccmenu.CCProjects{}
|
|
xml.Unmarshal(rw.Body.Bytes(), cc)
|
|
g.Assert(rw.Code).Equal(200)
|
|
g.Assert(cc.Project.Activity).Equal(test.activity)
|
|
g.Assert(cc.Project.LastBuildStatus).Equal(test.status)
|
|
g.Assert(rw.HeaderMap.Get("Content-Type")).Equal("application/xml; charset=utf-8")
|
|
}
|
|
})
|
|
})
|
|
}
|