mv tmlibs files to libs dir

This commit is contained in:
Ethan Buchman
2018-07-01 22:36:03 -04:00
parent 2d7ffdd72b
commit ae3bf81833
174 changed files with 0 additions and 0 deletions

38
libs/common/net_test.go Normal file
View File

@@ -0,0 +1,38 @@
package common
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestProtocolAndAddress(t *testing.T) {
cases := []struct {
fullAddr string
proto string
addr string
}{
{
"tcp://mydomain:80",
"tcp",
"mydomain:80",
},
{
"mydomain:80",
"tcp",
"mydomain:80",
},
{
"unix://mydomain:80",
"unix",
"mydomain:80",
},
}
for _, c := range cases {
proto, addr := ProtocolAndAddress(c.fullAddr)
assert.Equal(t, proto, c.proto)
assert.Equal(t, addr, c.addr)
}
}