File: test_custom_dict.py

package info (click to toggle)
python-assertpy 1.1-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 628 kB
  • sloc: python: 5,712; makefile: 4; sh: 3
file content (233 lines) | stat: -rw-r--r-- 7,547 bytes parent folder | download
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
# Copyright (c) 2015-2019, Activision Publishing, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without modification,
# are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# 3. Neither the name of the copyright holder nor the names of its contributors
# may be used to endorse or promote products derived from this software without
# specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
# ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

from assertpy import assert_that, fail


def test_custom_dict():
    d = CustomDict({
        'Accept-Encoding': 'gzip, deflate',
        'Connection': 'keep-alive',
        'Accept': 'application/json',
        'User-Agent': 'python-requests/2.9.1'})

    assert_that(d).is_not_none()

    assert_that(d.keys()).contains('Accept-Encoding', 'Connection', 'Accept', 'User-Agent')
    assert_that(d).contains_key('Accept-Encoding', 'Connection', 'Accept', 'User-Agent')

    assert_that(d.values()).contains('gzip, deflate', 'keep-alive', 'application/json', 'python-requests/2.9.1')
    assert_that(d).contains_value('application/json')

    assert_that(d['Accept']).is_equal_to('application/json')
    assert_that(d).contains_entry({'Accept': 'application/json'})


def test_requests():
    try:
        import requests
        d = requests.structures.CaseInsensitiveDict({
            'Accept-Encoding': 'gzip, deflate',
            'Connection': 'keep-alive',
            'Accept': 'application/json',
            'User-Agent': 'python-requests/2.9.1'})

        assert_that(d).is_not_none()

        assert_that(d.keys()).contains('Accept-Encoding', 'Connection', 'Accept', 'User-Agent')
        assert_that(d).contains_key('Accept-Encoding', 'Connection', 'Accept', 'User-Agent')

        assert_that(d.values()).contains('gzip, deflate', 'keep-alive', 'application/json', 'python-requests/2.9.1')
        assert_that(d).contains_value('application/json')

        assert_that(d['Accept']).is_equal_to('application/json')
        assert_that(d).contains_entry({'Accept': 'application/json'})
    except ImportError:
        pass


class CustomDict(object):

    def __init__(self, d):
        self._dict = d
        self._idx = 0

    def __iter__(self):
        return self

    def __next__(self):
        try:
            result = self.keys()[self._idx]
        except IndexError:
            raise StopIteration
        self._idx += 1
        return result

    def __contains__(self, key):
        return key in self.keys()

    def keys(self):
        return list(self._dict.keys())

    def values(self):
        return list(self._dict.values())

    def __getitem__(self, key):
        return self._dict.get(key)


def test_check_dict_like():
    d = CustomDict({'a': 1})
    ab = assert_that(None)
    ab._check_dict_like(d)
    ab._check_dict_like(d, True, True, True)
    ab._check_dict_like(d, True, True, False)
    ab._check_dict_like(d, True, False, True)
    ab._check_dict_like(d, False, True, True)
    ab._check_dict_like(d, True, False, False)
    ab._check_dict_like(d, False, False, True)
    ab._check_dict_like(d, False, True, False)
    ab._check_dict_like(d, False, False, False)

    ab._check_dict_like(CustomDictNoKeys(), check_keys=False, check_values=False, check_getitem=False)
    ab._check_dict_like(CustomDictNoKeysCallable(), check_keys=False, check_values=False, check_getitem=False)
    ab._check_dict_like(CustomDictNoValues(), check_values=False, check_getitem=False)
    ab._check_dict_like(CustomDictNoValuesCallable(), check_values=False, check_getitem=False)
    ab._check_dict_like(CustomDictNoGetitem(), check_getitem=False)


def test_check_dict_like_bool():
    ab = assert_that(None)
    assert_that(ab._check_dict_like(CustomDictNoKeys(), return_as_bool=True)).is_false()
    assert_that(ab._check_dict_like(CustomDictNoKeysCallable(), return_as_bool=True)).is_false()
    assert_that(ab._check_dict_like(CustomDictNoValues(), return_as_bool=True)).is_false()
    assert_that(ab._check_dict_like(CustomDictNoValuesCallable(), return_as_bool=True)).is_false()
    assert_that(ab._check_dict_like(CustomDictNoGetitem(), return_as_bool=True)).is_false()


def test_check_dict_like_no_keys():
    try:
        ab = assert_that(None)
        ab._check_dict_like(CustomDictNoKeys())
        fail('should have raised error')
    except TypeError as e:
        assert_that(str(e)).contains('is not dict-like: missing keys()')


def test_check_dict_like_no_keys_callable():
    try:
        ab = assert_that(None)
        ab._check_dict_like(CustomDictNoKeysCallable())
        fail('should have raised error')
    except TypeError as e:
        assert_that(str(e)).contains('is not dict-like: missing keys()')


def test_check_dict_like_no_values():
    try:
        ab = assert_that(None)
        ab._check_dict_like(CustomDictNoValues())
        fail('should have raised error')
    except TypeError as e:
        assert_that(str(e)).contains('is not dict-like: missing values()')


def test_check_dict_like_no_values_callable():
    try:
        ab = assert_that(None)
        ab._check_dict_like(CustomDictNoValuesCallable())
        fail('should have raised error')
    except TypeError as e:
        assert_that(str(e)).contains('is not dict-like: missing values()')


def test_check_dict_like_no_getitem():
    try:
        ab = assert_that(None)
        ab._check_dict_like(CustomDictNoGetitem())
        fail('should have raised error')
    except TypeError as e:
        assert_that(str(e)).contains('is not dict-like: missing [] accessor')


class CustomDictNoKeys(object):
    def __iter__(self):
        return self

    def __next__(self):
        return 1


class CustomDictNoKeysCallable(object):
    def __init__(self):
        self.keys = 'foo'

    def __iter__(self):
        return self

    def __next__(self):
        return 1


class CustomDictNoValues(object):
    def __iter__(self):
        return self

    def __next__(self):
        return 1

    def keys(self):
        return 'foo'


class CustomDictNoValuesCallable(object):
    def __init__(self):
        self.values = 'foo'

    def __iter__(self):
        return self

    def __next__(self):
        return 1

    def keys(self):
        return 'foo'


class CustomDictNoGetitem(object):
    def __iter__(self):
        return self

    def __next__(self):
        return 1

    def keys(self):
        return 'foo'

    def values(self):
        return 'bar'