aboutsummaryrefslogtreecommitdiffstats
path: root/test/netlib/test_odict.py
blob: f0985ef64462d02027f273bc24448000546e1019 (plain)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
from netlib import odict, tutils


class TestODict(object):

    def test_repr(self):
        h = odict.ODict()
        h["one"] = ["two"]
        assert repr(h)

    def test_str_err(self):
        h = odict.ODict()
        with tutils.raises(ValueError):
            h["key"] = u"foo"
        with tutils.raises(ValueError):
            h["key"] = b"foo"

    def test_getset_state(self):
        od = odict.ODict()
        od.add("foo", 1)
        od.add("foo", 2)
        od.add("bar", 3)
        state = od.get_state()
        nd = odict.ODict.from_state(state)
        assert nd == od
        b = odict.ODict()
        b.set_state(state)
        assert b == od

    def test_in_any(self):
        od = odict.ODict()
        od["one"] = ["atwoa", "athreea"]
        assert od.in_any("one", "two")
        assert od.in_any("one", "three")
        assert not od.in_any("one", "four")
        assert not od.in_any("nonexistent", "foo")
        assert not od.in_any("one", "TWO")
        assert od.in_any("one", "TWO", True)

    def test_iter(self):
        od = odict.ODict()
        assert not [i for i in od]
        od.add("foo", 1)
        assert [i for i in od]

    def test_keys(self):
        od = odict.ODict()
        assert not od.keys()
        od.add("foo", 1)
        assert od.keys() == ["foo"]
        od.add("foo", 2)
        assert od.keys() == ["foo"]
        od.add("bar", 2)
        assert len(od.keys()) == 2

    def test_copy(self):
        od = odict.ODict()
        od.add("foo", 1)
        od.add("foo", 2)
        od.add("bar", 3)
        assert od == od.copy()
        assert not od != od.copy()

    def test_del(self):
        od = odict.ODict()
        od.add("foo", 1)
        od.add("Foo", 2)
        od.add("bar", 3)
        del od["foo"]
        assert len(od.lst) == 2

    def test_replace(self):
        od = odict.ODict()
        od.add("one", "two")
        od.add("two", "one")
        assert od.replace("one", "vun") == 2
        assert od.lst == [
            ["vun", "two"],
            ["two", "vun"],
        ]

    def test_get(self):
        od = odict.ODict()
        od.add("one", "two")
        assert od.get("one") == ["two"]
        assert od.get("two") is None

    def test_get_first(self):
        od = odict.ODict()
        od.add("one", "two")
        od.add("one", "three")
        assert od.get_first("one") == "two"
        assert od.get_first("two") is None

    def test_extend(self):
        a = odict.ODict([["a", "b"], ["c", "d"]])
        b = odict.ODict([["a", "b"], ["e", "f"]])
        a.extend(b)
        assert len(a) == 4
        assert a["a"] == ["b", "b"]


class TestODictCaseless(object):

    def test_override(self):
        o = odict.ODictCaseless()
        o.add('T', 'application/x-www-form-urlencoded; charset=UTF-8')
        o["T"] = ["foo"]
        assert o["T"] == ["foo"]

    def test_case_preservation(self):
        od = odict.ODictCaseless()
        od["Foo"] = ["1"]
        assert "foo" in od
        assert od.items()[0][0] == "Foo"
        assert od.get("foo") == ["1"]
        assert od.get("foo", [""]) == ["1"]
        assert od.get("Foo", [""]) == ["1"]
        assert od.get("xx", "yy") == "yy"

    def test_del(self):
        od = odict.ODictCaseless()
        od.add("foo", 1)
        od.add("Foo", 2)
        od.add("bar", 3)
        del od["foo"]
        assert len(od) == 1

    def test_keys(self):
        od = odict.ODictCaseless()
        assert not od.keys()
        od.add("foo", 1)
        assert od.keys() == ["foo"]
        od.add("Foo", 2)
        assert od.keys() == ["foo"]
        od.add("bar", 2)
        assert len(od.keys()) == 2

    def test_add_order(self):
        od = odict.ODict(
            [
                ["one", "uno"],
                ["two", "due"],
                ["three", "tre"],
            ]
        )
        od["two"] = ["foo", "bar"]
        assert od.lst == [
            ["one", "uno"],
            ["two", "foo"],
            ["three", "tre"],
            ["two", "bar"],
        ]