Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 716314 - dev-python/sqlalchemy-1.3.11: several QueuePoolTest tests fail
Summary: dev-python/sqlalchemy-1.3.11: several QueuePoolTest tests fail
Status: RESOLVED TEST-REQUEST
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: TESTFAILURE
Depends on:
Blocks: 731602
  Show dependency tree
 
Reported: 2020-04-05 12:42 UTC by Rolf Eike Beer
Modified: 2020-12-20 23:10 UTC (History)
1 user (show)

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


Attachments
build.log (dev-python_sqlalchemy-1.3.11.log.xz,88.04 KB, application/x-xz)
2020-04-05 12:42 UTC, Rolf Eike Beer
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Rolf Eike Beer archtester 2020-04-05 12:42:22 UTC
Created attachment 630448 [details]
build.log

_____________________________________________________________________________________________________ QueuePoolTest.test_connect_checkout_handler_always_gets_info _____________________________________________________________________________________________________
Traceback (most recent call last):
  File "/var/tmp/portage/dev-python/sqlalchemy-1.3.11/work/SQLAlchemy-1.3.11/test/engine/test_pool.py", line 1360, in test_connect_checkout_handler_always_gets_info
    c = p.connect()
  File "/var/tmp/portage/dev-python/sqlalchemy-1.3.11/work/SQLAlchemy-1.3.11/test/../lib/sqlalchemy/pool/base.py", line 363, in connect
    return _ConnectionFairy._checkout(self)
  File "/var/tmp/portage/dev-python/sqlalchemy-1.3.11/work/SQLAlchemy-1.3.11/test/../lib/sqlalchemy/pool/base.py", line 802, in _checkout
    fairy.connection, fairy._connection_record, fairy
  File "/var/tmp/portage/dev-python/sqlalchemy-1.3.11/work/SQLAlchemy-1.3.11/test/../lib/sqlalchemy/event/attr.py", line 322, in __call__
    fn(*args, **kw)
  File "/var/tmp/portage/dev-python/sqlalchemy-1.3.11/work/SQLAlchemy-1.3.11/test/engine/test_pool.py", line 1351, in checkout
    assert "x" in conn_rec.info
AssertionError: assert 'x' in {}
 +  where {} = <sqlalchemy.pool.base._ConnectionRecord object at 0xf31697b0>.info
______________________________________________________________________________________________________ QueuePoolTest.test_connect_handler_not_called_for_recycled ______________________________________________________________________________________________________
Traceback (most recent call last):
  File "/var/tmp/portage/dev-python/sqlalchemy-1.3.11/work/SQLAlchemy-1.3.11/test/engine/test_pool.py", line 1312, in test_connect_handler_not_called_for_recycled
    assert_raises(Exception, p.connect)
  File "/var/tmp/portage/dev-python/sqlalchemy-1.3.11/work/SQLAlchemy-1.3.11/lib/sqlalchemy/testing/assertions.py", line 303, in assert_raises
    assert success, "Callable did not raise an exception"
AssertionError: Callable did not raise an exception
assert False
___________________________________________________________________________________________________________________ QueuePoolTest.test_max_overflow ____________________________________________________________________________________________________________________
Traceback (most recent call last):
  File "/var/tmp/portage/dev-python/sqlalchemy-1.3.11/work/SQLAlchemy-1.3.11/test/engine/test_pool.py", line 1142, in test_max_overflow
    self._test_overflow(40, 5)
  File "/var/tmp/portage/dev-python/sqlalchemy-1.3.11/work/SQLAlchemy-1.3.11/test/engine/test_pool.py", line 878, in _test_overflow
    assert not pool._refs
AssertionError: assert not {<sqlalchemy.pool.base._ConnectionRecord object at 0xef046a90>}
 +  where {<sqlalchemy.pool.base._ConnectionRecord object at 0xef046a90>} = pool._refs
____________________________________________________________________________________________________________________ QueuePoolTest.test_no_overflow ____________________________________________________________________________________________________________________
Traceback (most recent call last):
  File "/var/tmp/portage/dev-python/sqlalchemy-1.3.11/work/SQLAlchemy-1.3.11/test/engine/test_pool.py", line 1137, in test_no_overflow
    self._test_overflow(40, 0)
  File "/var/tmp/portage/dev-python/sqlalchemy-1.3.11/work/SQLAlchemy-1.3.11/test/engine/test_pool.py", line 878, in _test_overflow
    assert not pool._refs
