mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-14 14:01:26 +00:00
001b5639a6
instead of `if`s
40 lines
777 B
Go
40 lines
777 B
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/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
|
|
assert.Equal(t, tt.code, r.Code)
|
|
}
|
|
}
|