Test splitHostPort

This commit is contained in:
Alexandre Iooss 2020-09-29 18:52:27 +02:00
parent 06542590e1
commit 5b5bf2b518
No known key found for this signature in database
GPG Key ID: 6C79278F3FCDCC02
1 changed files with 16 additions and 0 deletions

View File

@ -1 +1,17 @@
package srt
import (
"testing"
)
func TestSplitHostPort(t *testing.T) {
host, port := splitHostPort("127.0.0.1:1234")
if host != "127.0.0.1" || port != 1234 {
t.Errorf("splitHostPort returned %v:%d != 127.0.0.1:1234", host, port)
}
host, port = splitHostPort(":1234")
if host != "0.0.0.0" || port != 1234 {
t.Errorf("splitHostPort returned %v:%d != 0.0.0.0:1234", host, port)
}
}