mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-19 08:21:01 +00:00
53b79eabcd
Credits: @langecode Taken from #2504
41 lines
797 B
Go
41 lines
797 B
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/server/pipeline"
|
|
)
|
|
|
|
func TestHandlePipelineError(t *testing.T) {
|
|
tests := []struct {
|
|
err error
|
|
code int
|
|
}{
|
|
{
|
|
err: pipeline.ErrFiltered,
|
|
code: http.StatusNoContent,
|
|
},
|
|
{
|
|
err: &pipeline.ErrNotFound{Msg: "pipeline not found"},
|
|
code: http.StatusNotFound,
|
|
},
|
|
{
|
|
err: &pipeline.ErrBadRequest{Msg: "bad request error"},
|
|
code: http.StatusBadRequest,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
r := httptest.NewRecorder()
|
|
c, _ := gin.CreateTestContext(r)
|
|
handlePipelineErr(c, tt.err)
|
|
c.Writer.WriteHeaderNow() // require written header
|
|
if r.Code != tt.code {
|
|
t.Errorf("status code: %d - expected: %d", r.Code, tt.code)
|
|
}
|
|
}
|
|
}
|