AssertionError: assert not {<sqlalchemy.pool.base._ConnectionRecord object at 0xef046a90>}
 +  where {<sqlalchemy.pool.base._ConnectionRecord object at 0xef046a90>} = pool._refs
__________________________________________________________________________________________________________________ QueuePoolTest.test_queuepool_close __________________________________________________________________________________________________________________
Traceback (most recent call last):
  File "/var/tmp/portage/dev-python/sqlalchemy-1.3.11/work/SQLAlchemy-1.3.11/test/engine/test_pool.py", line 724, in test_queuepool_close
    self._do_testqueuepool(useclose=True)
  File "/var/tmp/portage/dev-python/sqlalchemy-1.3.11/work/SQLAlchemy-1.3.11/test/engine/test_pool.py", line 776, in _do_testqueuepool
    assert not pool._refs
AssertionError: assert not {<sqlalchemy.pool.base._ConnectionRecord object at 0xef046a90>}
 +  where {<sqlalchemy.pool.base._ConnectionRecord object at 0xef046a90>} = pool._refs
___________________________________________________________________________________________________________________ QueuePoolTest.test_queuepool_del ___________________________________________________________________________________________________________________
Traceback (most recent call last):
  File "/var/tmp/portage/dev-python/sqlalchemy-1.3.11/work/SQLAlchemy-1.3.11/test/engine/test_pool.py", line 721, in test_queuepool_del
    self._do_testqueuepool(useclose=False)
  File "/var/tmp/portage/dev-python/sqlalchemy-1.3.11/work/SQLAlchemy-1.3.11/test/engine/test_pool.py", line 776, in _do_testqueuepool
    assert not pool._refs
AssertionError: assert not {<sqlalchemy.pool.base._ConnectionRecord object at 0xef046a90>}
 +  where {<sqlalchemy.pool.base._ConnectionRecord object at 0xef046a90>} = pool._refs
____________________________________________________________________________________________________________ QueuePoolTest.test_recycle_on_soft_invalidate _____________________________________________________________________________________________________________
Traceback (most recent call last):
  File "/var/tmp/portage/dev-python/sqlalchemy-1.3.11/work/SQLAlchemy-1.3.11/test/engine/test_pool.py", line 1227, in test_recycle_on_soft_invalidate
    is_not_(c3.connection, c_ref())
  File "/var/tmp/portage/dev-python/sqlalchemy-1.3.11/work/SQLAlchemy-1.3.11/lib/sqlalchemy/testing/assertions.py", line 265, in is_not_
    assert a is not b, msg or "%r is %r" % (a, b)
AssertionError: <Mock id='4011097328'> is <Mock id='4011097328'>
assert <Mock id='4011097328'> is not <Mock id='4011097328'>


Portage 2.3.84 (python 3.6.10-final-0, default/linux/hppa/17.0, gcc-9.2.0, glibc-2.29-r7, 5.4.6-parisc64 parisc64)
=================================================================
System uname: Linux-5.4.6-parisc64-parisc64-PA8800_-Mako-with-gentoo-2.6
KiB Mem:     8230904 total,   1588984 free
KiB Swap:    4194300 total,   4194300 free
Timestamp of repository gentoo: Sun, 05 Apr 2020 00:15:01 +0000
Head commit of repository gentoo: 6114323f77c5486dcc0da5b7ea2b56d4c50ba365
sh bash 4.4_p23-r1
ld GNU ld (Gentoo 2.32 p2) 2.32.0
ccache version 3.7.7 [disabled]
app-shells/bash:          4.4_p23-r1::gentoo
dev-lang/perl:            5.30.1::gentoo
dev-lang/python:          2.7.17-r1::gentoo, 3.6.10::gentoo, 3.7.7::gentoo
dev-util/ccache:          3.7.7-r1::gentoo
dev-util/cmake:           3.16.5::gentoo
sys-apps/baselayout:      2.6-r1::gentoo
sys-apps/openrc:          0.42.1::gentoo
sys-apps/sandbox:         2.13::gentoo
sys-devel/autoconf:       2.13-r1::gentoo, 2.69-r4::gentoo
sys-devel/automake:       1.16.1-r1::gentoo
sys-devel/binutils:       2.32-r1::gentoo, 2.33.1-r1::gentoo
sys-devel/gcc:            9.2.0-r2::gentoo
sys-devel/gcc-config:     2.1::gentoo
sys-devel/libtool:        2.4.6-r6::gentoo
sys-devel/make:           4.2.1-r4::gentoo
sys-kernel/linux-headers: 5.4::gentoo (virtual/os-headers)
sys-libs/glibc:           2.29-r7::gentoo
Repositories:

