mirror of
				https://gitlab.crans.org/nounous/ghostream.git
				synced 2025-11-04 00:32:04 +01:00 
			
		
		
		
	Test splitHostPort
This commit is contained in:
		@@ -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)
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user