Created attachment 687633 [details] build.log > [...] > TestSOCKSProxy.test_create_connection_resolve_good[True-::1-None] ___________________________ > > self = <test_socks.TestSOCKSProxy object at 0xb42f30b8>, proxy_address = NetAddress(IPv6Address('::1'), 42639) > auth = None > > @pytest.mark.asyncio > async def test_create_connection_resolve_good(self, proxy_address, auth): > chosen_auth = 2 if auth else 0 > proxy = SOCKSProxy(proxy_address, SOCKS5, auth) > FakeServer.response = TestSOCKS5.response(chosen_auth, 'wwww.apple.com') > > async with connect_rs(GCOM.host, GCOM.port, proxy, resolve=True) as session: > > tests/test_socks.py:610: > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > ../aiorpcX-0.18.5-python3_8/lib/aiorpcx/rawsocket.py:166: in __aenter__ > _transport, protocol = await self.create_connection() > ../aiorpcX-0.18.5-python3_8/lib/aiorpcx/rawsocket.py:162: in create_connection > return await connector.create_connection( > ../aiorpcX-0.18.5-python3_8/lib/aiorpcx/socks.py:423: in create_connection > await loop.getaddrinfo(host, port, family=family, proto=proto, > /usr/lib/python3.8/asyncio/base_events.py:825: in getaddrinfo > return await self.run_in_executor( > /usr/lib/python3.8/concurrent/futures/thread.py:57: in run > result = self.fn(*self.args, **self.kwargs) > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > > host = 'www.google.com', port = 80, family = 0, type = <SocketKind.SOCK_STREAM: 1>, proto = 0, flags = 0 > > def getaddrinfo(host, port, family=0, type=0, proto=0, flags=0): > """Resolve host and port into list of address info entries. > > Translate the host/port argument into a sequence of 5-tuples that contain > all the necessary arguments for creating a socket connected to that service. > host is a domain name, a string representation of an IPv4/v6 address or > None. port is a string service name such as 'http', a numeric port number or > None. By passing None as the value of host and port, you can pass NULL to > the underlying C API. > > The family, type and proto arguments can be optionally specified in order to > narrow the list of addresses returned. Passing zero as a value for each of > these arguments selects the full range of results. > """ > # We override this function since we want to translate the numeric family > # and socket type values to enum constants. > addrlist = [] > > for res in _socket.getaddrinfo(host, port, family, type, proto, flags): > E socket.gaierror: [Errno -3] Temporary failure in name resolution > > /usr/lib/python3.8/socket.py:918: gaierror > __________________________ TestSOCKSProxy.test_create_connection_resolve_good[True-::1-auth1] __________________________ > > self = <test_socks.TestSOCKSProxy object at 0xb42f3448>, proxy_address = NetAddress(IPv6Address('::1'), 54061) > auth = SOCKSUserAuth(username='user', password='pass') > > @pytest.mark.asyncio > async def test_create_connection_resolve_good(self, proxy_address, auth): > chosen_auth = 2 if auth else 0 > proxy = SOCKSProxy(proxy_address, SOCKS5, auth) > FakeServer.response = TestSOCKS5.response(chosen_auth, 'wwww.apple.com') > > async with connect_rs(GCOM.host, GCOM.port, proxy, resolve=True) as session: > > tests/test_socks.py:610: > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > ../aiorpcX-0.18.5-python3_8/lib/aiorpcx/rawsocket.py:166: in __aenter__ > _transport, protocol = await self.create_connection() > ../aiorpcX-0.18.5-python3_8/lib/aiorpcx/rawsocket.py:162: in create_connection > return await connector.create_connection( > ../aiorpcX-0.18.5-python3_8/lib/aiorpcx/socks.py:423: in create_connection > await loop.getaddrinfo(host, port, family=family, proto=proto, > /usr/lib/python3.8/asyncio/base_events.py:825: in getaddrinfo > return await self.run_in_executor( > /usr/lib/python3.8/concurrent/futures/thread.py:57: in run > result = self.fn(*self.args, **self.kwargs) > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > > host = 'www.google.com', port = 80, family = 0, type = <SocketKind.SOCK_STREAM: 1>, proto = 0, flags = 0 > > def getaddrinfo(host, port, family=0, type=0, proto=0, flags=0): > """Resolve host and port into list of address info entries. > > Translate the host/port argument into a sequence of 5-tuples that contain > all the necessary arguments for creating a socket connected to that service. > host is a domain name, a string representation of an IPv4/v6 address or > None. port is a string service name such as 'http', a numeric port number or > None. By passing None as the value of host and port, you can pass NULL to > the underlying C API. > > The family, type and proto arguments can be optionally specified in order to > narrow the list of addresses returned. Passing zero as a value for each of > these arguments selects the full range of results. > """ > # We override this function since we want to translate the numeric family > # and socket type values to enum constants. > addrlist = [] > > for res in _socket.getaddrinfo(host, port, family, type, proto, flags): > E socket.gaierror: [Errno -3] Temporary failure in name resolution > > /usr/lib/python3.8/socket.py:918: gaierror > _______________________ TestSOCKSProxy.test_create_connection_resolve_good[True-localhost-None] ________________________ > > self = <test_socks.TestSOCKSProxy object at 0xb25d6e08>, proxy_address = NetAddress('localhost', 37969), auth = None > > @pytest.mark.asyncio > async def test_create_connection_resolve_good(self, proxy_address, auth): > chosen_auth = 2 if auth else 0 > proxy = SOCKSProxy(proxy_address, SOCKS5, auth) > FakeServer.response = TestSOCKS5.response(chosen_auth, 'wwww.apple.com') > > async with connect_rs(GCOM.host, GCOM.port, proxy, resolve=True) as session: > > tests/test_socks.py:610: > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > ../aiorpcX-0.18.5-python3_8/lib/aiorpcx/rawsocket.py:166: in __aenter__ > _transport, protocol = await self.create_connection() > ../aiorpcX-0.18.5-python3_8/lib/aiorpcx/rawsocket.py:162: in create_connection > return await connector.create_connection( > ../aiorpcX-0.18.5-python3_8/lib/aiorpcx/socks.py:423: in create_connection > await loop.getaddrinfo(host, port, family=family, proto=proto, > /usr/lib/python3.8/asyncio/base_events.py:825: in getaddrinfo > return await self.run_in_executor( > /usr/lib/python3.8/concurrent/futures/thread.py:57: in run > result = self.fn(*self.args, **self.kwargs) > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > > host = 'www.google.com', port = 80, family = 0, type = <SocketKind.SOCK_STREAM: 1>, proto = 0, flags = 0 > > def getaddrinfo(host, port, family=0, type=0, proto=0, flags=0): > """Resolve host and port into list of address info entries. > > Translate the host/port argument into a sequence of 5-tuples that contain > all the necessary arguments for creating a socket connected to that service. > host is a domain name, a string representation of an IPv4/v6 address or > None. port is a string service name such as 'http', a numeric port number or > None. By passing None as the value of host and port, you can pass NULL to > the underlying C API. > > The family, type and proto arguments can be optionally specified in order to > narrow the list of addresses returned. Passing zero as a value for each of > these arguments selects the full range of results. > """ > # We override this function since we want to translate the numeric family > # and socket type values to enum constants. > addrlist = [] > > for res in _socket.getaddrinfo(host, port, family, type, proto, flags): > E socket.gaierror: [Errno -3] Temporary failure in name resolution > > /usr/lib/python3.8/socket.py:918: gaierror > _______________________ TestSOCKSProxy.test_create_connection_resolve_good[True-localhost-auth1] _______________________ > > self = <test_socks.TestSOCKSProxy object at 0xb2582820>, proxy_address = NetAddress('localhost', 60935) > auth = SOCKSUserAuth(username='user', password='pass') > > @pytest.mark.asyncio > async def test_create_connection_resolve_good(self, proxy_address, auth): > chosen_auth = 2 if auth else 0 > proxy = SOCKSProxy(proxy_address, SOCKS5, auth) > FakeServer.response = TestSOCKS5.response(chosen_auth, 'wwww.apple.com') > > async with connect_rs(GCOM.host, GCOM.port, proxy, resolve=True) as session: > > tests/test_socks.py:610: > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > ../aiorpcX-0.18.5-python3_8/lib/aiorpcx/rawsocket.py:166: in __aenter__ > _transport, protocol = await self.create_connection() > ../aiorpcX-0.18.5-python3_8/lib/aiorpcx/rawsocket.py:162: in create_connection > return await connector.create_connection( > ../aiorpcX-0.18.5-python3_8/lib/aiorpcx/socks.py:423: in create_connection > await loop.getaddrinfo(host, port, family=family, proto=proto, > /usr/lib/python3.8/asyncio/base_events.py:825: in getaddrinfo > return await self.run_in_executor( > /usr/lib/python3.8/concurrent/futures/thread.py:57: in run > result = self.fn(*self.args, **self.kwargs) > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > > host = 'www.google.com', port = 80, family = 0, type = <SocketKind.SOCK_STREAM: 1>, proto = 0, flags = 0 > > def getaddrinfo(host, port, family=0, type=0, proto=0, flags=0): > """Resolve host and port into list of address info entries. > > Translate the host/port argument into a sequence of 5-tuples that contain > all the necessary arguments for creating a socket connected to that service. > host is a domain name, a string representation of an IPv4/v6 address or > None. port is a string service name such as 'http', a numeric port number or > None. By passing None as the value of host and port, you can pass NULL to > the underlying C API. > > The family, type and proto arguments can be optionally specified in order to > narrow the list of addresses returned. Passing zero as a value for each of > these arguments selects the full range of results. > """ > # We override this function since we want to translate the numeric family > # and socket type values to enum constants. > addrlist = [] > > for res in _socket.getaddrinfo(host, port, family, type, proto, flags): > E socket.gaierror: [Errno -3] Temporary failure in name resolution > > /usr/lib/python3.8/socket.py:918: gaierror > =============================================== short test summary info ================================================ > FAILED tests/test_socks.py::TestSOCKSProxy::test_create_connection_resolve_good[False-127.0.0.1-None] - socket.gaierr... > FAILED tests/test_socks.py::TestSOCKSProxy::test_create_connection_resolve_good[False-127.0.0.1-auth1] - socket.gaier... > FAILED tests/test_socks.py::TestSOCKSProxy::test_create_connection_resolve_good[False-::1-None] - socket.gaierror: [E... > FAILED tests/test_socks.py::TestSOCKSProxy::test_create_connection_resolve_good[False-::1-auth1] - socket.gaierror: [... > FAILED tests/test_socks.py::TestSOCKSProxy::test_create_connection_resolve_good[False-localhost-None] - socket.gaierr... > FAILED tests/test_socks.py::TestSOCKSProxy::test_create_connection_resolve_good[False-localhost-auth1] - socket.gaier... > FAILED tests/test_socks.py::TestSOCKSProxy::test_create_connection_resolve_good[True-127.0.0.1-None] - socket.gaierro... > FAILED tests/test_socks.py::TestSOCKSProxy::test_create_connection_resolve_good[True-127.0.0.1-auth1] - socket.gaierr... > FAILED tests/test_socks.py::TestSOCKSProxy::test_create_connection_resolve_good[True-::1-None] - socket.gaierror: [Er... > FAILED tests/test_socks.py::TestSOCKSProxy::test_create_connection_resolve_good[True-::1-auth1] - socket.gaierror: [E... > FAILED tests/test_socks.py::TestSOCKSProxy::test_create_connection_resolve_good[True-localhost-None] - socket.gaierro... > FAILED tests/test_socks.py::TestSOCKSProxy::test_create_connection_resolve_good[True-localhost-auth1] - socket.gaierr... > =========================================== 12 failed, 1021 passed in 5.57s ============================================ > * ERROR: dev-python/aiorpcX-0.18.5::gentoo failed (test phase): > * Tests fail with python3.8
Portage 3.0.13 (python 3.8.7-final-0, default/linux/x86/17.0, gcc-9.3.0, glibc-2.32-r6, 5.4.97-gentoo-x86 i686) ================================================================= System uname: Linux-5.4.97-gentoo-x86-i686-with-glibc2.1.3 KiB Mem: 3106076 total, 1997316 free KiB Swap: 8387560 total, 8357436 free Timestamp of repository gentoo: Fri, 19 Feb 2021 14:37:40 +0000 Head commit of repository gentoo: fc67b33c6e61f1f439ffc270260e06cce6ee7dde sh bash 5.0_p18 ld GNU ld (Gentoo 2.35.1 p2) 2.35.1 ccache version 4.1 [enabled] app-shells/bash: 5.0_p18::gentoo dev-lang/perl: 5.30.3::gentoo dev-lang/python: 3.8.7-r1::gentoo, 3.9.1-r1::gentoo dev-util/ccache: 4.1::gentoo dev-util/cmake: 3.18.5::gentoo dev-util/pkgconfig: 0.29.2::gentoo sys-apps/baselayout: 2.7::gentoo sys-apps/openrc: 0.42.1-r1::gentoo sys-apps/sandbox: 2.20::gentoo sys-devel/autoconf: 2.13-r1::gentoo, 2.69-r5::gentoo sys-devel/automake: 1.16.2-r1::gentoo sys-devel/binutils: 2.35.1-r1::gentoo sys-devel/gcc: 9.3.0-r2::gentoo sys-devel/gcc-config: 2.3.2-r1::gentoo sys-devel/libtool: 2.4.6-r6::gentoo sys-devel/make: 4.3::gentoo sys-kernel/linux-headers: 5.10::gentoo (virtual/os-headers) sys-libs/glibc: 2.32-r6::gentoo Repositories: gentoo location: /var/db/repos/gentoo sync-type: git sync-uri: https://anongit.gentoo.org/git/repo/sync/gentoo.git priority: -1000 ABI="x86" ABI_X86="32" ACCEPT_KEYWORDS="x86" ACCEPT_LICENSE="*" ACCEPT_PROPERTIES="*" ACCEPT_RESTRICT="*" ADA_TARGET="gnat_2018" ARCH="x86" BINPKG_COMPRESS="bzip2" BROOT="" CBUILD="i686-pc-linux-gnu" CCACHE_DIR="/var/cache/ccache" CFLAGS="-O2 -pipe -march=pentium4m -mtune=pentium4m -Wno-error=jump-misses-init -Wno-error=sign-compare" CHOST="i686-pc-linux-gnu" CHOST_x86="i686-pc-linux-gnu" COLLISION_IGNORE="/lib/modules/*" CONFIG_PROTECT="/etc /usr/share/gnupg/qualified.txt" CPU_FLAGS_X86="mmx mmxext sse sse2" CXXFLAGS="-O2 -pipe -march=pentium4m -mtune=pentium4m -Wno-error=jump-misses-init -Wno-error=sign-compare" DCC_EMAILLOG_WHOM_TO_BLAME="" DEFAULT_ABI="x86" DISTCC_ENABLE_DISCREPANCY_EMAIL="" DISTCC_FALLBACK="1" DISTCC_SAVE_TEMPS="0" DISTCC_SSH="" DISTCC_TCP_CORK="" DISTCC_VERBOSE="0" EDITOR="/usr/bin/mcedit" ELIBC="glibc" ENV_UNSET="CARGO_HOME DBUS_SESSION_BUS_ADDRESS DISPLAY GOBIN GOPATH PERL5LIB PERL5OPT PERLPREFIX PERL_CORE PERL_MB_OPT PERL_MM_OPT XAUTHORITY XDG_CACHE_HOME XDG_CONFIG_HOME XDG_DATA_HOME XDG_RUNTIME_DIR" EPREFIX="" EROOT="/" ESYSROOT="/" FCFLAGS="-O2 -march=i686 -pipe" FEATURES="assume-digests binpkg-docompress binpkg-dostrip binpkg-logs binpkg-multi-instance buildpkg ccache cgroup config-protect-if-modified distlocks downgrade-backup ebuild-locks fixlafiles ipc-sandbox merge-sync multilib-strict network-sandbox news parallel-fetch pid-sandbox preserve-libs protect-owned qa-unresolved-soname-deps sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr" FFLAGS="-O2 -march=i686 -pipe" GCC_SPECS="" GRUB_PLATFORMS="efi-32 pc" GSETTINGS_BACKEND="dconf" HOME="/root" INFOPATH="/usr/share/gcc-data/i686-pc-linux-gnu/9.3.0/info:/usr/share/binutils-data/i686-pc-linux-gnu/2.35.1/info:/usr/share/info" INPUT_DEVICES="libinput" IUSE_IMPLICIT="abi_x86_32 prefix prefix-guest prefix-stack" KERNEL="linux" L10N="en en-US de de-DE" LANG="en_US.UTF-8" LC_ALL="en_US.UTF-8" LC_MESSAGES="C" LC_PAPER="de_DE.UTF-8" LDFLAGS="-Wl,-O1 -Wl,--as-needed" LIBDIR_x86="lib" LINGUAS="en de" LOGNAME="root" LUA_SINGLE_TARGET="lua5-1" LUA_TARGETS="lua5-1" MAIL="/var/mail/root" MAKEOPTS="--jobs 5 --load-average 7.95" MANPAGER="manpager" MOTD_SHOWN="pam" MULTILIB_ABIS="x86" NOCOLOR="true" OFFICE_IMPLEMENTATION="libreoffice" OPENCL_PROFILE="ocl-icd" OPENGL_PROFILE="xorg-x11" PAGER="/usr/bin/less" PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/bin:/usr/lib/llvm/11/bin" PHP_TARGETS="php7-3 php7-4" POSTGRES_TARGETS="postgres10 postgres11" PWD="/root" PYTHONDONTWRITEBYTECODE="1" PYTHON_SINGLE_TARGET="python3_8" PYTHON_TARGETS="python3_8" QT_GRAPHICSSYSTEM="raster" ROOT="/" ROOTPATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/bin:/usr/lib/llvm/11/bin" RUBY_TARGETS="ruby25 ruby26" SHELL="/bin/bash" SHLVL="2" SSH_TTY="/dev/pts/0" SYSROOT="/" TERM="tmux-256color" TMUX="/tmp//tmux-0/default,3324,0" TMUX_PANE="%2" TWISTED_DISABLE_WRITING_OF_PLUGIN_CACHE="1" UNCACHED_ERR_FD="" USER="root" USERLAND="GNU" VIDEO_CARDS="vmware" XDG_RUNTIME_DIR="/run/user/0" XDG_SESSION_CLASS="user" XDG_SESSION_ID="2" XDG_SESSION_TYPE="tty"
The bug has been closed via the following commit(s): https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bac9c667a80500194ff5d81e97463f253df7c7e2 commit bac9c667a80500194ff5d81e97463f253df7c7e2 Author: Michał Górny <mgorny@gentoo.org> AuthorDate: 2021-02-24 20:08:12 +0000 Commit: Michał Górny <mgorny@gentoo.org> CommitDate: 2021-02-24 20:10:46 +0000 dev-python/aiorpcX: Fix test failures when no resolver is available Closes: https://bugs.gentoo.org/771645 Signed-off-by: Michał Górny <mgorny@gentoo.org> dev-python/aiorpcX/aiorpcX-0.18.5.ebuild | 12 +++++++++++- dev-python/aiorpcX/aiorpcX-0.19.1.ebuild | 10 ++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-)
*** Bug 743148 has been marked as a duplicate of this bug. ***