test_event_signing.py 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. # -*- coding: utf-8 -*-
  2. # Copyright 2015, 2016 OpenMarket Ltd
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. import nacl.signing
  16. from unpaddedbase64 import decode_base64
  17. from synapse.crypto.event_signing import add_hashes_and_signatures
  18. from synapse.events.builder import EventBuilder
  19. from tests import unittest
  20. # Perform these tests using given secret key so we get entirely deterministic
  21. # signatures output that we can test against.
  22. SIGNING_KEY_SEED = decode_base64("YJDBA9Xnr2sVqXD9Vj7XVUnmFZcZrlw8Md7kMW+3XA1")
  23. KEY_ALG = "ed25519"
  24. KEY_VER = 1
  25. KEY_NAME = "%s:%d" % (KEY_ALG, KEY_VER)
  26. HOSTNAME = "domain"
  27. class EventSigningTestCase(unittest.TestCase):
  28. def setUp(self):
  29. self.signing_key = nacl.signing.SigningKey(SIGNING_KEY_SEED)
  30. self.signing_key.alg = KEY_ALG
  31. self.signing_key.version = KEY_VER
  32. def test_sign_minimal(self):
  33. builder = EventBuilder(
  34. {
  35. 'event_id': "$0:domain",
  36. 'origin': "domain",
  37. 'origin_server_ts': 1000000,
  38. 'signatures': {},
  39. 'type': "X",
  40. 'unsigned': {'age_ts': 1000000},
  41. }
  42. )
  43. add_hashes_and_signatures(builder, HOSTNAME, self.signing_key)
  44. event = builder.build()
  45. self.assertTrue(hasattr(event, 'hashes'))
  46. self.assertIn('sha256', event.hashes)
  47. self.assertEquals(
  48. event.hashes['sha256'], "6tJjLpXtggfke8UxFhAKg82QVkJzvKOVOOSjUDK4ZSI"
  49. )
  50. self.assertTrue(hasattr(event, 'signatures'))
  51. self.assertIn(HOSTNAME, event.signatures)
  52. self.assertIn(KEY_NAME, event.signatures["domain"])
  53. self.assertEquals(
  54. event.signatures[HOSTNAME][KEY_NAME],
  55. "2Wptgo4CwmLo/Y8B8qinxApKaCkBG2fjTWB7AbP5Uy+"
  56. "aIbygsSdLOFzvdDjww8zUVKCmI02eP9xtyJxc/cLiBA",
  57. )
  58. def test_sign_message(self):
  59. builder = EventBuilder(
  60. {
  61. 'content': {'body': "Here is the message content"},
  62. 'event_id': "$0:domain",
  63. 'origin': "domain",
  64. 'origin_server_ts': 1000000,
  65. 'type': "m.room.message",
  66. 'room_id': "!r:domain",
  67. 'sender': "@u:domain",
  68. 'signatures': {},
  69. 'unsigned': {'age_ts': 1000000},
  70. }
  71. )
  72. add_hashes_and_signatures(builder, HOSTNAME, self.signing_key)
  73. event = builder.build()
  74. self.assertTrue(hasattr(event, 'hashes'))
  75. self.assertIn('sha256', event.hashes)
  76. self.assertEquals(
  77. event.hashes['sha256'], "onLKD1bGljeBWQhWZ1kaP9SorVmRQNdN5aM2JYU2n/g"
  78. )
  79. self.assertTrue(hasattr(event, 'signatures'))
  80. self.assertIn(HOSTNAME, event.signatures)
  81. self.assertIn(KEY_NAME, event.signatures["domain"])
  82. self.assertEquals(
  83. event.signatures[HOSTNAME][KEY_NAME],
  84. "Wm+VzmOUOz08Ds+0NTWb1d4CZrVsJSikkeRxh6aCcUw"
  85. "u6pNC78FunoD7KNWzqFn241eYHYMGCA5McEiVPdhzBA",
  86. )