2016-12-29 15:21:50 +02:00
|
|
|
package release
|
|
|
|
|
|
|
|
import (
|
2017-03-26 20:56:35 +02:00
|
|
|
"bytes"
|
2017-04-15 17:18:09 +02:00
|
|
|
"errors"
|
2017-03-26 20:56:35 +02:00
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2016-12-30 16:03:43 +02:00
|
|
|
"testing"
|
2017-01-02 14:47:19 +02:00
|
|
|
|
2017-03-26 20:56:35 +02:00
|
|
|
"github.com/goreleaser/goreleaser/config"
|
|
|
|
"github.com/goreleaser/goreleaser/context"
|
2017-12-18 01:26:03 +02:00
|
|
|
"github.com/goreleaser/goreleaser/internal/artifact"
|
2017-08-20 21:50:34 +02:00
|
|
|
"github.com/goreleaser/goreleaser/internal/testlib"
|
2017-01-02 14:47:19 +02:00
|
|
|
"github.com/stretchr/testify/assert"
|
2016-12-29 15:21:50 +02:00
|
|
|
)
|
|
|
|
|
2017-03-26 01:46:02 +02:00
|
|
|
func TestPipeDescription(t *testing.T) {
|
2017-12-02 23:53:19 +02:00
|
|
|
assert.NotEmpty(t, Pipe{}.String())
|
2017-03-26 01:43:42 +02:00
|
|
|
}
|
2017-03-26 20:56:35 +02:00
|
|
|
|
|
|
|
func TestRunPipe(t *testing.T) {
|
2017-04-15 19:18:17 +02:00
|
|
|
folder, err := ioutil.TempDir("", "goreleasertest")
|
2017-09-27 00:24:49 +02:00
|
|
|
assert.NoError(t, err)
|
2017-04-14 17:18:59 +02:00
|
|
|
tarfile, err := os.Create(filepath.Join(folder, "bin.tar.gz"))
|
2017-09-27 00:24:49 +02:00
|
|
|
assert.NoError(t, err)
|
2017-04-14 17:18:59 +02:00
|
|
|
debfile, err := os.Create(filepath.Join(folder, "bin.deb"))
|
2017-09-27 00:24:49 +02:00
|
|
|
assert.NoError(t, err)
|
2017-07-15 21:49:52 +02:00
|
|
|
var config = config.Project{
|
|
|
|
Dist: folder,
|
|
|
|
Release: config.Release{
|
|
|
|
GitHub: config.Repo{
|
|
|
|
Owner: "test",
|
|
|
|
Name: "test",
|
2017-03-26 20:56:35 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2017-07-15 21:49:52 +02:00
|
|
|
var ctx = context.New(config)
|
|
|
|
ctx.Git = context.GitInfo{CurrentTag: "v1.0.0"}
|
|
|
|
ctx.Publish = true
|
2017-12-18 01:26:03 +02:00
|
|
|
ctx.Artifacts.Add(artifact.Artifact{
|
|
|
|
Type: artifact.UploadableArchive,
|
|
|
|
Name: "bin.tar.gz",
|
|
|
|
Path: tarfile.Name(),
|
|
|
|
})
|
|
|
|
ctx.Artifacts.Add(artifact.Artifact{
|
|
|
|
Type: artifact.LinuxPackage,
|
|
|
|
Name: "bin.deb",
|
|
|
|
Path: debfile.Name(),
|
|
|
|
})
|
2017-03-26 20:56:35 +02:00
|
|
|
client := &DummyClient{}
|
2017-09-27 00:24:49 +02:00
|
|
|
assert.NoError(t, doRun(ctx, client))
|
|
|
|
assert.True(t, client.CreatedRelease)
|
|
|
|
assert.True(t, client.UploadedFile)
|
|
|
|
assert.Contains(t, client.UploadedFileNames, "bin.deb")
|
|
|
|
assert.Contains(t, client.UploadedFileNames, "bin.tar.gz")
|
2017-03-26 20:56:35 +02:00
|
|
|
}
|
|
|
|
|
2017-04-15 17:18:09 +02:00
|
|
|
func TestRunPipeReleaseCreationFailed(t *testing.T) {
|
2017-07-15 21:49:52 +02:00
|
|
|
var config = config.Project{
|
|
|
|
Release: config.Release{
|
|
|
|
GitHub: config.Repo{
|
|
|
|
Owner: "test",
|
|
|
|
Name: "test",
|
2017-04-15 17:18:09 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2017-07-15 21:49:52 +02:00
|
|
|
var ctx = context.New(config)
|
|
|
|
ctx.Git = context.GitInfo{CurrentTag: "v1.0.0"}
|
|
|
|
ctx.Publish = true
|
2017-04-15 17:18:09 +02:00
|
|
|
client := &DummyClient{
|
|
|
|
FailToCreateRelease: true,
|
|
|
|
}
|
2017-09-27 00:24:49 +02:00
|
|
|
assert.Error(t, doRun(ctx, client))
|
|
|
|
assert.False(t, client.CreatedRelease)
|
|
|
|
assert.False(t, client.UploadedFile)
|
2017-04-15 17:18:09 +02:00
|
|
|
}
|
|
|
|
|
2017-04-14 20:53:36 +02:00
|
|
|
func TestRunPipeWithFileThatDontExist(t *testing.T) {
|
2017-07-15 21:49:52 +02:00
|
|
|
var config = config.Project{
|
|
|
|
Release: config.Release{
|
|
|
|
GitHub: config.Repo{
|
|
|
|
Owner: "test",
|
|
|
|
Name: "test",
|
2017-04-14 20:53:36 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2017-07-15 21:49:52 +02:00
|
|
|
var ctx = context.New(config)
|
|
|
|
ctx.Git = context.GitInfo{CurrentTag: "v1.0.0"}
|
|
|
|
ctx.Publish = true
|
2017-12-18 01:26:03 +02:00
|
|
|
ctx.Artifacts.Add(artifact.Artifact{
|
|
|
|
Type: artifact.UploadableArchive,
|
|
|
|
Name: "bin.tar.gz",
|
|
|
|
Path: "/nope/nope/nope",
|
|
|
|
})
|
2017-04-14 20:53:36 +02:00
|
|
|
client := &DummyClient{}
|
2017-09-27 00:24:49 +02:00
|
|
|
assert.Error(t, doRun(ctx, client))
|
|
|
|
assert.True(t, client.CreatedRelease)
|
|
|
|
assert.False(t, client.UploadedFile)
|
2017-04-14 20:53:36 +02:00
|
|
|
}
|
|
|
|
|
2017-04-15 17:18:09 +02:00
|
|
|
func TestRunPipeUploadFailure(t *testing.T) {
|
2017-04-15 19:18:17 +02:00
|
|
|
folder, err := ioutil.TempDir("", "goreleasertest")
|
2017-09-27 00:24:49 +02:00
|
|
|
assert.NoError(t, err)
|
2017-04-15 17:18:09 +02:00
|
|
|
tarfile, err := os.Create(filepath.Join(folder, "bin.tar.gz"))
|
2017-09-27 00:24:49 +02:00
|
|
|
assert.NoError(t, err)
|
2017-07-15 21:49:52 +02:00
|
|
|
var config = config.Project{
|
|
|
|
Release: config.Release{
|
|
|
|
GitHub: config.Repo{
|
|
|
|
Owner: "test",
|
|
|
|
Name: "test",
|
2017-04-15 17:18:09 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2017-07-15 21:49:52 +02:00
|
|
|
var ctx = context.New(config)
|
|
|
|
ctx.Git = context.GitInfo{CurrentTag: "v1.0.0"}
|
|
|
|
ctx.Publish = true
|
2017-12-18 01:26:03 +02:00
|
|
|
ctx.Artifacts.Add(artifact.Artifact{
|
|
|
|
Type: artifact.UploadableArchive,
|
|
|
|
Name: "bin.tar.gz",
|
|
|
|
Path: tarfile.Name(),
|
|
|
|
})
|
2017-04-15 17:18:09 +02:00
|
|
|
client := &DummyClient{
|
|
|
|
FailToUpload: true,
|
|
|
|
}
|
2017-09-27 00:24:49 +02:00
|
|
|
assert.Error(t, doRun(ctx, client))
|
|
|
|
assert.True(t, client.CreatedRelease)
|
|
|
|
assert.False(t, client.UploadedFile)
|
2017-04-15 17:18:09 +02:00
|
|
|
}
|
|
|
|
|
2017-04-18 18:10:13 +02:00
|
|
|
func TestSkipPublish(t *testing.T) {
|
|
|
|
var ctx = &context.Context{
|
2017-07-15 21:49:52 +02:00
|
|
|
Publish: false,
|
|
|
|
Parallelism: 1,
|
2017-04-18 18:10:13 +02:00
|
|
|
}
|
|
|
|
client := &DummyClient{}
|
2017-08-20 21:50:34 +02:00
|
|
|
testlib.AssertSkipped(t, doRun(ctx, client))
|
2017-09-27 00:24:49 +02:00
|
|
|
assert.False(t, client.CreatedRelease)
|
|
|
|
assert.False(t, client.UploadedFile)
|
2017-04-18 18:10:13 +02:00
|
|
|
}
|
|
|
|
|
2017-12-03 03:21:13 +02:00
|
|
|
func TestDefault(t *testing.T) {
|
|
|
|
_, back := testlib.Mktmp(t)
|
|
|
|
defer back()
|
|
|
|
testlib.GitInit(t)
|
|
|
|
testlib.GitRemoteAdd(t, "git@github.com:goreleaser/goreleaser.git")
|
|
|
|
|
|
|
|
var ctx = &context.Context{
|
|
|
|
Config: config.Project{},
|
|
|
|
}
|
|
|
|
assert.NoError(t, Pipe{}.Default(ctx))
|
|
|
|
assert.Equal(t, "goreleaser", ctx.Config.Release.GitHub.Name)
|
|
|
|
assert.Equal(t, "goreleaser", ctx.Config.Release.GitHub.Owner)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDefaultFilled(t *testing.T) {
|
|
|
|
_, back := testlib.Mktmp(t)
|
|
|
|
defer back()
|
|
|
|
testlib.GitInit(t)
|
|
|
|
testlib.GitRemoteAdd(t, "git@github.com:goreleaser/goreleaser.git")
|
|
|
|
|
|
|
|
var ctx = &context.Context{
|
|
|
|
Config: config.Project{
|
|
|
|
Release: config.Release{
|
|
|
|
GitHub: config.Repo{
|
|
|
|
Name: "foo",
|
|
|
|
Owner: "bar",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
assert.NoError(t, Pipe{}.Default(ctx))
|
|
|
|
assert.Equal(t, "foo", ctx.Config.Release.GitHub.Name)
|
|
|
|
assert.Equal(t, "bar", ctx.Config.Release.GitHub.Owner)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDefaultNotAGitRepo(t *testing.T) {
|
|
|
|
_, back := testlib.Mktmp(t)
|
|
|
|
defer back()
|
|
|
|
testlib.GitInit(t)
|
|
|
|
var ctx = &context.Context{
|
|
|
|
Config: config.Project{},
|
|
|
|
}
|
|
|
|
assert.Error(t, Pipe{}.Default(ctx))
|
|
|
|
assert.Empty(t, ctx.Config.Release.GitHub.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDefaultGitRepoWithoutRemote(t *testing.T) {
|
|
|
|
_, back := testlib.Mktmp(t)
|
|
|
|
defer back()
|
|
|
|
var ctx = &context.Context{
|
|
|
|
Config: config.Project{},
|
|
|
|
}
|
|
|
|
assert.Error(t, Pipe{}.Default(ctx))
|
|
|
|
assert.Empty(t, ctx.Config.Release.GitHub.String())
|
|
|
|
}
|
|
|
|
|
2017-03-26 20:56:35 +02:00
|
|
|
type DummyClient struct {
|
2017-04-15 17:18:09 +02:00
|
|
|
FailToCreateRelease bool
|
|
|
|
FailToUpload bool
|
|
|
|
CreatedRelease bool
|
|
|
|
UploadedFile bool
|
2017-07-05 02:28:21 +02:00
|
|
|
UploadedFileNames []string
|
2017-03-26 20:56:35 +02:00
|
|
|
}
|
|
|
|
|
2018-01-26 19:46:42 +02:00
|
|
|
func (client *DummyClient) CreateRelease(ctx *context.Context, body string) (releaseID int64, err error) {
|
2017-04-15 17:18:09 +02:00
|
|
|
if client.FailToCreateRelease {
|
|
|
|
return 0, errors.New("release failed")
|
|
|
|
}
|
2017-03-26 20:56:35 +02:00
|
|
|
client.CreatedRelease = true
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-02-09 15:35:51 +02:00
|
|
|
func (client *DummyClient) CreateFile(ctx *context.Context, commitAuthor config.CommitAuthor, repo config.Repo, content bytes.Buffer, path string) (err error) {
|
2017-03-26 20:56:35 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-01-26 19:46:42 +02:00
|
|
|
func (client *DummyClient) Upload(ctx *context.Context, releaseID int64, name string, file *os.File) (err error) {
|
2017-04-15 17:18:09 +02:00
|
|
|
if client.FailToUpload {
|
|
|
|
return errors.New("upload failed")
|
|
|
|
}
|
2017-03-26 20:56:35 +02:00
|
|
|
client.UploadedFile = true
|
2017-07-05 02:28:21 +02:00
|
|
|
client.UploadedFileNames = append(client.UploadedFileNames, name)
|
2017-03-26 20:56:35 +02:00
|
|
|
return
|
|
|
|
}
|