summary refs log tree commit diff
path: root/tests/unittest.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-10-27Fix bad mergeErik Johnston1-1/+3
2017-10-27Add jitter to validity period of attestationsErik Johnston1-1/+12
This helps ensure that the renewals of attestations are spread out more evenly.
2017-10-27Add comment about attestationsErik Johnston1-0/+22
2017-10-27Request is_public from databaseLuke Barnard1-1/+3
2017-10-27group is dictLuke Barnard1-1/+1
2017-10-27Create groups with is_public = TrueLuke Barnard1-0/+1
2017-10-27Docstring for post_urlencoded_get_jsonRichard van der Hoff1-0/+11
2017-10-27Fix create_group to pass requester_user_idLuke Barnard1-1/+1
2017-10-27Import loggerErik Johnston1-0/+5
2017-10-27Correct logic for checking private group membershipLuke Barnard1-1/+1
2017-10-27FixupErik Johnston2-5/+5
2017-10-27Remove incorrect attestationsErik Johnston2-0/+19
2017-10-27Log if we try to do attestations for our own user and groupErik Johnston1-2/+8
2017-10-27Don't generate group attestations for local usersErik Johnston1-2/+3
2017-10-27Device deletion: check UI auth matches access tokenRichard van der Hoff1-5/+8
(otherwise there's no point in the UI auth)
2017-10-27spell out need for libxml2 for lxml to workMatthew Hodgson1-1/+3
2017-10-27Allow ASes to deactivate their own usersRichard van der Hoff2-17/+33
2017-10-26Front-end proxy: pass through auth headerRichard van der Hoff1-0/+7
So that access-token-in-an-auth-header works.
2017-10-26Support /keys/upload on /r0 as well as /unstableRichard van der Hoff1-2/+1
(So that we can stop riot relying on it in /unstable)
2017-10-26Fix logcontext leaks in httpclientRichard van der Hoff1-10/+9
`preserve_context_over_fn` is borked
2017-10-26SimpleHTTPClient: add support for headersRichard van der Hoff1-28/+69
Sometimes we need to pass headers into these methods
2017-10-26Make it workLuke Barnard1-1/+1
2017-10-26Recreate groups table instead of adding columnLuke Barnard1-2/+16
Adding a column with non-constant default not possible in sqlite3
2017-10-26Awful hack to get default trueLuke Barnard1-1/+2
2017-10-26Add groups table to BOOLEAN_COLUMNS in synapse_port_dbLuke Barnard1-0/+1
2017-10-26Bump schema version to 46Luke Barnard1-1/+1
2017-10-26delintLuke Barnard2-15/+67
2017-10-26Add is_public to groups table to allow for private groupsLuke Barnard3-95/+116
Prevent group API access to non-members for private groups Also make all the group code paths consistent with `requester_user_id` always being the User ID of the requesting user.
2017-10-26Fix error when running synapse with no logfileRichard van der Hoff1-1/+5
Fixes 'UnboundLocalError: local variable 'sighup' referenced before assignment'
2017-10-26add release endpoints for /thirdpartyKrombel1-7/+4
2017-10-26register some /unstable endpoints in /r0 as wellKrombel4-20/+9
2017-10-26Document import rulesRichard van der Hoff1-0/+44
2017-10-26code_style: more formattingRichard van der Hoff1-34/+57
2017-10-26Update room_list.pyErik Johnston1-1/+1
2017-10-26code_style.rst: a couple of tidyupsRichard van der Hoff1-9/+9
2017-10-26Fix port scriptErik Johnston1-0/+1
We changed _simple_update_one_txn to use _simple_update_txn but didn't yank it out in the port script. Fixes #2565
2017-10-25Do logcontexts outside ResponseCacheErik Johnston5-13/+21
2017-10-25Add logging and fix log contexts for publicRoomsErik Johnston2-1/+4
2017-10-24tip for generating tls_fingerprintsMatthew Hodgson1-0/+6
2017-10-24Bump version and changelog github/release-v0.24.1 release-v0.24.1Erik Johnston2-1/+9
2017-10-23fix vars named `l`Richard van der Hoff2-7/+4
E741 says "do not use variables named ‘l’, ‘O’, or ‘I’".
2017-10-23replace 'except:' with 'except Exception:'Richard van der Hoff54-93/+93
what could possibly go wrong
2017-10-23Correctly wire in update group profile over federationErik Johnston2-11/+31
2017-10-23Fix a logcontext leak in the media repoRichard van der Hoff1-1/+4
2017-10-23Bump version and changelog github/release-v0.24.0 release-v0.24.0Erik Johnston2-1/+7
2017-10-21Validate group ids when parsingRichard van der Hoff3-17/+45
May as well do it whenever we parse a Group ID. We check the sigil and basic structure here so it makes sense to check the grammar in the same place.
2017-10-20Allow = in mxids and groupidsRichard van der Hoff3-5/+4
... because the spec says we should.
2017-10-20Disallow capital letters in useridsRichard van der Hoff3-16/+25
Factor out a common function for checking user ids and group ids, which forbids capitals.
2017-10-20Remove pointless create() methodRichard van der Hoff6-12/+8
It just calls the constructor, so we may as well kill it rather than having random codepaths.
2017-10-19