mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-22 19:31:44 +00:00
Merge pull request #93180 from FreeZhang61/unittest/add_GetAddressAndDialer_unit_test
add unit test for GetAddressAndDialer
This commit is contained in:
commit
9b46d76d5e
@ -133,3 +133,49 @@ func TestIsUnixDomainSocket(t *testing.T) {
|
||||
assert.Equal(t, result, test.expectSocket, "Unexpected result from IsUnixDomainSocket: %v for %s", result, test.label)
|
||||
}
|
||||
}
|
||||
|
||||
func TestGetAddressAndDialer(t *testing.T) {
|
||||
tests := []struct {
|
||||
endpoint string
|
||||
expectError bool
|
||||
expectedAddr string
|
||||
}{
|
||||
{
|
||||
endpoint: "unix:///tmp/s1.sock",
|
||||
expectError: false,
|
||||
expectedAddr: "/tmp/s1.sock",
|
||||
},
|
||||
{
|
||||
endpoint: "unix:///tmp/f6.sock",
|
||||
expectError: false,
|
||||
expectedAddr: "/tmp/f6.sock",
|
||||
},
|
||||
{
|
||||
endpoint: "tcp://localhost:9090",
|
||||
expectError: true,
|
||||
},
|
||||
{
|
||||
// The misspelling is intentional to make it error
|
||||
endpoint: "htta://free-test.com",
|
||||
expectError: true,
|
||||
},
|
||||
{
|
||||
endpoint: "https://www.youtube.com/",
|
||||
expectError: true,
|
||||
},
|
||||
{
|
||||
endpoint: "http://www.baidu.com/",
|
||||
expectError: true,
|
||||
},
|
||||
}
|
||||
for _, test := range tests {
|
||||
// just test addr and err
|
||||
addr, _, err := GetAddressAndDialer(test.endpoint)
|
||||
if test.expectError {
|
||||
assert.NotNil(t, err, "expected error during parsing %s", test.endpoint)
|
||||
continue
|
||||
}
|
||||
assert.Nil(t, err, "expected no error during parsing %s", test.endpoint)
|
||||
assert.Equal(t, test.expectedAddr, addr)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user