aboutsummaryrefslogtreecommitdiff
path: root/syncapi/syncapi_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'syncapi/syncapi_test.go')
-rw-r--r--syncapi/syncapi_test.go33
1 files changed, 0 insertions, 33 deletions
diff --git a/syncapi/syncapi_test.go b/syncapi/syncapi_test.go
index ac526851..0a2c38ab 100644
--- a/syncapi/syncapi_test.go
+++ b/syncapi/syncapi_test.go
@@ -754,24 +754,6 @@ func TestGetMembership(t *testing.T) {
wantOK: false,
},
{
- name: "/joined_members - Bob never joined",
- request: func(t *testing.T, room *test.Room) *http.Request {
- return test.NewRequest(t, "GET", fmt.Sprintf("/_matrix/client/v3/rooms/%s/joined_members", room.ID), test.WithQueryParams(map[string]string{
- "access_token": bobDev.AccessToken,
- }))
- },
- wantOK: false,
- },
- {
- name: "/joined_members - Alice joined",
- request: func(t *testing.T, room *test.Room) *http.Request {
- return test.NewRequest(t, "GET", fmt.Sprintf("/_matrix/client/v3/rooms/%s/joined_members", room.ID), test.WithQueryParams(map[string]string{
- "access_token": aliceDev.AccessToken,
- }))
- },
- wantOK: true,
- },
- {
name: "Alice leaves before Bob joins, should not be able to see Bob",
request: func(t *testing.T, room *test.Room) *http.Request {
return test.NewRequest(t, "GET", fmt.Sprintf("/_matrix/client/v3/rooms/%s/members", room.ID), test.WithQueryParams(map[string]string{
@@ -810,21 +792,6 @@ func TestGetMembership(t *testing.T) {
wantMemberCount: 2,
},
{
- name: "/joined_members - Alice leaves, shouldn't be able to see members ",
- request: func(t *testing.T, room *test.Room) *http.Request {
- return test.NewRequest(t, "GET", fmt.Sprintf("/_matrix/client/v3/rooms/%s/joined_members", room.ID), test.WithQueryParams(map[string]string{
- "access_token": aliceDev.AccessToken,
- }))
- },
- additionalEvents: func(t *testing.T, room *test.Room) {
- room.CreateAndInsert(t, alice, spec.MRoomMember, map[string]interface{}{
- "membership": "leave",
- }, test.WithStateKey(alice.ID))
- },
- useSleep: true,
- wantOK: false,
- },
- {
name: "'at' specified, returns memberships before Bob joins",
request: func(t *testing.T, room *test.Room) *http.Request {
return test.NewRequest(t, "GET", fmt.Sprintf("/_matrix/client/v3/rooms/%s/members", room.ID), test.WithQueryParams(map[string]string{