123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- import json
- from mock import Mock
- from sydent.threepid import ThreepidAssociation
- from sydent.threepid.signer import Signer
- from tests.utils import make_request, make_sydent
- from twisted.web.client import Response
- from twisted.internet import defer
- from twisted.trial import unittest
- class ReplicationTestCase(unittest.TestCase):
- """Test that a Sydent can correctly replicate data with another Sydent"""
- def setUp(self):
- # Create a new sydent
- config = {
- "crypto": {
- "ed25519.signingkey": "ed25519 0 FJi1Rnpj3/otydngacrwddFvwz/dTDsBv62uZDN2fZM"
- }
- }
- self.sydent = make_sydent(test_config=config)
- # Create a fake peer to replicate to.
- peer_public_key_base64 = "+vB8mTaooD/MA8YYZM8t9+vnGhP1937q2icrqPV9JTs"
- # Inject our fake peer into the database.
- cur = self.sydent.db.cursor()
- cur.execute(
- "INSERT INTO peers (name, port, lastSentVersion, active) VALUES (?, ?, ?, ?)",
- ("fake.server", 1234, 0, 1)
- )
- cur.execute(
- "INSERT INTO peer_pubkeys (peername, alg, key) VALUES (?, ?, ?)",
- ("fake.server", "ed25519", peer_public_key_base64)
- )
- self.sydent.db.commit()
- # Build some fake associations.
- self.assocs = []
- assoc_count = 150
- for i in range(assoc_count):
- assoc = ThreepidAssociation(
- medium="email",
- address="bob%d@example.com" % i,
- lookup_hash=None,
- mxid="@bob%d:example.com" % i,
- ts=(i * 10000),
- not_before=0,
- not_after=99999999999,
- )
- self.assocs.append(assoc)
- def test_incoming_replication(self):
- """Impersonate a peer that sends a replication push to Sydent, then checks that it
- accepts the payload and saves it correctly.
- """
- self.sydent.run()
- # Configure the Sydent to impersonate. We need to use "fake.server" as the
- # server's name because that's the name the recipient Sydent has for it. On top
- # of that, the replication servlet expects a TLS certificate in the request so it
- # can extract a common name and figure out which peer sent it from its common
- # name. The common name of the certificate we use for tests is fake.server.
- config = {
- "general": {
- "server.name": "fake.server"
- },
- "crypto": {
- "ed25519.signingkey": "ed25519 0 b29eXMMAYCFvFEtq9mLI42aivMtcg4Hl0wK89a+Vb6c"
- }
- }
- fake_sender_sydent = make_sydent(config)
- signer = Signer(fake_sender_sydent)
- # Sign the associations with the Sydent to impersonate so the recipient Sydent
- # can verify the signatures on them.
- signed_assocs = {}
- for assoc_id, assoc in enumerate(self.assocs):
- signed_assoc = signer.signedThreePidAssociation(assoc)
- signed_assocs[assoc_id] = signed_assoc
- # Send the replication push.
- body = json.dumps({"sgAssocs": signed_assocs})
- request, channel = make_request(
- self.sydent.reactor, "POST", "/_matrix/identity/replicate/v1/push", body
- )
- request.render(self.sydent.servlets.replicationPush)
- self.assertEqual(channel.code, 200)
- # Check that the recipient Sydent has correctly saved the associations in the
- # push.
- cur = self.sydent.db.cursor()
- res = cur.execute("SELECT originId, sgAssoc FROM global_threepid_associations")
- for row in res.fetchall():
- originId = row[0]
- signed_assoc = json.loads(row[1])
- self.assertDictEqual(signed_assoc, signed_assocs[originId])
- def test_outgoing_replication(self):
- """Make a fake peer and associations and make sure Sydent tries to push to it.
- """
- cur = self.sydent.db.cursor()
- # Insert the fake associations into the database.
- cur.executemany(
- "INSERT INTO local_threepid_associations "
- "(medium, address, lookup_hash, mxid, ts, notBefore, notAfter) "
- "VALUES (?, ?, ?, ?, ?, ?, ?)",
- [
- (
- assoc.medium,
- assoc.address,
- assoc.lookup_hash,
- assoc.mxid,
- assoc.ts,
- assoc.not_before,
- assoc.not_after,
- )
- for assoc in self.assocs
- ]
- )
- self.sydent.db.commit()
- # Manually sign all associations so we can check whether Sydent attempted to
- # push the same.
- signer = Signer(self.sydent)
- signed_assocs = {}
- for assoc_id, assoc in enumerate(self.assocs):
- signed_assoc = signer.signedThreePidAssociation(assoc)
- signed_assocs[assoc_id] = signed_assoc
- sent_assocs = {}
- def request(method, uri, headers, body):
- # Check the method and the URI.
- assert method == 'POST'
- assert uri == 'https://fake.server:1234/_matrix/identity/replicate/v1/push'
- # postJson calls the agent with a StringIO within a FileBodyProducer, so we
- # need to unpack the payload correctly.
- payload = json.loads(body._inputFile.buf)
- for assoc_id, assoc in payload['sgAssocs'].items():
- sent_assocs[assoc_id] = assoc
- # Return with a fake response wrapped in a Deferred.
- d = defer.Deferred()
- d.callback(Response((b'HTTP', 1, 1), 200, b'OK', None, None))
- return d
- # Mock the replication client's agent so it runs the custom code instead of
- # actually sending the requests.
- agent = Mock(spec=['request'])
- agent.request.side_effect = request
- self.sydent.replicationHttpsClient.agent = agent
- # Start Sydent and allow some time for all the necessary pushes to happen.
- self.sydent.run()
- self.sydent.reactor.advance(1000)
- # Check that, now that Sydent pushed all the associations it was meant to, we
- # have all of the associations we initially inserted.
- self.assertEqual(len(self.assocs), len(sent_assocs))
- for assoc_id, assoc in sent_assocs.items():
- # Replication payloads use a specific format that causes the JSON encoder to
- # convert the numeric indexes to string, so we need to convert them back when
- # looking up in signed_assocs. Also, the ID of the first association Sydent
- # will push will be 1, so we need to subtract 1 when figuring out which index
- # to lookup.
- self.assertDictEqual(assoc, signed_assocs[int(assoc_id)-1])
|