woodpecker/pipeline/errors/error_test.go
runephilosof-karnovgroup adb2c82790
Update go module path for major version 2 (#2905)
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>
2023-12-08 08:15:08 +01:00

159 lines
2.8 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 {
if pipeline_errors.HasBlockingErrors(test.err) != test.expected {
t.Error("Should only return true if there are blocking errors")
}
}
}