You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Changelog and version updates for version 0.7.5-rc1 [\#1985](https://github.com/hyperledger/aries-cloudagent-python/pull/1985) ([swcurran](https://github.com/swcurran))
66
+
- Endorser doc updates and some bug fixes [\#1926](https://github.com/hyperledger/aries-cloudagent-python/pull/1926) ([ianco](https://github.com/ianco))
- Endorser write DID transaction [\#1938](https://github.com/hyperledger/aries-cloudagent-python/pull/1938) ([ianco](https://github.com/ianco))
69
+
- fix: didx request cannot be accepted [\#1881](https://github.com/hyperledger/aries-cloudagent-python/pull/1881) ([rmnre](https://github.com/rmnre))
70
+
- Fix: OOB - Handling of minor versions [\#1940](https://github.com/hyperledger/aries-cloudagent-python/pull/1940) ([shaangill025](https://github.com/shaangill025))
71
+
- fix: Safely shutdown when root_profile uninitialized [\#1960](https://github.com/hyperledger/aries-cloudagent-python/pull/1960) ([frostyfrog](https://github.com/frostyfrog))
72
+
- feat: 00B v1.1 support [\#1962](https://github.com/hyperledger/aries-cloudagent-python/pull/1962) ([shaangill025](https://github.com/shaangill025))
- Changelog and version updates for version 0.7.5-rc0 [\#1969](https://github.com/hyperledger/aries-cloudagent-python/pull/1969) ([swcurran](https://github.com/swcurran))
75
+
- Final 0.7.5 changes [\#1991](https://github.com/hyperledger/aries-cloudagent-python/pull/1991) ([swcurran](https://github.com/swcurran))
Copy file name to clipboardExpand all lines: aries_cloudagent/protocols/coordinate_mediation/v1_0/handlers/tests/test_keylist_update_response_handler.py
+97-3Lines changed: 97 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,21 +1,29 @@
1
1
"""Test handler for keylist-update-response message."""
2
2
3
+
fromfunctoolsimportpartial
4
+
fromtypingimportAsyncGenerator
3
5
importpytest
4
6
fromasynctestimportTestCaseasAsyncTestCase
5
7
fromasynctestimportmockasasync_mock
6
8
9
+
7
10
from ......connections.models.conn_recordimportConnRecord
11
+
from ......core.event_busimportEventBus, MockEventBus
8
12
from ......messaging.base_handlerimportHandlerException
9
13
from ......messaging.request_contextimportRequestContext
10
14
from ......messaging.responderimportMockResponder
11
15
from ...messages.inner.keylist_update_ruleimportKeylistUpdateRule
12
16
from ...messages.inner.keylist_updatedimportKeylistUpdated
13
17
from ...messages.keylist_update_responseimportKeylistUpdateResponse
14
18
from ...managerimportMediationManager
19
+
from ...route_managerimportRouteManager
20
+
from ...tests.test_route_managerimportMockRouteManager
15
21
from ..keylist_update_response_handlerimportKeylistUpdateResponseHandler
0 commit comments