aboutsummaryrefslogtreecommitdiff
path: root/roomserver/auth/auth_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'roomserver/auth/auth_test.go')
-rw-r--r--roomserver/auth/auth_test.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/roomserver/auth/auth_test.go b/roomserver/auth/auth_test.go
index 192d9e5d..058361e6 100644
--- a/roomserver/auth/auth_test.go
+++ b/roomserver/auth/auth_test.go
@@ -4,17 +4,17 @@ import (
"context"
"testing"
- "github.com/matrix-org/dendrite/roomserver/storage"
+ "github.com/matrix-org/dendrite/roomserver/api"
"github.com/matrix-org/dendrite/test"
"github.com/matrix-org/gomatrixserverlib"
"github.com/matrix-org/gomatrixserverlib/spec"
)
-type FakeStorageDB struct {
- storage.RoomDatabase
+type FakeQuerier struct {
+ api.QuerySenderIDAPI
}
-func (f *FakeStorageDB) GetUserIDForSender(ctx context.Context, roomID string, senderID spec.SenderID) (*spec.UserID, error) {
+func (f *FakeQuerier) QueryUserIDForSender(ctx context.Context, roomID spec.RoomID, senderID spec.SenderID) (*spec.UserID, error) {
return spec.NewUserID(string(senderID), true)
}
@@ -87,7 +87,7 @@ func TestIsServerAllowed(t *testing.T) {
authEvents = append(authEvents, ev.PDU)
}
- if got := IsServerAllowed(context.Background(), &FakeStorageDB{}, tt.serverName, tt.serverCurrentlyInRoom, authEvents); got != tt.want {
+ if got := IsServerAllowed(context.Background(), &FakeQuerier{}, tt.serverName, tt.serverCurrentlyInRoom, authEvents); got != tt.want {
t.Errorf("IsServerAllowed() = %v, want %v", got, tt.want)
}
})