Source code for aries_cloudagent.messaging.connections.messages.tests.test_connection_response

from unittest import mock, TestCase

from asynctest import TestCase as AsyncTestCase

from .....wallet.basic import BasicWallet

from ...models.diddoc import DIDDoc, PublicKey, PublicKeyType, Service
from ...message_types import CONNECTION_RESPONSE

from ..connection_response import ConnectionResponse, ConnectionDetail


[docs]class TestConfig: test_seed = "testseed000000000000000000000001" test_did = "55GkHamhTU1ZbTbV2ab9DE" test_verkey = "3Dn1SJNPaCXcvvJvSbsFWP2xaCjMom3can8CQNhWrTRx" test_endpoint = "http://localhost"
[docs] def make_did_doc(self): doc = DIDDoc(did=self.test_did) controller = self.test_did ident = "1" pk_value = self.test_verkey pk = PublicKey( self.test_did, ident, pk_value, PublicKeyType.ED25519_SIG_2018, controller, False, ) doc.set(pk) recip_keys = [pk] routing_keys = [] service = Service( self.test_did, "indy", "IndyAgent", recip_keys, routing_keys, self.test_endpoint, ) doc.set(service) return doc
[docs]class TestConnectionResponse(TestCase, TestConfig):
[docs] def setUp(self): self.connection_response = ConnectionResponse( connection=ConnectionDetail(did=self.test_did, did_doc=self.make_did_doc()) )
[docs] def test_init(self): assert self.connection_response.connection.did == self.test_did
[docs] def test_type(self): assert self.connection_response._type == CONNECTION_RESPONSE
[docs] @mock.patch( "aries_cloudagent.messaging.connections.messages." + "connection_response.ConnectionResponseSchema.load" ) def test_deserialize(self, mock_connection_response_schema_load): """ Test deserialization. """ obj = {"obj": "obj"} connection_response = ConnectionResponse.deserialize(obj) mock_connection_response_schema_load.assert_called_once_with(obj) assert connection_response is mock_connection_response_schema_load.return_value
[docs] @mock.patch( "aries_cloudagent.messaging.connections.messages." + "connection_response.ConnectionResponseSchema.dump" ) def test_serialize(self, mock_connection_response_schema_dump): """ Test serialization. """ connection_response_dict = self.connection_response.serialize() mock_connection_response_schema_dump.assert_called_once_with( self.connection_response ) assert ( connection_response_dict is mock_connection_response_schema_dump.return_value )
[docs]class TestConnectionResponseSchema(AsyncTestCase, TestConfig):
[docs] async def test_make_model(self): connection_response = ConnectionResponse( connection=ConnectionDetail(did=self.test_did, did_doc=self.make_did_doc()) ) wallet = BasicWallet() key_info = await wallet.create_signing_key() await connection_response.sign_field("connection", key_info.verkey, wallet) data = connection_response.serialize() model_instance = ConnectionResponse.deserialize(data) assert type(model_instance) is type(connection_response)