2023-10-08 12:58:13 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
2024-01-14 18:33:58 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
2023-10-08 12:58:13 +00:00
|
|
|
|
2023-12-08 07:15:08 +00:00
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/pipeline"
|
2023-10-08 12:58:13 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
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
|
2024-01-14 18:33:58 +00:00
|
|
|
assert.Equal(t, tt.code, r.Code)
|
2023-10-08 12:58:13 +00:00
|
|
|
}
|
|
|
|
}
|