This repository has been archived by the owner on Nov 25, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 678
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement query to get state and auth chain (#352)
* Implement query to get state and auth chain * Add routing for queryStateAndAuthChain * Comments * Fix fetching wrong set of events * Add tests * Shuffle and comment
- Loading branch information
1 parent
9476a26
commit 9e352e7
Showing
4 changed files
with
357 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
174 changes: 174 additions & 0 deletions
174
src/github.com/matrix-org/dendrite/roomserver/query/query_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,174 @@ | ||
// 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. | ||
|
||
package query | ||
|
||
import ( | ||
"context" | ||
"encoding/json" | ||
"testing" | ||
|
||
"sort" | ||
|
||
"github.com/matrix-org/dendrite/roomserver/types" | ||
"github.com/matrix-org/gomatrixserverlib" | ||
) | ||
|
||
// used to implement RoomserverQueryAPIEventDB to test getAuthChain | ||
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 | ||
} | ||
|
||
event, err := gomatrixserverlib.NewEventFromTrustedJSON(eventJSON, false) | ||
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 | ||
} | ||
|
||
// EventsFromIDs implements RoomserverQueryAPIEventDB | ||
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 | ||
} | ||
|
||
// Returns if the slices are equal after sorting them. | ||
func compareUnsortedStringSlices(a []string, b []string) bool { | ||
if len(a) != len(b) { | ||
return false | ||
} | ||
|
||
sort.Strings(a) | ||
sort.Strings(b) | ||
|
||
for i := range a { | ||
if a[i] != b[i] { | ||
return false | ||
} | ||
} | ||
|
||
return true | ||
} | ||
|
||
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) | ||
} | ||
|
||
result, err := getAuthChain(context.TODO(), db, []string{"e"}) | ||
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"} | ||
|
||
if !compareUnsortedStringSlices(expectedIDs, returnedIDs) { | ||
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) | ||
} | ||
|
||
result, err := getAuthChain(context.TODO(), db, []string{"e", "f"}) | ||
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"} | ||
|
||
if !compareUnsortedStringSlices(expectedIDs, returnedIDs) { | ||
t.Fatalf("returnedIDs got '%v', expected '%v'", returnedIDs, expectedIDs) | ||
} | ||
} |
Oops, something went wrong.