mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-30 18:17:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			685 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			685 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright (c) HashiCorp, Inc.
 | |
| // SPDX-License-Identifier: MPL-2.0
 | |
| 
 | |
| package framework
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"reflect"
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/hashicorp/vault/sdk/logical"
 | |
| )
 | |
| 
 | |
| func TestPolicyMap(t *testing.T) {
 | |
| 	p := &PolicyMap{}
 | |
| 	p.PathMap.Name = "foo"
 | |
| 	s := new(logical.InmemStorage)
 | |
| 
 | |
| 	ctx := context.Background()
 | |
| 
 | |
| 	p.Put(ctx, s, "foo", map[string]interface{}{"value": "bar"})
 | |
| 	p.Put(ctx, s, "bar", map[string]interface{}{"value": "foo,baz "})
 | |
| 
 | |
| 	// Read via API
 | |
| 	actual, err := p.Policies(ctx, s, "foo", "bar")
 | |
| 	if err != nil {
 | |
| 		t.Fatalf("bad: %#v", err)
 | |
| 	}
 | |
| 
 | |
| 	expected := []string{"bar", "baz", "foo"}
 | |
| 	if !reflect.DeepEqual(actual, expected) {
 | |
| 		t.Fatalf("bad: %#v", actual)
 | |
| 	}
 | |
| }
 | 
