mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-10 03:47:03 +02:00
80 lines
2.0 KiB
Go
80 lines
2.0 KiB
Go
|
package linkedin
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/goreleaser/goreleaser/internal/testlib"
|
||
|
"github.com/goreleaser/goreleaser/pkg/config"
|
||
|
"github.com/goreleaser/goreleaser/pkg/context"
|
||
|
"github.com/stretchr/testify/require"
|
||
|
)
|
||
|
|
||
|
func TestStringer(t *testing.T) {
|
||
|
require.Equal(t, Pipe{}.String(), "linkedin")
|
||
|
}
|
||
|
|
||
|
func TestDefault(t *testing.T) {
|
||
|
ctx := context.New(config.Project{})
|
||
|
require.NoError(t, Pipe{}.Default(ctx))
|
||
|
require.Equal(t, ctx.Config.Announce.LinkedIn.MessageTemplate, defaultMessageTemplate)
|
||
|
}
|
||
|
|
||
|
func TestAnnounceDisabled(t *testing.T) {
|
||
|
ctx := context.New(config.Project{})
|
||
|
require.NoError(t, Pipe{}.Default(ctx))
|
||
|
testlib.AssertSkipped(t, Pipe{}.Announce(ctx))
|
||
|
}
|
||
|
|
||
|
func TestAnnounceInvalidTemplate(t *testing.T) {
|
||
|
ctx := context.New(config.Project{
|
||
|
Announce: config.Announce{
|
||
|
LinkedIn: config.LinkedIn{
|
||
|
Enabled: true,
|
||
|
MessageTemplate: "{{ .Foo }",
|
||
|
},
|
||
|
},
|
||
|
})
|
||
|
require.EqualError(t, Pipe{}.Announce(ctx), `announce: failed to announce to linkedin: template: tmpl:1: unexpected "}" in operand`)
|
||
|
}
|
||
|
|
||
|
func TestAnnounceMissingEnv(t *testing.T) {
|
||
|
ctx := context.New(config.Project{
|
||
|
Announce: config.Announce{
|
||
|
LinkedIn: config.LinkedIn{
|
||
|
Enabled: true,
|
||
|
},
|
||
|
},
|
||
|
})
|
||
|
require.NoError(t, Pipe{}.Default(ctx))
|
||
|
require.EqualError(t, Pipe{}.Announce(ctx), `announce: failed to announce to linkedin: env: environment variable "LINKEDIN_ACCESS_TOKEN" should not be empty`)
|
||
|
}
|
||
|
|
||
|
func TestAnnounceSkipAnnounce(t *testing.T) {
|
||
|
ctx := context.New(config.Project{
|
||
|
Announce: config.Announce{
|
||
|
LinkedIn: config.LinkedIn{
|
||
|
Enabled: true,
|
||
|
},
|
||
|
},
|
||
|
})
|
||
|
ctx.SkipAnnounce = true
|
||
|
testlib.AssertSkipped(t, Pipe{}.Announce(ctx))
|
||
|
}
|
||
|
|
||
|
func TestSkip(t *testing.T) {
|
||
|
t.Run("skip", func(t *testing.T) {
|
||
|
require.True(t, Pipe{}.Skip(context.New(config.Project{})))
|
||
|
})
|
||
|
|
||
|
t.Run("dont skip", func(t *testing.T) {
|
||
|
ctx := context.New(config.Project{
|
||
|
Announce: config.Announce{
|
||
|
Reddit: config.Reddit{
|
||
|
Enabled: true,
|
||
|
},
|
||
|
},
|
||
|
})
|
||
|
require.False(t, Pipe{}.Skip(ctx))
|
||
|
})
|
||
|
}
|