Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 641906 - dev-python/future-0.16.0 with dev-lang/python-3.6.3-r1 - src_test(): ERROR: test_fileno (test_future.test_urllibnet.urlopenNetworkTests)
Summary: dev-python/future-0.16.0 with dev-lang/python-3.6.3-r1 - src_test(): ERROR: t...
Status: RESOLVED DUPLICATE of bug 626366
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Python Gentoo Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-12-21 09:14 UTC by Paolo Pedroni
Modified: 2018-05-10 12:01 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments
future-0.16.0:20171221-083301.log.gz (future-0.16.0:20171221-083301.log.gz,57.99 KB, application/gzip)
2017-12-21 09:14 UTC, Paolo Pedroni
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Paolo Pedroni 2017-12-21 09:14:22 UTC
Created attachment 511352 [details]
future-0.16.0:20171221-083301.log.gz

==================================================================================================== FAILURES ======================
==============================================================================
________________________________________________________________________________________ urlopenNetworkTests.test_fileno ___________
______________________________________________________________________________

self = <test_future.test_urllibnet.urlopenNetworkTests testMethod=test_fileno>

    @unittest.skipIf(sys.platform in ('win32',), 'not appropriate for Windows')
    @skip26
    def test_fileno(self):
        # Make sure fd returned by fileno is valid.
        with self.urlopen("http://www.python.org/", timeout=None) as open_url:
            fd = open_url.fileno()
            with os.fdopen(fd, 'rb') as f:
>               self.assertTrue(f.read(), "reading from file created using fd "
                                          "returned by fileno failed")

tests/test_future/test_urllibnet.py:119: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/lib64/python3.6/contextlib.py:88: in __exit__
    next(self.gen)
tests/test_future/test_urllibnet.py:63: in urlopen
    r.close()
/usr/lib64/python3.6/http/client.py:410: in close
    self._close_conn()
/usr/lib64/python3.6/http/client.py:403: in _close_conn
    fp.close()
/usr/lib64/python3.6/socket.py:656: in close
    self._sock._decref_socketios()
/usr/lib64/python3.6/socket.py:407: in _decref_socketios
    self.close()
/usr/lib64/python3.6/socket.py:417: in close
    self._real_close()
/usr/lib64/python3.6/ssl.py:1059: in _real_close
    socket._real_close(self)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <ssl.SSLSocket [closed] fd=-1, family=AddressFamily.AF_INET6, type=SocketKind.SOCK_STREAM, proto=6>, _ss = <class '_socket.socket'>

    def _real_close(self, _ss=_socket.socket):
        # This function should not reference any globals. See issue #808164.
>       _ss.close(self)
E       OSError: [Errno 9] Bad file descriptor

/usr/lib64/python3.6/socket.py:411: OSError
___________________________________________________________________________________________________ test_main ____________________________________________________________________________________________________

    def test_main():
        # support.requires('network')
        support.run_unittest(URLTimeoutTest,
                             urlopenNetworkTests,
>                            urlretrieveNetworkTests)

tests/test_future/test_urllibnet.py:227: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
../future-0.16.0-python3_6/lib/future/backports/test/support.py:1665: in run_unittest
    _run_suite(suite)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

suite = <unittest.suite.TestSuite tests=[None, None, None]>

    def _run_suite(suite):
        """Run tests from a unittest.TestSuite-derived class."""
        if verbose:
            runner = unittest.TextTestRunner(sys.stdout, verbosity=2,
                                             failfast=failfast)
        else:
            runner = BasicTestRunner()
    
        result = runner.run(suite)
        if not result.wasSuccessful():
            if len(result.errors) == 1 and not result.failures:
                err = result.errors[0][1]
            elif len(result.failures) == 1 and not result.errors:
                err = result.failures[0][1]
            else:
                err = "multiple errors occurred"
                if not verbose: err += "; run in verbose mode for details"
