2022-11-17 17:40:00 -06:00
package mastodon
import (
"testing"
2023-03-02 00:01:11 -03:00
"github.com/goreleaser/goreleaser/internal/testctx"
2023-08-24 22:06:12 -03:00
"github.com/goreleaser/goreleaser/internal/testlib"
2022-11-17 17:40:00 -06:00
"github.com/goreleaser/goreleaser/pkg/config"
"github.com/stretchr/testify/require"
)
func TestStringer ( t * testing . T ) {
require . Equal ( t , Pipe { } . String ( ) , "mastodon" )
}
func TestDefault ( t * testing . T ) {
2023-03-02 00:01:11 -03:00
ctx := testctx . New ( )
2022-11-17 17:40:00 -06:00
require . NoError ( t , Pipe { } . Default ( ctx ) )
require . Equal ( t , ctx . Config . Announce . Mastodon . MessageTemplate , defaultMessageTemplate )
}
func TestAnnounceInvalidTemplate ( t * testing . T ) {
2023-03-02 00:01:11 -03:00
ctx := testctx . NewWithCfg ( config . Project {
2022-11-17 17:40:00 -06:00
Announce : config . Announce {
Mastodon : config . Mastodon {
MessageTemplate : "{{ .Foo }" ,
} ,
} ,
} )
2023-08-24 22:06:12 -03:00
testlib . RequireTemplateError ( t , Pipe { } . Announce ( ctx ) )
2022-11-17 17:40:00 -06:00
}
func TestAnnounceMissingEnv ( t * testing . T ) {
2023-03-02 00:01:11 -03:00
ctx := testctx . NewWithCfg ( config . Project {
2022-11-17 17:40:00 -06:00
Announce : config . Announce {
Mastodon : config . Mastodon { } ,
} ,
} )
require . NoError ( t , Pipe { } . Default ( ctx ) )
2022-12-28 12:24:21 -03:00
require . EqualError ( t , Pipe { } . Announce ( ctx ) , ` mastodon: env: environment variable "MASTODON_CLIENT_ID" should not be empty; environment variable "MASTODON_CLIENT_SECRET" should not be empty; environment variable "MASTODON_ACCESS_TOKEN" should not be empty ` )
2022-11-17 17:40:00 -06:00
}
func TestSkip ( t * testing . T ) {
t . Run ( "skip" , func ( t * testing . T ) {
2023-03-02 00:01:11 -03:00
require . True ( t , Pipe { } . Skip ( testctx . New ( ) ) )
2022-11-17 17:40:00 -06:00
} )
2022-11-17 20:54:57 -03:00
t . Run ( "skip empty server" , func ( t * testing . T ) {
2023-03-02 00:01:11 -03:00
require . True ( t , Pipe { } . Skip ( testctx . NewWithCfg ( config . Project {
2022-11-17 20:54:57 -03:00
Announce : config . Announce {
Mastodon : config . Mastodon {
Enabled : true ,
Server : "" , // empty
} ,
} ,
} ) ) )
} )
2022-11-17 17:40:00 -06:00
t . Run ( "dont skip" , func ( t * testing . T ) {
2023-03-02 00:01:11 -03:00
require . False ( t , Pipe { } . Skip ( testctx . NewWithCfg ( config . Project {
2022-11-17 17:40:00 -06:00
Announce : config . Announce {
Mastodon : config . Mastodon {
Enabled : true ,
2022-11-17 20:54:57 -03:00
Server : "https://mastodon.social" ,
2022-11-17 17:40:00 -06:00
} ,
} ,
2022-11-17 20:54:57 -03:00
} ) ) )
2022-11-17 17:40:00 -06:00
} )
}