mirror of https://github.com/databricks/cli.git
27 lines
601 B
Go
27 lines
601 B
Go
|
package databrickscfg
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestNormalizeHost(t *testing.T) {
|
||
|
assert.Equal(t, "invalid", normalizeHost("invalid"))
|
||
|
|
||
|
// With port.
|
||
|
assert.Equal(t, "http://foo:123", normalizeHost("http://foo:123"))
|
||
|
|
||
|
// With trailing slash.
|
||
|
assert.Equal(t, "http://foo", normalizeHost("http://foo/"))
|
||
|
|
||
|
// With path.
|
||
|
assert.Equal(t, "http://foo", normalizeHost("http://foo/bar"))
|
||
|
|
||
|
// With query string.
|
||
|
assert.Equal(t, "http://foo", normalizeHost("http://foo?bar"))
|
||
|
|
||
|
// With anchor.
|
||
|
assert.Equal(t, "http://foo", normalizeHost("http://foo#bar"))
|
||
|
}
|