mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-03-21 21:07:19 +02:00
37 lines
709 B
Go
37 lines
709 B
Go
|
package skip
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/goreleaser/goreleaser/pkg/context"
|
||
|
"github.com/stretchr/testify/require"
|
||
|
)
|
||
|
|
||
|
func TestSkip(t *testing.T) {
|
||
|
fakeErr := fmt.Errorf("fake error")
|
||
|
action := func(_ *context.Context) error {
|
||
|
return fakeErr
|
||
|
}
|
||
|
|
||
|
t.Run("not a skipper", func(t *testing.T) {
|
||
|
require.EqualError(t, Maybe(action, action)(nil), fakeErr.Error())
|
||
|
})
|
||
|
|
||
|
t.Run("skip", func(t *testing.T) {
|
||
|
require.NoError(t, Maybe(skipper{true}, action)(nil))
|
||
|
})
|
||
|
|
||
|
t.Run("do not skip", func(t *testing.T) {
|
||
|
require.EqualError(t, Maybe(skipper{false}, action)(nil), fakeErr.Error())
|
||
|
})
|
||
|
}
|
||
|
|
||
|
type skipper struct {
|
||
|
skip bool
|
||
|
}
|
||
|
|
||
|
func (s skipper) Skip(_ *context.Context) bool {
|
||
|
return s.skip
|
||
|
}
|