jlelse
/
MailyGo
Archived
1
Fork 0
This repository has been archived on 2024-01-02. You can view files and clone it, but cannot push or open issues or pull requests.
MailyGo/spamcheck_test.go

33 lines
659 B
Go

package main
import (
"os"
"testing"
)
func Test_checkBlacklist(t *testing.T) {
prepare := func() {
os.Clearenv()
_ = os.Setenv("BLACKLIST", "test1,test2,spam word")
appConfig, _ = parseConfig()
}
t.Run("Allowed values", func(t *testing.T) {
prepare()
if checkBlacklist([]string{"Hello", "How are you?"}) == true {
t.Error()
}
})
t.Run("Forbidden values", func(t *testing.T) {
prepare()
if checkBlacklist([]string{"How are you?", "Hello TeSt1"}) == false {
t.Error()
}
})
t.Run("Multi word spam phrase", func(t *testing.T) {
prepare()
if checkBlacklist([]string{"This is a sPaM WORD"}) == false {
t.Error()
}
})
}