mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 02:28:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			232 lines
		
	
	
		
			5.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			232 lines
		
	
	
		
			5.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package plugin
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"testing"
 | |
| 
 | |
| 	"reflect"
 | |
| 
 | |
| 	plugin "github.com/hashicorp/go-plugin"
 | |
| 	"github.com/hashicorp/vault/helper/consts"
 | |
| 	"github.com/hashicorp/vault/logical"
 | |
| )
 | |
| 
 | |
| func Test_impl(t *testing.T) {
 | |
| 	var _ logical.SystemView = new(SystemViewClient)
 | |
| }
 | |
| 
 | |
| func TestSystem_defaultLeaseTTL(t *testing.T) {
 | |
| 	client, server := plugin.TestRPCConn(t)
 | |
| 	defer client.Close()
 | |
| 
 | |
| 	sys := logical.TestSystemView()
 | |
| 
 | |
| 	server.RegisterName("Plugin", &SystemViewServer{
 | |
| 		impl: sys,
 | |
| 	})
 | |
| 
 | |
| 	testSystemView := &SystemViewClient{client: client}
 | |
| 
 | |
| 	expected := sys.DefaultLeaseTTL()
 | |
| 	actual := testSystemView.DefaultLeaseTTL()
 | |
| 	if !reflect.DeepEqual(expected, actual) {
 | |
| 		t.Fatalf("expected: %v, got: %v", expected, actual)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestSystem_maxLeaseTTL(t *testing.T) {
 | |
| 	client, server := plugin.TestRPCConn(t)
 | |
| 	defer client.Close()
 | |
| 
 | |
| 	sys := logical.TestSystemView()
 | |
| 
 | |
| 	server.RegisterName("Plugin", &SystemViewServer{
 | |
| 		impl: sys,
 | |
| 	})
 | |
| 
 | |
| 	testSystemView := &SystemViewClient{client: client}
 | |
| 
 | |
| 	expected := sys.MaxLeaseTTL()
 | |
| 	actual := testSystemView.MaxLeaseTTL()
 | |
| 	if !reflect.DeepEqual(expected, actual) {
 | |
| 		t.Fatalf("expected: %v, got: %v", expected, actual)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestSystem_sudoPrivilege(t *testing.T) {
 | |
| 	client, server := plugin.TestRPCConn(t)
 | |
| 	defer client.Close()
 | |
| 
 | |
| 	sys := logical.TestSystemView()
 | |
| 	sys.SudoPrivilegeVal = true
 | |
| 
 | |
| 	server.RegisterName("Plugin", &SystemViewServer{
 | |
| 		impl: sys,
 | |
| 	})
 | |
| 
 | |
| 	testSystemView := &SystemViewClient{client: client}
 | |
| 	ctx := context.Background()
 | |
| 
 | |
| 	expected := sys.SudoPrivilege(ctx, "foo", "bar")
 | |
| 	actual := testSystemView.SudoPrivilege(ctx, "foo", "bar")
 | |
| 	if !reflect.DeepEqual(expected, actual) {
 | |
| 		t.Fatalf("expected: %v, got: %v", expected, actual)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestSystem_tainted(t *testing.T) {
 | |
| 	client, server := plugin.TestRPCConn(t)
 | |
| 	defer client.Close()
 | |
| 
 | |
| 	sys := logical.TestSystemView()
 | |
| 	sys.TaintedVal = true
 | |
| 
 | |
| 	server.RegisterName("Plugin", &SystemViewServer{
 | |
| 		impl: sys,
 | |
| 	})
 | |
| 
 | |
| 	testSystemView := &SystemViewClient{client: client}
 | |
| 
 | |
| 	expected := sys.Tainted()
 | |
| 	actual := testSystemView.Tainted()
 | |
| 	if !reflect.DeepEqual(expected, actual) {
 | |
| 		t.Fatalf("expected: %v, got: %v", expected, actual)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestSystem_cachingDisabled(t *testing.T) {
 | |
| 	client, server := plugin.TestRPCConn(t)
 | |
| 	defer client.Close()
 | |
| 
 | |
| 	sys := logical.TestSystemView()
 | |
| 	sys.CachingDisabledVal = true
 | |
| 
 | |
| 	server.RegisterName("Plugin", &SystemViewServer{
 | |
| 		impl: sys,
 | |
| 	})
 | |
| 
 | |
| 	testSystemView := &SystemViewClient{client: client}
 | |
| 
 | |
| 	expected := sys.CachingDisabled()
 | |
| 	actual := testSystemView.CachingDisabled()
 | |
| 	if !reflect.DeepEqual(expected, actual) {
 | |
| 		t.Fatalf("expected: %v, got: %v", expected, actual)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestSystem_replicationState(t *testing.T) {
 | |
| 	client, server := plugin.TestRPCConn(t)
 | |
| 	defer client.Close()
 | |
| 
 | |
| 	sys := logical.TestSystemView()
 | |
| 	sys.ReplicationStateVal = consts.ReplicationPerformancePrimary
 | |
| 
 | |
| 	server.RegisterName("Plugin", &SystemViewServer{
 | |
| 		impl: sys,
 | |
| 	})
 | |
| 
 | |
| 	testSystemView := &SystemViewClient{client: client}
 | |
| 
 | |
| 	expected := sys.ReplicationState()
 | |
| 	actual := testSystemView.ReplicationState()
 | |
| 	if !reflect.DeepEqual(expected, actual) {
 | |
| 		t.Fatalf("expected: %v, got: %v", expected, actual)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestSystem_responseWrapData(t *testing.T) {
 | |
| 	t.SkipNow()
 | |
| }
 | |
| 
 | |
| func TestSystem_lookupPlugin(t *testing.T) {
 | |
| 	client, server := plugin.TestRPCConn(t)
 | |
| 	defer client.Close()
 | |
| 
 | |
| 	sys := logical.TestSystemView()
 | |
| 
 | |
| 	server.RegisterName("Plugin", &SystemViewServer{
 | |
| 		impl: sys,
 | |
| 	})
 | |
| 
 | |
| 	testSystemView := &SystemViewClient{client: client}
 | |
| 
 | |
| 	if _, err := testSystemView.LookupPlugin(context.Background(), "foo", consts.PluginTypeDatabase); err == nil {
 | |
| 		t.Fatal("LookPlugin(): expected error on due to unsupported call from plugin")
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestSystem_mlockEnabled(t *testing.T) {
 | |
| 	client, server := plugin.TestRPCConn(t)
 | |
| 	defer client.Close()
 | |
| 
 | |
| 	sys := logical.TestSystemView()
 | |
| 	sys.EnableMlock = true
 | |
| 
 | |
| 	server.RegisterName("Plugin", &SystemViewServer{
 | |
| 		impl: sys,
 | |
| 	})
 | |
| 
 | |
| 	testSystemView := &SystemViewClient{client: client}
 | |
| 
 | |
| 	expected := sys.MlockEnabled()
 | |
| 	actual := testSystemView.MlockEnabled()
 | |
| 	if !reflect.DeepEqual(expected, actual) {
 | |
| 		t.Fatalf("expected: %v, got: %v", expected, actual)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestSystem_entityInfo(t *testing.T) {
 | |
| 	client, server := plugin.TestRPCConn(t)
 | |
| 	defer client.Close()
 | |
| 
 | |
| 	sys := logical.TestSystemView()
 | |
| 	sys.EntityVal = &logical.Entity{
 | |
| 		ID:   "test",
 | |
| 		Name: "name",
 | |
| 	}
 | |
| 
 | |
| 	server.RegisterName("Plugin", &SystemViewServer{
 | |
| 		impl: sys,
 | |
| 	})
 | |
| 
 | |
| 	testSystemView := &SystemViewClient{client: client}
 | |
| 
 | |
| 	actual, err := testSystemView.EntityInfo("")
 | |
| 	if err != nil {
 | |
| 		t.Fatal(err)
 | |
| 	}
 | |
| 	if !reflect.DeepEqual(sys.EntityVal, actual) {
 | |
| 		t.Fatalf("expected: %v, got: %v", sys.EntityVal, actual)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestSystem_pluginEnv(t *testing.T) {
 | |
| 	client, server := plugin.TestRPCConn(t)
 | |
| 	defer client.Close()
 | |
| 
 | |
| 	sys := logical.TestSystemView()
 | |
| 	sys.PluginEnvironment = &logical.PluginEnvironment{
 | |
| 		VaultVersion: "0.10.42",
 | |
| 	}
 | |
| 
 | |
| 	server.RegisterName("Plugin", &SystemViewServer{
 | |
| 		impl: sys,
 | |
| 	})
 | |
| 
 | |
| 	testSystemView := &SystemViewClient{client: client}
 | |
| 
 | |
| 	expected, err := sys.PluginEnv(context.Background())
 | |
| 	if err != nil {
 | |
| 		t.Fatal(err)
 | |
| 	}
 | |
| 
 | |
| 	actual, err := testSystemView.PluginEnv(context.Background())
 | |
| 	if err != nil {
 | |
| 		t.Fatal(err)
 | |
| 	}
 | |
| 
 | |
| 	if !reflect.DeepEqual(expected, actual) {
 | |
| 		t.Fatalf("expected: %v, got: %v", expected, actual)
 | |
| 	}
 | |
| }
 | 
