This repository was archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Add authentication to thirdparty bridge APIs #12746
Merged
Merged
Changes from 1 commit
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
dbbf926
Add authentication to thirdparty bridge APIs
Half-Shot 1474fc2
Add args as any
Half-Shot df3554c
changelog
Half-Shot fe43fe3
Add tests for api
Half-Shot 4a45161
Update test_api.py
Half-Shot b46c626
Update changelog.d/12746.bugfix
Half-Shot 50b04f7
fix lint
Half-Shot 0520ac7
fix
Half-Shot 512ebca
Tidy tidy according to review
Half-Shot 8782cdf
Add raise RuntimeError("This should never be seen.")
Half-Shot 94e98af
final review bits
Half-Shot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Tidy tidy according to review
- Loading branch information
commit 512ebcaaea4a47fa5ef5b3049316cf34fff7014e
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
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -27,42 +27,52 @@ | |||||
PROTOCOL = "myproto" | ||||||
TOKEN = "myastoken" | ||||||
URL = "http://mytestservice" | ||||||
URL_USER = f"{URL}/_matrix/app/unstable/thirdparty/user/{PROTOCOL}" | ||||||
URL_LOCATION = f"{URL}/_matrix/app/unstable/thirdparty/location/{PROTOCOL}" | ||||||
SUCCESS_RESULT_USER = [ | ||||||
{ | ||||||
"protocol": PROTOCOL, | ||||||
"userid": "@a:user", | ||||||
"fields": { | ||||||
"more": "fields", | ||||||
}, | ||||||
} | ||||||
] | ||||||
SUCCESS_RESULT_LOCATION = [ | ||||||
{ | ||||||
"protocol": PROTOCOL, | ||||||
"alias": "#a:room", | ||||||
"fields": { | ||||||
"more": "fields", | ||||||
}, | ||||||
} | ||||||
] | ||||||
|
||||||
|
||||||
class ApplicationServiceApiTestCase(unittest.HomeserverTestCase): | ||||||
def prepare(self, reactor: MemoryReactor, clock: Clock, hs: HomeServer): | ||||||
self.api = ApplicationServiceApi(hs) | ||||||
self.service = ApplicationService( | ||||||
id="unique_identifier", | ||||||
sender="@as:test", | ||||||
url=URL, | ||||||
token="unused", | ||||||
hs_token=TOKEN, | ||||||
hostname="myserver", | ||||||
) | ||||||
|
||||||
def test_query_3pe_authenticates_token(self): | ||||||
babolivier marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
|
||||||
SUCCESS_RESULT_USER = [ | ||||||
{ | ||||||
"protocol": PROTOCOL, | ||||||
"userid": "@a:user", | ||||||
"fields": { | ||||||
"more": "fields", | ||||||
}, | ||||||
} | ||||||
] | ||||||
SUCCESS_RESULT_LOCATION = [ | ||||||
{ | ||||||
"protocol": PROTOCOL, | ||||||
"alias": "#a:room", | ||||||
"fields": { | ||||||
"more": "fields", | ||||||
}, | ||||||
} | ||||||
] | ||||||
|
||||||
URL_USER = f"{URL}/_matrix/app/unstable/thirdparty/user/{PROTOCOL}" | ||||||
URL_LOCATION = f"{URL}/_matrix/app/unstable/thirdparty/location/{PROTOCOL}" | ||||||
|
||||||
self.request_url = None | ||||||
self.fields = None | ||||||
|
||||||
async def get_json(url: str, args: Mapping[Any, Any]) -> List[JsonDict]: | ||||||
if not args.get(b"access_token"): | ||||||
raise Exception("Access token not provided") | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
For consistency |
||||||
|
||||||
self.assertEqual(args.get(b"access_token"), TOKEN) | ||||||
self.request_url = url | ||||||
self.fields = args | ||||||
if url == URL_USER: | ||||||
return SUCCESS_RESULT_USER | ||||||
elif url == URL_LOCATION: | ||||||
|
@@ -71,17 +81,9 @@ async def get_json(url: str, args: Mapping[Any, Any]) -> List[JsonDict]: | |||||
self.fail("URL provided was invalid") | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Note that this is now a bit unnecessary since raising the |
||||||
return [] | ||||||
|
||||||
self.api.get_json = Mock(side_effect=get_json) # type: ignore[assignment] # We assign to a method. | ||||||
self.service = ApplicationService( | ||||||
id="unique_identifier", | ||||||
sender="@as:test", | ||||||
url=URL, | ||||||
token="unused", | ||||||
hs_token=TOKEN, | ||||||
hostname="myserver", | ||||||
) | ||||||
# We assign to a method, which mypy doesn't like. | ||||||
self.api.get_json = Mock(side_effect=get_json) # type: ignore[assignment] | ||||||
|
||||||
def test_query_3pe_authenticates_token(self): | ||||||
result = self.get_success( | ||||||
self.api.query_3pe(self.service, "user", PROTOCOL, {b"some": [b"field"]}) | ||||||
) | ||||||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It probably doesn't make that much of a difference, but it's more consistent with how we access this kind of objects in tests.