mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-03 20:17:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			333 lines
		
	
	
		
			7.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			333 lines
		
	
	
		
			7.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package mongodb
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
	"log"
 | 
						|
	"os"
 | 
						|
	"strings"
 | 
						|
	"sync"
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"github.com/hashicorp/vault/logical"
 | 
						|
	logicaltest "github.com/hashicorp/vault/logical/testing"
 | 
						|
	"github.com/mitchellh/mapstructure"
 | 
						|
	"github.com/ory-am/dockertest"
 | 
						|
	"time"
 | 
						|
	"reflect"
 | 
						|
)
 | 
						|
 | 
						|
var (
 | 
						|
	testImagePull sync.Once
 | 
						|
)
 | 
						|
 | 
						|
func prepareTestContainer(t *testing.T, s logical.Storage, b logical.Backend) (cid dockertest.ContainerID, retURI string) {
 | 
						|
	if os.Getenv("MONGODB_URI") != "" {
 | 
						|
		return "", os.Getenv("MONGODB_URI")
 | 
						|
	}
 | 
						|
 | 
						|
	// Without this the checks for whether the container has started seem to
 | 
						|
	// never actually pass. There's really no reason to expose the test
 | 
						|
	// containers, so don't.
 | 
						|
	dockertest.BindDockerToLocalhost = "yep"
 | 
						|
 | 
						|
	testImagePull.Do(func() {
 | 
						|
		dockertest.Pull(dockertest.MongoDBImageName)
 | 
						|
	})
 | 
						|
 | 
						|
	cid, connErr := dockertest.ConnectToMongoDB(60, 500*time.Millisecond, func(connURI string) bool {
 | 
						|
		connURI = "mongodb://" + connURI
 | 
						|
		// This will cause a validation to run
 | 
						|
		resp, err := b.HandleRequest(&logical.Request{
 | 
						|
			Storage:   s,
 | 
						|
			Operation: logical.UpdateOperation,
 | 
						|
			Path:      "config/connection",
 | 
						|
			Data: map[string]interface{}{
 | 
						|
				"uri": connURI,
 | 
						|
			},
 | 
						|
		})
 | 
						|
		if err != nil || (resp != nil && resp.IsError()) {
 | 
						|
			// It's likely not up and running yet, so return false and try again
 | 
						|
			return false
 | 
						|
		}
 | 
						|
		if resp == nil {
 | 
						|
			t.Fatal("expected warning")
 | 
						|
		}
 | 
						|
 | 
						|
		retURI = connURI
 | 
						|
		return true
 | 
						|
	})
 | 
						|
 | 
						|
	if connErr != nil {
 | 
						|
		t.Fatalf("could not connect to database: %v", connErr)
 | 
						|
	}
 | 
						|
 | 
						|
	return
 | 
						|
}
 | 
						|
 | 
						|
