mirror of
https://git.mirrors.martin98.com/https://github.com/ceph/ceph-csi.git
synced 2025-08-05 05:20:46 +08:00
77 lines
2.1 KiB
Go
77 lines
2.1 KiB
Go
/*
|
|
Copyright 2017 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package csicommon
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestParseEndpoint(t *testing.T) {
|
|
|
|
//Valid unix domain socket endpoint
|
|
sockType, addr, err := ParseEndpoint("unix://fake.sock")
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, sockType, "unix")
|
|
assert.Equal(t, addr, "fake.sock")
|
|
|
|
sockType, addr, err = ParseEndpoint("unix:///fakedir/fakedir/fake.sock")
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, sockType, "unix")
|
|
assert.Equal(t, addr, "/fakedir/fakedir/fake.sock")
|
|
|
|
//Valid unix domain socket with uppercase
|
|
sockType, addr, err = ParseEndpoint("UNIX://fake.sock")
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, sockType, "UNIX")
|
|
assert.Equal(t, addr, "fake.sock")
|
|
|
|
//Valid TCP endpoint with ip
|
|
sockType, addr, err = ParseEndpoint("tcp://127.0.0.1:80")
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, sockType, "tcp")
|
|
assert.Equal(t, addr, "127.0.0.1:80")
|
|
|
|
//Valid TCP endpoint with uppercase
|
|
sockType, addr, err = ParseEndpoint("TCP://127.0.0.1:80")
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, sockType, "TCP")
|
|
assert.Equal(t, addr, "127.0.0.1:80")
|
|
|
|
//Valid TCP endpoint with hostname
|
|
sockType, addr, err = ParseEndpoint("tcp://fakehost:80")
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, sockType, "tcp")
|
|
assert.Equal(t, addr, "fakehost:80")
|
|
|
|
_, _, err = ParseEndpoint("unix:/fake.sock/")
|
|
assert.NotNil(t, err)
|
|
|
|
_, _, err = ParseEndpoint("fake.sock")
|
|
assert.NotNil(t, err)
|
|
|
|
_, _, err = ParseEndpoint("unix://")
|
|
assert.NotNil(t, err)
|
|
|
|
_, _, err = ParseEndpoint("://")
|
|
assert.NotNil(t, err)
|
|
|
|
_, _, err = ParseEndpoint("")
|
|
assert.NotNil(t, err)
|
|
}
|