1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-08 03:31:59 +02:00
goreleaser/config/config_test.go

69 lines
2.0 KiB
Go
Raw Normal View History

2017-05-11 04:34:47 +02:00
package config
import (
2017-05-18 14:02:44 +02:00
"fmt"
2017-05-18 14:02:02 +02:00
"io/ioutil"
"os"
"path/filepath"
2017-05-11 04:34:47 +02:00
"strings"
2017-05-11 04:35:44 +02:00
"testing"
2017-05-11 04:34:47 +02:00
2017-05-11 04:35:44 +02:00
"github.com/stretchr/testify/assert"
2017-05-11 04:34:47 +02:00
)
func TestRepo(t *testing.T) {
assert.Equal(
t,
"goreleaser/godownloader",
Repo{Owner: "goreleaser", Name: "godownloader"}.String(),
)
}
func TestEmptyRepoNameAndOwner(t *testing.T) {
assert.Empty(t, Repo{}.String())
2017-05-11 04:34:47 +02:00
}
func TestLoadReader(t *testing.T) {
2017-05-11 04:35:44 +02:00
var conf = `
2017-05-11 04:34:47 +02:00
fpm:
2017-07-08 17:05:57 +02:00
homepage: http://goreleaser.github.io
2017-05-11 04:34:47 +02:00
`
buf := strings.NewReader(conf)
prop, err := LoadReader(buf)
assert.NoError(t, err)
assert.Equal(t, "http://goreleaser.github.io", prop.FPM.Homepage, "yaml did not load correctly")
2017-05-11 04:34:47 +02:00
}
2017-05-18 14:02:02 +02:00
type errorReader struct{}
func (errorReader) Read(p []byte) (n int, err error) {
return 1, fmt.Errorf("error")
}
func TestLoadBadReader(t *testing.T) {
_, err := LoadReader(errorReader{})
assert.Error(t, err)
2017-05-18 14:02:02 +02:00
}
func TestFile(t *testing.T) {
f, err := ioutil.TempFile(os.TempDir(), "config")
assert.NoError(t, err)
2017-05-18 14:02:02 +02:00
_, err = Load(filepath.Join(f.Name()))
assert.NoError(t, err)
2017-05-18 14:02:02 +02:00
}
func TestFileNotFound(t *testing.T) {
_, err := Load("/nope/no-way.yml")
assert.Error(t, err)
2017-05-18 14:02:02 +02:00
}
2017-07-08 17:05:57 +02:00
func TestInvalidFields(t *testing.T) {
_, err := Load("testdata/invalid_config.yml")
assert.EqualError(t, err, "unknown fields in the config file: invalid_root, archive.invalid_archive, archive.format_overrides[0].invalid_archive_fmtoverrides, brew.invalid_brew, brew.github.invalid_brew_github, builds[0].invalid_builds, builds[0].hooks.invalid_builds_hooks, builds[0].ignored_builds[0].invalid_builds_ignore, fpm.invalid_fpm, release.invalid_release, release.github.invalid_release_github, build.invalid_build, builds.hooks.invalid_build_hook, builds.ignored_builds[0].invalid_build_ignore, snapshot.invalid_snapshot, docker[0].invalid_docker, artifactory[0].invalid_artifactory, changelog.invalid_changelog, changelog.filters.invalid_filters")
2017-07-08 17:05:57 +02:00
}
2017-08-04 03:25:25 +02:00
func TestInvalidYaml(t *testing.T) {
_, err := Load("testdata/invalid.yml")
assert.EqualError(t, err, "yaml: line 1: did not find expected node content")
2017-08-04 03:25:25 +02:00
}