Page MenuHomePhabricator

Merge #13747: tests: Skip P2PConnection's is_closing() check when not available
ClosedPublic

Authored by jasonbcox on Sep 6 2019, 17:12.

Details

Summary

64b9f27e0e Skip is_closing() check when not available. (Daniel Kraft)

Pull request description:

#13715 introduced a new check for `_transport.is_closing()` in mininode's `P2PConnection`'s.  This function is [only available from Python 3.4.4](https://docs.python.org/3.4/library/asyncio-protocol.html#asyncio.BaseTransport.is_closing), though, while Bitcoin Core is supposed to support all Python 3.4 versions.

In this change, we make the check conditional on `is_closing` being available.  If it is not, then we revert to the behaviour before the check was introduced; this means that #13579 is not fixed for old systems, but at least the tests work as they used to do before.

This includes a small refactoring from a one-line lambda to an inline function, because this makes the code easier to read with more and more conditions being added.

Fixes #13745.

Tree-SHA512: 15be03b8b49c40a946c5b354c5974858d14dc46283ad48ee25d9e269377077ce741c6b379b3f6581ab981cb65be799809afbb99da278caaa2d8d870fa4fb748f

Backport of Core PR13747
https://github.com/bitcoin/bitcoin/pull/13747/files
Completes T677

Test Plan

test_runner.py

Diff Detail

Repository
rABC Bitcoin ABC
Branch
pr13747
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 7352
Build 12747: Bitcoin ABC Buildbot (legacy)
Build 12746: arc lint + arc unit

Event Timeline

Fabien added a subscriber: Fabien.

We should migrate to support python >= 3.5 soon, but OK.

test/functional/test_framework/mininode.py
247

Bitcoin ABC

This revision is now accepted and ready to land.Sep 9 2019, 06:46