diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2018-05-22 11:56:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-22 11:56:09 +0100 |
commit | 8aeb529262ca686b149576f514958a62fb961af1 (patch) | |
tree | 794a25f36f274fa857a7bcd5b7c73a2b09723d09 /tests | |
parent | Merge pull request #3258 from matrix-org/erikj/fixup_logcontext_rusage (diff) | |
parent | Stub out ServerNoticesSender on the workers (diff) | |
download | synapse-8aeb529262ca686b149576f514958a62fb961af1.tar.xz |
Merge pull request #3236 from matrix-org/rav/consent_notice
Send users a server notice about consent
Diffstat (limited to 'tests')
-rw-r--r-- | tests/storage/test_registration.py | 11 | ||||
-rw-r--r-- | tests/utils.py | 1 |
2 files changed, 9 insertions, 3 deletions
diff --git a/tests/storage/test_registration.py b/tests/storage/test_registration.py index 7c7b164ee6..cc637dda1c 100644 --- a/tests/storage/test_registration.py +++ b/tests/storage/test_registration.py @@ -42,9 +42,14 @@ class RegistrationStoreTestCase(unittest.TestCase): yield self.store.register(self.user_id, self.tokens[0], self.pwhash) self.assertEquals( - # TODO(paul): Surely this field should be 'user_id', not 'name' - # Additionally surely it shouldn't come in a 1-element list - {"name": self.user_id, "password_hash": self.pwhash, "is_guest": 0}, + { + # TODO(paul): Surely this field should be 'user_id', not 'name' + "name": self.user_id, + "password_hash": self.pwhash, + "is_guest": 0, + "consent_version": None, + "consent_server_notice_sent": None, + }, (yield self.store.get_user_by_id(self.user_id)) ) diff --git a/tests/utils.py b/tests/utils.py index c2beb5d9f7..9626e6fd78 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -63,6 +63,7 @@ def setup_test_homeserver(name="test", datastore=None, config=None, **kargs): config.federation_rc_concurrent = 10 config.filter_timeline_limit = 5000 config.user_directory_search_all_users = False + config.user_consent_server_notice_content = None # disable user directory updates, because they get done in the # background, which upsets the test runner. |