122 lines
3.5 KiB
Go
122 lines
3.5 KiB
Go
|
package client
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/hashicorp/nomad/client/dynamicplugins"
|
||
|
"github.com/hashicorp/nomad/client/structs"
|
||
|
"github.com/hashicorp/nomad/plugins/csi"
|
||
|
"github.com/hashicorp/nomad/plugins/csi/fake"
|
||
|
"github.com/stretchr/testify/require"
|
||
|
)
|
||
|
|
||
|
var fakePlugin = &dynamicplugins.PluginInfo{
|
||
|
Name: "test-plugin",
|
||
|
Type: "csi-controller",
|
||
|
ConnectionInfo: &dynamicplugins.PluginConnectionInfo{},
|
||
|
}
|
||
|
|
||
|
func TestClientCSI_CSIControllerPublishVolume(t *testing.T) {
|
||
|
t.Parallel()
|
||
|
|
||
|
cases := []struct {
|
||
|
Name string
|
||
|
ClientSetupFunc func(*fake.Client)
|
||
|
Request *structs.ClientCSIControllerPublishVolumeRequest
|
||
|
ExpectedErr error
|
||
|
ExpectedResponse *structs.ClientCSIControllerPublishVolumeResponse
|
||
|
}{
|
||
|
{
|
||
|
Name: "returns plugin not found errors",
|
||
|
Request: &structs.ClientCSIControllerPublishVolumeRequest{
|
||
|
PluginName: "some-garbage",
|
||
|
},
|
||
|
ExpectedErr: errors.New("plugin some-garbage for type csi-controller not found"),
|
||
|
},
|
||
|
{
|
||
|
Name: "validates volumeid is not empty",
|
||
|
Request: &structs.ClientCSIControllerPublishVolumeRequest{
|
||
|
PluginName: fakePlugin.Name,
|
||
|
},
|
||
|
ExpectedErr: errors.New("VolumeID is required"),
|
||
|
},
|
||
|
{
|
||
|
Name: "validates nodeid is not empty",
|
||
|
Request: &structs.ClientCSIControllerPublishVolumeRequest{
|
||
|
PluginName: fakePlugin.Name,
|
||
|
VolumeID: "1234-4321-1234-4321",
|
||
|
},
|
||
|
ExpectedErr: errors.New("NodeID is required"),
|
||
|
},
|
||
|
{
|
||
|
Name: "returns transitive errors",
|
||
|
ClientSetupFunc: func(fc *fake.Client) {
|
||
|
fc.NextControllerPublishVolumeErr = errors.New("hello")
|
||
|
},
|
||
|
Request: &structs.ClientCSIControllerPublishVolumeRequest{
|
||
|
PluginName: fakePlugin.Name,
|
||
|
VolumeID: "1234-4321-1234-4321",
|
||
|
NodeID: "abcde",
|
||
|
},
|
||
|
ExpectedErr: errors.New("hello"),
|
||
|
},
|
||
|
{
|
||
|
Name: "handles nil PublishContext",
|
||
|
ClientSetupFunc: func(fc *fake.Client) {
|
||
|
fc.NextControllerPublishVolumeResponse = &csi.ControllerPublishVolumeResponse{}
|
||
|
},
|
||
|
Request: &structs.ClientCSIControllerPublishVolumeRequest{
|
||
|
PluginName: fakePlugin.Name,
|
||
|
VolumeID: "1234-4321-1234-4321",
|
||
|
NodeID: "abcde",
|
||
|
},
|
||
|
ExpectedResponse: &structs.ClientCSIControllerPublishVolumeResponse{},
|
||
|
},
|
||
|
{
|
||
|
Name: "handles non-nil PublishContext",
|
||
|
ClientSetupFunc: func(fc *fake.Client) {
|
||
|
fc.NextControllerPublishVolumeResponse = &csi.ControllerPublishVolumeResponse{
|
||
|
PublishContext: map[string]string{"foo": "bar"},
|
||
|
}
|
||
|
},
|
||
|
Request: &structs.ClientCSIControllerPublishVolumeRequest{
|
||
|
PluginName: fakePlugin.Name,
|
||
|
VolumeID: "1234-4321-1234-4321",
|
||
|
NodeID: "abcde",
|
||
|
},
|
||
|
ExpectedResponse: &structs.ClientCSIControllerPublishVolumeResponse{
|
||
|
PublishContext: map[string]string{"foo": "bar"},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
for _, tc := range cases {
|
||
|
t.Run(tc.Name, func(t *testing.T) {
|
||
|
require := require.New(t)
|
||
|
client, cleanup := TestClient(t, nil)
|
||
|
defer cleanup()
|
||
|
|
||
|
fakeClient := &fake.Client{}
|
||
|
if tc.ClientSetupFunc != nil {
|
||
|
tc.ClientSetupFunc(fakeClient)
|
||
|
}
|
||
|
|
||
|
dispenserFunc := func(*dynamicplugins.PluginInfo) (interface{}, error) {
|
||
|
return fakeClient, nil
|
||
|
}
|
||
|
client.dynamicRegistry.StubDispenserForType(dynamicplugins.PluginTypeCSIController, dispenserFunc)
|
||
|
|
||
|
err := client.dynamicRegistry.RegisterPlugin(fakePlugin)
|
||
|
require.Nil(err)
|
||
|
|
||
|
var resp structs.ClientCSIControllerPublishVolumeResponse
|
||
|
err = client.ClientRPC("ClientCSI.CSIControllerPublishVolume", tc.Request, &resp)
|
||
|
require.Equal(tc.ExpectedErr, err)
|
||
|
if tc.ExpectedResponse != nil {
|
||
|
require.Equal(tc.ExpectedResponse, &resp)
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|