2017-03-26 01:40:45 +02:00
|
|
|
package env
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/goreleaser/goreleaser/config"
|
|
|
|
"github.com/goreleaser/goreleaser/context"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestDescription(t *testing.T) {
|
|
|
|
assert.NotEmpty(t, Pipe{}.Description())
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestValidEnv(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
var ctx = &context.Context{
|
2017-04-18 18:10:13 +02:00
|
|
|
Config: config.Project{},
|
|
|
|
Validate: true,
|
2017-03-26 01:40:45 +02:00
|
|
|
}
|
|
|
|
assert.NoError(Pipe{}.Run(ctx))
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestInvalidEnv(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
2017-04-09 15:43:23 +02:00
|
|
|
assert.NoError(os.Unsetenv("GITHUB_TOKEN"))
|
2017-03-26 01:40:45 +02:00
|
|
|
var ctx = &context.Context{
|
2017-04-18 18:10:13 +02:00
|
|
|
Config: config.Project{},
|
|
|
|
Validate: true,
|
2017-03-26 01:40:45 +02:00
|
|
|
}
|
|
|
|
assert.Error(Pipe{}.Run(ctx))
|
|
|
|
}
|
2017-04-18 18:10:13 +02:00
|
|
|
|
|
|
|
func TestSkipValidate(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
|
|
|
var ctx = &context.Context{
|
|
|
|
Config: config.Project{},
|
|
|
|
Validate: false,
|
|
|
|
}
|
|
|
|
assert.NoError(Pipe{}.Run(ctx))
|
|
|
|
}
|