gentoo
    location: /usr/portage
    sync-type: rsync
    sync-uri: rsync://rsync.gentoo.org/gentoo-portage
    priority: -1000
    sync-rsync-verify-metamanifest: no
    sync-rsync-verify-jobs: 1
    sync-rsync-verify-max-age: 24
    sync-rsync-extra-opts: 

ACCEPT_KEYWORDS="hppa"
ACCEPT_LICENSE="@FREE"
CBUILD="hppa2.0-unknown-linux-gnu"
CFLAGS="-O2 -pipe -march=2.0"
CHOST="hppa2.0-unknown-linux-gnu"
CONFIG_PROTECT="/etc /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.4/ext-active/ /etc/php/cgi-php7.4/ext-active/ /etc/php/cli-php7.4/ext-active/ /etc/revdep-rebuild /etc/sandbox.d /etc/terminfo /etc/texmf/language.dat.d /etc/texmf/language.def.d /etc/texmf/updmap.d /etc/texmf/web2c"
CXXFLAGS="-O2 -pipe -march=2.0"
DISTDIR="/usr/portage/distfiles"
ENV_UNSET="DBUS_SESSION_BUS_ADDRESS DISPLAY GOBIN PERL5LIB PERL5OPT PERLPREFIX PERL_CORE PERL_MB_OPT PERL_MM_OPT XAUTHORITY XDG_CACHE_HOME XDG_CONFIG_HOME XDG_DATA_HOME XDG_RUNTIME_DIR"
FCFLAGS=""
FEATURES="assume-digests binpkg-docompress binpkg-dostrip binpkg-logs config-protect-if-modified distlocks ebuild-locks fixlafiles ipc-sandbox merge-sync multilib-strict network-sandbox news parallel-fetch pid-sandbox preserve-libs protect-owned sandbox sfperms strict strict-keepdir unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr"
FFLAGS=""
GENTOO_MIRRORS="ftp://castor.sf-tec.de/ ftp://ftp.join.uni-muenster.de/pub/linux/distributions/gentoo ftp://ftp.wh2.tu-dresden.de/pub/mirrors/gentoo "
LANG="en_US.UTF-8"
LDFLAGS="-Wl,-O1 -Wl,--as-needed"
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="acl berkdb big-endian bzip2 cli crypt cups firefox foomaticdb fortran gdbm gpm hppa iconv imlib ipv6 libwww ncurses nls nptl openmp pam pcre readline seccomp spell split-usr ssl tcpd unicode xattr zlib" ADA_TARGET="gnat_2018" 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="karbon sheets words" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" ELIBC="glibc" GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock greis isync itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf skytraq superstar2 timing tsip tripmate tnt ublox ubx" INPUT_DEVICES="libinput keyboard mouse" KERNEL="linux" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php7-2" POSTGRES_TARGETS="postgres10 postgres11" PYTHON_SINGLE_TARGET="python3_6" PYTHON_TARGETS="python2_7 python3_6" RUBY_TARGETS="ruby24 ruby25" USERLAND="GNU" VIDEO_CARDS="fbdev dummy v4l" 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, EMERGE_DEFAULT_OPTS, INSTALL_MASK, LC_ALL, LINGUAS, MAKEOPTS, PORTAGE_BINHOST, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS
Comment 1 Agostino Sarubbo gentoo-dev 2020-07-08 09:06:55 UTC
I can reproduce with 1.3.17
Comment 2 Sam James archtester Gentoo Infrastructure gentoo-dev Security 2020-12-13 01:00:40 UTC
Still an issue with .20?
Comment 3 Rolf Eike Beer archtester 2020-12-20 23:10:06 UTC
I see no errors in .20.