--- Begin Message ---
Source: python-pysaml2
Version: 4.5.0-7
Severity: serious
Justification: FTBFS on amd64
Tags: bullseye sid ftbfs
Usertags: ftbfs-20200222 ftbfs-bullseye
Hi,
During a rebuild of all packages in sid, your package failed to build
on amd64.
Relevant part (hopefully):
> make[1]: Entering directory '/<<PKGBUILDDIR>>'
> make[1]: pyversions: Command not found
> py3versions: no X-Python3-Version in control file, using supported versions
> set -e ; for pyvers in 3.8 3.7 ; do \
> PYTHONPATH=/<<PKGBUILDDIR>>/src:. python$pyvers -m pytest tests ; \
> done
> ============================= test session starts
> ==============================
> platform linux -- Python 3.8.2rc2, pytest-4.6.9, py-1.8.1, pluggy-0.13.0
> rootdir: /<<PKGBUILDDIR>>
> plugins: betamax-0.8.1
> collected 570 items
>
> tests/test_00_xmldsig.py .............................................. [
> 8%]
> tests/test_01_xmlenc.py ...... [
> 9%]
> tests/test_02_saml.py .................................................. [
> 17%]
> ............................. [
> 22%]
> tests/test_03_saml2.py ....................... [
> 27%]
> tests/test_04_samlp.py ........................ [
> 31%]
> tests/test_05_md.py .................................................... [
> 40%]
> ...... [
> 41%]
> tests/test_06_setarg.py .... [
> 42%]
> tests/test_10_time_util.py ................. [
> 45%]
> tests/test_12_s_utils.py ..................................... [
> 51%]
> tests/test_13_validate.py ....... [
> 52%]
> tests/test_19_attribute_converter.py ................... [
> 56%]
> tests/test_20_assertion.py ..................................... [
> 62%]
> tests/test_22_mdie.py . [
> 62%]
> tests/test_30_mdstore.py .F..F.......... [
> 65%]
> tests/test_31_config.py ...........F... [
> 68%]
> tests/test_32_cache.py ......... [
> 69%]
> tests/test_33_identifier.py ....... [
> 70%]
> tests/test_34_population.py .... [
> 71%]
> tests/test_36_mdbcache.py ...... [
> 72%]
> tests/test_37_entity_categories.py ...... [
> 73%]
> tests/test_38_metadata_filter.py .. [
> 74%]
> tests/test_39_metadata.py . [
> 74%]
> tests/test_40_sigver.py ................. [
> 77%]
> tests/test_41_response.py ... [
> 77%]
> tests/test_42_enc.py ... [
> 78%]
> tests/test_43_soap.py ..... [
> 79%]
> tests/test_44_authnresp.py ..... [
> 80%]
> tests/test_50_server.py ................................ [
> 85%]
> tests/test_51_client.py .................................. [
> 91%]
> tests/test_52_default_sign_alg.py ... [
> 92%]
> tests/test_60_sp.py .. [
> 92%]
> tests/test_62_vo.py ........ [
> 93%]
> tests/test_63_ecp.py . [
> 94%]
> tests/test_64_artifact.py ... [
> 94%]
> tests/test_65_authn_query.py .. [
> 94%]
> tests/test_66_name_id_mapping.py .. [
> 95%]
> tests/test_67_manage_name_id.py .. [
> 95%]
> tests/test_68_assertion_id.py . [
> 95%]
> tests/test_69_discovery.py ..... [
> 96%]
> tests/test_70_redirect_signing.py . [
> 96%]
> tests/test_72_eptid.py .. [
> 97%]
> tests/test_75_mongodb.py .. [
> 97%]
> tests/test_76_metadata_in_mdb.py . [
> 97%]
> tests/test_77_authn_context.py ...... [
> 98%]
> tests/test_81_certificates.py .... [
> 99%]
> tests/test_88_nsprefix.py .. [
> 99%]
> tests/test_xsw.py .
> [100%]
>
> =================================== FAILURES
> ===================================
> _______________________________ test_incommon_1
> ________________________________
>
> def test_incommon_1():
> mds = MetadataStore(ATTRCONV, sec_config,
> disable_ssl_certificate_validation=True)
>
> > mds.imp(METADATACONF["2"])
>
> tests/test_30_mdstore.py:196:
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
> _
> src/saml2/mdstore.py:968: in imp
> _md.load()
> src/saml2/mdstore.py:672: in load
> return self.parse_and_check_signature(_txt)
> src/saml2/mdstore.py:635: in parse_and_check_signature
> self.parse(txt)
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
> _
>
> self = <saml2.mdstore.MetaDataFile object at 0x7f6ab4fb3f70>
> xmlstr = b'<?xml version="1.0" encoding="UTF-8"?><EntitiesDescriptor
> xmlns="urn:oasis:names:tc:SAML:2.0:metadata" xmlns:ds="htt...
> <EmailAddress>secur...@mghpcc.org</EmailAddress>\n
> </ContactPerson>\n</EntityDescriptor>\n</EntitiesDescriptor>\n'
>
> def parse(self, xmlstr):
> self.entities_descr = md.entities_descriptor_from_string(xmlstr)
>
> if not self.entities_descr:
> self.entity_descr = md.entity_descriptor_from_string(xmlstr)
> if self.entity_descr:
> self.do_entity_descriptor(self.entity_descr)
> else:
> try:
> valid_instance(self.entities_descr)
> except NotValid as exc:
> logger.error("Invalid XML message: %s", exc.args[0])
> return
>
> if self.check_validity:
> try:
> if not valid(self.entities_descr.valid_until):
> > raise ToOld(
> "Metadata not valid anymore, it's only valid "
> "until %s" % (
> self.entities_descr.valid_until,))
> E saml2.mdstore.ToOld: Metadata not valid
> anymore, it's only valid until 2020-02-18T10:00:00Z
>
> src/saml2/mdstore.py:538: ToOld
> ________________________________ test_switch_1
> _________________________________
>
> def test_switch_1():
> mds = MetadataStore(ATTRCONV, sec_config,
> disable_ssl_certificate_validation=True)
>
> > mds.imp(METADATACONF["5"])
>
> tests/test_30_mdstore.py:263:
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
> _
> src/saml2/mdstore.py:968: in imp
> _md.load()
> src/saml2/mdstore.py:672: in load
> return self.parse_and_check_signature(_txt)
> src/saml2/mdstore.py:635: in parse_and_check_signature
> self.parse(txt)
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
> _
>
> self = <saml2.mdstore.MetaDataFile object at 0x7f6ab4dada00>
> xmlstr = b'<?xml version="1.0" encoding="UTF-8"?>\n<EntitiesDescriptor
> xmlns="urn:oasis:names:tc:SAML:2.0:metadata"\n ....switch.ch/\n
> </OrganizationURL>\n </Organization>\n
> </EntityDescriptor>\n</EntitiesDescriptor>\n'
>
> def parse(self, xmlstr):
> self.entities_descr = md.entities_descriptor_from_string(xmlstr)
>
> if not self.entities_descr:
> self.entity_descr = md.entity_descriptor_from_string(xmlstr)
> if self.entity_descr:
> self.do_entity_descriptor(self.entity_descr)
> else:
> try:
> valid_instance(self.entities_descr)
> except NotValid as exc:
> logger.error("Invalid XML message: %s", exc.args[0])
> return
>
> if self.check_validity:
> try:
> if not valid(self.entities_descr.valid_until):
> > raise ToOld(
> "Metadata not valid anymore, it's only valid "
> "until %s" % (
> self.entities_descr.valid_until,))
> E saml2.mdstore.ToOld: Metadata not valid
> anymore, it's only valid until 2020-02-10T09:59:21Z
>
> src/saml2/mdstore.py:538: ToOld
> _______________________ test_assertion_consumer_service
> ________________________
>
> def test_assertion_consumer_service():
> c = IdPConfig()
> c.load_file(dotname("idp_conf"))
> c.context = "idp"
>
> > c.metadata.load("local", full_path("InCommon-metadata.xml"))
>
> tests/test_31_config.py:395:
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
> _
> src/saml2/mdstore.py:910: in load
> _md.load()
> src/saml2/mdstore.py:672: in load
> return self.parse_and_check_signature(_txt)
> src/saml2/mdstore.py:635: in parse_and_check_signature
> self.parse(txt)
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
> _
>
> self = <saml2.mdstore.MetaDataFile object at 0x7f6ab3032430>
> xmlstr = b'<?xml version="1.0" encoding="UTF-8"?><EntitiesDescriptor
> xmlns="urn:oasis:names:tc:SAML:2.0:metadata" xmlns:ds="htt...
> <EmailAddress>secur...@mghpcc.org</EmailAddress>\n
> </ContactPerson>\n</EntityDescriptor>\n</EntitiesDescriptor>\n'
>
> def parse(self, xmlstr):
> self.entities_descr = md.entities_descriptor_from_string(xmlstr)
>
> if not self.entities_descr:
> self.entity_descr = md.entity_descriptor_from_string(xmlstr)
> if self.entity_descr:
> self.do_entity_descriptor(self.entity_descr)
> else:
> try:
> valid_instance(self.entities_descr)
> except NotValid as exc:
> logger.error("Invalid XML message: %s", exc.args[0])
> return
>
> if self.check_validity:
> try:
> if not valid(self.entities_descr.valid_until):
> > raise ToOld(
> "Metadata not valid anymore, it's only valid "
> "until %s" % (
> self.entities_descr.valid_until,))
> E saml2.mdstore.ToOld: Metadata not valid
> anymore, it's only valid until 2020-02-18T10:00:00Z
>
> src/saml2/mdstore.py:538: ToOld
> =============================== warnings summary
> ===============================
> src/saml2/validate.py:41
> /<<PKGBUILDDIR>>/src/saml2/validate.py:41: DeprecationWarning: invalid
> escape sequence \w
> NCNAME = re.compile("(?P<NCName>[a-zA-Z_](\w|[_.-])*)")
>
> src/saml2/validate.py:461
> /<<PKGBUILDDIR>>/src/saml2/validate.py:461: DeprecationWarning: invalid
> escape sequence \/
> "^[a-z0-9]+([-.]{ 1 }[a-z0-9]+).[a-z]{2,5}(:[0-9]{1,5})?(\/.)?$",
>
> src/saml2/time_util.py:21
> /<<PKGBUILDDIR>>/src/saml2/time_util.py:21: DeprecationWarning: invalid
> escape sequence \d
> "^(\d{4,4}-\d{2,2}-\d{2,2}T\d{2,2}:\d{2,2}:\d{2,2})(\.\d*)?Z?$")
>
> tests/test_20_assertion.py:157
> /<<PKGBUILDDIR>>/tests/test_20_assertion.py:157: DeprecationWarning:
> invalid escape sequence \.
> "mail": [".*@.*\.umu\.se"],
>
> tests/test_20_assertion.py:179
> /<<PKGBUILDDIR>>/tests/test_20_assertion.py:179: DeprecationWarning:
> invalid escape sequence \.
> "mail": [".*@.*\.umu\.se"],
>
> tests/test_20_assertion.py:201
> /<<PKGBUILDDIR>>/tests/test_20_assertion.py:201: DeprecationWarning:
> invalid escape sequence \.
> "mail": [".*@.*\.umu\.se"],
>
> tests/test_20_assertion.py:231
> /<<PKGBUILDDIR>>/tests/test_20_assertion.py:231: DeprecationWarning:
> invalid escape sequence \.
> "mail": [".*@.*\.umu\.se"],
>
> tests/test_20_assertion.py:267
> /<<PKGBUILDDIR>>/tests/test_20_assertion.py:267: DeprecationWarning:
> invalid escape sequence \.
> "mail": [".*@.*\.umu\.se"],
>
> tests/test_20_assertion.py:691
> /<<PKGBUILDDIR>>/tests/test_20_assertion.py:691: DeprecationWarning:
> invalid escape sequence \.
> "mail": [".*@example\.com$"],
>
> tests/test_20_assertion.py:715
> /<<PKGBUILDDIR>>/tests/test_20_assertion.py:715: DeprecationWarning:
> invalid escape sequence \.
> "mail": [".*@example\.com$"],
>
> src/saml2/httpbase.py:199
> /<<PKGBUILDDIR>>/src/saml2/httpbase.py:199: SyntaxWarning: "is" with a
> literal. Did you mean "=="?
> if morsel["max-age"] is 0:
>
> /usr/lib/python3/dist-packages/responses.py:11
> /usr/lib/python3/dist-packages/responses.py:11
> /usr/lib/python3/dist-packages/responses.py:11: DeprecationWarning: Using
> or importing the ABCs from 'collections' instead of from 'collections.abc' is
> deprecated since Python 3.3, and in 3.9 it will stop working
> from collections import namedtuple, Sequence, Sized
>
> /usr/lib/python3/dist-packages/cookies.py:312
> /usr/lib/python3/dist-packages/cookies.py:312: DeprecationWarning: Flags
> not at the start of the expression '(?ix) # Case-insens' (truncated)
> ATTR_RE = re.compile(ATTR)
>
> /usr/lib/python3/dist-packages/responses.py:117
> /usr/lib/python3/dist-packages/responses.py:117
> /usr/lib/python3/dist-packages/responses.py:117: DeprecationWarning:
> `formatargspec` is deprecated since Python 3.5. Use `signature` and the
> `Signature` object directly
> signature = inspect.formatargspec(args, a, kw, defaults)
>
> /usr/lib/python3/dist-packages/responses.py:121
> /usr/lib/python3/dist-packages/responses.py:121
> /usr/lib/python3/dist-packages/responses.py:121: DeprecationWarning:
> `formatargspec` is deprecated since Python 3.5. Use `signature` and the
> `Signature` object directly
> callargs = inspect.formatargspec(args, a, kw, None)
>
> /usr/lib/python3/dist-packages/_pytest/mark/structures.py:331
> /usr/lib/python3/dist-packages/_pytest/mark/structures.py:331:
> PytestUnknownMarkWarning: Unknown pytest.mark.mongo - is this a typo? You
> can register custom marks to avoid this warning - for details, see
> https://docs.pytest.org/en/latest/mark.html
> warnings.warn(
>
> src/saml2/soap.py:162
> /<<PKGBUILDDIR>>/src/saml2/soap.py:162: DeprecationWarning: invalid escape
> sequence \{
> NS_AND_TAG = re.compile("\{([^}]+)\}(.*)")
>
> src/saml2/s2repoze/plugins/sp.py:654
> /<<PKGBUILDDIR>>/src/saml2/s2repoze/plugins/sp.py:654: SyntaxWarning: "is"
> with a literal. Did you mean "=="?
> if saml_conf is "":
>
> tests/test_02_saml.py::TestExtensionElement::test_loadd
> /<<PKGBUILDDIR>>/tests/test_02_saml.py:46: PytestDeprecationWarning:
> raises(..., 'code(as_a_string)') is deprecated, use the context manager form
> or use `exec()` directly
>
> See https://docs.pytest.org/en/latest/deprecations.html#raises-warns-exec
> raises(KeyError, "ee.loadd(ava)")
>
> tests/test_02_saml.py::TestExtensionElement::test_loadd
> /<<PKGBUILDDIR>>/tests/test_02_saml.py:52: PytestDeprecationWarning:
> raises(..., 'code(as_a_string)') is deprecated, use the context manager form
> or use `exec()` directly
>
> See https://docs.pytest.org/en/latest/deprecations.html#raises-warns-exec
> raises(KeyError, "ee.loadd(ava)")
>
> tests/test_02_saml.py::TestSAMLBase::test_make_vals_multi_dict
> /<<PKGBUILDDIR>>/tests/test_02_saml.py:214: PytestDeprecationWarning:
> raises(..., 'code(as_a_string)') is deprecated, use the context manager form
> or use `exec()` directly
>
> See https://docs.pytest.org/en/latest/deprecations.html#raises-warns-exec
> raises(Exception,
>
> tests/test_02_saml.py::TestSAMLBase::test_set_text
> /<<PKGBUILDDIR>>/tests/test_02_saml.py:240: PytestDeprecationWarning:
> raises(..., 'code(as_a_string)') is deprecated, use the context manager form
> or use `exec()` directly
>
> See https://docs.pytest.org/en/latest/deprecations.html#raises-warns-exec
> raises(AssertionError, "av.set_text(491)")
>
> tests/test_02_saml.py::TestAttribute::test_basic_base64
> /<<PKGBUILDDIR>>/src/saml2/saml.py:125: DeprecationWarning: decodestring()
> is a deprecated alias since Python 3.1, use decodebytes()
> return base64.decodestring(val.encode('utf-8'))
>
> tests/test_13_validate.py::test_duration
> /<<PKGBUILDDIR>>/tests/test_13_validate.py:36: PytestDeprecationWarning:
> raises(..., 'code(as_a_string)') is deprecated, use the context manager form
> or use `exec()` directly
>
> See https://docs.pytest.org/en/latest/deprecations.html#raises-warns-exec
> raises(NotValid, 'valid_duration("P-1347M")')
>
> tests/test_13_validate.py::test_duration
> /<<PKGBUILDDIR>>/tests/test_13_validate.py:37: PytestDeprecationWarning:
> raises(..., 'code(as_a_string)') is deprecated, use the context manager form
> or use `exec()` directly
>
> See https://docs.pytest.org/en/latest/deprecations.html#raises-warns-exec
> raises(NotValid, ' valid_duration("P1Y2MT")')
>
> tests/test_13_validate.py::test_duration
> /<<PKGBUILDDIR>>/tests/test_13_validate.py:38: PytestDeprecationWarning:
> raises(..., 'code(as_a_string)') is deprecated, use the context manager form
> or use `exec()` directly
>
> See https://docs.pytest.org/en/latest/deprecations.html#raises-warns-exec
> raises(NotValid, ' valid_duration("P1Y2MT2xH")')
>
> tests/test_13_validate.py::test_unsigned_short
> /<<PKGBUILDDIR>>/tests/test_13_validate.py:44: PytestDeprecationWarning:
> raises(..., 'code(as_a_string)') is deprecated, use the context manager form
> or use `exec()` directly
>
> See https://docs.pytest.org/en/latest/deprecations.html#raises-warns-exec
> raises(NotValid, ' valid_unsigned_short("-1234")')
>
> tests/test_13_validate.py::test_unsigned_short
> /<<PKGBUILDDIR>>/tests/test_13_validate.py:45: PytestDeprecationWarning:
> raises(..., 'code(as_a_string)') is deprecated, use the context manager form
> or use `exec()` directly
>
> See https://docs.pytest.org/en/latest/deprecations.html#raises-warns-exec
> raises(NotValid, ' valid_unsigned_short("1234567890")')
>
> tests/test_13_validate.py::test_valid_non_negative_integer
> /<<PKGBUILDDIR>>/tests/test_13_validate.py:51: PytestDeprecationWarning:
> raises(..., 'code(as_a_string)') is deprecated, use the context manager form
> or use `exec()` directly
>
> See https://docs.pytest.org/en/latest/deprecations.html#raises-warns-exec
> raises(NotValid, 'valid_non_negative_integer("-123")')
>
> tests/test_13_validate.py::test_valid_non_negative_integer
> /<<PKGBUILDDIR>>/tests/test_13_validate.py:52: PytestDeprecationWarning:
> raises(..., 'code(as_a_string)') is deprecated, use the context manager form
> or use `exec()` directly
>
> See https://docs.pytest.org/en/latest/deprecations.html#raises-warns-exec
> raises(NotValid, 'valid_non_negative_integer("123.56")')
>
> tests/test_13_validate.py::test_valid_string
> /<<PKGBUILDDIR>>/tests/test_13_validate.py:61: PytestDeprecationWarning:
> raises(..., 'code(as_a_string)') is deprecated, use the context manager form
> or use `exec()` directly
>
> See https://docs.pytest.org/en/latest/deprecations.html#raises-warns-exec
> raises(NotValid,
>
> tests/test_13_validate.py::test_valid_instance
> /<<PKGBUILDDIR>>/tests/test_13_validate.py:105: PytestDeprecationWarning:
> raises(..., 'code(as_a_string)') is deprecated, use the context manager form
> or use `exec()` directly
>
> See https://docs.pytest.org/en/latest/deprecations.html#raises-warns-exec
> raises(MustValueError, 'valid_instance(response)')
>
> tests/test_20_assertion.py::test_filter_values_req_opt_2
> /<<PKGBUILDDIR>>/tests/test_20_assertion.py:567: PytestDeprecationWarning:
> raises(..., 'code(as_a_string)') is deprecated, use the context manager form
> or use `exec()` directly
>
> See https://docs.pytest.org/en/latest/deprecations.html#raises-warns-exec
> raises(MissingValue, "filter_on_attributes(ava, r, o, acs=ac_factory())")
>
> tests/test_32_cache.py::TestClass::test_entities
> /<<PKGBUILDDIR>>/tests/test_32_cache.py:67: PytestDeprecationWarning:
> raises(..., 'code(as_a_string)') is deprecated, use the context manager form
> or use `exec()` directly
>
> See https://docs.pytest.org/en/latest/deprecations.html#raises-warns-exec
> py.test.raises(Exception, "self.cache.entities('6666')")
>
> tests/test_36_mdbcache.py::TestMongoDBCache::test_set_get_1
> /<<PKGBUILDDIR>>/src/saml2/mdbcache.py:199: DeprecationWarning: remove is
> deprecated. Use delete_one or delete_many instead.
> self._cache.remove()
>
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_3
> tests/test_50_server.py::TestServer1::test_encrypted_response_3
> tests/test_50_server.py::TestServer1::test_encrypted_response_3
> tests/test_50_server.py::TestServer1::test_encrypted_response_3
> tests/test_50_server.py::TestServer1::test_encrypted_response_3
> tests/test_50_server.py::TestServer1::test_encrypted_response_3
> tests/test_50_server.py::TestServer1::test_encrypted_response_3
> tests/test_50_server.py::TestServer1::test_encrypted_response_3
> tests/test_50_server.py::TestServer1::test_encrypted_response_3
> tests/test_50_server.py::TestServer1::test_encrypted_response_3
> tests/test_50_server.py::TestServer1::test_encrypted_response_3
> tests/test_50_server.py::TestServer1::test_encrypted_response_3
> tests/test_50_server.py::TestServer1::test_encrypted_response_3
> tests/test_50_server.py::TestServer1::test_encrypted_response_3
> tests/test_50_server.py::TestServer1::test_encrypted_response_3
> tests/test_50_server.py::TestServer1::test_encrypted_response_3
> tests/test_50_server.py::TestServer1::test_encrypted_response_3
> tests/test_50_server.py::TestServer1::test_encrypted_response_3
> tests/test_50_server.py::TestServer1::test_encrypted_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_response_5
> tests/test_50_server.py::TestServer1::test_encrypted_response_5
> tests/test_50_server.py::TestServer1::test_encrypted_response_5
> tests/test_50_server.py::TestServer1::test_encrypted_response_5
> tests/test_50_server.py::TestServer1::test_encrypted_response_5
> tests/test_50_server.py::TestServer1::test_encrypted_response_5
> tests/test_50_server.py::TestServer1::test_encrypted_response_5
> tests/test_50_server.py::TestServer1::test_encrypted_response_5
> tests/test_50_server.py::TestServer1::test_encrypted_response_5
> tests/test_50_server.py::TestServer1::test_encrypted_response_5
> tests/test_50_server.py::TestServer1::test_encrypted_response_5
> tests/test_50_server.py::TestServer1::test_encrypted_response_5
> tests/test_50_server.py::TestServer1::test_encrypted_response_5
> tests/test_50_server.py::TestServer1::test_encrypted_response_5
> tests/test_50_server.py::TestServer1::test_encrypted_response_5
> tests/test_50_server.py::TestServer1::test_encrypted_response_5
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_51_client.py::TestClient::test_response_2
> tests/test_51_client.py::TestClient::test_response_2
> tests/test_51_client.py::TestClient::test_response_2
> tests/test_51_client.py::TestClient::test_response_2
> tests/test_51_client.py::TestClient::test_response_2
> tests/test_51_client.py::TestClient::test_response_2
> tests/test_51_client.py::TestClient::test_response_2
> tests/test_51_client.py::TestClient::test_response_2
> tests/test_51_client.py::TestClient::test_response_2
> tests/test_51_client.py::TestClient::test_response_2
> tests/test_51_client.py::TestClient::test_response_2
> tests/test_51_client.py::TestClient::test_response_2
> tests/test_51_client.py::TestClient::test_response_2
> tests/test_51_client.py::TestClient::test_response_2
> tests/test_51_client.py::TestClient::test_response_2
> tests/test_51_client.py::TestClient::test_response_2
> tests/test_51_client.py::TestClient::test_response_3
> tests/test_51_client.py::TestClient::test_response_3
> tests/test_51_client.py::TestClient::test_response_3
> tests/test_51_client.py::TestClient::test_response_3
> tests/test_51_client.py::TestClient::test_response_3
> tests/test_51_client.py::TestClient::test_response_3
> tests/test_51_client.py::TestClient::test_response_3
> tests/test_51_client.py::TestClient::test_response_3
> tests/test_51_client.py::TestClient::test_response_3
> tests/test_51_client.py::TestClient::test_response_3
> tests/test_51_client.py::TestClient::test_response_3
> tests/test_51_client.py::TestClient::test_response_3
> tests/test_51_client.py::TestClient::test_response_3
> tests/test_51_client.py::TestClient::test_response_3
> tests/test_51_client.py::TestClient::test_response_3
> tests/test_51_client.py::TestClient::test_response_3
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> /<<PKGBUILDDIR>>/src/saml2/__init__.py:584: DeprecationWarning: This method
> will be removed in future versions. Use 'list(elem)' or iteration over elem
> instead.
> uri_set = self.get_ns_map(elem.getchildren(), uri_set)
>
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_signed_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_response_1
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_2
> tests/test_50_server.py::TestServer1::test_encrypted_response_3
> tests/test_50_server.py::TestServer1::test_encrypted_response_4
> tests/test_50_server.py::TestServer1::test_encrypted_response_5
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_6
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_7
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_50_server.py::TestServer1::test_encrypted_response_8
> tests/test_51_client.py::TestClient::test_response_2
> tests/test_51_client.py::TestClient::test_response_3
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_4
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_5
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_6
> tests/test_51_client.py::TestClient::test_response_7
> tests/test_51_client.py::TestClient::test_response_8
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> /<<PKGBUILDDIR>>/src/saml2/__init__.py:649: DeprecationWarning: This method
> will be removed in future versions. Use 'tree.iter()' or 'list(tree.iter())'
> instead.
> for elem in elem.getiterator():
>
> tests/test_51_client.py::TestClient::test_response_1
> /<<PKGBUILDDIR>>/tests/test_51_client.py:414: DeprecationWarning:
> encodestring() is a deprecated alias since 3.1, use encodebytes()
> resp_str = base64.encodestring(resp_str.encode('utf-8'))
>
> tests/test_51_client.py::TestClient::test_response_1
> /<<PKGBUILDDIR>>/tests/test_51_client.py:458: DeprecationWarning:
> encodestring() is a deprecated alias since 3.1, use encodebytes()
> resp_str = base64.encodestring(resp_str.encode('utf-8'))
>
> tests/test_51_client.py::TestClient::test_response_2
> /<<PKGBUILDDIR>>/tests/test_51_client.py:508: DeprecationWarning:
> encodestring() is a deprecated alias since 3.1, use encodebytes()
> resp_str = base64.encodestring(resp_str.encode('utf-8'))
>
> tests/test_51_client.py::TestClient::test_response_3
> /<<PKGBUILDDIR>>/tests/test_51_client.py:543: DeprecationWarning:
> encodestring() is a deprecated alias since 3.1, use encodebytes()
> resp_str = base64.encodestring(resp_str.encode('utf-8'))
>
> tests/test_51_client.py::TestClient::test_response_4
> /<<PKGBUILDDIR>>/tests/test_51_client.py:578: DeprecationWarning:
> encodestring() is a deprecated alias since 3.1, use encodebytes()
> resp_str = base64.encodestring(resp_str.encode('utf-8'))
>
> tests/test_51_client.py::TestClient::test_response_5
> /<<PKGBUILDDIR>>/tests/test_51_client.py:622: DeprecationWarning:
> encodestring() is a deprecated alias since 3.1, use encodebytes()
> resp_str = base64.encodestring(resp_str.encode('utf-8'))
>
> tests/test_51_client.py::TestClient::test_response_6
> /<<PKGBUILDDIR>>/tests/test_51_client.py:675: DeprecationWarning:
> encodestring() is a deprecated alias since 3.1, use encodebytes()
> resp_str = base64.encodestring(resp_str.encode('utf-8'))
>
> tests/test_51_client.py::TestClient::test_response_7
> /<<PKGBUILDDIR>>/tests/test_51_client.py:711: DeprecationWarning:
> encodestring() is a deprecated alias since 3.1, use encodebytes()
> resp_str = base64.encodestring(resp_str.encode('utf-8'))
>
> tests/test_51_client.py::TestClient::test_response_8
> /<<PKGBUILDDIR>>/tests/test_51_client.py:754: DeprecationWarning:
> encodestring() is a deprecated alias since 3.1, use encodebytes()
> resp_str = base64.encodestring(resp_str.encode('utf-8'))
>
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion2
> /<<PKGBUILDDIR>>/tests/test_51_client.py:930: DeprecationWarning:
> encodestring() is a deprecated alias since 3.1, use encodebytes()
> resp_str = base64.encodestring(enctext.encode('utf-8'))
>
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_1
> /<<PKGBUILDDIR>>/tests/test_51_client.py:1033: DeprecationWarning:
> encodestring() is a deprecated alias since 3.1, use encodebytes()
> resp_str = base64.encodestring(enctext.encode('utf-8'))
>
> tests/test_51_client.py::TestClient::test_sign_then_encrypt_assertion_advice_2
> /<<PKGBUILDDIR>>/tests/test_51_client.py:1318: DeprecationWarning:
> encodestring() is a deprecated alias since 3.1, use encodebytes()
> resp_str = base64.encodestring(str(response).encode('utf-8'))
>
> tests/test_60_sp.py::TestSP::test_identify
> /<<PKGBUILDDIR>>/tests/test_60_sp.py:76: DeprecationWarning: encodestring()
> is a deprecated alias since 3.1, use encodebytes()
> resp_str = base64.encodestring(resp_str.encode('utf-8'))
>
> -- Docs: https://docs.pytest.org/en/latest/warnings.html
> ============= 3 failed, 567 passed, 848 warnings in 139.68 seconds
> =============
> make[1]: *** [debian/rules:36: override_dh_auto_test] Error 1
The full build log is available from:
http://qa-logs.debian.net/2020/02/22/python-pysaml2_4.5.0-7_unstable.log
A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!
About the archive rebuild: The rebuild was done on EC2 VM instances from
Amazon Web Services, using a clean, minimal and up-to-date chroot. Every
failed build was retried once to eliminate random failures.
--- End Message ---