mirror of https://github.com/pikami/tiktok-dl.git
37 lines
948 B
Go
37 lines
948 B
Go
package models
|
|
|
|
import (
|
|
testUtil "../unitTestUtil"
|
|
"testing"
|
|
)
|
|
|
|
func TestGetUsername(t *testing.T) {
|
|
testCaseDelegate := func(t *testing.T, url string, username string) {
|
|
tu := testUtil.TestUtil{T: t}
|
|
Config.URL = url
|
|
actual := GetUsername()
|
|
tu.AssertString(actual, username, "Username")
|
|
}
|
|
|
|
testVideoURL := func(t *testing.T) {
|
|
testCaseDelegate(t, "https://www.tiktok.com/@some_username/video/0000000000000000000", "some_username")
|
|
}
|
|
|
|
testProfileURL := func(t *testing.T) {
|
|
testCaseDelegate(t, "https://www.tiktok.com/@some_username", "some_username")
|
|
}
|
|
|
|
testPlainUsername := func(t *testing.T) {
|
|
testCaseDelegate(t, "some_username", "some_username")
|
|
}
|
|
|
|
testAtUsername := func(t *testing.T) {
|
|
testCaseDelegate(t, "@some_username", "some_username")
|
|
}
|
|
|
|
t.Run("Video URL", testVideoURL)
|
|
t.Run("Username URL", testProfileURL)
|
|
t.Run("Plain username", testPlainUsername)
|
|
t.Run("Username with @ suffix", testAtUsername)
|
|
}
|