2017-04-19 16:59:26 -03:00
|
|
|
package release
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2017-12-18 00:53:48 -02:00
|
|
|
"github.com/goreleaser/goreleaser/internal/artifact"
|
2021-05-30 21:53:40 -03:00
|
|
|
"github.com/goreleaser/goreleaser/internal/golden"
|
2018-08-14 23:50:20 -03:00
|
|
|
"github.com/goreleaser/goreleaser/pkg/config"
|
|
|
|
"github.com/goreleaser/goreleaser/pkg/context"
|
2020-10-06 09:48:04 -03:00
|
|
|
"github.com/stretchr/testify/require"
|
2017-04-19 16:59:26 -03:00
|
|
|
)
|
|
|
|
|
2017-04-19 17:12:12 -03:00
|
|
|
func TestDescribeBody(t *testing.T) {
|
2021-04-25 14:20:49 -03:00
|
|
|
changelog := "feature1: description\nfeature2: other description"
|
|
|
|
ctx := context.New(config.Project{})
|
2020-11-30 21:53:36 -03:00
|
|
|
ctx.ReleaseNotes = changelog
|
|
|
|
for _, d := range []string{
|
|
|
|
"goreleaser/goreleaser:0.40.0",
|
|
|
|
"goreleaser/goreleaser:latest",
|
2021-06-08 11:11:27 -03:00
|
|
|
"goreleaser/goreleaser",
|
2020-11-30 21:53:36 -03:00
|
|
|
"goreleaser/godownloader:v0.1.0",
|
|
|
|
} {
|
|
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
|
|
|
Name: d,
|
|
|
|
Type: artifact.DockerImage,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
out, err := describeBody(ctx)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
2021-05-30 21:53:40 -03:00
|
|
|
golden.RequireEqual(t, out.Bytes())
|
2020-11-30 21:53:36 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestDescribeBodyWithDockerManifest(t *testing.T) {
|
2021-04-25 14:20:49 -03:00
|
|
|
changelog := "feature1: description\nfeature2: other description"
|
|
|
|
ctx := context.New(config.Project{})
|
2017-12-17 23:11:17 -02:00
|
|
|
ctx.ReleaseNotes = changelog
|
|
|
|
for _, d := range []string{
|
|
|
|
"goreleaser/goreleaser:0.40.0",
|
|
|
|
"goreleaser/goreleaser:latest",
|
|
|
|
"goreleaser/godownloader:v0.1.0",
|
2020-11-29 14:33:31 -03:00
|
|
|
} {
|
|
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
|
|
|
Name: d,
|
|
|
|
Type: artifact.DockerManifest,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
for _, d := range []string{
|
|
|
|
"goreleaser/goreleaser:0.40.0-amd64",
|
|
|
|
"goreleaser/goreleaser:latest-amd64",
|
|
|
|
"goreleaser/godownloader:v0.1.0-amd64",
|
|
|
|
"goreleaser/goreleaser:0.40.0-arm64",
|
|
|
|
"goreleaser/goreleaser:latest-arm64",
|
|
|
|
"goreleaser/godownloader:v0.1.0-arm64",
|
2017-12-17 23:11:17 -02:00
|
|
|
} {
|
2019-08-12 17:44:48 -03:00
|
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
2017-12-17 23:11:17 -02:00
|
|
|
Name: d,
|
|
|
|
Type: artifact.DockerImage,
|
|
|
|
})
|
2017-04-19 16:59:26 -03:00
|
|
|
}
|
2018-04-01 13:27:57 -03:00
|
|
|
out, err := describeBody(ctx)
|
2020-10-06 09:48:04 -03:00
|
|
|
require.NoError(t, err)
|
2017-09-16 15:31:20 -03:00
|
|
|
|
2021-05-30 21:53:40 -03:00
|
|
|
golden.RequireEqual(t, out.Bytes())
|
2017-09-16 15:31:20 -03:00
|
|
|
}
|
|
|
|
|
2017-12-05 18:19:18 -02:00
|
|
|
func TestDescribeBodyNoDockerImagesNoBrews(t *testing.T) {
|
2021-04-25 14:20:49 -03:00
|
|
|
changelog := "feature1: description\nfeature2: other description"
|
|
|
|
ctx := &context.Context{
|
2017-09-16 15:31:20 -03:00
|
|
|
ReleaseNotes: changelog,
|
|
|
|
}
|
2018-04-01 13:27:57 -03:00
|
|
|
out, err := describeBody(ctx)
|
2020-10-06 09:48:04 -03:00
|
|
|
require.NoError(t, err)
|
2017-09-16 15:31:20 -03:00
|
|
|
|
2021-05-30 21:53:40 -03:00
|
|
|
golden.RequireEqual(t, out.Bytes())
|
2017-04-19 16:59:26 -03:00
|
|
|
}
|
|
|
|
|
2017-07-04 09:28:26 -03:00
|
|
|
func TestDontEscapeHTML(t *testing.T) {
|
2021-04-25 14:20:49 -03:00
|
|
|
changelog := "<h1>test</h1>"
|
|
|
|
ctx := context.New(config.Project{})
|
2017-12-29 20:34:09 -02:00
|
|
|
ctx.ReleaseNotes = changelog
|
|
|
|
|
2017-07-04 09:28:26 -03:00
|
|
|
out, err := describeBody(ctx)
|
2020-10-06 09:48:04 -03:00
|
|
|
require.NoError(t, err)
|
|
|
|
require.Contains(t, out.String(), changelog)
|
2017-07-04 09:28:26 -03:00
|
|
|
}
|
2021-05-30 21:53:40 -03:00
|
|
|
|
|
|
|
func TestDescribeBodyWithHeaderAndFooter(t *testing.T) {
|
|
|
|
changelog := "feature1: description\nfeature2: other description"
|
|
|
|
ctx := context.New(config.Project{
|
|
|
|
Release: config.Release{
|
|
|
|
Header: "## Yada yada yada\nsomething\n",
|
|
|
|
Footer: "\n---\n\nGet GoReleaser Pro at https://goreleaser.com/pro",
|
|
|
|
},
|
|
|
|
})
|
|
|
|
ctx.ReleaseNotes = changelog
|
|
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
2021-06-08 11:11:27 -03:00
|
|
|
Name: "goreleaser/goreleaser:v1.2.3",
|
2021-05-30 21:53:40 -03:00
|
|
|
Type: artifact.DockerImage,
|
|
|
|
})
|
|
|
|
out, err := describeBody(ctx)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
golden.RequireEqual(t, out.Bytes())
|
|
|
|
}
|