mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-10 03:47:03 +02:00
d85a9001ec
aaaaaaaaaaarhhhhhhhhgttt
66 lines
1.3 KiB
Go
66 lines
1.3 KiB
Go
package env
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/goreleaser/goreleaser/config"
|
|
"github.com/goreleaser/goreleaser/context"
|
|
"github.com/goreleaser/goreleaser/internal/testlib"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestDescription(t *testing.T) {
|
|
assert.NotEmpty(t, Pipe{}.Description())
|
|
}
|
|
|
|
func TestValidEnv(t *testing.T) {
|
|
assert.NoError(t, os.Setenv("GITHUB_TOKEN", "asdf"))
|
|
var ctx = &context.Context{
|
|
Config: config.Project{},
|
|
Validate: true,
|
|
Publish: true,
|
|
}
|
|
assert.NoError(t, Pipe{}.Run(ctx))
|
|
}
|
|
|
|
func TestInvalidEnv(t *testing.T) {
|
|
assert.NoError(t, os.Unsetenv("GITHUB_TOKEN"))
|
|
var ctx = &context.Context{
|
|
Config: config.Project{},
|
|
Validate: true,
|
|
Publish: true,
|
|
}
|
|
assert.Error(t, Pipe{}.Run(ctx))
|
|
}
|
|
|
|
type flags struct {
|
|
Validate, Publish, Snapshot bool
|
|
}
|
|
|
|
func TestInvalidEnvChecksSkipped(t *testing.T) {
|
|
for _, flag := range []flags{
|
|
{
|
|
Validate: false,
|
|
Publish: true,
|
|
}, {
|
|
Validate: true,
|
|
Publish: false,
|
|
}, {
|
|
Validate: true,
|
|
},
|
|
} {
|
|
t.Run(fmt.Sprintf("%v", flag), func(t *testing.T) {
|
|
assert.NoError(t, os.Unsetenv("GITHUB_TOKEN"))
|
|
var ctx = &context.Context{
|
|
Config: config.Project{},
|
|
Validate: flag.Validate,
|
|
Publish: flag.Publish,
|
|
Snapshot: flag.Snapshot,
|
|
}
|
|
testlib.AssertSkipped(t, Pipe{}.Run(ctx))
|
|
})
|
|
}
|
|
}
|