mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-13 20:51:41 +00:00
159 lines
2.8 KiB
Go
159 lines
2.8 KiB
Go
|
package errors_test
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
"go.uber.org/multierr"
|
||
|
|
||
|
pipeline_errors "github.com/woodpecker-ci/woodpecker/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 {
|
||
|
if pipeline_errors.HasBlockingErrors(test.err) != test.expected {
|
||
|
t.Error("Should only return true if there are blocking errors")
|
||
|
}
|
||
|
}
|
||
|
}
|