1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-24 04:16:27 +02:00
goreleaser/internal/pipe/semver/semver_test.go

32 lines
749 B
Go
Raw Normal View History

2019-01-19 16:57:58 -02:00
package semver
import (
"testing"
"github.com/goreleaser/goreleaser/internal/testctx"
2019-01-19 16:57:58 -02:00
"github.com/goreleaser/goreleaser/pkg/context"
"github.com/stretchr/testify/require"
)
func TestDescription(t *testing.T) {
require.NotEmpty(t, Pipe{}.String())
2019-01-19 16:57:58 -02:00
}
func TestValidSemver(t *testing.T) {
ctx := testctx.New(testctx.WithCurrentTag("v1.5.2-rc1"))
2019-01-19 16:57:58 -02:00
require.NoError(t, Pipe{}.Run(ctx))
require.Equal(t, context.Semver{
Major: 1,
Minor: 5,
Patch: 2,
Prerelease: "rc1",
}, ctx.Semver)
}
func TestInvalidSemver(t *testing.T) {
ctx := testctx.New(testctx.WithCurrentTag("aaaav1.5.2-rc1"))
err := Pipe{}.Run(ctx)
2019-01-19 16:57:58 -02:00
require.Error(t, err)
require.Contains(t, err.Error(), "failed to parse tag 'aaaav1.5.2-rc1' as semver")
2019-01-19 16:57:58 -02:00
}