mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-15 22:41:19 +00:00
001b5639a6
instead of `if`s
156 lines
2.7 KiB
Go
156 lines
2.7 KiB
Go
package errors_test
|
|
|
|
import (
|
|
"errors"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"go.uber.org/multierr"
|
|
|
|
pipeline_errors "go.woodpecker-ci.org/woodpecker/v2/pipeline/errors"
|
|
)
|
|
|
|
func TestGetPipelineErrors(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
tests := []struct {
|
|
title string
|
|
err error
|
|
expected []*pipeline_errors.PipelineError
|
|
}{
|
|
{
|
|
title: "nil error",
|
|
err: nil,
|
|
expected: nil,
|
|
},
|
|
{
|
|
title: "warning",
|
|
err: &pipeline_errors.PipelineError{
|
|
IsWarning: true,
|
|
},
|
|
expected: []*pipeline_errors.PipelineError{
|
|
{
|
|
IsWarning: true,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
title: "pipeline error",
|
|
err: &pipeline_errors.PipelineError{
|
|
IsWarning: false,
|
|
},
|
|
expected: []*pipeline_errors.PipelineError{
|
|
{
|
|
IsWarning: false,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
title: "multiple warnings",
|
|
err: multierr.Combine(
|
|
&pipeline_errors.PipelineError{
|
|
IsWarning: true,
|
|
},
|
|
&pipeline_errors.PipelineError{
|
|
IsWarning: true,
|
|
},
|
|
),
|
|
expected: []*pipeline_errors.PipelineError{
|
|
{
|
|
IsWarning: true,
|
|
},
|
|
{
|
|
IsWarning: true,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
title: "multiple errors and warnings",
|
|
err: multierr.Combine(
|
|
&pipeline_errors.PipelineError{
|
|
IsWarning: true,
|
|
},
|
|
&pipeline_errors.PipelineError{
|
|
IsWarning: false,
|
|
},
|
|
errors.New("some error"),
|
|
),
|
|
expected: []*pipeline_errors.PipelineError{
|
|
{
|
|
IsWarning: true,
|
|
},
|
|
{
|
|
IsWarning: false,
|
|
},
|
|
{
|
|
Type: pipeline_errors.PipelineErrorTypeGeneric,
|
|
IsWarning: false,
|
|
Message: "some error",
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
assert.Equalf(t, pipeline_errors.GetPipelineErrors(test.err), test.expected, test.title)
|
|
}
|
|
}
|
|
|
|
func TestHasBlockingErrors(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
tests := []struct {
|
|
title string
|
|
err error
|
|
expected bool
|
|
}{
|
|
{
|
|
title: "nil error",
|
|
err: nil,
|
|
expected: false,
|
|
},
|
|
{
|
|
title: "warning",
|
|
err: &pipeline_errors.PipelineError{
|
|
IsWarning: true,
|
|
},
|
|
expected: false,
|
|
},
|
|
{
|
|
title: "pipeline error",
|
|
err: &pipeline_errors.PipelineError{
|
|
IsWarning: false,
|
|
},
|
|
expected: true,
|
|
},
|
|
{
|
|
title: "multiple warnings",
|
|
err: multierr.Combine(
|
|
&pipeline_errors.PipelineError{
|
|
IsWarning: true,
|
|
},
|
|
&pipeline_errors.PipelineError{
|
|
IsWarning: true,
|
|
},
|
|
),
|
|
expected: false,
|
|
},
|
|
{
|
|
title: "multiple errors and warnings",
|
|
err: multierr.Combine(
|
|
&pipeline_errors.PipelineError{
|
|
IsWarning: true,
|
|
},
|
|
&pipeline_errors.PipelineError{
|
|
IsWarning: false,
|
|
},
|
|
errors.New("some error"),
|
|
),
|
|
expected: true,
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
assert.Equal(t, test.expected, pipeline_errors.HasBlockingErrors(test.err))
|
|
}
|
|
}
|