>           raise TestFailed(err)
E           future.backports.test.support.TestFailed: Traceback (most recent call last):
E             File "/var/tmp/portage/dev-python/future-0.16.0/work/future-0.16.0/tests/test_future/test_urllibnet.py", line 119, in test_fileno
E               self.assertTrue(f.read(), "reading from file created using fd "
E             File "/usr/lib64/python3.6/contextlib.py", line 88, in __exit__
E               next(self.gen)
E             File "/var/tmp/portage/dev-python/future-0.16.0/work/future-0.16.0/tests/test_future/test_urllibnet.py", line 63, in urlopen
E               r.close()
E             File "/usr/lib64/python3.6/http/client.py", line 410, in close
E               self._close_conn()
E             File "/usr/lib64/python3.6/http/client.py", line 403, in _close_conn
E               fp.close()
E             File "/usr/lib64/python3.6/socket.py", line 656, in close
E               self._sock._decref_socketios()
E             File "/usr/lib64/python3.6/socket.py", line 407, in _decref_socketios
E               self.close()
E             File "/usr/lib64/python3.6/socket.py", line 417, in close
E               self._real_close()
E             File "/usr/lib64/python3.6/ssl.py", line 1059, in _real_close
E               socket._real_close(self)
E             File "/usr/lib64/python3.6/socket.py", line 411, in _real_close
E               _ss.close(self)
E           OSError: [Errno 9] Bad file descriptor

../future-0.16.0-python3_6/lib/future/backports/test/support.py:1640: TestFailed
---------------------------------------------------------------------------------------------- Captured stdout call ----------------------------------------------------------------------------------------------
testURLread (test_future.test_urllibnet.URLTimeoutTest) ... ok
test_bad_address (test_future.test_urllibnet.urlopenNetworkTests) ... ok
test_basic (test_future.test_urllibnet.urlopenNetworkTests) ... ok
test_fileno (test_future.test_urllibnet.urlopenNetworkTests) ... ERROR
test_getcode (test_future.test_urllibnet.urlopenNetworkTests) ... ok
test_geturl (test_future.test_urllibnet.urlopenNetworkTests) ... ok
test_info (test_future.test_urllibnet.urlopenNetworkTests) ... ok
test_readlines (test_future.test_urllibnet.urlopenNetworkTests) ... ok
test_basic (test_future.test_urllibnet.urlretrieveNetworkTests) ... ok
test_data_header (test_future.test_urllibnet.urlretrieveNetworkTests) ... ok
test_header (test_future.test_urllibnet.urlretrieveNetworkTests) ... ok
test_reporthook (test_future.test_urllibnet.urlretrieveNetworkTests) ... ok
test_specified_path (test_future.test_urllibnet.urlretrieveNetworkTests) ... ok

======================================================================
ERROR: test_fileno (test_future.test_urllibnet.urlopenNetworkTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/var/tmp/portage/dev-python/future-0.16.0/work/future-0.16.0/tests/test_future/test_urllibnet.py", line 119, in test_fileno
    self.assertTrue(f.read(), "reading from file created using fd "
  File "/usr/lib64/python3.6/contextlib.py", line 88, in __exit__
    next(self.gen)
  File "/var/tmp/portage/dev-python/future-0.16.0/work/future-0.16.0/tests/test_future/test_urllibnet.py", line 63, in urlopen
    r.close()
  File "/usr/lib64/python3.6/http/client.py", line 410, in close
    self._close_conn()
  File "/usr/lib64/python3.6/http/client.py", line 403, in _close_conn
   fp.close()
  File "/usr/lib64/python3.6/socket.py", line 656, in close
    self._sock._decref_socketios()
  File "/usr/lib64/python3.6/socket.py", line 407, in _decref_socketios
    self.close()
  File "/usr/lib64/python3.6/socket.py", line 417, in close
    self._real_close()
  File "/usr/lib64/python3.6/ssl.py", line 1059, in _real_close
    socket._real_close(self)
  File "/usr/lib64/python3.6/socket.py", line 411, in _real_close
    _ss.close(self)
OSError: [Errno 9] Bad file descriptor

----------------------------------------------------------------------
Ran 13 tests in 1.423s

FAILED (errors=1)
================================================================================================ warnings summary ================================================================================================
tests/test_future/test_urllib_response.py::TestFile
  cannot collect test class 'TestFile' because it has a __init__ constructor

-- Docs: http://doc.pytest.org/en/latest/warnings.html
=================================================================== 2 failed, 998 passed, 35 skipped, 46 xfailed, 1 warnings in 35.38 seconds ====================================================================
 * ERROR: dev-python/future-0.16.0::gentoo failed (test phase):
 *   Tests failed under python3.6

# emerge --info =dev-python/future-0.16.0
Portage 2.3.13 (python 3.5.4-final-0, default/linux/amd64/17.0/desktop/plasma/systemd, gcc-7.2.0, glibc-2.25-r9, 4.14.7-gentoo x86_64)
=================================================================
                         System Settings
=================================================================
System uname: Linux-4.14.7-gentoo-x86_64-Intel-R-_Core-TM-_i7-2600_CPU_@_3.40GHz-with-gentoo-2.4.1
KiB Mem:    15861764 total,   2692496 free
KiB Swap:    8171516 total,   7282768 free
Timestamp of repository gentoo: Wed, 20 Dec 2017 07:45:01 +0000
Head commit of repository gentoo: 35978a880d48fb488c4f33512edee4ed62494b3c
sh dash 0.5.9.1-r3
ld GNU gold (Gentoo 2.29.1 p3 2.29.1) 1.14
distcc 3.2rc1 x86_64-pc-linux-gnu [enabled]
ccache version 3.3.4 [disabled]
app-shells/bash:          4.3_p48-r1::gentoo
dev-java/java-config:     2.2.0-r3::gentoo
dev-lang/perl:            5.26.1-r1::gentoo
dev-lang/python:          2.7.14-r1::gentoo, 3.5.4-r1::gentoo, 3.6.3-r1::gentoo
dev-util/ccache:          3.3.4-r1::gentoo
dev-util/cmake:           3.8.2::gentoo
dev-util/pkgconfig:       0.29.2::gentoo
sys-apps/baselayout:      2.4.1-r2::gentoo
sys-apps/sandbox:         2.10-r4::gentoo
sys-devel/autoconf:       2.13::gentoo, 2.69::gentoo
sys-devel/automake:       1.15.1-r1::gentoo
sys-devel/binutils:       2.29.1-r1::gentoo
sys-devel/gcc:            7.2.0::gentoo
sys-devel/gcc-config:     1.9.1::gentoo
sys-devel/libtool:        2.4.6-r3::gentoo
sys-devel/make:           4.2.1::gentoo
sys-kernel/linux-headers: 4.10::gentoo (virtual/os-headers)
sys-libs/glibc:           2.25-r9::gentoo
Repositories:

gentoo
    location: /usr/portage
    sync-type: rsync
    sync-uri: rsync://rsync.europe.gentoo.org/gentoo-portage
    priority: -1000
    sync-rsync-extra-opts: 

x-portage
    location: /usr/local/portage
    masters: gentoo
    priority: 0

ACCEPT_KEYWORDS="amd64"
ACCEPT_LICENSE="* -@EULA"
CBUILD="x86_64-pc-linux-gnu"
CFLAGS="-O2 -pipe -march=sandybridge -msahf --param l1-cache-size=32 --param l1-cache-line-size=64 --param l2-cache-size=8192 -flto=8 -fuse-linker-plugin"
CHOST="x86_64-pc-linux-gnu"
CONFIG_PROTECT="/etc /usr/lib64/libreoffice/program/sofficerc /usr/share/config /usr/share/gnupg/qualified.txt"
CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/dconf /etc/env.d /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/php/apache2-php7.1/ext-active/ /etc/php/cgi-php7.1/ext-active/ /etc/php/cli-php7.1/ext-active/ /etc/revdep-rebuild /etc/sandbox.d /etc/terminfo"
CXXFLAGS="-O2 -pipe -march=sandybridge -msahf --param l1-cache-size=32 --param l1-cache-line-size=64 --param l2-cache-size=8192 -flto=8 -fuse-linker-plugin"
DISTDIR="/usr/portage/distfiles"
EMERGE_DEFAULT_OPTS="--keep-going y --with-bdeps y"
FCFLAGS="-O2 -pipe"
FEATURES="assume-digests binpkg-logs cgroup compress-build-logs config-protect-if-modified distcc distlocks ebuild-locks ipc-sandbox merge-sync multilib-strict news parallel-fetch protect-owned sandbox sfperms split-elog split-log strict test unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr"
FFLAGS="-O2 -pipe"
GENTOO_MIRRORS="http://tux.rainside.sk/gentoo/ http://mirror.leaseweb.com/gentoo/ http://ftp.uni-erlangen.de/pub/mirrors/gentoo http://ftp.spline.inf.fu-berlin.de/mirrors/gentoo/"
LANG="it_IT.UTF-8"
LDFLAGS="-Wl,-O1 -Wl,--as-needed -Wl,--hash-style=gnu -Wl,--sort-common -flto=8 -fuse-linker-plugin"
MAKEOPTS="-j11 -l8"
PKGDIR="/usr/portage/packages"
PORTAGE_CONFIGROOT="/"
PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages --exclude=/.git"
PORTAGE_TMPDIR="/var/tmp"
USE="X a52 aac aalib acl acpi activities adns alsa amd64 ao audiofile bash-completion bluetooth branding bzip2 cairo caps cdda cddb cdparanoia cdr cli cracklib crypt css cups curl cxx dbus declarative dga djvu dri dts dvd dvdr emboss encode exif expat fbcon ffmpeg fftw firefox flac fontconfig foomaticdb fortran ftp gd gdbm geoip gif gimp glamor gmp gnutls gphoto2 gpm graphviz gtk handbook iconv icu idn imagemagick imlib ipv6 java javascript jbig jpeg jpeg2k kde kipi kwallet lame lcms libass libcaca libnotify libsamplerate lm_sensors lua lzma lzo mad mmap mng modules mp3 mp4 mpeg mplayer multilib musicbrainz ncurses nls nptl nsplugin offensive ogg openal openexr opengl openmp pam pango pcre pdf phonon plasma png policykit postscript ppds pulseaudio qml qt3support qt5 rdesktop readline recode samba sctp sdl seccomp session sndfile sockets speex spell sqlite ssl startup-notification subversion svg symlink syslog systemd sysvipc taglib theora threads tidy tiff truetype udev udisks unicode upower usb vaapi vcd vim-syntax vnc vorbis wayland widgets win32codecs wmf wxwidgets x264 xattr xcb xcomposite xine xinerama xml xpm xscreensaver xv xvid yahoo zlib" ABI_X86="64" ALSA_CARDS="hda-intel virmidi" APACHE2_MODULES="authn_core authz_core socache_shmcb unixd actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias" CALLIGRA_FEATURES="kexi words flow plan sheets stage tables krita karbon braindump author" CAMERAS="kodak ptp2" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" CPU_FLAGS_X86="aes avx mmx mmxext pclmul popcnt sse sse2 sse3 sse4_1 sse4_2 ssse3" CURL_SSL="gnutls" ELIBC="glibc" GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock isync itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf skytraq superstar2 timing tsip tripmate tnt ublox ubx" GRUB_PLATFORMS="pc" INPUT_DEVICES="libinput" KERNEL="linux" L10N="it en" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="nlpsolver" LINGUAS="it it_IT" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php5-6 php7-0" POSTGRES_TARGETS="postgres9_5" PYTHON_SINGLE_TARGET="python3_6" PYTHON_TARGETS="python2_7 python3_6 pypy pypy3" RUBY_TARGETS="ruby22" USERLAND="GNU" VIDEO_CARDS="intel i965" XTABLES_ADDONS="quota2 psd pknock lscan length2 ipv4options ipset ipp2p iface geoip fuzzy condition tee tarpit sysrq steal rawnat logmark ipmark dhcpmac delude chaos account"
Unset:  CC, CPPFLAGS, CTARGET, CXX, INSTALL_MASK, LC_ALL, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS

=================================================================
                        Package Settings
=================================================================

dev-python/future-0.16.0::gentoo was built with the following:
USE="test" ABI_X86="(64)" PYTHON_TARGETS="python2_7 python3_5 -python3_4 -python3_6"

# emerge -1pqv =dev-python/future-0.16.0
[ebuild   R   ] dev-python/future-0.16.0  USE="{test}" PYTHON_TARGETS="python2_7 python3_6* -python3_4 -python3_5*"
Comment 1 Toralf Förster gentoo-dev 2018-05-10 12:01:06 UTC

*** This bug has been marked as a duplicate of bug 626366 ***