mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
Add a test case for the SendJoinParser (#11441)
This would have caught the bug #11438 introduced in #11217 and fixed in #11439.
This commit is contained in:
parent
e5c5e213ea
commit
776ad3e5e9
1
changelog.d/11441.misc
Normal file
1
changelog.d/11441.misc
Normal file
@ -0,0 +1 @@
|
||||
Fix a bug introduced in 1.47.0 where `send_join` could fail due to an outdated `ijson` version.
|
4
mypy.ini
4
mypy.ini
@ -222,6 +222,10 @@ disallow_untyped_defs = True
|
||||
[mypy-tests.rest.client.test_directory]
|
||||
disallow_untyped_defs = True
|
||||
|
||||
[mypy-tests.federation.transport.test_client]
|
||||
disallow_untyped_defs = True
|
||||
|
||||
|
||||
;; Dependencies without annotations
|
||||
;; Before ignoring a module, check to see if type stubs are available.
|
||||
;; The `typeshed` project maintains stubs here:
|
||||
|
50
tests/federation/transport/test_client.py
Normal file
50
tests/federation/transport/test_client.py
Normal file
@ -0,0 +1,50 @@
|
||||
import json
|
||||
|
||||
from synapse.api.room_versions import RoomVersions
|
||||
from synapse.federation.transport.client import SendJoinParser
|
||||
|
||||
from tests.unittest import TestCase
|
||||
|
||||
|
||||
class SendJoinParserTestCase(TestCase):
|
||||
def test_two_writes(self) -> None:
|
||||
"""Test that the parser can sensibly deserialise an input given in two slices."""
|
||||
parser = SendJoinParser(RoomVersions.V1, True)
|
||||
parent_event = {
|
||||
"content": {
|
||||
"see_room_version_spec": "The event format changes depending on the room version."
|
||||
},
|
||||
"event_id": "$authparent",
|
||||
"room_id": "!somewhere:example.org",
|
||||
"type": "m.room.minimal_pdu",
|
||||
}
|
||||
state = {
|
||||
"content": {
|
||||
"see_room_version_spec": "The event format changes depending on the room version."
|
||||
},
|
||||
"event_id": "$DoNotThinkAboutTheEvent",
|
||||
"room_id": "!somewhere:example.org",
|
||||
"type": "m.room.minimal_pdu",
|
||||
}
|
||||
response = [
|
||||
200,
|
||||
{
|
||||
"auth_chain": [parent_event],
|
||||
"origin": "matrix.org",
|
||||
"state": [state],
|
||||
},
|
||||
]
|
||||
serialised_response = json.dumps(response).encode()
|
||||
|
||||
# Send data to the parser
|
||||
parser.write(serialised_response[:100])
|
||||
parser.write(serialised_response[100:])
|
||||
|
||||
# Retrieve the parsed SendJoinResponse
|
||||
parsed_response = parser.finish()
|
||||
|
||||
# Sanity check the parsing gave us sensible data.
|
||||
self.assertEqual(len(parsed_response.auth_events), 1, parsed_response)
|
||||
self.assertEqual(len(parsed_response.state), 1, parsed_response)
|
||||
self.assertEqual(parsed_response.event_dict, {}, parsed_response)
|
||||
self.assertIsNone(parsed_response.event, parsed_response)
|
Loading…
Reference in New Issue
Block a user