You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
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()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|