File: remove-not-discoverable-test.patch

package info (click to toggle)
python-pysaml2 7.5.4-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 39,628 kB
  • sloc: xml: 388,189; python: 66,155; makefile: 148; sh: 80
file content (66 lines) | stat: -rw-r--r-- 2,326 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
Subject: Removes test file which fails discovery
Author: Thomas Goirand <zigo@debian.org>
Forwarded: no
Last-Update: 2020-09-25

--- a/tests/test_83_md_extensions.py	2020-09-25 14:10:20.166074780 +0200
+++ /dev/null	2020-09-18 21:04:29.407999634 +0200
@@ -1,58 +0,0 @@
-from saml2 import create_class_from_xml_string as parse_str_as
-from saml2.config import Config
-from saml2.extension.sp_type import SPType
-from saml2.metadata import Attribute
-from saml2.metadata import entity_descriptor
-
-
-class TestMDExt:
-    def test_sp_type_true(self):
-        fil = "sp_mdext_conf.py"
-        cnf = Config().load_file(fil)
-        ed = entity_descriptor(cnf)
-
-        assert ed.spsso_descriptor.extensions
-        assert len(ed.spsso_descriptor.extensions.extension_elements) == 3
-        assert ed.extensions
-        assert len(ed.extensions.extension_elements) > 1
-        assert any(e.tag is SPType.c_tag for e in ed.extensions.extension_elements)
-
-    def test_sp_type_false(self):
-        fil = "sp_mdext_conf.py"
-        cnf = Config().load_file(fil)
-        cnf.setattr("sp", "sp_type_in_metadata", False)
-        ed = entity_descriptor(cnf)
-
-        assert all(e.tag is not SPType.c_tag for e in ed.extensions.extension_elements)
-
-    def test_entity_attributes(self):
-        fil = "sp_mdext_conf.py"
-        cnf = Config().load_file(fil)
-        ed = entity_descriptor(cnf)
-
-        entity_attributes = next(e for e in ed.extensions.extension_elements if e.tag == "EntityAttributes")
-        attributes = [parse_str_as(Attribute, e.to_string()) for e in entity_attributes.children]
-        assert all(
-            a.name
-            in [
-                "urn:oasis:names:tc:SAML:profiles:subject-id:req",
-                "somename",
-            ]
-            for a in attributes
-        )
-
-        import saml2.attribute_converter
-
-        attrc = saml2.attribute_converter.ac_factory()
-
-        import saml2.mdstore
-
-        mds = saml2.mdstore.MetadataStore(attrc, cnf)
-
-        mds.load("inline", ed.to_string())
-        entityid = ed.entity_id
-        entity_attributes = mds.entity_attributes(entityid)
-        assert entity_attributes == {
-            "urn:oasis:names:tc:SAML:profiles:subject-id:req": ["any"],
-            "somename": ["x", "y", "z"],
-        }