mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-13 12:41:21 +00:00
adb2c82790
https://go.dev/doc/modules/release-workflow#breaking Fixes https://github.com/woodpecker-ci/woodpecker/issues/2913 fixes #2654 ``` runephilosof@fedora:~/code/platform-woodpecker/woodpecker-repo-configurator (master)$ go get go.woodpecker-ci.org/woodpecker@v2.0.0 go: go.woodpecker-ci.org/woodpecker@v2.0.0: invalid version: module contains a go.mod file, so module path must match major version ("go.woodpecker-ci.org/woodpecker/v2") ``` --------- Co-authored-by: qwerty287 <80460567+qwerty287@users.noreply.github.com>
41 lines
796 B
Go
41 lines
796 B
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"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
|
|
if r.Code != tt.code {
|
|
t.Errorf("status code: %d - expected: %d", r.Code, tt.code)
|
|
}
|
|
}
|
|
}
|