mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-17 19:17:17 +02:00
databroker: add support for querying the databroker (#1443)
* databroker: add support for querying the databroker * remove query method, use getall so encryption works * add test * return early
This commit is contained in:
parent
fdec45fe04
commit
2364da14c8
8 changed files with 534 additions and 118 deletions
|
@ -19,6 +19,7 @@ import (
|
|||
"google.golang.org/protobuf/types/known/anypb"
|
||||
|
||||
"github.com/pomerium/pomerium/pkg/cryptutil"
|
||||
"github.com/pomerium/pomerium/pkg/grpc/directory"
|
||||
)
|
||||
|
||||
var db *DB
|
||||
|
@ -120,6 +121,11 @@ func testDB(t *testing.T) {
|
|||
ctx, cancelFunc := context.WithCancel(context.Background())
|
||||
defer cancelFunc()
|
||||
|
||||
users := []*directory.User{
|
||||
{Id: "u1", GroupIds: []string{"test", "admin"}},
|
||||
{Id: "u2"},
|
||||
{Id: "u3", GroupIds: []string{"test"}},
|
||||
}
|
||||
ids := []string{"a", "b", "c"}
|
||||
id := ids[0]
|
||||
c := db.pool.Get()
|
||||
|
@ -133,13 +139,13 @@ func testDB(t *testing.T) {
|
|||
assert.Nil(t, record)
|
||||
})
|
||||
t.Run("get record", func(t *testing.T) {
|
||||
data := new(anypb.Any)
|
||||
data, _ := anypb.New(users[0])
|
||||
assert.NoError(t, db.Put(ctx, id, data))
|
||||
record, err := db.Get(ctx, id)
|
||||
require.NoError(t, err)
|
||||
if assert.NotNil(t, record) {
|
||||
assert.NotNil(t, record.CreatedAt)
|
||||
assert.Equal(t, data, record.Data)
|
||||
assert.NotEmpty(t, record.Data)
|
||||
assert.Nil(t, record.DeletedAt)
|
||||
assert.Equal(t, "a", record.Id)
|
||||
assert.NotNil(t, record.ModifiedAt)
|
||||
|
@ -163,9 +169,9 @@ func testDB(t *testing.T) {
|
|||
records, err := db.GetAll(ctx)
|
||||
assert.NoError(t, err)
|
||||
assert.Len(t, records, 0)
|
||||
data := new(anypb.Any)
|
||||
|
||||
for _, id := range ids {
|
||||
for i, id := range ids {
|
||||
data, _ := anypb.New(users[i])
|
||||
assert.NoError(t, db.Put(ctx, id, data))
|
||||
}
|
||||
records, err = db.GetAll(ctx)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue