46 lines
921 B
Go
46 lines
921 B
Go
package plugin
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
plugin "github.com/hashicorp/go-plugin"
|
|
"github.com/hashicorp/vault/logical"
|
|
"github.com/hashicorp/vault/logical/plugin/pb"
|
|
)
|
|
|
|
func TestStorage_impl(t *testing.T) {
|
|
var _ logical.Storage = new(StorageClient)
|
|
}
|
|
|
|
func TestStorage_RPC(t *testing.T) {
|
|
client, server := plugin.TestRPCConn(t)
|
|
defer client.Close()
|
|
|
|
storage := &logical.InmemStorage{}
|
|
|
|
server.RegisterName("Plugin", &StorageServer{
|
|
impl: storage,
|
|
})
|
|
|
|
testStorage := &StorageClient{client: client}
|
|
|
|
logical.TestStorage(t, testStorage)
|
|
}
|
|
|
|
func TestStorage_GRPC(t *testing.T) {
|
|
storage := &logical.InmemStorage{}
|
|
client, _ := plugin.TestGRPCConn(t, func(s *grpc.Server) {
|
|
pb.RegisterStorageServer(s, &GRPCStorageServer{
|
|
impl: storage,
|
|
})
|
|
})
|
|
defer client.Close()
|
|
|
|
testStorage := &GRPCStorageClient{client: pb.NewStorageClient(client)}
|
|
|
|
logical.TestStorage(t, testStorage)
|
|
|
|
}
|