mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
28 lines
576 B
Go
28 lines
576 B
Go
package utils
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestGetHashtagsFromText(t *testing.T) {
|
|
text := `Some text with a #hashtag goes here.\n\n
|
|
Another #secondhashtag, goes here.\n\n
|
|
#thirdhashtag`
|
|
|
|
hashtags := GetHashtagsFromText(text)
|
|
|
|
if hashtags[0] != "#hashtag" || hashtags[1] != "#secondhashtag" || hashtags[2] != "#thirdhashtag" {
|
|
t.Error("Incorrect hashtags fetched from text.")
|
|
}
|
|
}
|
|
|
|
func TestPercentageUtilsTest(t *testing.T) {
|
|
total := 42
|
|
number := 18
|
|
|
|
percent := IntPercentage(number, total)
|
|
|
|
if percent != 42 {
|
|
t.Error("Incorrect percentage calculation.")
|
|
}
|
|
}
|