mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-10 03:47:03 +02:00
979f8632b7
* refactor: use require on all tests Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * refactor: use require on all tests Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
904 lines
23 KiB
Go
904 lines
23 KiB
Go
package brew
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/goreleaser/goreleaser/internal/artifact"
|
|
"github.com/goreleaser/goreleaser/internal/client"
|
|
"github.com/goreleaser/goreleaser/internal/testlib"
|
|
"github.com/goreleaser/goreleaser/pkg/config"
|
|
"github.com/goreleaser/goreleaser/pkg/context"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
var update = flag.Bool("update", false, "update .golden files")
|
|
|
|
func TestDescription(t *testing.T) {
|
|
require.NotEmpty(t, Pipe{}.String())
|
|
}
|
|
|
|
func TestNameWithDash(t *testing.T) {
|
|
require.Equal(t, formulaNameFor("some-binary"), "SomeBinary")
|
|
}
|
|
|
|
func TestNameWithUnderline(t *testing.T) {
|
|
require.Equal(t, formulaNameFor("some_binary"), "SomeBinary")
|
|
}
|
|
|
|
func TestNameWithAT(t *testing.T) {
|
|
require.Equal(t, formulaNameFor("some_binary@1"), "SomeBinaryAT1")
|
|
}
|
|
|
|
func TestSimpleName(t *testing.T) {
|
|
require.Equal(t, formulaNameFor("binary"), "Binary")
|
|
}
|
|
|
|
var defaultTemplateData = templateData{
|
|
Desc: "Some desc",
|
|
Homepage: "https://google.com",
|
|
MacOS: downloadable{
|
|
DownloadURL: "https://github.com/caarlos0/test/releases/download/v0.1.3/test_Darwin_x86_64.tar.gz",
|
|
SHA256: "1633f61598ab0791e213135923624eb342196b3494909c91899bcd0560f84c68",
|
|
},
|
|
Linux: downloadable{
|
|
DownloadURL: "https://github.com/caarlos0/test/releases/download/v0.1.3/test_Linux_x86_64.tar.gz",
|
|
SHA256: "1633f61598ab0791e213135923624eb342196b3494909c91899bcd0560f84c67",
|
|
},
|
|
Arm: downloadable{
|
|
DownloadURL: "https://github.com/caarlos0/test/releases/download/v0.1.3/test_Arm6.tar.gz",
|
|
SHA256: "1633f61598ab0791e213135923624eb342196b3494909c91899bcd0560f84c67",
|
|
},
|
|
Arm64: downloadable{
|
|
DownloadURL: "https://github.com/caarlos0/test/releases/download/v0.1.3/test_Arm64.tar.gz",
|
|
SHA256: "1633f61598ab0791e213135923624eb342196b3494909c91899bcd0560f84c67",
|
|
},
|
|
Name: "Test",
|
|
Version: "0.1.3",
|
|
Caveats: []string{},
|
|
}
|
|
|
|
func assertDefaultTemplateData(t *testing.T, formulae string) {
|
|
require.Contains(t, formulae, "class Test < Formula")
|
|
require.Contains(t, formulae, `homepage "https://google.com"`)
|
|
require.Contains(t, formulae, `url "https://github.com/caarlos0/test/releases/download/v0.1.3/test_Darwin_x86_64.tar.gz"`)
|
|
require.Contains(t, formulae, `sha256 "1633f61598ab0791e213135923624eb342196b3494909c91899bcd0560f84c68"`)
|
|
require.Contains(t, formulae, `version "0.1.3"`)
|
|
}
|
|
|
|
func TestFullFormulae(t *testing.T) {
|
|
data := defaultTemplateData
|
|
data.Caveats = []string{"Here are some caveats"}
|
|
data.Dependencies = []config.HomebrewDependency{{Name: "gtk+"}}
|
|
data.Conflicts = []string{"svn"}
|
|
data.Plist = "it works"
|
|
data.PostInstall = `system "touch", "/tmp/foo"`
|
|
data.CustomBlock = []string{"devel do", ` url "https://github.com/caarlos0/test/releases/download/v0.1.3/test_Darwin_x86_64.tar.gz"`, ` sha256 "1633f61598ab0791e213135923624eb342196b3494909c91899bcd0560f84c68"`, "end"}
|
|
data.Install = []string{"custom install script", "another install script"}
|
|
data.Tests = []string{`system "#{bin}/{{.ProjectName}} -version"`}
|
|
formulae, err := doBuildFormula(context.New(config.Project{
|
|
ProjectName: "foo",
|
|
}), data)
|
|
require.NoError(t, err)
|
|
|
|
var golden = "testdata/test.rb.golden"
|
|
if *update {
|
|
err := ioutil.WriteFile(golden, []byte(formulae), 0655)
|
|
require.NoError(t, err)
|
|
}
|
|
bts, err := ioutil.ReadFile(golden)
|
|
require.NoError(t, err)
|
|
require.Equal(t, string(bts), formulae)
|
|
}
|
|
|
|
func TestFormulaeSimple(t *testing.T) {
|
|
formulae, err := doBuildFormula(context.New(config.Project{}), defaultTemplateData)
|
|
require.NoError(t, err)
|
|
assertDefaultTemplateData(t, formulae)
|
|
require.NotContains(t, formulae, "def caveats")
|
|
require.NotContains(t, formulae, "depends_on")
|
|
require.NotContains(t, formulae, "def plist;")
|
|
}
|
|
|
|
func TestSplit(t *testing.T) {
|
|
var parts = split("system \"true\"\nsystem \"#{bin}/foo -h\"")
|
|
require.Equal(t, []string{"system \"true\"", "system \"#{bin}/foo -h\""}, parts)
|
|
parts = split("")
|
|
require.Equal(t, []string{}, parts)
|
|
parts = split("\n ")
|
|
require.Equal(t, []string{}, parts)
|
|
}
|
|
|
|
func TestRunPipe(t *testing.T) {
|
|
for name, fn := range map[string]func(ctx *context.Context){
|
|
"default": func(ctx *context.Context) {
|
|
ctx.TokenType = context.TokenTypeGitHub
|
|
ctx.Config.Brews[0].Tap.Owner = "test"
|
|
ctx.Config.Brews[0].Tap.Name = "test"
|
|
ctx.Config.Brews[0].Homepage = "https://github.com/goreleaser"
|
|
},
|
|
"custom_download_strategy": func(ctx *context.Context) {
|
|
ctx.TokenType = context.TokenTypeGitHub
|
|
ctx.Config.Brews[0].Tap.Owner = "test"
|
|
ctx.Config.Brews[0].Tap.Name = "test"
|
|
ctx.Config.Brews[0].Homepage = "https://github.com/goreleaser"
|
|
|
|
ctx.Config.Brews[0].DownloadStrategy = "GitHubPrivateRepositoryReleaseDownloadStrategy"
|
|
},
|
|
"custom_require": func(ctx *context.Context) {
|
|
ctx.TokenType = context.TokenTypeGitHub
|
|
ctx.Config.Brews[0].Tap.Owner = "test"
|
|
ctx.Config.Brews[0].Tap.Name = "test"
|
|
ctx.Config.Brews[0].Homepage = "https://github.com/goreleaser"
|
|
|
|
ctx.Config.Brews[0].DownloadStrategy = "CustomDownloadStrategy"
|
|
ctx.Config.Brews[0].CustomRequire = "custom_download_strategy"
|
|
},
|
|
"custom_block": func(ctx *context.Context) {
|
|
ctx.TokenType = context.TokenTypeGitHub
|
|
ctx.Config.Brews[0].Tap.Owner = "test"
|
|
ctx.Config.Brews[0].Tap.Name = "test"
|
|
ctx.Config.Brews[0].Homepage = "https://github.com/goreleaser"
|
|
|
|
ctx.Config.Brews[0].CustomBlock = `head "https://github.com/caarlos0/test.git"`
|
|
},
|
|
"default_gitlab": func(ctx *context.Context) {
|
|
ctx.TokenType = context.TokenTypeGitLab
|
|
ctx.Config.Brews[0].Tap.Owner = "test"
|
|
ctx.Config.Brews[0].Tap.Name = "test"
|
|
ctx.Config.Brews[0].Homepage = "https://gitlab.com/goreleaser"
|
|
},
|
|
} {
|
|
t.Run(name, func(t *testing.T) {
|
|
folder, err := ioutil.TempDir("", "goreleasertest")
|
|
require.NoError(t, err)
|
|
var ctx = &context.Context{
|
|
Git: context.GitInfo{
|
|
CurrentTag: "v1.0.1",
|
|
},
|
|
Version: "1.0.1",
|
|
Artifacts: artifact.New(),
|
|
Env: map[string]string{
|
|
"FOO": "foo_is_bar",
|
|
},
|
|
Config: config.Project{
|
|
Dist: folder,
|
|
ProjectName: name,
|
|
Brews: []config.Homebrew{
|
|
{
|
|
Name: name,
|
|
IDs: []string{
|
|
"foo",
|
|
},
|
|
Description: "A run pipe test formula and FOO={{ .Env.FOO }}",
|
|
Caveats: "don't do this {{ .ProjectName }}",
|
|
Test: "system \"true\"\nsystem \"#{bin}/foo -h\"",
|
|
Plist: `<xml>whatever</xml>`,
|
|
Dependencies: []config.HomebrewDependency{{Name: "zsh", Type: "optional"}, {Name: "bash"}},
|
|
Conflicts: []string{"gtk+", "qt"},
|
|
Install: `bin.install "{{ .ProjectName }}"`,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
fn(ctx)
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
|
Name: "bar_bin.tar.gz",
|
|
Path: "doesnt matter",
|
|
Goos: "darwin",
|
|
Goarch: "amd64",
|
|
Type: artifact.UploadableArchive,
|
|
Extra: map[string]interface{}{
|
|
"ID": "bar",
|
|
"Format": "tar.gz",
|
|
"ArtifactUploadHash": "820ead5d9d2266c728dce6d4d55b6460",
|
|
},
|
|
})
|
|
var path = filepath.Join(folder, "bin.tar.gz")
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
|
Name: "bin.tar.gz",
|
|
Path: path,
|
|
Goos: "darwin",
|
|
Goarch: "amd64",
|
|
Type: artifact.UploadableArchive,
|
|
Extra: map[string]interface{}{
|
|
"ID": "foo",
|
|
"Format": "tar.gz",
|
|
"ArtifactUploadHash": "820ead5d9d2266c728dce6d4d55b6460",
|
|
},
|
|
})
|
|
|
|
_, err = os.Create(path)
|
|
require.NoError(t, err)
|
|
client := &DummyClient{}
|
|
var distFile = filepath.Join(folder, name+".rb")
|
|
|
|
require.NoError(t, doRun(ctx, ctx.Config.Brews[0], client))
|
|
require.True(t, client.CreatedFile)
|
|
var golden = fmt.Sprintf("testdata/%s.rb.golden", name)
|
|
if *update {
|
|
require.NoError(t, ioutil.WriteFile(golden, []byte(client.Content), 0655))
|
|
}
|
|
bts, err := ioutil.ReadFile(golden)
|
|
require.NoError(t, err)
|
|
require.Equal(t, string(bts), client.Content)
|
|
|
|
distBts, err := ioutil.ReadFile(distFile)
|
|
require.NoError(t, err)
|
|
require.Equal(t, string(bts), string(distBts))
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestRunPipeNameTemplate(t *testing.T) {
|
|
folder, err := ioutil.TempDir("", "goreleasertest")
|
|
require.NoError(t, err)
|
|
var ctx = &context.Context{
|
|
Git: context.GitInfo{
|
|
CurrentTag: "v1.0.1",
|
|
},
|
|
Version: "1.0.1",
|
|
Artifacts: artifact.New(),
|
|
Env: map[string]string{
|
|
"FOO_BAR": "is_bar",
|
|
},
|
|
Config: config.Project{
|
|
Dist: folder,
|
|
ProjectName: "foo",
|
|
Brews: []config.Homebrew{
|
|
{
|
|
Name: "foo_{{ .Env.FOO_BAR }}",
|
|
Tap: config.RepoRef{
|
|
Owner: "foo",
|
|
Name: "bar",
|
|
},
|
|
IDs: []string{
|
|
"foo",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
var path = filepath.Join(folder, "bin.tar.gz")
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
|
Name: "bin.tar.gz",
|
|
Path: path,
|
|
Goos: "darwin",
|
|
Goarch: "amd64",
|
|
Type: artifact.UploadableArchive,
|
|
Extra: map[string]interface{}{
|
|
"ID": "foo",
|
|
"Format": "tar.gz",
|
|
"ArtifactUploadHash": "820ead5d9d2266c728dce6d4d55b6460",
|
|
},
|
|
})
|
|
|
|
_, err = os.Create(path)
|
|
require.NoError(t, err)
|
|
client := &DummyClient{}
|
|
var distFile = filepath.Join(folder, "foo_is_bar.rb")
|
|
|
|
require.NoError(t, doRun(ctx, ctx.Config.Brews[0], client))
|
|
require.True(t, client.CreatedFile)
|
|
var golden = "testdata/foo_is_bar.rb.golden"
|
|
if *update {
|
|
require.NoError(t, ioutil.WriteFile(golden, []byte(client.Content), 0655))
|
|
}
|
|
bts, err := ioutil.ReadFile(golden)
|
|
require.NoError(t, err)
|
|
require.Equal(t, string(bts), client.Content)
|
|
|
|
distBts, err := ioutil.ReadFile(distFile)
|
|
require.NoError(t, err)
|
|
require.Equal(t, string(bts), string(distBts))
|
|
}
|
|
|
|
func TestRunPipeMultipleBrewsWithSkip(t *testing.T) {
|
|
folder, err := ioutil.TempDir("", "goreleasertest")
|
|
require.NoError(t, err)
|
|
var ctx = &context.Context{
|
|
Git: context.GitInfo{
|
|
CurrentTag: "v1.0.1",
|
|
},
|
|
Version: "1.0.1",
|
|
Artifacts: artifact.New(),
|
|
Env: map[string]string{
|
|
"FOO_BAR": "is_bar",
|
|
},
|
|
Config: config.Project{
|
|
Dist: folder,
|
|
ProjectName: "foo",
|
|
Brews: []config.Homebrew{
|
|
{
|
|
Name: "foo",
|
|
Tap: config.RepoRef{
|
|
Owner: "foo",
|
|
Name: "bar",
|
|
},
|
|
IDs: []string{
|
|
"foo",
|
|
},
|
|
SkipUpload: "true",
|
|
},
|
|
{
|
|
Name: "bar",
|
|
Tap: config.RepoRef{
|
|
Owner: "foo",
|
|
Name: "bar",
|
|
},
|
|
IDs: []string{
|
|
"foo",
|
|
},
|
|
},
|
|
{
|
|
Name: "foobar",
|
|
Tap: config.RepoRef{
|
|
Owner: "foo",
|
|
Name: "bar",
|
|
},
|
|
IDs: []string{
|
|
"foo",
|
|
},
|
|
SkipUpload: "true",
|
|
},
|
|
},
|
|
},
|
|
}
|
|
var path = filepath.Join(folder, "bin.tar.gz")
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
|
Name: "bin.tar.gz",
|
|
Path: path,
|
|
Goos: "darwin",
|
|
Goarch: "amd64",
|
|
Type: artifact.UploadableArchive,
|
|
Extra: map[string]interface{}{
|
|
"ID": "foo",
|
|
"Format": "tar.gz",
|
|
"ArtifactUploadHash": "820ead5d9d2266c728dce6d4d55b6460",
|
|
},
|
|
})
|
|
|
|
_, err = os.Create(path)
|
|
require.NoError(t, err)
|
|
|
|
var cli = &DummyClient{}
|
|
require.EqualError(t, publishAll(ctx, cli), `brew.skip_upload is set`)
|
|
require.True(t, cli.CreatedFile)
|
|
|
|
for _, brew := range ctx.Config.Brews {
|
|
var distFile = filepath.Join(folder, brew.Name+".rb")
|
|
_, err := os.Stat(distFile)
|
|
require.NoError(t, err, "file should exist: "+distFile)
|
|
}
|
|
|
|
}
|
|
|
|
func TestRunPipeForMultipleArmVersions(t *testing.T) {
|
|
for name, fn := range map[string]func(ctx *context.Context){
|
|
"multiple_armv5": func(ctx *context.Context) {
|
|
ctx.Config.Brews[0].Goarm = "5"
|
|
},
|
|
"multiple_armv6": func(ctx *context.Context) {
|
|
ctx.Config.Brews[0].Goarm = "6"
|
|
},
|
|
"multiple_armv7": func(ctx *context.Context) {
|
|
ctx.Config.Brews[0].Goarm = "7"
|
|
},
|
|
} {
|
|
folder, err := ioutil.TempDir("", "goreleasertest")
|
|
require.NoError(t, err)
|
|
var ctx = &context.Context{
|
|
TokenType: context.TokenTypeGitHub,
|
|
Git: context.GitInfo{
|
|
CurrentTag: "v1.0.1",
|
|
},
|
|
Version: "1.0.1",
|
|
Artifacts: artifact.New(),
|
|
Env: map[string]string{
|
|
"FOO": "foo_is_bar",
|
|
},
|
|
Config: config.Project{
|
|
Dist: folder,
|
|
ProjectName: name,
|
|
Brews: []config.Homebrew{
|
|
{
|
|
Name: name,
|
|
Description: "A run pipe test formula and FOO={{ .Env.FOO }}",
|
|
Caveats: "don't do this {{ .ProjectName }}",
|
|
Test: "system \"true\"\nsystem \"#{bin}/foo -h\"",
|
|
Plist: `<xml>whatever</xml>`,
|
|
Dependencies: []config.HomebrewDependency{{Name: "zsh"}, {Name: "bash", Type: "recommended"}},
|
|
Conflicts: []string{"gtk+", "qt"},
|
|
Install: `bin.install "{{ .ProjectName }}"`,
|
|
Tap: config.RepoRef{
|
|
Owner: "test",
|
|
Name: "test",
|
|
},
|
|
Homepage: "https://github.com/goreleaser",
|
|
},
|
|
},
|
|
GitHubURLs: config.GitHubURLs{
|
|
Download: "https://github.com",
|
|
},
|
|
Release: config.Release{
|
|
GitHub: config.Repo{
|
|
Owner: "test",
|
|
Name: "test",
|
|
},
|
|
},
|
|
},
|
|
}
|
|
fn(ctx)
|
|
for _, a := range []struct {
|
|
name string
|
|
goos string
|
|
goarch string
|
|
goarm string
|
|
}{
|
|
{
|
|
name: "bin",
|
|
goos: "darwin",
|
|
goarch: "amd64",
|
|
},
|
|
{
|
|
name: "arm64",
|
|
goos: "linux",
|
|
goarch: "arm64",
|
|
},
|
|
{
|
|
name: "armv5",
|
|
goos: "linux",
|
|
goarch: "arm",
|
|
goarm: "5",
|
|
},
|
|
{
|
|
name: "armv6",
|
|
goos: "linux",
|
|
goarch: "arm",
|
|
goarm: "6",
|
|
},
|
|
{
|
|
name: "armv7",
|
|
goos: "linux",
|
|
goarch: "arm",
|
|
goarm: "7",
|
|
},
|
|
} {
|
|
var path = filepath.Join(folder, fmt.Sprintf("%s.tar.gz", a.name))
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
|
Name: fmt.Sprintf("%s.tar.gz", a.name),
|
|
Path: path,
|
|
Goos: a.goos,
|
|
Goarch: a.goarch,
|
|
Goarm: a.goarm,
|
|
Type: artifact.UploadableArchive,
|
|
Extra: map[string]interface{}{
|
|
"ID": a.name,
|
|
"Format": "tar.gz",
|
|
},
|
|
})
|
|
_, err := os.Create(path)
|
|
require.NoError(t, err)
|
|
}
|
|
|
|
client := &DummyClient{}
|
|
var distFile = filepath.Join(folder, name+".rb")
|
|
|
|
require.NoError(t, doRun(ctx, ctx.Config.Brews[0], client))
|
|
require.True(t, client.CreatedFile)
|
|
var golden = fmt.Sprintf("testdata/%s.rb.golden", name)
|
|
if *update {
|
|
require.NoError(t, ioutil.WriteFile(golden, []byte(client.Content), 0655))
|
|
}
|
|
bts, err := ioutil.ReadFile(golden)
|
|
require.NoError(t, err)
|
|
require.Equal(t, string(bts), client.Content)
|
|
|
|
distBts, err := ioutil.ReadFile(distFile)
|
|
require.NoError(t, err)
|
|
require.Equal(t, string(bts), string(distBts))
|
|
}
|
|
}
|
|
|
|
func TestRunPipeNoDarwin64Build(t *testing.T) {
|
|
var ctx = &context.Context{
|
|
TokenType: context.TokenTypeGitHub,
|
|
Config: config.Project{
|
|
Brews: []config.Homebrew{
|
|
{
|
|
Tap: config.RepoRef{
|
|
Owner: "test",
|
|
Name: "test",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
client := &DummyClient{}
|
|
require.Equal(t, ErrNoArchivesFound, doRun(ctx, ctx.Config.Brews[0], client))
|
|
require.False(t, client.CreatedFile)
|
|
}
|
|
|
|
func TestRunPipeMultipleArchivesSameOsBuild(t *testing.T) {
|
|
var ctx = context.New(
|
|
config.Project{
|
|
Brews: []config.Homebrew{
|
|
{
|
|
Tap: config.RepoRef{
|
|
Owner: "test",
|
|
Name: "test",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
)
|
|
|
|
ctx.TokenType = context.TokenTypeGitHub
|
|
f, err := ioutil.TempFile("", "")
|
|
require.NoError(t, err)
|
|
defer f.Close()
|
|
|
|
tests := []struct {
|
|
expectedError error
|
|
osarchs []struct {
|
|
goos string
|
|
goarch string
|
|
goarm string
|
|
}
|
|
}{
|
|
{
|
|
expectedError: ErrMultipleArchivesSameOS,
|
|
osarchs: []struct {
|
|
goos string
|
|
goarch string
|
|
goarm string
|
|
}{
|
|
{
|
|
goos: "darwin",
|
|
goarch: "amd64",
|
|
},
|
|
{
|
|
goos: "darwin",
|
|
goarch: "amd64",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
expectedError: ErrMultipleArchivesSameOS,
|
|
osarchs: []struct {
|
|
goos string
|
|
goarch string
|
|
goarm string
|
|
}{
|
|
{
|
|
goos: "linux",
|
|
goarch: "amd64",
|
|
},
|
|
{
|
|
goos: "linux",
|
|
goarch: "amd64",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
expectedError: ErrMultipleArchivesSameOS,
|
|
osarchs: []struct {
|
|
goos string
|
|
goarch string
|
|
goarm string
|
|
}{
|
|
{
|
|
goos: "linux",
|
|
goarch: "arm64",
|
|
},
|
|
{
|
|
goos: "linux",
|
|
goarch: "arm64",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
expectedError: ErrMultipleArchivesSameOS,
|
|
osarchs: []struct {
|
|
goos string
|
|
goarch string
|
|
goarm string
|
|
}{
|
|
{
|
|
goos: "linux",
|
|
goarch: "arm",
|
|
goarm: "6",
|
|
},
|
|
{
|
|
goos: "linux",
|
|
goarch: "arm",
|
|
goarm: "6",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
expectedError: ErrMultipleArchivesSameOS,
|
|
osarchs: []struct {
|
|
goos string
|
|
goarch string
|
|
goarm string
|
|
}{
|
|
{
|
|
goos: "linux",
|
|
goarch: "arm",
|
|
goarm: "5",
|
|
},
|
|
{
|
|
goos: "linux",
|
|
goarch: "arm",
|
|
goarm: "6",
|
|
},
|
|
{
|
|
goos: "linux",
|
|
goarch: "arm",
|
|
goarm: "7",
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
for idx, ttt := range test.osarchs {
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
|
Name: fmt.Sprintf("bin%d", idx),
|
|
Path: f.Name(),
|
|
Goos: ttt.goos,
|
|
Goarch: ttt.goarch,
|
|
Type: artifact.UploadableArchive,
|
|
Extra: map[string]interface{}{
|
|
"ID": fmt.Sprintf("foo%d", idx),
|
|
"Format": "tar.gz",
|
|
},
|
|
})
|
|
}
|
|
client := &DummyClient{}
|
|
require.Equal(t, test.expectedError, doRun(ctx, ctx.Config.Brews[0], client))
|
|
require.False(t, client.CreatedFile)
|
|
// clean the artifacts for the next run
|
|
ctx.Artifacts = artifact.New()
|
|
}
|
|
}
|
|
|
|
func TestRunPipeBrewNotSetup(t *testing.T) {
|
|
var ctx = &context.Context{
|
|
Config: config.Project{},
|
|
}
|
|
client := &DummyClient{}
|
|
testlib.AssertSkipped(t, doRun(ctx, config.Homebrew{}, client))
|
|
require.False(t, client.CreatedFile)
|
|
}
|
|
|
|
func TestRunPipeBinaryRelease(t *testing.T) {
|
|
var ctx = context.New(
|
|
config.Project{
|
|
Brews: []config.Homebrew{
|
|
{
|
|
Tap: config.RepoRef{
|
|
Owner: "test",
|
|
Name: "test",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
)
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
|
Name: "bin",
|
|
Path: "doesnt mather",
|
|
Goos: "darwin",
|
|
Goarch: "amd64",
|
|
Type: artifact.Binary,
|
|
})
|
|
client := &DummyClient{}
|
|
require.Equal(t, ErrNoArchivesFound, doRun(ctx, ctx.Config.Brews[0], client))
|
|
require.False(t, client.CreatedFile)
|
|
}
|
|
|
|
func TestRunPipeNoUpload(t *testing.T) {
|
|
folder, err := ioutil.TempDir("", "goreleasertest")
|
|
require.NoError(t, err)
|
|
var ctx = context.New(config.Project{
|
|
Dist: folder,
|
|
ProjectName: "foo",
|
|
Release: config.Release{},
|
|
Brews: []config.Homebrew{
|
|
{
|
|
Tap: config.RepoRef{
|
|
Owner: "test",
|
|
Name: "test",
|
|
},
|
|
},
|
|
},
|
|
})
|
|
ctx.TokenType = context.TokenTypeGitHub
|
|
ctx.Git = context.GitInfo{CurrentTag: "v1.0.1"}
|
|
var path = filepath.Join(folder, "whatever.tar.gz")
|
|
_, err = os.Create(path)
|
|
require.NoError(t, err)
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
|
Name: "bin",
|
|
Path: path,
|
|
Goos: "darwin",
|
|
Goarch: "amd64",
|
|
Type: artifact.UploadableArchive,
|
|
Extra: map[string]interface{}{
|
|
"ID": "foo",
|
|
"Format": "tar.gz",
|
|
},
|
|
})
|
|
client := &DummyClient{}
|
|
|
|
var assertNoPublish = func(t *testing.T) {
|
|
testlib.AssertSkipped(t, doRun(ctx, ctx.Config.Brews[0], client))
|
|
require.False(t, client.CreatedFile)
|
|
}
|
|
t.Run("skip upload", func(tt *testing.T) {
|
|
ctx.Config.Release.Draft = false
|
|
ctx.Config.Brews[0].SkipUpload = "true"
|
|
ctx.SkipPublish = false
|
|
assertNoPublish(tt)
|
|
})
|
|
t.Run("skip publish", func(tt *testing.T) {
|
|
ctx.Config.Release.Draft = false
|
|
ctx.Config.Brews[0].SkipUpload = "false"
|
|
ctx.SkipPublish = true
|
|
assertNoPublish(tt)
|
|
})
|
|
}
|
|
|
|
func TestRunEmptyTokenType(t *testing.T) {
|
|
folder, err := ioutil.TempDir("", "goreleasertest")
|
|
require.NoError(t, err)
|
|
var ctx = context.New(config.Project{
|
|
Dist: folder,
|
|
ProjectName: "foo",
|
|
Release: config.Release{},
|
|
Brews: []config.Homebrew{
|
|
{
|
|
Tap: config.RepoRef{
|
|
Owner: "test",
|
|
Name: "test",
|
|
},
|
|
},
|
|
},
|
|
})
|
|
ctx.Git = context.GitInfo{CurrentTag: "v1.0.1"}
|
|
var path = filepath.Join(folder, "whatever.tar.gz")
|
|
_, err = os.Create(path)
|
|
require.NoError(t, err)
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
|
Name: "bin",
|
|
Path: path,
|
|
Goos: "darwin",
|
|
Goarch: "amd64",
|
|
Type: artifact.UploadableArchive,
|
|
Extra: map[string]interface{}{
|
|
"ID": "foo",
|
|
"Format": "tar.gz",
|
|
},
|
|
})
|
|
client := &DummyClient{}
|
|
require.NoError(t, doRun(ctx, ctx.Config.Brews[0], client))
|
|
}
|
|
|
|
func TestRunTokenTypeNotImplementedForBrew(t *testing.T) {
|
|
folder, err := ioutil.TempDir("", "goreleasertest")
|
|
require.NoError(t, err)
|
|
var ctx = context.New(config.Project{
|
|
Dist: folder,
|
|
ProjectName: "foo",
|
|
Release: config.Release{},
|
|
Brews: []config.Homebrew{
|
|
{
|
|
Tap: config.RepoRef{
|
|
Owner: "test",
|
|
Name: "test",
|
|
},
|
|
},
|
|
},
|
|
})
|
|
ctx.TokenType = context.TokenTypeGitea
|
|
ctx.Git = context.GitInfo{CurrentTag: "v1.0.1"}
|
|
var path = filepath.Join(folder, "whatever.tar.gz")
|
|
_, err = os.Create(path)
|
|
require.NoError(t, err)
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
|
Name: "bin",
|
|
Path: path,
|
|
Goos: "darwin",
|
|
Goarch: "amd64",
|
|
Type: artifact.UploadableArchive,
|
|
Extra: map[string]interface{}{
|
|
"ID": "foo",
|
|
"Format": "tar.gz",
|
|
},
|
|
})
|
|
client := &DummyClient{NotImplemented: true}
|
|
require.Equal(t, ErrTokenTypeNotImplementedForBrew{TokenType: "gitea"}, doRun(ctx, ctx.Config.Brews[0], client))
|
|
}
|
|
|
|
func TestDefault(t *testing.T) {
|
|
_, back := testlib.Mktmp(t)
|
|
defer back()
|
|
|
|
var ctx = &context.Context{
|
|
TokenType: context.TokenTypeGitHub,
|
|
Config: config.Project{
|
|
ProjectName: "myproject",
|
|
Brews: []config.Homebrew{
|
|
{},
|
|
},
|
|
Builds: []config.Build{
|
|
{
|
|
Binary: "foo",
|
|
Goos: []string{"linux", "darwin"},
|
|
Goarch: []string{"386", "amd64"},
|
|
},
|
|
{
|
|
Binary: "bar",
|
|
Goos: []string{"linux", "darwin"},
|
|
Goarch: []string{"386", "amd64"},
|
|
Ignore: []config.IgnoredBuild{
|
|
{Goos: "darwin", Goarch: "amd64"},
|
|
},
|
|
},
|
|
{
|
|
Binary: "foobar",
|
|
Goos: []string{"linux"},
|
|
Goarch: []string{"amd64"},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
require.NoError(t, Pipe{}.Default(ctx))
|
|
require.Equal(t, ctx.Config.ProjectName, ctx.Config.Brews[0].Name)
|
|
require.NotEmpty(t, ctx.Config.Brews[0].CommitAuthor.Name)
|
|
require.NotEmpty(t, ctx.Config.Brews[0].CommitAuthor.Email)
|
|
require.Equal(t, `bin.install "foo"`, ctx.Config.Brews[0].Install)
|
|
}
|
|
|
|
func TestGHFolder(t *testing.T) {
|
|
require.Equal(t, "bar.rb", buildFormulaPath("", "bar.rb"))
|
|
require.Equal(t, "fooo/bar.rb", buildFormulaPath("fooo", "bar.rb"))
|
|
}
|
|
|
|
type DummyClient struct {
|
|
CreatedFile bool
|
|
Content string
|
|
NotImplemented bool
|
|
}
|
|
|
|
func (dc *DummyClient) CloseMilestone(ctx *context.Context, repo client.Repo, title string) error {
|
|
return nil
|
|
}
|
|
|
|
func (dc *DummyClient) CreateRelease(ctx *context.Context, body string) (releaseID string, err error) {
|
|
return
|
|
}
|
|
|
|
func (dc *DummyClient) ReleaseURLTemplate(ctx *context.Context) (string, error) {
|
|
if dc.NotImplemented {
|
|
return "", client.NotImplementedError{}
|
|
}
|
|
|
|
return "https://dummyhost/download/{{ .Tag }}/{{ .ArtifactName }}", nil
|
|
}
|
|
|
|
func (dc *DummyClient) CreateFile(ctx *context.Context, commitAuthor config.CommitAuthor, repo client.Repo, content []byte, path, msg string) (err error) {
|
|
dc.CreatedFile = true
|
|
dc.Content = string(content)
|
|
return
|
|
}
|
|
|
|
func (dc *DummyClient) Upload(ctx *context.Context, releaseID string, artifact *artifact.Artifact, file *os.File) (err error) {
|
|
return
|
|
}
|