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 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360
|
# 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.
import sys
from assertpy import assert_that, fail
class Person(object):
def __init__(self, first_name, last_name, shoe_size):
self.first_name = first_name
self.last_name = last_name
self.shoe_size = shoe_size
def full_name(self):
return '%s %s' % (self.first_name, self.last_name)
def say_hello(self, name):
return 'Hello, %s!' % name
fred = Person('Fred', 'Smith', 12)
john = Person('John', 'Jones', 9.5)
people = [fred, john]
def test_extracting_property():
assert_that(people).extracting('first_name').contains('Fred', 'John')
def test_extracting_multiple_properties():
assert_that(people).extracting('first_name', 'last_name', 'shoe_size').contains(('Fred', 'Smith', 12), ('John', 'Jones', 9.5))
def test_extracting_zero_arg_method():
assert_that(people).extracting('full_name').contains('Fred Smith', 'John Jones')
def test_extracting_property_and_method():
assert_that(people).extracting('first_name', 'full_name').contains(('Fred', 'Fred Smith'), ('John', 'John Jones'))
def test_extracting_dict():
people_as_dicts = [{'first_name': p.first_name, 'last_name': p.last_name} for p in people]
assert_that(people_as_dicts).extracting('first_name').contains('Fred', 'John')
assert_that(people_as_dicts).extracting('last_name').contains('Smith', 'Jones')
def test_extracting_bad_val_failure():
try:
assert_that(123).extracting('bar')
fail('should have raised error')
except TypeError as ex:
assert_that(str(ex)).is_equal_to('val is not iterable')
def test_extracting_bad_val_str_failure():
try:
assert_that('foo').extracting('bar')
fail('should have raised error')
except TypeError as ex:
assert_that(str(ex)).is_equal_to('val must not be string')
def test_extracting_empty_args_failure():
try:
assert_that(people).extracting()
fail('should have raised error')
except ValueError as ex:
assert_that(str(ex)).is_equal_to('one or more name args must be given')
def test_extracting_bad_property_failure():
try:
assert_that(people).extracting('foo')
fail('should have raised error')
except ValueError as ex:
assert_that(str(ex)).is_equal_to('val does not have property or zero-arg method <foo>')
def test_extracting_too_many_args_method_failure():
try:
assert_that(people).extracting('say_hello')
fail('should have raised error')
except ValueError as ex:
assert_that(str(ex)).is_equal_to('val method <say_hello()> exists, but is not zero-arg method')
def test_extracting_dict_missing_key_failure():
people_as_dicts = [{'first_name': p.first_name, 'last_name': p.last_name} for p in people]
try:
assert_that(people_as_dicts).extracting('foo')
fail('should have raised error')
except ValueError as ex:
assert_that(str(ex)).matches(r'item keys \[.*\] did not contain key <foo>')
def test_described_as_with_extracting():
try:
assert_that(people).described_as('extra msg').extracting('first_name').contains('Fred', 'Bob')
fail('should have raised error')
except AssertionError as ex:
assert_that(str(ex)).is_equal_to("[extra msg] Expected <['Fred', 'John']> to contain items <'Fred', 'Bob'>, but did not contain <Bob>.")
def test_described_as_with_double_extracting():
try:
assert_that(people).described_as('extra msg').extracting('first_name').described_as('other msg').contains('Fred', 'Bob')
fail('should have raised error')
except AssertionError as ex:
assert_that(str(ex)).is_equal_to("[other msg] Expected <['Fred', 'John']> to contain items <'Fred', 'Bob'>, but did not contain <Bob>.")
users = [
{'user': 'Fred', 'age': 36, 'active': True},
{'user': 'Bob', 'age': 40, 'active': False},
{'user': 'Johnny', 'age': 13, 'active': True}
]
def test_extracting_filter():
assert_that(users).extracting('user', filter='active').is_equal_to(['Fred', 'Johnny'])
assert_that(users).extracting('user', filter={'active': False}).is_equal_to(['Bob'])
assert_that(users).extracting('user', filter={'age': 36, 'active': True}).is_equal_to(['Fred'])
assert_that(users).extracting('user', filter=lambda x: x['age'] > 20).is_equal_to(['Fred', 'Bob'])
assert_that(users).extracting('user', filter=lambda x: x['age'] < 10).is_empty()
def test_extracting_filter_bad_type():
assert_that(users).extracting('user', filter=123).is_equal_to([])
def test_extracting_filter_ignore_bad_key_types():
assert_that(users).extracting('user', filter={'active': True, 123: 'foo'}).is_equal_to(['Fred', 'Johnny'])
def test_extracting_filter_custom_func():
def _f(x):
return x['user'] == 'Bob' or x['age'] == 13
assert_that(users).extracting('user', filter=_f).is_equal_to(['Bob', 'Johnny'])
def test_extracting_filter_failure():
try:
assert_that(users).extracting('user', filter='foo')
fail('should have raised error')
except ValueError as ex:
assert_that(str(ex)).ends_with("'] did not contain key <foo>")
def test_extracting_filter_dict_failure():
try:
assert_that(users).extracting('user', filter={'foo': 'bar'})
fail('should have raised error')
except ValueError as ex:
assert_that(str(ex)).ends_with("'] did not contain key <foo>")
def test_extracting_filter_multi_item_dict_failure():
try:
assert_that(users).extracting('user', filter={'age': 36, 'active': True, 'foo': 'bar'})
fail('should have raised error')
except ValueError as ex:
assert_that(str(ex)).ends_with("'] did not contain key <foo>")
def test_extracting_filter_lambda_failure():
try:
assert_that(users).extracting('user', filter=lambda x: x['foo'] > 0)
fail('should have raised error')
except KeyError as ex:
assert_that(str(ex)).is_equal_to("'foo'")
def test_extracting_filter_custom_func_failure():
def _f(x):
raise RuntimeError('foobar!')
try:
assert_that(users).extracting('user', filter=_f)
fail('should have raised error')
except RuntimeError as ex:
assert_that(str(ex)).is_equal_to("foobar!")
def test_extracting_filter_bad_values():
bad = [
{'user': 'Fred', 'age': 36},
{'user': 'Bob', 'age': 'bad'},
{'user': 'Johnny', 'age': 13}
]
if sys.version_info[0] == 3:
try:
assert_that(bad).extracting('user', filter=lambda x: x['age'] > 20)
fail('should have raised error')
except TypeError as ex:
if sys.version_info[1] <= 5:
assert_that(str(ex)).contains('unorderable types')
else:
assert_that(str(ex)).contains("not supported between instances of 'str' and 'int'")
def test_extracting_sort():
assert_that(users).extracting('user', sort='age').is_equal_to(['Johnny', 'Fred', 'Bob'])
assert_that(users).extracting('user', sort=['active', 'age']).is_equal_to(['Bob', 'Johnny', 'Fred'])
assert_that(users).extracting('user', sort=('active', 'age')).is_equal_to(['Bob', 'Johnny', 'Fred'])
assert_that(users).extracting('user', sort=lambda x: -x['age']).is_equal_to(['Bob', 'Fred', 'Johnny'])
def test_extracting_sort_ignore_bad_type():
assert_that(users).extracting('user', sort=123).is_equal_to(['Fred', 'Bob', 'Johnny'])
def test_extracting_sort_ignore_bad_key_types():
assert_that(users).extracting('user', sort=['active', 'age', 123]).is_equal_to(['Bob', 'Johnny', 'Fred'])
def test_extracting_sort_custom_func():
def _f(x):
if x['user'] == 'Johnny':
return 0
elif x['age'] == 40:
return 1
return 10
assert_that(users).extracting('user', sort=_f).is_equal_to(['Johnny', 'Bob', 'Fred'])
def test_extracting_sort_failure():
try:
assert_that(users).extracting('user', sort='foo')
fail('should have raised error')
except ValueError as ex:
assert_that(str(ex)).ends_with("'] did not contain key <foo>")
def test_extracting_sort_list_failure():
try:
assert_that(users).extracting('user', sort=['foo'])
fail('should have raised error')
except ValueError as ex:
assert_that(str(ex)).ends_with("'] did not contain key <foo>")
def test_extracting_sort_multi_item_dict_failure():
try:
assert_that(users).extracting('user', sort=['active', 'age', 'foo'])
fail('should have raised error')
except ValueError as ex:
assert_that(str(ex)).ends_with("'] did not contain key <foo>")
def test_extracting_sort_lambda_failure():
try:
assert_that(users).extracting('user', sort=lambda x: x['foo'] > 0)
fail('should have raised error')
except KeyError as ex:
assert_that(str(ex)).is_equal_to("'foo'")
def test_extracting_sort_custom_func_failure():
def _f(x):
raise RuntimeError('foobar!')
try:
assert_that(users).extracting('user', sort=_f)
fail('should have raised error')
except RuntimeError as ex:
assert_that(str(ex)).is_equal_to("foobar!")
def test_extracting_sort_bad_values():
bad = [
{'user': 'Fred', 'age': 36},
{'user': 'Bob', 'age': 'bad'},
{'user': 'Johnny', 'age': 13}
]
if sys.version_info[0] == 3:
try:
assert_that(bad).extracting('user', sort='age')
fail('should have raised error')
except TypeError as ex:
if sys.version_info[1] <= 5:
assert_that(str(ex)).contains('unorderable types')
else:
assert_that(str(ex)).contains("not supported between instances of 'str' and 'int'")
def test_extracting_iterable_of_lists():
l = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
assert_that(l).extracting(0).is_equal_to([1, 4, 7])
assert_that(l).extracting(0, 1).is_equal_to([(1, 2), (4, 5), (7, 8)])
assert_that(l).extracting(-1).is_equal_to([3, 6, 9])
assert_that(l).extracting(-1, -2).extracting(0).is_equal_to([3, 6, 9])
def test_extracting_iterable_multi_extracting():
l = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
assert_that(l).extracting(-1, 2).is_equal_to([(3, 3), (6, 6), (9, 9)])
assert_that(l).extracting(-1, 1).extracting(1, 0).is_equal_to([(2, 3), (5, 6), (8, 9)])
def test_extracting_iterable_of_tuples():
t = [(1, 2, 3), (4, 5, 6), (7, 8, 9)]
assert_that(t).extracting(0).is_equal_to([1, 4, 7])
assert_that(t).extracting(0, 1).is_equal_to([(1, 2), (4, 5), (7, 8)])
assert_that(t).extracting(-1).is_equal_to([3, 6, 9])
def test_extracting_iterable_of_strings():
s = ['foo', 'bar', 'baz']
assert_that(s).extracting(0).is_equal_to(['f', 'b', 'b'])
assert_that(s).extracting(0, 2).is_equal_to([('f', 'o'), ('b', 'r'), ('b', 'z')])
def test_extracting_iterable_failure_set():
try:
assert_that([set([1])]).extracting(0).contains(1, 4, 7)
fail('should have raised error')
except TypeError as ex:
assert_that(str(ex)).is_equal_to('item <set> does not have [] accessor')
def test_extracting_iterable_failure_out_of_range():
try:
assert_that([[1], [2], [3]]).extracting(4).is_equal_to(0)
fail('should have raised error')
except IndexError as ex:
assert_that(str(ex)).is_equal_to('list index out of range')
def test_extracting_iterable_failure_index_is_not_int():
try:
assert_that([[1], [2], [3]]).extracting('1').is_equal_to(0)
fail('should have raised error')
except TypeError as ex:
assert_that(str(ex)).contains('list indices must be integers')
|