//go:build linux && unit // +build linux,unit // Copyright Amazon.com Inc. or its affiliates. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"). You may // not use this file except in compliance with the License. A copy of the // License is located at // // http://aws.amazon.com/apache2.0/ // // or in the "license" file accompanying this file. This file 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 util import ( "fmt" "os" "testing" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) func TestIsBlockDevice(t *testing.T) { volumePath := "./test" err := os.MkdirAll(volumePath, 0644) require.NoError(t, err, "fail to create dir") defer os.RemoveAll(volumePath) isBlockDevice, err := IsBlockDevice(volumePath) assert.Nil(t, err) assert.Equal(t, false, isBlockDevice) } func TestParseEndpoint(t *testing.T) { testCases := []struct { name string endpoint string expScheme string expAddr string expErr error }{ { name: "valid unix endpoint 1", endpoint: "unix:///csi/csi.sock", expScheme: "unix", expAddr: "/csi/csi.sock", }, { name: "valid unix endpoint 2", endpoint: "unix://csi/csi.sock", expScheme: "unix", expAddr: "/csi/csi.sock", }, { name: "valid unix endpoint 3", endpoint: "unix:/csi/csi.sock", expScheme: "unix", expAddr: "/csi/csi.sock", }, { name: "valid tcp endpoint", endpoint: "tcp:///127.0.0.1/", expScheme: "tcp", expAddr: "/127.0.0.1", }, { name: "valid tcp endpoint", endpoint: "tcp:///127.0.0.1", expScheme: "tcp", expAddr: "/127.0.0.1", }, { name: "invalid endpoint", endpoint: "http://127.0.0.1", expErr: fmt.Errorf("unsupported protocol: http"), }, } for _, tc := range testCases { t.Run(tc.name, func(t *testing.T) { scheme, addr, err := ParseEndpoint(tc.endpoint) if tc.expErr != nil { assert.EqualError(t, err, tc.expErr.Error()) } else { assert.Nil(t, err) assert.Equal(t, scheme, tc.expScheme, "scheme mismatches") assert.Equal(t, addr, tc.expAddr, "address mismatches") } }) } }