2017-11-27 10:20:00 +00:00
|
|
|
// Copyright 2017 Vector Creations Ltd
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2020-05-01 09:48:17 +00:00
|
|
|
package internal
|
2017-11-27 10:20:00 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"encoding/json"
|
|
|
|
"testing"
|
|
|
|
|
2020-05-21 13:40:13 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal/test"
|
2017-11-27 10:20:00 +00:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/types"
|
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
)
|
|
|
|
|
2020-05-01 09:48:17 +00:00
|
|
|
// used to implement RoomserverInternalAPIEventDB to test getAuthChain
|
2017-11-27 10:20:00 +00:00
|
|
|
type getEventDB struct {
|
|
|
|
eventMap map[string]gomatrixserverlib.Event
|
|
|
|
}
|
|
|
|
|
|
|
|
func createEventDB() *getEventDB {
|
|
|
|
return &getEventDB{
|
|
|
|
eventMap: make(map[string]gomatrixserverlib.Event),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Adds a fake event to the storage with given auth events.
|
|
|
|
func (db *getEventDB) addFakeEvent(eventID string, authIDs []string) error {
|
|
|
|
authEvents := []gomatrixserverlib.EventReference{}
|
|
|
|
for _, authID := range authIDs {
|
|
|
|
authEvents = append(authEvents, gomatrixserverlib.EventReference{
|
|
|
|
EventID: authID,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
builder := map[string]interface{}{
|
|
|
|
"event_id": eventID,
|
|
|
|
"auth_events": authEvents,
|
|
|
|
}
|
|
|
|
|
|
|
|
eventJSON, err := json.Marshal(&builder)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-03-27 16:28:22 +00:00
|
|
|
event, err := gomatrixserverlib.NewEventFromTrustedJSON(
|
|
|
|
eventJSON, false, gomatrixserverlib.RoomVersionV1,
|
|
|
|
)
|
2017-11-27 10:20:00 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
db.eventMap[eventID] = event
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Adds multiple events at once, each entry in the map is an eventID and set of
|
|
|
|
// auth events that are converted to an event and added.
|
|
|
|
func (db *getEventDB) addFakeEvents(graph map[string][]string) error {
|
|
|
|
for eventID, authIDs := range graph {
|
|
|
|
err := db.addFakeEvent(eventID, authIDs)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-05-01 09:48:17 +00:00
|
|
|
// EventsFromIDs implements RoomserverInternalAPIEventDB
|
2017-11-27 10:20:00 +00:00
|
|
|
func (db *getEventDB) EventsFromIDs(ctx context.Context, eventIDs []string) (res []types.Event, err error) {
|
|
|
|
for _, evID := range eventIDs {
|
|
|
|
res = append(res, types.Event{
|
|
|
|
EventNID: 0,
|
|
|
|
Event: db.eventMap[evID],
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetAuthChainSingle(t *testing.T) {
|
|
|
|
db := createEventDB()
|
|
|
|
|
|
|
|
err := db.addFakeEvents(map[string][]string{
|
|
|
|
"a": {},
|
|
|
|
"b": {"a"},
|
|
|
|
"c": {"a", "b"},
|
|
|
|
"d": {"b", "c"},
|
|
|
|
"e": {"a", "d"},
|
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Failed to add events to db: %v", err)
|
|
|
|
}
|
|
|
|
|
2020-04-24 09:38:58 +00:00
|
|
|
result, err := getAuthChain(context.TODO(), db.EventsFromIDs, []string{"e"})
|
2017-11-27 10:20:00 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("getAuthChain failed: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
var returnedIDs []string
|
|
|
|
for _, event := range result {
|
|
|
|
returnedIDs = append(returnedIDs, event.EventID())
|
|
|
|
}
|
|
|
|
|
|
|
|
expectedIDs := []string{"a", "b", "c", "d", "e"}
|
|
|
|
|
2018-07-26 16:34:39 +00:00
|
|
|
if !test.UnsortedStringSliceEqual(expectedIDs, returnedIDs) {
|
2017-11-27 10:20:00 +00:00
|
|
|
t.Fatalf("returnedIDs got '%v', expected '%v'", returnedIDs, expectedIDs)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetAuthChainMultiple(t *testing.T) {
|
|
|
|
db := createEventDB()
|
|
|
|
|
|
|
|
err := db.addFakeEvents(map[string][]string{
|
|
|
|
"a": {},
|
|
|
|
"b": {"a"},
|
|
|
|
"c": {"a", "b"},
|
|
|
|
"d": {"b", "c"},
|
|
|
|
"e": {"a", "d"},
|
|
|
|
"f": {"a", "b", "c"},
|
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Failed to add events to db: %v", err)
|
|
|
|
}
|
|
|
|
|
2020-04-24 09:38:58 +00:00
|
|
|
result, err := getAuthChain(context.TODO(), db.EventsFromIDs, []string{"e", "f"})
|
2017-11-27 10:20:00 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("getAuthChain failed: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
var returnedIDs []string
|
|
|
|
for _, event := range result {
|
|
|
|
returnedIDs = append(returnedIDs, event.EventID())
|
|
|
|
}
|
|
|
|
|
|
|
|
expectedIDs := []string{"a", "b", "c", "d", "e", "f"}
|
|
|
|
|
2018-07-26 16:34:39 +00:00
|
|
|
if !test.UnsortedStringSliceEqual(expectedIDs, returnedIDs) {
|
2017-11-27 10:20:00 +00:00
|
|
|
t.Fatalf("returnedIDs got '%v', expected '%v'", returnedIDs, expectedIDs)
|
|
|
|
}
|
|
|
|
}
|