2022-11-17 17:40:00 -06:00
package mastodon
import (
"testing"
"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 ( ) , "mastodon" )
}
func TestDefault ( t * testing . T ) {
ctx := context . New ( config . Project { } )
require . NoError ( t , Pipe { } . Default ( ctx ) )
require . Equal ( t , ctx . Config . Announce . Mastodon . MessageTemplate , defaultMessageTemplate )
}
func TestAnnounceInvalidTemplate ( t * testing . T ) {
ctx := context . New ( config . Project {
Announce : config . Announce {
Mastodon : config . Mastodon {
MessageTemplate : "{{ .Foo }" ,
} ,
} ,
} )
2022-12-28 12:24:21 -03:00
require . EqualError ( t , Pipe { } . Announce ( ctx ) , ` mastodon: template: tmpl:1: unexpected "}" in operand ` )
2022-11-17 17:40:00 -06:00
}
func TestAnnounceMissingEnv ( t * testing . T ) {
ctx := context . New ( config . Project {
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 ) {
require . True ( t , Pipe { } . Skip ( context . New ( config . Project { } ) ) )
} )
2022-11-17 20:54:57 -03:00
t . Run ( "skip empty server" , func ( t * testing . T ) {
require . True ( t , Pipe { } . Skip ( context . New ( config . Project {
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 ) {
2022-11-17 20:54:57 -03:00
require . False ( t , Pipe { } . Skip ( context . New ( 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
} )
}