47 lines
937 B
Go
47 lines
937 B
Go
|
package vault
|
||
|
|
||
|
import (
|
||
|
"reflect"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestCore_DefaultAuditTable(t *testing.T) {
|
||
|
c, key, _ := TestCoreUnsealed(t)
|
||
|
verifyDefaultAuditTable(t, c.audit)
|
||
|
|
||
|
// Verify we have an audit broker
|
||
|
if c.auditBroker == nil {
|
||
|
t.Fatalf("missing audit broker")
|
||
|
}
|
||
|
|
||
|
// Start a second core with same physical
|
||
|
conf := &CoreConfig{Physical: c.physical}
|
||
|
c2, err := NewCore(conf)
|
||
|
if err != nil {
|
||
|
t.Fatalf("err: %v", err)
|
||
|
}
|
||
|
unseal, err := c2.Unseal(key)
|
||
|
if err != nil {
|
||
|
t.Fatalf("err: %v", err)
|
||
|
}
|
||
|
if !unseal {
|
||
|
t.Fatalf("should be unsealed")
|
||
|
}
|
||
|
|
||
|
// Verify matching mount tables
|
||
|
if !reflect.DeepEqual(c.audit, c2.audit) {
|
||
|
t.Fatalf("mismatch: %v %v", c.audit, c2.audit)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestDefaultAuditTable(t *testing.T) {
|
||
|
table := defaultAuditTable()
|
||
|
verifyDefaultAuditTable(t, table)
|
||
|
}
|
||
|
|
||
|
func verifyDefaultAuditTable(t *testing.T, table *MountTable) {
|
||
|
if len(table.Entries) != 0 {
|
||
|
t.Fatalf("bad: %v", table.Entries)
|
||
|
}
|
||
|
}
|