func cleanupTestContainer(t *testing.T, cid dockertest.ContainerID) {
 | 
						|
	err := cid.KillRemove()
 | 
						|
	if err != nil {
 | 
						|
		t.Fatal(err)
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func TestBackend_config_connection(t *testing.T) {
 | 
						|
	var resp *logical.Response
 | 
						|
	var err error
 | 
						|
	config := logical.TestBackendConfig()
 | 
						|
	config.StorageView = &logical.InmemStorage{}
 | 
						|
	b, err := Factory(config)
 | 
						|
	if err != nil {
 | 
						|
		t.Fatal(err)
 | 
						|
	}
 | 
						|
 | 
						|
	configData := map[string]interface{}{
 | 
						|
		"uri":               "sample_connection_uri",
 | 
						|
		"verify_connection": false,
 | 
						|
	}
 | 
						|
 | 
						|
	configReq := &logical.Request{
 | 
						|
		Operation: logical.UpdateOperation,
 | 
						|
		Path:      "config/connection",
 | 
						|
		Storage:   config.StorageView,
 | 
						|
		Data:      configData,
 | 
						|
	}
 | 
						|
	resp, err = b.HandleRequest(configReq)
 | 
						|
	if err != nil || (resp != nil && resp.IsError()) {
 | 
						|
		t.Fatalf("err:%s resp:%#v\n", err, resp)
 | 
						|
	}
 | 
						|
 | 
						|
	configReq.Operation = logical.ReadOperation
 | 
						|
	resp, err = b.HandleRequest(configReq)
 | 
						|
	if err != nil || (resp != nil && resp.IsError()) {
 | 
						|
		t.Fatalf("err:%s resp:%#v\n", err, resp)
 | 
						|
	}
 | 
						|
 | 
						|
	if !reflect.DeepEqual(configData, resp.Data) {
 | 
						|
		t.Fatalf("bad: expected:%#v\nactual:%#v\n", configData, resp.Data)
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func TestBackend_basic(t *testing.T) {
 | 
						|
	config := logical.TestBackendConfig()
 | 
						|
	config.StorageView = &logical.InmemStorage{}
 | 
						|
	b, err := Factory(config)
 | 
						|
	if err != nil {
 | 
						|
		t.Fatal(err)
 | 
						|
	}
 | 
						|
 | 
						|
	cid, connURI := prepareTestContainer(t, config.StorageView, b)
 | 
						|
	if cid != "" {
 | 
						|
		defer cleanupTestContainer(t, cid)
 | 
						|
	}
 | 
						|
	connData := map[string]interface{}{
 | 
						|
		"uri": connURI,
 | 
						|
	}
 | 
						|
 | 
						|
	logicaltest.Test(t, logicaltest.TestCase{
 | 
						|
		Backend: b,
 | 
						|
		Steps: []logicaltest.TestStep{
 | 
						|
			testAccStepConfig(t, connData, false),
 | 
						|
			testAccStepRole(t),
 | 
						|
			testAccStepReadCreds(t, "web"),
 | 
						|
		},
 | 
						|
	})
 | 
						|
}
 | 
						|
 | 
						|
func TestBackend_roleCrud(t *testing.T) {
 | 
						|
	config := logical.TestBackendConfig()
 | 
						|
	config.StorageView = &logical.InmemStorage{}
 | 
						|
	b, err := Factory(config)
 | 
						|
	if err != nil {
 | 
						|
		t.Fatal(err)
 | 
						|
	}
 | 
						|
 | 
						|
	cid, connURI := prepareTestContainer(t, config.StorageView, b)
 | 
						|
	if cid != "" {
 | 
						|
		defer cleanupTestContainer(t, cid)
 | 
						|
	}
 | 
						|
	connData := map[string]interface{}{
 | 
						|
		"uri": connURI,
 | 
						|
	}
 | 
						|
 | 
						|
	logicaltest.Test(t, logicaltest.TestCase{
 | 
						|
		Backend: b,
 | 
						|
		Steps: []logicaltest.TestStep{
 | 
						|
			testAccStepConfig(t, connData, false),
 | 
						|
			testAccStepRole(t),
 | 
						|
			testAccStepReadRole(t, "web", testDb, testMongoDBRoles),
 | 
						|
			testAccStepDeleteRole(t, "web"),
 | 
						|
			testAccStepReadRole(t, "web", "", ""),
 | 
						|
		},
 | 
						|
	})
 | 
						|
}
 | 
						|
 | 
						|
func TestBackend_leaseWriteRead(t *testing.T) {
 | 
						|
	config := logical.TestBackendConfig()
 | 
						|
	config.StorageView = &logical.InmemStorage{}
 | 
						|
	b, err := Factory(config)
 | 
						|
	if err != nil {
 | 
						|
		t.Fatal(err)
 | 
						|
	}
 | 
						|
 | 
						|
	cid, connURI := prepareTestContainer(t, config.StorageView, b)
 | 
						|
	if cid != "" {
 | 
						|
		defer cleanupTestContainer(t, cid)
 | 
						|
	}
 | 
						|
	connData := map[string]interface{}{
 | 
						|
		"uri": connURI,
 | 
						|
	}
 | 
						|
 | 
						|
	logicaltest.Test(t, logicaltest.TestCase{
 | 
						|
		Backend: b,
 | 
						|
		Steps: []logicaltest.TestStep{
 | 
						|
			testAccStepConfig(t, connData, false),
 | 
						|
			testAccStepWriteLease(t),
 | 
						|
			testAccStepReadLease(t),
 | 
						|
		},
 | 
						|
	})
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
func testAccStepConfig(t *testing.T, d map[string]interface{}, expectError bool) logicaltest.TestStep {
 | 
						|
	return logicaltest.TestStep{
 | 
						|
		Operation: logical.UpdateOperation,
 | 
						|
		Path:      "config/connection",
 | 
						|
		Data:      d,
 | 
						|
		ErrorOk:   true,
 | 
						|
		Check: func(resp *logical.Response) error {
 | 
						|
			if expectError {
 | 
						|
				if resp.Data == nil {
 | 
						|
					return fmt.Errorf("data is nil")
 | 
						|
				}
 | 
						|
				var e struct {
 | 
						|
					Error string `mapstructure:"error"`
 | 
						|
				}
 | 
						|
				if err := mapstructure.Decode(resp.Data, &e); err != nil {
 | 
						|
					return err
 | 
						|
				}
 | 
						|
				if len(e.Error) == 0 {
 | 
						|
					return fmt.Errorf("expected error, but write succeeded.")
 | 
						|
				}
 | 
						|
				return nil
 | 
						|
			} else if resp != nil && resp.IsError() {
 | 
						|
				return fmt.Errorf("got an error response: %v", resp.Error())
 | 
						|
			}
 | 
						|
			return nil
 | 
						|
		},
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func testAccStepRole(t *testing.T) logicaltest.TestStep {
 | 
						|
	return logicaltest.TestStep{
 | 
						|
		Operation: logical.UpdateOperation,
 | 
						|
		Path:      "roles/web",
 | 
						|
		Data: map[string]interface{}{
 | 
						|
			"db": testDb,
 | 
						|
			"roles": testMongoDBRoles,
 | 
						|
		},
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func testAccStepDeleteRole(t *testing.T, n string) logicaltest.TestStep {
 | 
						|
	return logicaltest.TestStep{
 | 
						|
		Operation: logical.DeleteOperation,
 | 
						|
		Path:      "roles/" + n,
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func testAccStepReadCreds(t *testing.T, name string) logicaltest.TestStep {
 | 
						|
	return logicaltest.TestStep{
 | 
						|
		Operation: logical.ReadOperation,
 | 
						|
		Path:      "creds/" + name,
 | 
						|
		Check: func(resp *logical.Response) error {
 | 
						|
			var d struct {
 | 
						|
				DB       string `mapstructure:"db"`
 | 
						|
				Username string `mapstructure:"username"`
 | 
						|
				Password string `mapstructure:"password"`
 | 
						|
			}
 | 
						|
			if err := mapstructure.Decode(resp.Data, &d); err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
 | 
						|
			if d.DB == "" {
 | 
						|
				return fmt.Errorf("bad: %#v", resp)
 | 
						|
			}
 | 
						|
			if d.Username == "" {
 | 
						|
				return fmt.Errorf("bad: %#v", resp)
 | 
						|
			}
 | 
						|
			if !strings.HasPrefix(d.Username, "vault-root-") {
 | 
						|
				return fmt.Errorf("bad: %#v", resp)
 | 
						|
			}
 | 
						|
			if d.Password == "" {
 | 
						|
				return fmt.Errorf("bad: %#v", resp)
 | 
						|
			}
 | 
						|
 | 
						|
			log.Printf("[WARN] Generated credentials: %v", d)
 | 
						|
 | 
						|
			return nil
 | 
						|
		},
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func testAccStepReadRole(t *testing.T, name, db, mongoDBRoles string) logicaltest.TestStep {
 | 
						|
	return logicaltest.TestStep{
 | 
						|
		Operation: logical.ReadOperation,
 | 
						|
		Path:      "roles/" + name,
 | 
						|
		Check: func(resp *logical.Response) error {
 | 
						|
			if resp == nil {
 | 
						|
				if db == "" && mongoDBRoles == "" {
 | 
						|
					return nil
 | 
						|
				}
 | 
						|
 | 
						|
				return fmt.Errorf("bad: %#v", resp)
 | 
						|
			}
 | 
						|
 | 
						|
			var d struct {
 | 
						|
				DB           string `mapstructure:"db"`
 | 
						|
				MongoDBRoles string `mapstructure:"roles"`
 | 
						|
			}
 | 
						|
			if err := mapstructure.Decode(resp.Data, &d); err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
 | 
						|
			if d.DB != db {
 | 
						|
				return fmt.Errorf("bad: %#v", resp)
 | 
						|
			}
 | 
						|
			if d.MongoDBRoles != mongoDBRoles {
 | 
						|
				return fmt.Errorf("bad: %#v", resp)
 | 
						|
			}
 | 
						|
 | 
						|
			return nil
 | 
						|
		},
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func testAccStepWriteLease(t *testing.T) logicaltest.TestStep {
 | 
						|
	return logicaltest.TestStep{
 | 
						|
		Operation: logical.UpdateOperation,
 | 
						|
		Path:      "config/lease",
 | 
						|
		Data: map[string]interface{}{
 | 
						|
			"ttl":     "1h5m",
 | 
						|
			"max_ttl": "24h",
 | 
						|
		},
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func testAccStepReadLease(t *testing.T) logicaltest.TestStep {
 | 
						|
	return logicaltest.TestStep{
 | 
						|
		Operation: logical.ReadOperation,
 | 
						|
		Path:      "config/lease",
 | 
						|
		Check: func(resp *logical.Response) error {
 | 
						|
			if resp.Data["ttl"] != "1h5m0s" || resp.Data["max_ttl"] != "24h0m0s" {
 | 
						|
				return fmt.Errorf("bad: %#v", resp)
 | 
						|
			}
 | 
						|
 | 
						|
			return nil
 | 
						|
		},
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
const testDb = "foo"
 | 
						|
const testMongoDBRoles = `["readWrite",{"db":"bar","role":"read"}]`
 |