2021-08-31 16:48:45 +03:00
package reddit
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 ( ) , "reddit" )
}
func TestDefault ( t * testing . T ) {
ctx := context . New ( config . Project { } )
require . NoError ( t , Pipe { } . Default ( ctx ) )
require . Equal ( t , ctx . Config . Announce . Reddit . TitleTemplate , defaultTitleTemplate )
}
func TestAnnounceInvalidURLTemplate ( t * testing . T ) {
ctx := context . New ( config . Project {
Announce : config . Announce {
Reddit : config . Reddit {
URLTemplate : "{{ .Foo }" ,
} ,
} ,
} )
2022-12-28 12:24:21 -03:00
require . EqualError ( t , Pipe { } . Announce ( ctx ) , ` reddit: template: tmpl:1: unexpected "}" in operand ` )
2021-08-31 16:48:45 +03:00
}
func TestAnnounceInvalidTitleTemplate ( t * testing . T ) {
ctx := context . New ( config . Project {
Announce : config . Announce {
Reddit : config . Reddit {
TitleTemplate : "{{ .Foo }" ,
} ,
} ,
} )
2022-12-28 12:24:21 -03:00
require . EqualError ( t , Pipe { } . Announce ( ctx ) , ` reddit: template: tmpl:1: unexpected "}" in operand ` )
2021-08-31 16:48:45 +03:00
}
func TestAnnounceMissingEnv ( t * testing . T ) {
ctx := context . New ( config . Project {
Announce : config . Announce {
2021-09-18 10:21:29 -03:00
Reddit : config . Reddit { } ,
2021-08-31 16:48:45 +03:00
} ,
} )
require . NoError ( t , Pipe { } . Default ( ctx ) )
2022-12-28 12:24:21 -03:00
require . EqualError ( t , Pipe { } . Announce ( ctx ) , ` reddit: env: environment variable "REDDIT_SECRET" should not be empty; environment variable "REDDIT_PASSWORD" should not be empty ` )
2021-08-31 16:48:45 +03:00
}
2021-09-18 10:21:29 -03:00
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 ,
} ,
2021-08-31 16:48:45 +03:00
} ,
2021-09-18 10:21:29 -03:00
} )
require . False ( t , Pipe { } . Skip ( ctx ) )
2021-08-31 16:48:45 +03:00
} )
}