Skip to content

Instantly share code, notes, and snippets.

@worldofpeace
Created July 1, 2018 23:33
Show Gist options
  • Save worldofpeace/e85ea358d0c9191ca16c3f3391dc44de to your computer and use it in GitHub Desktop.
Save worldofpeace/e85ea358d0c9191ca16c3f3391dc44de to your computer and use it in GitHub Desktop.
======================================================================
ERROR: test_client_host_auth (tests.test_connection_auth._TestHostBasedAsyncServerAuth)
Test connecting with host-based authentication
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/asyncssh-1.13.1/tests/util.py", line 69, in async_wrapper
return self.loop.run_until_complete(wrapped_func)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/asyncio/base_events.py", line 468, in run_until_complete
return future.result()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 474, in test_client_host_auth
client_username='user')) as conn:
File "/build/asyncssh-1.13.1/asyncssh/misc.py", line 158, in __iter__
return (yield from self._coro)
File "/build/asyncssh-1.13.1/tests/server.py", line 296, in connect
conn, _ = yield from self.create_connection(None, **kwargs)
File "/build/asyncssh-1.13.1/tests/server.py", line 290, in create_connection
**kwargs))
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 4982, in create_connection
yield from auth_waiter
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 410, in _reap_task
task.result()
File "/build/asyncssh-1.13.1/asyncssh/auth.py", line 275, in _start
yield from self._conn.host_based_auth_requested()
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 2319, in host_based_auth_requested
self.get_extra_info('sockname'), socket.NI_NUMERICSERV)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/concurrent/futures/thread.py", line 56, in run
result = self.fn(*self.args, **self.kwargs)
socket.gaierror: [Errno -3] Temporary failure in name resolution
======================================================================
ERROR: test_client_host_key_bytes (tests.test_connection_auth._TestHostBasedAsyncServerAuth)
Test client host key passed in as bytes
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/asyncssh-1.13.1/tests/util.py", line 69, in async_wrapper
return self.loop.run_until_complete(wrapped_func)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/asyncio/base_events.py", line 468, in run_until_complete
return future.result()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 487, in test_client_host_key_bytes
client_username='user')) as conn:
File "/build/asyncssh-1.13.1/asyncssh/misc.py", line 158, in __iter__
return (yield from self._coro)
File "/build/asyncssh-1.13.1/tests/server.py", line 296, in connect
conn, _ = yield from self.create_connection(None, **kwargs)
File "/build/asyncssh-1.13.1/tests/server.py", line 290, in create_connection
**kwargs))
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 4982, in create_connection
yield from auth_waiter
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 410, in _reap_task
task.result()
File "/build/asyncssh-1.13.1/asyncssh/auth.py", line 275, in _start
yield from self._conn.host_based_auth_requested()
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 2319, in host_based_auth_requested
self.get_extra_info('sockname'), socket.NI_NUMERICSERV)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/concurrent/futures/thread.py", line 56, in run
result = self.fn(*self.args, **self.kwargs)
socket.gaierror: [Errno -3] Temporary failure in name resolution
======================================================================
ERROR: test_client_host_key_keypairs (tests.test_connection_auth._TestHostBasedAsyncServerAuth)
Test client host keys passed in as a list of SSHKeyPairs
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/asyncssh-1.13.1/tests/util.py", line 69, in async_wrapper
return self.loop.run_until_complete(wrapped_func)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/asyncio/base_events.py", line 468, in run_until_complete
return future.result()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 511, in test_client_host_key_keypairs
client_username='user')) as conn:
File "/build/asyncssh-1.13.1/asyncssh/misc.py", line 158, in __iter__
return (yield from self._coro)
File "/build/asyncssh-1.13.1/tests/server.py", line 296, in connect
conn, _ = yield from self.create_connection(None, **kwargs)
File "/build/asyncssh-1.13.1/tests/server.py", line 290, in create_connection
**kwargs))
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 4982, in create_connection
yield from auth_waiter
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 410, in _reap_task
task.result()
File "/build/asyncssh-1.13.1/asyncssh/auth.py", line 275, in _start
yield from self._conn.host_based_auth_requested()
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 2319, in host_based_auth_requested
self.get_extra_info('sockname'), socket.NI_NUMERICSERV)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/concurrent/futures/thread.py", line 56, in run
result = self.fn(*self.args, **self.kwargs)
socket.gaierror: [Errno -3] Temporary failure in name resolution
======================================================================
ERROR: test_client_host_key_sshkey (tests.test_connection_auth._TestHostBasedAsyncServerAuth)
Test client host key passed in as an SSHKey
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/asyncssh-1.13.1/tests/util.py", line 69, in async_wrapper
return self.loop.run_until_complete(wrapped_func)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/asyncio/base_events.py", line 468, in run_until_complete
return future.result()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 499, in test_client_host_key_sshkey
client_username='user')) as conn:
File "/build/asyncssh-1.13.1/asyncssh/misc.py", line 158, in __iter__
return (yield from self._coro)
File "/build/asyncssh-1.13.1/tests/server.py", line 296, in connect
conn, _ = yield from self.create_connection(None, **kwargs)
File "/build/asyncssh-1.13.1/tests/server.py", line 290, in create_connection
**kwargs))
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 4982, in create_connection
yield from auth_waiter
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 410, in _reap_task
task.result()
File "/build/asyncssh-1.13.1/asyncssh/auth.py", line 275, in _start
yield from self._conn.host_based_auth_requested()
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 2319, in host_based_auth_requested
self.get_extra_info('sockname'), socket.NI_NUMERICSERV)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/concurrent/futures/thread.py", line 56, in run
result = self.fn(*self.args, **self.kwargs)
socket.gaierror: [Errno -3] Temporary failure in name resolution
======================================================================
ERROR: test_client_host_signature_algs (tests.test_connection_auth._TestHostBasedAsyncServerAuth)
Test host based authentication with specific signature algorithms
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/asyncssh-1.13.1/tests/util.py", line 69, in async_wrapper
return self.loop.run_until_complete(wrapped_func)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/asyncio/base_events.py", line 468, in run_until_complete
return future.result()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 524, in test_client_host_signature_algs
signature_algs=[alg])) as conn:
File "/build/asyncssh-1.13.1/asyncssh/misc.py", line 158, in __iter__
return (yield from self._coro)
File "/build/asyncssh-1.13.1/tests/server.py", line 296, in connect
conn, _ = yield from self.create_connection(None, **kwargs)
File "/build/asyncssh-1.13.1/tests/server.py", line 290, in create_connection
**kwargs))
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 4982, in create_connection
yield from auth_waiter
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 410, in _reap_task
task.result()
File "/build/asyncssh-1.13.1/asyncssh/auth.py", line 275, in _start
yield from self._conn.host_based_auth_requested()
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 2319, in host_based_auth_requested
self.get_extra_info('sockname'), socket.NI_NUMERICSERV)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/concurrent/futures/thread.py", line 56, in run
result = self.fn(*self.args, **self.kwargs)
socket.gaierror: [Errno -3] Temporary failure in name resolution
======================================================================
ERROR: test_expired_cert (tests.test_connection_auth._TestHostBasedAsyncServerAuth)
Test expired certificate
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/asyncssh-1.13.1/tests/util.py", line 69, in async_wrapper
return self.loop.run_until_complete(wrapped_func)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/asyncio/base_events.py", line 468, in run_until_complete
return future.result()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 631, in test_expired_cert
client_username='user')
File "/build/asyncssh-1.13.1/asyncssh/misc.py", line 158, in __iter__
return (yield from self._coro)
File "/build/asyncssh-1.13.1/tests/server.py", line 296, in connect
conn, _ = yield from self.create_connection(None, **kwargs)
File "/build/asyncssh-1.13.1/tests/server.py", line 290, in create_connection
**kwargs))
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 4982, in create_connection
yield from auth_waiter
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 410, in _reap_task
task.result()
File "/build/asyncssh-1.13.1/asyncssh/auth.py", line 275, in _start
yield from self._conn.host_based_auth_requested()
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 2319, in host_based_auth_requested
self.get_extra_info('sockname'), socket.NI_NUMERICSERV)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/concurrent/futures/thread.py", line 56, in run
result = self.fn(*self.args, **self.kwargs)
socket.gaierror: [Errno -3] Temporary failure in name resolution
======================================================================
ERROR: test_invalid_client_host_signature (tests.test_connection_auth._TestHostBasedAsyncServerAuth)
Test invalid client host signature
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/asyncssh-1.13.1/tests/util.py", line 69, in async_wrapper
return self.loop.run_until_complete(wrapped_func)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/asyncio/base_events.py", line 468, in run_until_complete
return future.result()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 575, in test_invalid_client_host_signature
client_username='user')
File "/build/asyncssh-1.13.1/asyncssh/misc.py", line 158, in __iter__
return (yield from self._coro)
File "/build/asyncssh-1.13.1/tests/server.py", line 296, in connect
conn, _ = yield from self.create_connection(None, **kwargs)
File "/build/asyncssh-1.13.1/tests/server.py", line 290, in create_connection
**kwargs))
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 4982, in create_connection
yield from auth_waiter
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 410, in _reap_task
task.result()
File "/build/asyncssh-1.13.1/asyncssh/auth.py", line 275, in _start
yield from self._conn.host_based_auth_requested()
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 2319, in host_based_auth_requested
self.get_extra_info('sockname'), socket.NI_NUMERICSERV)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/concurrent/futures/thread.py", line 56, in run
result = self.fn(*self.args, **self.kwargs)
socket.gaierror: [Errno -3] Temporary failure in name resolution
======================================================================
ERROR: test_invalid_client_username (tests.test_connection_auth._TestHostBasedAsyncServerAuth)
Test invalid client username
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/asyncssh-1.13.1/tests/util.py", line 69, in async_wrapper
return self.loop.run_until_complete(wrapped_func)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/asyncio/base_events.py", line 468, in run_until_complete
return future.result()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 615, in test_invalid_client_username
client_host_keys='skey')
File "/build/asyncssh-1.13.1/asyncssh/misc.py", line 158, in __iter__
return (yield from self._coro)
File "/build/asyncssh-1.13.1/tests/server.py", line 296, in connect
conn, _ = yield from self.create_connection(None, **kwargs)
File "/build/asyncssh-1.13.1/tests/server.py", line 290, in create_connection
**kwargs))
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 4982, in create_connection
yield from auth_waiter
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 410, in _reap_task
task.result()
File "/build/asyncssh-1.13.1/asyncssh/auth.py", line 275, in _start
yield from self._conn.host_based_auth_requested()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 83, in host_based_auth_requested
keypair, host, _ = yield from super().host_based_auth_requested()
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 2319, in host_based_auth_requested
self.get_extra_info('sockname'), socket.NI_NUMERICSERV)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/concurrent/futures/thread.py", line 56, in run
result = self.fn(*self.args, **self.kwargs)
socket.gaierror: [Errno -3] Temporary failure in name resolution
======================================================================
ERROR: test_mismatched_client_username (tests.test_connection_auth._TestHostBasedAsyncServerAuth)
Test mismatched client username
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/asyncssh-1.13.1/tests/util.py", line 69, in async_wrapper
return self.loop.run_until_complete(wrapped_func)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/asyncio/base_events.py", line 468, in run_until_complete
return future.result()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 605, in test_mismatched_client_username
client_username='xxx')
File "/build/asyncssh-1.13.1/asyncssh/misc.py", line 158, in __iter__
return (yield from self._coro)
File "/build/asyncssh-1.13.1/tests/server.py", line 296, in connect
conn, _ = yield from self.create_connection(None, **kwargs)
File "/build/asyncssh-1.13.1/tests/server.py", line 290, in create_connection
**kwargs))
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 4982, in create_connection
yield from auth_waiter
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 410, in _reap_task
task.result()
File "/build/asyncssh-1.13.1/asyncssh/auth.py", line 275, in _start
yield from self._conn.host_based_auth_requested()
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 2319, in host_based_auth_requested
self.get_extra_info('sockname'), socket.NI_NUMERICSERV)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/concurrent/futures/thread.py", line 56, in run
result = self.fn(*self.args, **self.kwargs)
socket.gaierror: [Errno -3] Temporary failure in name resolution
======================================================================
ERROR: test_no_server_signature_algs (tests.test_connection_auth._TestHostBasedAsyncServerAuth)
Test a server which doesn't advertise signature algorithms
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/asyncssh-1.13.1/tests/util.py", line 69, in async_wrapper
return self.loop.run_until_complete(wrapped_func)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/asyncio/base_events.py", line 468, in run_until_complete
return future.result()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 544, in test_no_server_signature_algs
client_username='user')) as conn:
File "/build/asyncssh-1.13.1/asyncssh/misc.py", line 158, in __iter__
return (yield from self._coro)
File "/build/asyncssh-1.13.1/tests/server.py", line 296, in connect
conn, _ = yield from self.create_connection(None, **kwargs)
File "/build/asyncssh-1.13.1/tests/server.py", line 290, in create_connection
**kwargs))
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 4982, in create_connection
yield from auth_waiter
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 410, in _reap_task
task.result()
File "/build/asyncssh-1.13.1/asyncssh/auth.py", line 275, in _start
yield from self._conn.host_based_auth_requested()
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 2319, in host_based_auth_requested
self.get_extra_info('sockname'), socket.NI_NUMERICSERV)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/concurrent/futures/thread.py", line 56, in run
result = self.fn(*self.args, **self.kwargs)
socket.gaierror: [Errno -3] Temporary failure in name resolution
======================================================================
ERROR: test_untrusted_ca (tests.test_connection_auth._TestHostBasedAsyncServerAuth)
Test untrusted CA
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/asyncssh-1.13.1/tests/util.py", line 69, in async_wrapper
return self.loop.run_until_complete(wrapped_func)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/asyncio/base_events.py", line 468, in run_until_complete
return future.result()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 645, in test_untrusted_ca
client_username='user')
File "/build/asyncssh-1.13.1/asyncssh/misc.py", line 158, in __iter__
return (yield from self._coro)
File "/build/asyncssh-1.13.1/tests/server.py", line 296, in connect
conn, _ = yield from self.create_connection(None, **kwargs)
File "/build/asyncssh-1.13.1/tests/server.py", line 290, in create_connection
**kwargs))
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 4982, in create_connection
yield from auth_waiter
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 410, in _reap_task
task.result()
File "/build/asyncssh-1.13.1/asyncssh/auth.py", line 275, in _start
yield from self._conn.host_based_auth_requested()
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 2319, in host_based_auth_requested
self.get_extra_info('sockname'), socket.NI_NUMERICSERV)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/concurrent/futures/thread.py", line 56, in run
result = self.fn(*self.args, **self.kwargs)
socket.gaierror: [Errno -3] Temporary failure in name resolution
======================================================================
ERROR: test_untrusted_client_host_key (tests.test_connection_auth._TestHostBasedAsyncServerAuth)
Test untrusted client host key
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/asyncssh-1.13.1/tests/util.py", line 69, in async_wrapper
return self.loop.run_until_complete(wrapped_func)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/asyncio/base_events.py", line 468, in run_until_complete
return future.result()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 555, in test_untrusted_client_host_key
client_username='user')
File "/build/asyncssh-1.13.1/asyncssh/misc.py", line 158, in __iter__
return (yield from self._coro)
File "/build/asyncssh-1.13.1/tests/server.py", line 296, in connect
conn, _ = yield from self.create_connection(None, **kwargs)
File "/build/asyncssh-1.13.1/tests/server.py", line 290, in create_connection
**kwargs))
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 4982, in create_connection
yield from auth_waiter
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 410, in _reap_task
task.result()
File "/build/asyncssh-1.13.1/asyncssh/auth.py", line 275, in _start
yield from self._conn.host_based_auth_requested()
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 2319, in host_based_auth_requested
self.get_extra_info('sockname'), socket.NI_NUMERICSERV)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/concurrent/futures/thread.py", line 56, in run
result = self.fn(*self.args, **self.kwargs)
socket.gaierror: [Errno -3] Temporary failure in name resolution
======================================================================
ERROR: test_client_host_auth (tests.test_connection_auth._TestHostBasedAuth)
Test connecting with host-based authentication
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/asyncssh-1.13.1/tests/util.py", line 69, in async_wrapper
return self.loop.run_until_complete(wrapped_func)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/asyncio/base_events.py", line 468, in run_until_complete
return future.result()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 474, in test_client_host_auth
client_username='user')) as conn:
File "/build/asyncssh-1.13.1/asyncssh/misc.py", line 158, in __iter__
return (yield from self._coro)
File "/build/asyncssh-1.13.1/tests/server.py", line 296, in connect
conn, _ = yield from self.create_connection(None, **kwargs)
File "/build/asyncssh-1.13.1/tests/server.py", line 290, in create_connection
**kwargs))
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 4982, in create_connection
yield from auth_waiter
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 410, in _reap_task
task.result()
File "/build/asyncssh-1.13.1/asyncssh/auth.py", line 275, in _start
yield from self._conn.host_based_auth_requested()
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 2319, in host_based_auth_requested
self.get_extra_info('sockname'), socket.NI_NUMERICSERV)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/concurrent/futures/thread.py", line 56, in run
result = self.fn(*self.args, **self.kwargs)
socket.gaierror: [Errno -3] Temporary failure in name resolution
======================================================================
ERROR: test_client_host_key_bytes (tests.test_connection_auth._TestHostBasedAuth)
Test client host key passed in as bytes
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/asyncssh-1.13.1/tests/util.py", line 69, in async_wrapper
return self.loop.run_until_complete(wrapped_func)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/asyncio/base_events.py", line 468, in run_until_complete
return future.result()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 487, in test_client_host_key_bytes
client_username='user')) as conn:
File "/build/asyncssh-1.13.1/asyncssh/misc.py", line 158, in __iter__
return (yield from self._coro)
File "/build/asyncssh-1.13.1/tests/server.py", line 296, in connect
conn, _ = yield from self.create_connection(None, **kwargs)
File "/build/asyncssh-1.13.1/tests/server.py", line 290, in create_connection
**kwargs))
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 4982, in create_connection
yield from auth_waiter
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 410, in _reap_task
task.result()
File "/build/asyncssh-1.13.1/asyncssh/auth.py", line 275, in _start
yield from self._conn.host_based_auth_requested()
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 2319, in host_based_auth_requested
self.get_extra_info('sockname'), socket.NI_NUMERICSERV)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/concurrent/futures/thread.py", line 56, in run
result = self.fn(*self.args, **self.kwargs)
socket.gaierror: [Errno -3] Temporary failure in name resolution
======================================================================
ERROR: test_client_host_key_keypairs (tests.test_connection_auth._TestHostBasedAuth)
Test client host keys passed in as a list of SSHKeyPairs
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/asyncssh-1.13.1/tests/util.py", line 69, in async_wrapper
return self.loop.run_until_complete(wrapped_func)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/asyncio/base_events.py", line 468, in run_until_complete
return future.result()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 511, in test_client_host_key_keypairs
client_username='user')) as conn:
File "/build/asyncssh-1.13.1/asyncssh/misc.py", line 158, in __iter__
return (yield from self._coro)
File "/build/asyncssh-1.13.1/tests/server.py", line 296, in connect
conn, _ = yield from self.create_connection(None, **kwargs)
File "/build/asyncssh-1.13.1/tests/server.py", line 290, in create_connection
**kwargs))
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 4982, in create_connection
yield from auth_waiter
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 410, in _reap_task
task.result()
File "/build/asyncssh-1.13.1/asyncssh/auth.py", line 275, in _start
yield from self._conn.host_based_auth_requested()
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 2319, in host_based_auth_requested
self.get_extra_info('sockname'), socket.NI_NUMERICSERV)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/concurrent/futures/thread.py", line 56, in run
result = self.fn(*self.args, **self.kwargs)
socket.gaierror: [Errno -3] Temporary failure in name resolution
======================================================================
ERROR: test_client_host_key_sshkey (tests.test_connection_auth._TestHostBasedAuth)
Test client host key passed in as an SSHKey
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/asyncssh-1.13.1/tests/util.py", line 69, in async_wrapper
return self.loop.run_until_complete(wrapped_func)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/asyncio/base_events.py", line 468, in run_until_complete
return future.result()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 499, in test_client_host_key_sshkey
client_username='user')) as conn:
File "/build/asyncssh-1.13.1/asyncssh/misc.py", line 158, in __iter__
return (yield from self._coro)
File "/build/asyncssh-1.13.1/tests/server.py", line 296, in connect
conn, _ = yield from self.create_connection(None, **kwargs)
File "/build/asyncssh-1.13.1/tests/server.py", line 290, in create_connection
**kwargs))
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 4982, in create_connection
yield from auth_waiter
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 410, in _reap_task
task.result()
File "/build/asyncssh-1.13.1/asyncssh/auth.py", line 275, in _start
yield from self._conn.host_based_auth_requested()
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 2319, in host_based_auth_requested
self.get_extra_info('sockname'), socket.NI_NUMERICSERV)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/concurrent/futures/thread.py", line 56, in run
result = self.fn(*self.args, **self.kwargs)
socket.gaierror: [Errno -3] Temporary failure in name resolution
======================================================================
ERROR: test_client_host_signature_algs (tests.test_connection_auth._TestHostBasedAuth)
Test host based authentication with specific signature algorithms
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/asyncssh-1.13.1/tests/util.py", line 69, in async_wrapper
return self.loop.run_until_complete(wrapped_func)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/asyncio/base_events.py", line 468, in run_until_complete
return future.result()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 524, in test_client_host_signature_algs
signature_algs=[alg])) as conn:
File "/build/asyncssh-1.13.1/asyncssh/misc.py", line 158, in __iter__
return (yield from self._coro)
File "/build/asyncssh-1.13.1/tests/server.py", line 296, in connect
conn, _ = yield from self.create_connection(None, **kwargs)
File "/build/asyncssh-1.13.1/tests/server.py", line 290, in create_connection
**kwargs))
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 4982, in create_connection
yield from auth_waiter
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 410, in _reap_task
task.result()
File "/build/asyncssh-1.13.1/asyncssh/auth.py", line 275, in _start
yield from self._conn.host_based_auth_requested()
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 2319, in host_based_auth_requested
self.get_extra_info('sockname'), socket.NI_NUMERICSERV)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/concurrent/futures/thread.py", line 56, in run
result = self.fn(*self.args, **self.kwargs)
socket.gaierror: [Errno -3] Temporary failure in name resolution
======================================================================
ERROR: test_client_host_trailing_dot (tests.test_connection_auth._TestHostBasedAuth)
Test stripping of trailing dot from client host
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/asyncssh-1.13.1/tests/util.py", line 69, in async_wrapper
return self.loop.run_until_complete(wrapped_func)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/asyncio/base_events.py", line 468, in run_until_complete
return future.result()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 583, in test_client_host_trailing_dot
client_username='user')) as conn:
File "/build/asyncssh-1.13.1/asyncssh/misc.py", line 158, in __iter__
return (yield from self._coro)
File "/build/asyncssh-1.13.1/tests/server.py", line 296, in connect
conn, _ = yield from self.create_connection(None, **kwargs)
File "/build/asyncssh-1.13.1/tests/server.py", line 290, in create_connection
**kwargs))
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 4982, in create_connection
yield from auth_waiter
asyncssh.misc.DisconnectError: Disconnect Error: Connection lost
======================================================================
ERROR: test_expired_cert (tests.test_connection_auth._TestHostBasedAuth)
Test expired certificate
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/asyncssh-1.13.1/tests/util.py", line 69, in async_wrapper
return self.loop.run_until_complete(wrapped_func)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/asyncio/base_events.py", line 468, in run_until_complete
return future.result()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 631, in test_expired_cert
client_username='user')
File "/build/asyncssh-1.13.1/asyncssh/misc.py", line 158, in __iter__
return (yield from self._coro)
File "/build/asyncssh-1.13.1/tests/server.py", line 296, in connect
conn, _ = yield from self.create_connection(None, **kwargs)
File "/build/asyncssh-1.13.1/tests/server.py", line 290, in create_connection
**kwargs))
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 4982, in create_connection
yield from auth_waiter
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 410, in _reap_task
task.result()
File "/build/asyncssh-1.13.1/asyncssh/auth.py", line 275, in _start
yield from self._conn.host_based_auth_requested()
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 2319, in host_based_auth_requested
self.get_extra_info('sockname'), socket.NI_NUMERICSERV)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/concurrent/futures/thread.py", line 56, in run
result = self.fn(*self.args, **self.kwargs)
socket.gaierror: [Errno -3] Temporary failure in name resolution
======================================================================
ERROR: test_invalid_client_host_signature (tests.test_connection_auth._TestHostBasedAuth)
Test invalid client host signature
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/asyncssh-1.13.1/tests/util.py", line 69, in async_wrapper
return self.loop.run_until_complete(wrapped_func)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/asyncio/base_events.py", line 468, in run_until_complete
return future.result()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 575, in test_invalid_client_host_signature
client_username='user')
File "/build/asyncssh-1.13.1/asyncssh/misc.py", line 158, in __iter__
return (yield from self._coro)
File "/build/asyncssh-1.13.1/tests/server.py", line 296, in connect
conn, _ = yield from self.create_connection(None, **kwargs)
File "/build/asyncssh-1.13.1/tests/server.py", line 290, in create_connection
**kwargs))
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 4982, in create_connection
yield from auth_waiter
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 410, in _reap_task
task.result()
File "/build/asyncssh-1.13.1/asyncssh/auth.py", line 275, in _start
yield from self._conn.host_based_auth_requested()
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 2319, in host_based_auth_requested
self.get_extra_info('sockname'), socket.NI_NUMERICSERV)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/concurrent/futures/thread.py", line 56, in run
result = self.fn(*self.args, **self.kwargs)
socket.gaierror: [Errno -3] Temporary failure in name resolution
======================================================================
ERROR: test_invalid_client_username (tests.test_connection_auth._TestHostBasedAuth)
Test invalid client username
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/asyncssh-1.13.1/tests/util.py", line 69, in async_wrapper
return self.loop.run_until_complete(wrapped_func)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/asyncio/base_events.py", line 468, in run_until_complete
return future.result()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 615, in test_invalid_client_username
client_host_keys='skey')
File "/build/asyncssh-1.13.1/asyncssh/misc.py", line 158, in __iter__
return (yield from self._coro)
File "/build/asyncssh-1.13.1/tests/server.py", line 296, in connect
conn, _ = yield from self.create_connection(None, **kwargs)
File "/build/asyncssh-1.13.1/tests/server.py", line 290, in create_connection
**kwargs))
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 4982, in create_connection
yield from auth_waiter
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 410, in _reap_task
task.result()
File "/build/asyncssh-1.13.1/asyncssh/auth.py", line 275, in _start
yield from self._conn.host_based_auth_requested()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 83, in host_based_auth_requested
keypair, host, _ = yield from super().host_based_auth_requested()
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 2319, in host_based_auth_requested
self.get_extra_info('sockname'), socket.NI_NUMERICSERV)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/concurrent/futures/thread.py", line 56, in run
result = self.fn(*self.args, **self.kwargs)
socket.gaierror: [Errno -3] Temporary failure in name resolution
======================================================================
ERROR: test_mismatched_client_host (tests.test_connection_auth._TestHostBasedAuth)
Test ignoring of mismatched client host due to canonicalization
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/asyncssh-1.13.1/tests/util.py", line 69, in async_wrapper
return self.loop.run_until_complete(wrapped_func)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/asyncio/base_events.py", line 468, in run_until_complete
return future.result()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 594, in test_mismatched_client_host
client_username='user')) as conn:
File "/build/asyncssh-1.13.1/asyncssh/misc.py", line 158, in __iter__
return (yield from self._coro)
File "/build/asyncssh-1.13.1/tests/server.py", line 296, in connect
conn, _ = yield from self.create_connection(None, **kwargs)
File "/build/asyncssh-1.13.1/tests/server.py", line 290, in create_connection
**kwargs))
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 4982, in create_connection
yield from auth_waiter
asyncssh.misc.DisconnectError: Disconnect Error: Connection lost
======================================================================
ERROR: test_mismatched_client_username (tests.test_connection_auth._TestHostBasedAuth)
Test mismatched client username
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/asyncssh-1.13.1/tests/util.py", line 69, in async_wrapper
return self.loop.run_until_complete(wrapped_func)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/asyncio/base_events.py", line 468, in run_until_complete
return future.result()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 605, in test_mismatched_client_username
client_username='xxx')
File "/build/asyncssh-1.13.1/asyncssh/misc.py", line 158, in __iter__
return (yield from self._coro)
File "/build/asyncssh-1.13.1/tests/server.py", line 296, in connect
conn, _ = yield from self.create_connection(None, **kwargs)
File "/build/asyncssh-1.13.1/tests/server.py", line 290, in create_connection
**kwargs))
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 4982, in create_connection
yield from auth_waiter
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 410, in _reap_task
task.result()
File "/build/asyncssh-1.13.1/asyncssh/auth.py", line 275, in _start
yield from self._conn.host_based_auth_requested()
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 2319, in host_based_auth_requested
self.get_extra_info('sockname'), socket.NI_NUMERICSERV)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/concurrent/futures/thread.py", line 56, in run
result = self.fn(*self.args, **self.kwargs)
socket.gaierror: [Errno -3] Temporary failure in name resolution
======================================================================
ERROR: test_no_server_signature_algs (tests.test_connection_auth._TestHostBasedAuth)
Test a server which doesn't advertise signature algorithms
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/asyncssh-1.13.1/tests/util.py", line 69, in async_wrapper
return self.loop.run_until_complete(wrapped_func)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/asyncio/base_events.py", line 468, in run_until_complete
return future.result()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 544, in test_no_server_signature_algs
client_username='user')) as conn:
File "/build/asyncssh-1.13.1/asyncssh/misc.py", line 158, in __iter__
return (yield from self._coro)
File "/build/asyncssh-1.13.1/tests/server.py", line 296, in connect
conn, _ = yield from self.create_connection(None, **kwargs)
File "/build/asyncssh-1.13.1/tests/server.py", line 290, in create_connection
**kwargs))
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 4982, in create_connection
yield from auth_waiter
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 410, in _reap_task
task.result()
File "/build/asyncssh-1.13.1/asyncssh/auth.py", line 275, in _start
yield from self._conn.host_based_auth_requested()
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 2319, in host_based_auth_requested
self.get_extra_info('sockname'), socket.NI_NUMERICSERV)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/concurrent/futures/thread.py", line 56, in run
result = self.fn(*self.args, **self.kwargs)
socket.gaierror: [Errno -3] Temporary failure in name resolution
======================================================================
ERROR: test_untrusted_ca (tests.test_connection_auth._TestHostBasedAuth)
Test untrusted CA
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/asyncssh-1.13.1/tests/util.py", line 69, in async_wrapper
return self.loop.run_until_complete(wrapped_func)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/asyncio/base_events.py", line 468, in run_until_complete
return future.result()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 645, in test_untrusted_ca
client_username='user')
File "/build/asyncssh-1.13.1/asyncssh/misc.py", line 158, in __iter__
return (yield from self._coro)
File "/build/asyncssh-1.13.1/tests/server.py", line 296, in connect
conn, _ = yield from self.create_connection(None, **kwargs)
File "/build/asyncssh-1.13.1/tests/server.py", line 290, in create_connection
**kwargs))
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 4982, in create_connection
yield from auth_waiter
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 410, in _reap_task
task.result()
File "/build/asyncssh-1.13.1/asyncssh/auth.py", line 275, in _start
yield from self._conn.host_based_auth_requested()
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 2319, in host_based_auth_requested
self.get_extra_info('sockname'), socket.NI_NUMERICSERV)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/concurrent/futures/thread.py", line 56, in run
result = self.fn(*self.args, **self.kwargs)
socket.gaierror: [Errno -3] Temporary failure in name resolution
======================================================================
ERROR: test_untrusted_client_host_key (tests.test_connection_auth._TestHostBasedAuth)
Test untrusted client host key
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/asyncssh-1.13.1/tests/util.py", line 69, in async_wrapper
return self.loop.run_until_complete(wrapped_func)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/asyncio/base_events.py", line 468, in run_until_complete
return future.result()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 555, in test_untrusted_client_host_key
client_username='user')
File "/build/asyncssh-1.13.1/asyncssh/misc.py", line 158, in __iter__
return (yield from self._coro)
File "/build/asyncssh-1.13.1/tests/server.py", line 296, in connect
conn, _ = yield from self.create_connection(None, **kwargs)
File "/build/asyncssh-1.13.1/tests/server.py", line 290, in create_connection
**kwargs))
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 4982, in create_connection
yield from auth_waiter
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 410, in _reap_task
task.result()
File "/build/asyncssh-1.13.1/asyncssh/auth.py", line 275, in _start
yield from self._conn.host_based_auth_requested()
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 2319, in host_based_auth_requested
self.get_extra_info('sockname'), socket.NI_NUMERICSERV)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/concurrent/futures/thread.py", line 56, in run
result = self.fn(*self.args, **self.kwargs)
socket.gaierror: [Errno -3] Temporary failure in name resolution
======================================================================
ERROR: test_host_signature_alg_fallback (tests.test_connection_auth._TestLimitedHostBasedSignatureAlgs)
Test fall back to default host key signature algorithm
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/asyncssh-1.13.1/tests/util.py", line 69, in async_wrapper
return self.loop.run_until_complete(wrapped_func)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/asyncio/base_events.py", line 468, in run_until_complete
return future.result()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 698, in test_host_signature_alg_fallback
'ssh-rsa'])) as conn:
File "/build/asyncssh-1.13.1/asyncssh/misc.py", line 158, in __iter__
return (yield from self._coro)
File "/build/asyncssh-1.13.1/tests/server.py", line 296, in connect
conn, _ = yield from self.create_connection(None, **kwargs)
File "/build/asyncssh-1.13.1/tests/server.py", line 290, in create_connection
**kwargs))
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 4982, in create_connection
yield from auth_waiter
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 410, in _reap_task
task.result()
File "/build/asyncssh-1.13.1/asyncssh/auth.py", line 275, in _start
yield from self._conn.host_based_auth_requested()
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 2319, in host_based_auth_requested
self.get_extra_info('sockname'), socket.NI_NUMERICSERV)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/concurrent/futures/thread.py", line 56, in run
result = self.fn(*self.args, **self.kwargs)
socket.gaierror: [Errno -3] Temporary failure in name resolution
======================================================================
ERROR: test_mismatched_host_signature_algs (tests.test_connection_auth._TestLimitedHostBasedSignatureAlgs)
Test mismatched host key signature algorithms
----------------------------------------------------------------------
Traceback (most recent call last):
File "/build/asyncssh-1.13.1/tests/util.py", line 69, in async_wrapper
return self.loop.run_until_complete(wrapped_func)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/asyncio/base_events.py", line 468, in run_until_complete
return future.result()
File "/build/asyncssh-1.13.1/tests/test_connection_auth.py", line 689, in test_mismatched_host_signature_algs
signature_algs=['rsa-sha2-256'])
File "/build/asyncssh-1.13.1/asyncssh/misc.py", line 158, in __iter__
return (yield from self._coro)
File "/build/asyncssh-1.13.1/tests/server.py", line 296, in connect
conn, _ = yield from self.create_connection(None, **kwargs)
File "/build/asyncssh-1.13.1/tests/server.py", line 290, in create_connection
**kwargs))
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 4982, in create_connection
yield from auth_waiter
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 410, in _reap_task
task.result()
File "/build/asyncssh-1.13.1/asyncssh/auth.py", line 275, in _start
yield from self._conn.host_based_auth_requested()
File "/build/asyncssh-1.13.1/asyncssh/connection.py", line 2319, in host_based_auth_requested
self.get_extra_info('sockname'), socket.NI_NUMERICSERV)
File "/nix/store/pz8nl4cnppd3p1cykshcb40mqxjd5yvy-python3-3.6.5/lib/python3.6/concurrent/futures/thread.py", line 56, in run
result = self.fn(*self.args, **self.kwargs)
socket.gaierror: [Errno -3] Temporary failure in name resolution
----------------------------------------------------------------------
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment