suika/irc_test.go
koizumi.aoi cd99ccc1de Drunk as I like
Signed-off-by: Aoi K <koizumi.aoi@chaotic.ninja>

git-svn-id: file:///srv/svn/repo/suika/trunk@804 f0ae65fe-ee39-954e-97ec-027ff2717ef4
2023-03-21 04:45:19 +00:00

35 lines
963 B
Go

package suika
import (
"testing"
)
func TestIsHighlight(t *testing.T) {
nick := "SojuUser"
testCases := []struct {
name string
text string
hl bool
}{
{"noContains", "hi there Soju User!", false},
{"middle", "hi there SojuUser!", true},
{"start", "SojuUser: how are you doing?", true},
{"end", "maybe ask SojuUser", true},
{"inWord", "but OtherSojuUserSan is a different nick", false},
{"startWord", "and OtherSojuUser is another different nick", false},
{"endWord", "and SojuUserSan is yet a different nick", false},
{"underscore", "and SojuUser_san has nothing to do with me", false},
{"zeroWidthSpace", "writing S\u200BojuUser shouldn't trigger a highlight", false},
}
for _, tc := range testCases {
tc := tc // capture range variable
t.Run(tc.name, func(t *testing.T) {
hl := isHighlight(tc.text, nick)
if hl != tc.hl {
t.Errorf("isHighlight(%q, %q) = %v, but want %v", tc.text, nick, hl, tc.hl)
}
})
}
}