--- Begin Message ---
Source: python-h2
Version: 4.1.0-3
Severity: serious
Tags: sid bookworm
User: debian...@lists.debian.org
Usertags: needs-update
User: debian-pyt...@lists.debian.org
Usertags: python3.11
Control: affects -1 src:python3-defaults
Dear maintainer(s),
We are in the transition of adding python3.11 as a supported Python
version [0]. With a recent upload of python3-defaults the autopkgtest of
python-h2 fails in testing when that autopkgtest is run with the binary
packages of python3-defaults from unstable. It passes when run with only
packages from testing. In tabular form:
pass fail
python3-defaults from testing 3.10.6-3
python-h2 from testing 4.1.0-3
all others from testing from testing
I copied some of the output at the bottom of this report.
Currently this regression is blocking the migration of python3-defaults
to testing [1]. https://docs.python.org/3/whatsnew/3.11.html lists
what's new in Python3.11, it may help to identify what needs to be updated.
More information about this bug and the reason for filing it can be found on
https://wiki.debian.org/ContinuousIntegration/RegressionEmailInformation
Paul
[0] https://bugs.debian.org/1021984
[1] https://qa.debian.org/excuses.php?package=python3-defaults
https://ci.debian.net/data/autopkgtest/testing/amd64/p/python-h2/28750369/log.gz
=================================== FAILURES
===================================
________________ TestEventReprs.test_remotesettingschanged_repr
________________
self = <test.test_events.TestEventReprs object at 0x7f86b1a61a50>
def test_remotesettingschanged_repr(self):
"""
RemoteSettingsChanged has a useful debug representation.
"""
e = h2.events.RemoteSettingsChanged()
e.changed_settings = {
h2.settings.SettingCodes.INITIAL_WINDOW_SIZE:
h2.settings.ChangedSetting(
h2.settings.SettingCodes.INITIAL_WINDOW_SIZE,
2**16, 2**15
),
}
> assert repr(e) == (
"<RemoteSettingsChanged changed_settings:{ChangedSetting("
"setting=SettingCodes.INITIAL_WINDOW_SIZE,
original_value=65536, "
"new_value=32768)}>"
)
E AssertionError: assert '<RemoteSetti...alue=32768)}>' ==
'<RemoteSetti...alue=32768)}>'
E Skipping 54 identical leading characters in diff, use -v to show
E - g(setting=SettingCodes.INITIAL_WINDOW_SIZE,
original_value=65536, new_value=32768)}>
E ? ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
E + g(setting=4, original_value=65536, new_value=32768)}>
E ? ^
test/test_events.py:210: AssertionError
_____________________ TestEventReprs.test_streamreset_repr
_____________________
self = <test.test_events.TestEventReprs object at 0x7f86b1cc6e50>
def test_streamreset_repr(self):
"""
StreamEnded has a useful debug representation.
"""
e = h2.events.StreamReset()
e.stream_id = 919
e.error_code = h2.errors.ErrorCodes.ENHANCE_YOUR_CALM
e.remote_reset = False
> assert repr(e) == (
"<StreamReset stream_id:919, "
"error_code:ErrorCodes.ENHANCE_YOUR_CALM, remote_reset:False>"
)
E AssertionError: assert '<StreamReset..._reset:False>' ==
'<StreamReset..._reset:False>'
E - <StreamReset stream_id:919,
error_code:ErrorCodes.ENHANCE_YOUR_CALM, remote_reset:False>
E ?
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
E + <StreamReset stream_id:919, error_code:11, remote_reset:False>
E ? ^^
test/test_events.py:252: AssertionError
________________ TestEventReprs.test_settingsacknowledged_repr
_________________
self = <test.test_events.TestEventReprs object at 0x7f86b1503210>
def test_settingsacknowledged_repr(self):
"""
SettingsAcknowledged has a useful debug representation.
"""
e = h2.events.SettingsAcknowledged()
e.changed_settings = {
h2.settings.SettingCodes.INITIAL_WINDOW_SIZE:
h2.settings.ChangedSetting(
h2.settings.SettingCodes.INITIAL_WINDOW_SIZE,
2**16, 2**15
),
}
> assert repr(e) == (
"<SettingsAcknowledged changed_settings:{ChangedSetting("
"setting=SettingCodes.INITIAL_WINDOW_SIZE,
original_value=65536, "
"new_value=32768)}>"
)
E AssertionError: assert '<SettingsAck...alue=32768)}>' ==
'<SettingsAck...alue=32768)}>'
E Skipping 53 identical leading characters in diff, use -v to show
E - g(setting=SettingCodes.INITIAL_WINDOW_SIZE,
original_value=65536, new_value=32768)}>
E ? ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
E + g(setting=4, original_value=65536, new_value=32768)}>
E ? ^
test/test_events.py:287: AssertionError
___________ TestEventReprs.test_connectionterminated_repr[None-None]
___________
self = <test.test_events.TestEventReprs object at 0x7f86b1503490>
additional_data = None, data_repr = 'None'
@pytest.mark.parametrize("additional_data,data_repr", [
(None, "None"),
(b'some data', "736f6d652064617461")
])
def test_connectionterminated_repr(self, additional_data, data_repr):
"""
ConnectionTerminated has a useful debug representation.
"""
e = h2.events.ConnectionTerminated()
e.error_code = h2.errors.ErrorCodes.INADEQUATE_SECURITY
e.last_stream_id = 33
e.additional_data = additional_data
> assert repr(e) == (
"<ConnectionTerminated
error_code:ErrorCodes.INADEQUATE_SECURITY, "
"last_stream_id:33, additional_data:%s>" % data_repr
)
E AssertionError: assert '<ConnectionT...al_data:None>' ==
'<ConnectionT...al_data:None>'
E - <ConnectionTerminated
error_code:ErrorCodes.INADEQUATE_SECURITY, last_stream_id:33,
additional_data:None>
E ? ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
E + <ConnectionTerminated error_code:12, last_stream_id:33,
additional_data:None>
E ? ^^
test/test_events.py:321: AssertionError
_ TestEventReprs.test_connectionterminated_repr[some
data-736f6d652064617461] __
self = <test.test_events.TestEventReprs object at 0x7f86b1502b50>
additional_data = b'some data', data_repr = '736f6d652064617461'
@pytest.mark.parametrize("additional_data,data_repr", [
(None, "None"),
(b'some data', "736f6d652064617461")
])
def test_connectionterminated_repr(self, additional_data, data_repr):
"""
ConnectionTerminated has a useful debug representation.
"""
e = h2.events.ConnectionTerminated()
e.error_code = h2.errors.ErrorCodes.INADEQUATE_SECURITY
e.last_stream_id = 33
e.additional_data = additional_data
> assert repr(e) == (
"<ConnectionTerminated
error_code:ErrorCodes.INADEQUATE_SECURITY, "
"last_stream_id:33, additional_data:%s>" % data_repr
)
E AssertionError: assert '<ConnectionT...652064617461>' ==
'<ConnectionT...652064617461>'
E - <ConnectionTerminated
error_code:ErrorCodes.INADEQUATE_SECURITY, last_stream_id:33,
additional_data:736f6d652064617461>
E ? ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
E + <ConnectionTerminated error_code:12, last_stream_id:33,
additional_data:736f6d652064617461>
E ? ^^
test/test_events.py:321: AssertionError
=========================== short test summary info
============================
FAILED test/test_events.py::TestEventReprs::test_remotesettingschanged_repr
FAILED test/test_events.py::TestEventReprs::test_streamreset_repr -
Assertion...
FAILED
test/test_events.py::TestEventReprs::test_settingsacknowledged_repr - ...
FAILED
test/test_events.py::TestEventReprs::test_connectionterminated_repr[None-None]
FAILED
test/test_events.py::TestEventReprs::test_connectionterminated_repr[some
data-736f6d652064617461]
======================= 5 failed, 1428 passed in 22.23s
========================
autopkgtest [23:14:39]: test python3-h2-upstream
OpenPGP_signature
Description: OpenPGP digital signature
--- End Message ---