53 lines
1.7 KiB
Go
53 lines
1.7 KiB
Go
package common
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
var data_good = map[string]string{
|
|
"one": `<img src="/emotes/one.png" height="28px" title="one" />`,
|
|
"two": `<img src="/emotes/two.png" height="28px" title="two" />`,
|
|
"three": `<img src="/emotes/three.gif" height="28px" title="three" />`,
|
|
|
|
":one:": `<img src="/emotes/one.png" height="28px" title="one" />`,
|
|
":two:": `<img src="/emotes/two.png" height="28px" title="two" />`,
|
|
":three:": `<img src="/emotes/three.gif" height="28px" title="three" />`,
|
|
|
|
"[one]": `<img src="/emotes/one.png" height="28px" title="one" />`,
|
|
"[two]": `<img src="/emotes/two.png" height="28px" title="two" />`,
|
|
"[three]": `<img src="/emotes/three.gif" height="28px" title="three" />`,
|
|
|
|
":one: two [three]": `<img src="/emotes/one.png" height="28px" title="one" /> <img src="/emotes/two.png" height="28px" title="two" /> <img src="/emotes/three.gif" height="28px" title="three" />`,
|
|
|
|
"nope one what": `nope <img src="/emotes/one.png" height="28px" title="one" /> what`,
|
|
"nope :two: what": `nope <img src="/emotes/two.png" height="28px" title="two" /> what`,
|
|
"nope [three] what": `nope <img src="/emotes/three.gif" height="28px" title="three" /> what`,
|
|
}
|
|
|
|
func TestMain(m *testing.M) {
|
|
Emotes = map[string]EmotePath{
|
|
"one": EmotePath{
|
|
Dir: "",
|
|
File: "one.png",
|
|
},
|
|
"two": EmotePath{
|
|
Dir: "",
|
|
File: "two.png",
|
|
},
|
|
"three": EmotePath{
|
|
Dir: "",
|
|
File: "three.gif",
|
|
},
|
|
}
|
|
// os.Exit(m.Run())
|
|
}
|
|
|
|
func TestEmotes_ParseEmotes(t *testing.T) {
|
|
for input, expected := range data_good {
|
|
got := ParseEmotes(input)
|
|
if got != expected {
|
|
t.Errorf("%s failed to parse into %q. Received: %q", input, expected, got)
|
|
}
|
|
}
|
|
}
|