Browse Source

Fix `UsersListTestCase` (#8964)

tags/v1.25.0rc1
Richard van der Hoff 3 years ago
committed by GitHub
parent
commit
c9c1c9d82f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 6 deletions
  1. +1
    -0
      changelog.d/8964.bugfix
  2. +4
    -6
      tests/rest/admin/test_user.py

+ 1
- 0
changelog.d/8964.bugfix View File

@@ -0,0 +1 @@
Fix a bug where deactivated users appeared in the user directory when their profile information was updated.

+ 4
- 6
tests/rest/admin/test_user.py View File

@@ -489,9 +489,7 @@ class UsersListTestCase(unittest.HomeserverTestCase):
"""
other_user_token = self.login("user1", "pass1")

request, channel = self.make_request(
"GET", self.url, access_token=other_user_token,
)
channel = self.make_request("GET", self.url, access_token=other_user_token)

self.assertEqual(403, int(channel.result["code"]), msg=channel.result["body"])
self.assertEqual(Codes.FORBIDDEN, channel.json_body["errcode"])
@@ -540,7 +538,7 @@ class UsersListTestCase(unittest.HomeserverTestCase):
expected_http_code: The expected http code for the request
"""
url = self.url + "?%s=%s" % (search_field, search_term,)
request, channel = self.make_request(
channel = self.make_request(
"GET", url.encode("ascii"), access_token=self.admin_user_tok,
)
self.assertEqual(expected_http_code, channel.code, msg=channel.json_body)
@@ -1026,7 +1024,7 @@ class UserRestTestCase(unittest.HomeserverTestCase):
# Deactivate user
body = json.dumps({"deactivated": True})

request, channel = self.make_request(
channel = self.make_request(
"PUT",
self.url_other_user,
access_token=self.admin_user_tok,
@@ -1044,7 +1042,7 @@ class UserRestTestCase(unittest.HomeserverTestCase):
# Set new displayname user
body = json.dumps({"displayname": "Foobar"})

request, channel = self.make_request(
channel = self.make_request(
"PUT",
self.url_other_user,
access_token=self.admin_user_tok,


Loading…
Cancel
Save