harness-drone/server/badge_test.go

93 lines
2.5 KiB
Go
Raw Normal View History

2015-04-23 21:56:26 +00:00
package server
import (
2015-04-28 21:42:09 +00:00
"encoding/xml"
2015-04-23 21:56:26 +00:00
"net/http"
2015-04-28 21:42:09 +00:00
"net/url"
2015-04-23 21:56:26 +00:00
"testing"
"github.com/drone/drone/common"
2015-04-28 21:42:09 +00:00
"github.com/drone/drone/common/ccmenu"
"github.com/drone/drone/datastore"
2015-05-01 04:20:59 +00:00
"github.com/drone/drone/datastore/mock"
"github.com/drone/drone/server/recorder"
2015-04-23 21:56:26 +00:00
. "github.com/franela/goblin"
"github.com/gin-gonic/gin"
)
var badgeTests = []struct {
badge []byte
state string
activity string
status string
err error
}{
{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, "", "", "", datastore.ErrKeyNotFound},
}
2015-04-23 21:56:26 +00:00
func TestBadges(t *testing.T) {
store := new(mocks.Datastore)
url_, _ := url.Parse("http://localhost:8080")
2015-04-23 21:56:26 +00:00
g := Goblin(t)
g.Describe("Badges", func() {
2015-04-28 21:42:09 +00:00
2015-05-01 05:48:15 +00:00
g.It("should serve svg badges", func() {
for _, test := range badgeTests {
rw := recorder.New()
ctx := &gin.Context{Engine: gin.Default(), Writer: rw}
2015-04-23 21:56:26 +00:00
repo := &common.Repo{FullName: "foo/bar"}
if len(test.state) != 0 {
repo.Last = &common.Build{State: test.state}
2015-04-28 21:42:09 +00:00
}
2015-04-23 21:56:26 +00:00
ctx.Set("datastore", store)
ctx.Set("repo", repo)
2015-04-23 21:56:26 +00:00
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")
2015-04-28 21:42:09 +00:00
}
})
2015-04-28 21:42:09 +00:00
g.It("should serve ccmenu xml", func() {
2015-04-23 21:56:26 +00:00
for _, test := range badgeTests {
rw := recorder.New()
ctx := &gin.Context{Engine: gin.Default(), Writer: rw}
ctx.Request = &http.Request{URL: url_}
2015-04-28 21:42:09 +00:00
repo := &common.Repo{FullName: "foo/bar"}
ctx.Set("datastore", store)
ctx.Set("repo", repo)
2015-04-28 21:42:09 +00:00
build := &common.Build{State: test.state}
store.On("BuildLast", repo.FullName).Return(build, test.err).Once()
GetCC(ctx)
2015-04-28 21:42:09 +00:00
// 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
2015-04-28 21:42:09 +00:00
}
// else parse the CCMenu xml output and verify
// it matches the expected values.
cc := &ccmenu.CCProjects{}
xml.Unmarshal(rw.Body.Bytes(), cc)
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")
2015-04-28 21:42:09 +00:00
}
})
2015-04-23 21:56:26 +00:00
})
}