You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

723 lines
26 KiB

  1. # Copyright 2018 New Vector
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. from unittest.mock import Mock
  15. from twisted.internet.defer import Deferred
  16. import synapse.rest.admin
  17. from synapse.logging.context import make_deferred_yieldable
  18. from synapse.push import PusherConfigException
  19. from synapse.rest.client import login, receipts, room
  20. from tests.unittest import HomeserverTestCase, override_config
  21. class HTTPPusherTests(HomeserverTestCase):
  22. servlets = [
  23. synapse.rest.admin.register_servlets_for_client_rest_resource,
  24. room.register_servlets,
  25. login.register_servlets,
  26. receipts.register_servlets,
  27. ]
  28. user_id = True
  29. hijack_auth = False
  30. def default_config(self):
  31. config = super().default_config()
  32. config["start_pushers"] = True
  33. return config
  34. def make_homeserver(self, reactor, clock):
  35. self.push_attempts = []
  36. m = Mock()
  37. def post_json_get_json(url, body):
  38. d = Deferred()
  39. self.push_attempts.append((d, url, body))
  40. return make_deferred_yieldable(d)
  41. m.post_json_get_json = post_json_get_json
  42. hs = self.setup_test_homeserver(proxied_blacklisted_http_client=m)
  43. return hs
  44. def test_invalid_configuration(self):
  45. """Invalid push configurations should be rejected."""
  46. # Register the user who gets notified
  47. user_id = self.register_user("user", "pass")
  48. access_token = self.login("user", "pass")
  49. # Register the pusher
  50. user_tuple = self.get_success(
  51. self.hs.get_datastore().get_user_by_access_token(access_token)
  52. )
  53. token_id = user_tuple.token_id
  54. def test_data(data):
  55. self.get_failure(
  56. self.hs.get_pusherpool().add_pusher(
  57. user_id=user_id,
  58. access_token=token_id,
  59. kind="http",
  60. app_id="m.http",
  61. app_display_name="HTTP Push Notifications",
  62. device_display_name="pushy push",
  63. pushkey="a@example.com",
  64. lang=None,
  65. data=data,
  66. ),
  67. PusherConfigException,
  68. )
  69. # Data must be provided with a URL.
  70. test_data(None)
  71. test_data({})
  72. test_data({"url": 1})
  73. # A bare domain name isn't accepted.
  74. test_data({"url": "example.com"})
  75. # A URL without a path isn't accepted.
  76. test_data({"url": "http://example.com"})
  77. # A url with an incorrect path isn't accepted.
  78. test_data({"url": "http://example.com/foo"})
  79. def test_sends_http(self):
  80. """
  81. The HTTP pusher will send pushes for each message to a HTTP endpoint
  82. when configured to do so.
  83. """
  84. # Register the user who gets notified
  85. user_id = self.register_user("user", "pass")
  86. access_token = self.login("user", "pass")
  87. # Register the user who sends the message
  88. other_user_id = self.register_user("otheruser", "pass")
  89. other_access_token = self.login("otheruser", "pass")
  90. # Register the pusher
  91. user_tuple = self.get_success(
  92. self.hs.get_datastore().get_user_by_access_token(access_token)
  93. )
  94. token_id = user_tuple.token_id
  95. self.get_success(
  96. self.hs.get_pusherpool().add_pusher(
  97. user_id=user_id,
  98. access_token=token_id,
  99. kind="http",
  100. app_id="m.http",
  101. app_display_name="HTTP Push Notifications",
  102. device_display_name="pushy push",
  103. pushkey="a@example.com",
  104. lang=None,
  105. data={"url": "http://example.com/_matrix/push/v1/notify"},
  106. )
  107. )
  108. # Create a room
  109. room = self.helper.create_room_as(user_id, tok=access_token)
  110. # The other user joins
  111. self.helper.join(room=room, user=other_user_id, tok=other_access_token)
  112. # The other user sends some messages
  113. self.helper.send(room, body="Hi!", tok=other_access_token)
  114. self.helper.send(room, body="There!", tok=other_access_token)
  115. # Get the stream ordering before it gets sent
  116. pushers = self.get_success(
  117. self.hs.get_datastore().get_pushers_by({"user_name": user_id})
  118. )
  119. pushers = list(pushers)
  120. self.assertEqual(len(pushers), 1)
  121. last_stream_ordering = pushers[0].last_stream_ordering
  122. # Advance time a bit, so the pusher will register something has happened
  123. self.pump()
  124. # It hasn't succeeded yet, so the stream ordering shouldn't have moved
  125. pushers = self.get_success(
  126. self.hs.get_datastore().get_pushers_by({"user_name": user_id})
  127. )
  128. pushers = list(pushers)
  129. self.assertEqual(len(pushers), 1)
  130. self.assertEqual(last_stream_ordering, pushers[0].last_stream_ordering)
  131. # One push was attempted to be sent -- it'll be the first message
  132. self.assertEqual(len(self.push_attempts), 1)
  133. self.assertEqual(
  134. self.push_attempts[0][1], "http://example.com/_matrix/push/v1/notify"
  135. )
  136. self.assertEqual(
  137. self.push_attempts[0][2]["notification"]["content"]["body"], "Hi!"
  138. )
  139. # Make the push succeed
  140. self.push_attempts[0][0].callback({})
  141. self.pump()
  142. # The stream ordering has increased
  143. pushers = self.get_success(
  144. self.hs.get_datastore().get_pushers_by({"user_name": user_id})
  145. )
  146. pushers = list(pushers)
  147. self.assertEqual(len(pushers), 1)
  148. self.assertTrue(pushers[0].last_stream_ordering > last_stream_ordering)
  149. last_stream_ordering = pushers[0].last_stream_ordering
  150. # Now it'll try and send the second push message, which will be the second one
  151. self.assertEqual(len(self.push_attempts), 2)
  152. self.assertEqual(
  153. self.push_attempts[1][1], "http://example.com/_matrix/push/v1/notify"
  154. )
  155. self.assertEqual(
  156. self.push_attempts[1][2]["notification"]["content"]["body"], "There!"
  157. )
  158. # Make the second push succeed
  159. self.push_attempts[1][0].callback({})
  160. self.pump()
  161. # The stream ordering has increased, again
  162. pushers = self.get_success(
  163. self.hs.get_datastore().get_pushers_by({"user_name": user_id})
  164. )
  165. pushers = list(pushers)
  166. self.assertEqual(len(pushers), 1)
  167. self.assertTrue(pushers[0].last_stream_ordering > last_stream_ordering)
  168. def test_sends_high_priority_for_encrypted(self):
  169. """
  170. The HTTP pusher will send pushes at high priority if they correspond
  171. to an encrypted message.
  172. This will happen both in 1:1 rooms and larger rooms.
  173. """
  174. # Register the user who gets notified
  175. user_id = self.register_user("user", "pass")
  176. access_token = self.login("user", "pass")
  177. # Register the user who sends the message
  178. other_user_id = self.register_user("otheruser", "pass")
  179. other_access_token = self.login("otheruser", "pass")
  180. # Register a third user
  181. yet_another_user_id = self.register_user("yetanotheruser", "pass")
  182. yet_another_access_token = self.login("yetanotheruser", "pass")
  183. # Create a room
  184. room = self.helper.create_room_as(user_id, tok=access_token)
  185. # The other user joins
  186. self.helper.join(room=room, user=other_user_id, tok=other_access_token)
  187. # Register the pusher
  188. user_tuple = self.get_success(
  189. self.hs.get_datastore().get_user_by_access_token(access_token)
  190. )
  191. token_id = user_tuple.token_id
  192. self.get_success(
  193. self.hs.get_pusherpool().add_pusher(
  194. user_id=user_id,
  195. access_token=token_id,
  196. kind="http",
  197. app_id="m.http",
  198. app_display_name="HTTP Push Notifications",
  199. device_display_name="pushy push",
  200. pushkey="a@example.com",
  201. lang=None,
  202. data={"url": "http://example.com/_matrix/push/v1/notify"},
  203. )
  204. )
  205. # Send an encrypted event
  206. # I know there'd normally be set-up of an encrypted room first
  207. # but this will do for our purposes
  208. self.helper.send_event(
  209. room,
  210. "m.room.encrypted",
  211. content={
  212. "algorithm": "m.megolm.v1.aes-sha2",
  213. "sender_key": "6lImKbzK51MzWLwHh8tUM3UBBSBrLlgup/OOCGTvumM",
  214. "ciphertext": "AwgAErABoRxwpMipdgiwXgu46rHiWQ0DmRj0qUlPrMraBUDk"
  215. "leTnJRljpuc7IOhsYbLY3uo2WI0ab/ob41sV+3JEIhODJPqH"
  216. "TK7cEZaIL+/up9e+dT9VGF5kRTWinzjkeqO8FU5kfdRjm+3w"
  217. "0sy3o1OCpXXCfO+faPhbV/0HuK4ndx1G+myNfK1Nk/CxfMcT"
  218. "BT+zDS/Df/QePAHVbrr9uuGB7fW8ogW/ulnydgZPRluusFGv"
  219. "J3+cg9LoPpZPAmv5Me3ec7NtdlfN0oDZ0gk3TiNkkhsxDG9Y"
  220. "YcNzl78USI0q8+kOV26Bu5dOBpU4WOuojXZHJlP5lMgdzLLl"
  221. "EQ0",
  222. "session_id": "IigqfNWLL+ez/Is+Duwp2s4HuCZhFG9b9CZKTYHtQ4A",
  223. "device_id": "AHQDUSTAAA",
  224. },
  225. tok=other_access_token,
  226. )
  227. # Advance time a bit, so the pusher will register something has happened
  228. self.pump()
  229. # Make the push succeed
  230. self.push_attempts[0][0].callback({})
  231. self.pump()
  232. # Check our push made it with high priority
  233. self.assertEqual(len(self.push_attempts), 1)
  234. self.assertEqual(
  235. self.push_attempts[0][1], "http://example.com/_matrix/push/v1/notify"
  236. )
  237. self.assertEqual(self.push_attempts[0][2]["notification"]["prio"], "high")
  238. # Add yet another person — we want to make this room not a 1:1
  239. # (as encrypted messages in a 1:1 currently have tweaks applied
  240. # so it doesn't properly exercise the condition of all encrypted
  241. # messages need to be high).
  242. self.helper.join(
  243. room=room, user=yet_another_user_id, tok=yet_another_access_token
  244. )
  245. # Check no push notifications are sent regarding the membership changes
  246. # (that would confuse the test)
  247. self.pump()
  248. self.assertEqual(len(self.push_attempts), 1)
  249. # Send another encrypted event
  250. self.helper.send_event(
  251. room,
  252. "m.room.encrypted",
  253. content={
  254. "ciphertext": "AwgAEoABtEuic/2DF6oIpNH+q/PonzlhXOVho8dTv0tzFr5m"
  255. "9vTo50yabx3nxsRlP2WxSqa8I07YftP+EKWCWJvTkg6o7zXq"
  256. "6CK+GVvLQOVgK50SfvjHqJXN+z1VEqj+5mkZVN/cAgJzoxcH"
  257. "zFHkwDPJC8kQs47IHd8EO9KBUK4v6+NQ1uE/BIak4qAf9aS/"
  258. "kI+f0gjn9IY9K6LXlah82A/iRyrIrxkCkE/n0VfvLhaWFecC"
  259. "sAWTcMLoF6fh1Jpke95mljbmFSpsSd/eEQw",
  260. "device_id": "SRCFTWTHXO",
  261. "session_id": "eMA+bhGczuTz1C5cJR1YbmrnnC6Goni4lbvS5vJ1nG4",
  262. "algorithm": "m.megolm.v1.aes-sha2",
  263. "sender_key": "rC/XSIAiYrVGSuaHMop8/pTZbku4sQKBZwRwukgnN1c",
  264. },
  265. tok=other_access_token,
  266. )
  267. # Advance time a bit, so the pusher will register something has happened
  268. self.pump()
  269. self.assertEqual(len(self.push_attempts), 2)
  270. self.assertEqual(
  271. self.push_attempts[1][1], "http://example.com/_matrix/push/v1/notify"
  272. )
  273. self.assertEqual(self.push_attempts[1][2]["notification"]["prio"], "high")
  274. def test_sends_high_priority_for_one_to_one_only(self):
  275. """
  276. The HTTP pusher will send pushes at high priority if they correspond
  277. to a message in a one-to-one room.
  278. """
  279. # Register the user who gets notified
  280. user_id = self.register_user("user", "pass")
  281. access_token = self.login("user", "pass")
  282. # Register the user who sends the message
  283. other_user_id = self.register_user("otheruser", "pass")
  284. other_access_token = self.login("otheruser", "pass")
  285. # Register a third user
  286. yet_another_user_id = self.register_user("yetanotheruser", "pass")
  287. yet_another_access_token = self.login("yetanotheruser", "pass")
  288. # Create a room
  289. room = self.helper.create_room_as(user_id, tok=access_token)
  290. # The other user joins
  291. self.helper.join(room=room, user=other_user_id, tok=other_access_token)
  292. # Register the pusher
  293. user_tuple = self.get_success(
  294. self.hs.get_datastore().get_user_by_access_token(access_token)
  295. )
  296. token_id = user_tuple.token_id
  297. self.get_success(
  298. self.hs.get_pusherpool().add_pusher(
  299. user_id=user_id,
  300. access_token=token_id,
  301. kind="http",
  302. app_id="m.http",
  303. app_display_name="HTTP Push Notifications",
  304. device_display_name="pushy push",
  305. pushkey="a@example.com",
  306. lang=None,
  307. data={"url": "http://example.com/_matrix/push/v1/notify"},
  308. )
  309. )
  310. # Send a message
  311. self.helper.send(room, body="Hi!", tok=other_access_token)
  312. # Advance time a bit, so the pusher will register something has happened
  313. self.pump()
  314. # Make the push succeed
  315. self.push_attempts[0][0].callback({})
  316. self.pump()
  317. # Check our push made it with high priority — this is a one-to-one room
  318. self.assertEqual(len(self.push_attempts), 1)
  319. self.assertEqual(
  320. self.push_attempts[0][1], "http://example.com/_matrix/push/v1/notify"
  321. )
  322. self.assertEqual(self.push_attempts[0][2]["notification"]["prio"], "high")
  323. # Yet another user joins
  324. self.helper.join(
  325. room=room, user=yet_another_user_id, tok=yet_another_access_token
  326. )
  327. # Check no push notifications are sent regarding the membership changes
  328. # (that would confuse the test)
  329. self.pump()
  330. self.assertEqual(len(self.push_attempts), 1)
  331. # Send another event
  332. self.helper.send(room, body="Welcome!", tok=other_access_token)
  333. # Advance time a bit, so the pusher will register something has happened
  334. self.pump()
  335. self.assertEqual(len(self.push_attempts), 2)
  336. self.assertEqual(
  337. self.push_attempts[1][1], "http://example.com/_matrix/push/v1/notify"
  338. )
  339. # check that this is low-priority
  340. self.assertEqual(self.push_attempts[1][2]["notification"]["prio"], "low")
  341. def test_sends_high_priority_for_mention(self):
  342. """
  343. The HTTP pusher will send pushes at high priority if they correspond
  344. to a message containing the user's display name.
  345. """
  346. # Register the user who gets notified
  347. user_id = self.register_user("user", "pass")
  348. access_token = self.login("user", "pass")
  349. # Register the user who sends the message
  350. other_user_id = self.register_user("otheruser", "pass")
  351. other_access_token = self.login("otheruser", "pass")
  352. # Register a third user
  353. yet_another_user_id = self.register_user("yetanotheruser", "pass")
  354. yet_another_access_token = self.login("yetanotheruser", "pass")
  355. # Create a room
  356. room = self.helper.create_room_as(user_id, tok=access_token)
  357. # The other users join
  358. self.helper.join(room=room, user=other_user_id, tok=other_access_token)
  359. self.helper.join(
  360. room=room, user=yet_another_user_id, tok=yet_another_access_token
  361. )
  362. # Register the pusher
  363. user_tuple = self.get_success(
  364. self.hs.get_datastore().get_user_by_access_token(access_token)
  365. )
  366. token_id = user_tuple.token_id
  367. self.get_success(
  368. self.hs.get_pusherpool().add_pusher(
  369. user_id=user_id,
  370. access_token=token_id,
  371. kind="http",
  372. app_id="m.http",
  373. app_display_name="HTTP Push Notifications",
  374. device_display_name="pushy push",
  375. pushkey="a@example.com",
  376. lang=None,
  377. data={"url": "http://example.com/_matrix/push/v1/notify"},
  378. )
  379. )
  380. # Send a message
  381. self.helper.send(room, body="Oh, user, hello!", tok=other_access_token)
  382. # Advance time a bit, so the pusher will register something has happened
  383. self.pump()
  384. # Make the push succeed
  385. self.push_attempts[0][0].callback({})
  386. self.pump()
  387. # Check our push made it with high priority
  388. self.assertEqual(len(self.push_attempts), 1)
  389. self.assertEqual(
  390. self.push_attempts[0][1], "http://example.com/_matrix/push/v1/notify"
  391. )
  392. self.assertEqual(self.push_attempts[0][2]["notification"]["prio"], "high")
  393. # Send another event, this time with no mention
  394. self.helper.send(room, body="Are you there?", tok=other_access_token)
  395. # Advance time a bit, so the pusher will register something has happened
  396. self.pump()
  397. self.assertEqual(len(self.push_attempts), 2)
  398. self.assertEqual(
  399. self.push_attempts[1][1], "http://example.com/_matrix/push/v1/notify"
  400. )
  401. # check that this is low-priority
  402. self.assertEqual(self.push_attempts[1][2]["notification"]["prio"], "low")
  403. def test_sends_high_priority_for_atroom(self):
  404. """
  405. The HTTP pusher will send pushes at high priority if they correspond
  406. to a message that contains @room.
  407. """
  408. # Register the user who gets notified
  409. user_id = self.register_user("user", "pass")
  410. access_token = self.login("user", "pass")
  411. # Register the user who sends the message
  412. other_user_id = self.register_user("otheruser", "pass")
  413. other_access_token = self.login("otheruser", "pass")
  414. # Register a third user
  415. yet_another_user_id = self.register_user("yetanotheruser", "pass")
  416. yet_another_access_token = self.login("yetanotheruser", "pass")
  417. # Create a room (as other_user so the power levels are compatible with
  418. # other_user sending @room).
  419. room = self.helper.create_room_as(other_user_id, tok=other_access_token)
  420. # The other users join
  421. self.helper.join(room=room, user=user_id, tok=access_token)
  422. self.helper.join(
  423. room=room, user=yet_another_user_id, tok=yet_another_access_token
  424. )
  425. # Register the pusher
  426. user_tuple = self.get_success(
  427. self.hs.get_datastore().get_user_by_access_token(access_token)
  428. )
  429. token_id = user_tuple.token_id
  430. self.get_success(
  431. self.hs.get_pusherpool().add_pusher(
  432. user_id=user_id,
  433. access_token=token_id,
  434. kind="http",
  435. app_id="m.http",
  436. app_display_name="HTTP Push Notifications",
  437. device_display_name="pushy push",
  438. pushkey="a@example.com",
  439. lang=None,
  440. data={"url": "http://example.com/_matrix/push/v1/notify"},
  441. )
  442. )
  443. # Send a message
  444. self.helper.send(
  445. room,
  446. body="@room eeek! There's a spider on the table!",
  447. tok=other_access_token,
  448. )
  449. # Advance time a bit, so the pusher will register something has happened
  450. self.pump()
  451. # Make the push succeed
  452. self.push_attempts[0][0].callback({})
  453. self.pump()
  454. # Check our push made it with high priority
  455. self.assertEqual(len(self.push_attempts), 1)
  456. self.assertEqual(
  457. self.push_attempts[0][1], "http://example.com/_matrix/push/v1/notify"
  458. )
  459. self.assertEqual(self.push_attempts[0][2]["notification"]["prio"], "high")
  460. # Send another event, this time as someone without the power of @room
  461. self.helper.send(
  462. room, body="@room the spider is gone", tok=yet_another_access_token
  463. )
  464. # Advance time a bit, so the pusher will register something has happened
  465. self.pump()
  466. self.assertEqual(len(self.push_attempts), 2)
  467. self.assertEqual(
  468. self.push_attempts[1][1], "http://example.com/_matrix/push/v1/notify"
  469. )
  470. # check that this is low-priority
  471. self.assertEqual(self.push_attempts[1][2]["notification"]["prio"], "low")
  472. def test_push_unread_count_group_by_room(self):
  473. """
  474. The HTTP pusher will group unread count by number of unread rooms.
  475. """
  476. # Carry out common push count tests and setup
  477. self._test_push_unread_count()
  478. # Carry out our option-value specific test
  479. #
  480. # This push should still only contain an unread count of 1 (for 1 unread room)
  481. self.assertEqual(
  482. self.push_attempts[5][2]["notification"]["counts"]["unread"], 1
  483. )
  484. @override_config({"push": {"group_unread_count_by_room": False}})
  485. def test_push_unread_count_message_count(self):
  486. """
  487. The HTTP pusher will send the total unread message count.
  488. """
  489. # Carry out common push count tests and setup
  490. self._test_push_unread_count()
  491. # Carry out our option-value specific test
  492. #
  493. # We're counting every unread message, so there should now be 4 since the
  494. # last read receipt
  495. self.assertEqual(
  496. self.push_attempts[5][2]["notification"]["counts"]["unread"], 4
  497. )
  498. def _test_push_unread_count(self):
  499. """
  500. Tests that the correct unread count appears in sent push notifications
  501. Note that:
  502. * Sending messages will cause push notifications to go out to relevant users
  503. * Sending a read receipt will cause a "badge update" notification to go out to
  504. the user that sent the receipt
  505. """
  506. # Register the user who gets notified
  507. user_id = self.register_user("user", "pass")
  508. access_token = self.login("user", "pass")
  509. # Register the user who sends the message
  510. other_user_id = self.register_user("other_user", "pass")
  511. other_access_token = self.login("other_user", "pass")
  512. # Create a room (as other_user)
  513. room_id = self.helper.create_room_as(other_user_id, tok=other_access_token)
  514. # The user to get notified joins
  515. self.helper.join(room=room_id, user=user_id, tok=access_token)
  516. # Register the pusher
  517. user_tuple = self.get_success(
  518. self.hs.get_datastore().get_user_by_access_token(access_token)
  519. )
  520. token_id = user_tuple.token_id
  521. self.get_success(
  522. self.hs.get_pusherpool().add_pusher(
  523. user_id=user_id,
  524. access_token=token_id,
  525. kind="http",
  526. app_id="m.http",
  527. app_display_name="HTTP Push Notifications",
  528. device_display_name="pushy push",
  529. pushkey="a@example.com",
  530. lang=None,
  531. data={"url": "http://example.com/_matrix/push/v1/notify"},
  532. )
  533. )
  534. # Send a message
  535. response = self.helper.send(
  536. room_id, body="Hello there!", tok=other_access_token
  537. )
  538. # To get an unread count, the user who is getting notified has to have a read
  539. # position in the room. We'll set the read position to this event in a moment
  540. first_message_event_id = response["event_id"]
  541. # Advance time a bit (so the pusher will register something has happened) and
  542. # make the push succeed
  543. self.push_attempts[0][0].callback({})
  544. self.pump()
  545. # Check our push made it
  546. self.assertEqual(len(self.push_attempts), 1)
  547. self.assertEqual(
  548. self.push_attempts[0][1], "http://example.com/_matrix/push/v1/notify"
  549. )
  550. # Check that the unread count for the room is 0
  551. #
  552. # The unread count is zero as the user has no read receipt in the room yet
  553. self.assertEqual(
  554. self.push_attempts[0][2]["notification"]["counts"]["unread"], 0
  555. )
  556. # Now set the user's read receipt position to the first event
  557. #
  558. # This will actually trigger a new notification to be sent out so that
  559. # even if the user does not receive another message, their unread
  560. # count goes down
  561. channel = self.make_request(
  562. "POST",
  563. "/rooms/%s/receipt/m.read/%s" % (room_id, first_message_event_id),
  564. {},
  565. access_token=access_token,
  566. )
  567. self.assertEqual(channel.code, 200, channel.json_body)
  568. # Advance time and make the push succeed
  569. self.push_attempts[1][0].callback({})
  570. self.pump()
  571. # Unread count is still zero as we've read the only message in the room
  572. self.assertEqual(len(self.push_attempts), 2)
  573. self.assertEqual(
  574. self.push_attempts[1][2]["notification"]["counts"]["unread"], 0
  575. )
  576. # Send another message
  577. self.helper.send(
  578. room_id, body="How's the weather today?", tok=other_access_token
  579. )
  580. # Advance time and make the push succeed
  581. self.push_attempts[2][0].callback({})
  582. self.pump()
  583. # This push should contain an unread count of 1 as there's now been one
  584. # message since our last read receipt
  585. self.assertEqual(len(self.push_attempts), 3)
  586. self.assertEqual(
  587. self.push_attempts[2][2]["notification"]["counts"]["unread"], 1
  588. )
  589. # Since we're grouping by room, sending more messages shouldn't increase the
  590. # unread count, as they're all being sent in the same room
  591. self.helper.send(room_id, body="Hello?", tok=other_access_token)
  592. # Advance time and make the push succeed
  593. self.pump()
  594. self.push_attempts[3][0].callback({})
  595. self.helper.send(room_id, body="Hello??", tok=other_access_token)
  596. # Advance time and make the push succeed
  597. self.pump()
  598. self.push_attempts[4][0].callback({})
  599. self.helper.send(room_id, body="HELLO???", tok=other_access_token)
  600. # Advance time and make the push succeed
  601. self.pump()
  602. self.push_attempts[5][0].callback({})
  603. self.assertEqual(len(self.push_attempts), 6)