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
|
from collections.abc import Iterator
from collections import defaultdict, namedtuple
from itertools import chain, count
import pytest
from whatever import _
from funcy.colls import *
# Utilities
def eq(a, b):
return type(a) is type(b) and a == b \
and (a.default_factory == b.default_factory if isinstance(a, defaultdict) else True)
def inc(x):
return x + 1
def hinc(xs):
return map(inc, xs)
def test_empty():
assert eq(empty({'a': 1}), {})
assert eq(empty(defaultdict(int)), defaultdict(int))
assert empty(defaultdict(int)).default_factory == defaultdict(int).default_factory
def test_empty_iter():
it = empty(iter([]))
assert isinstance(it, Iterator)
assert list(it) == []
def test_empty_quirks():
class A:
FLAG = 1
assert empty(A.__dict__) == {}
assert empty({}.keys()) == []
assert empty({}.values()) == []
assert empty({}.items()) == []
def test_iteritems():
assert list(iteritems([1,2])) == [1,2]
assert list(iteritems((1,2))) == [1,2]
assert list(iteritems({'a': 1})) == [('a', 1)]
def test_itervalues():
assert list(itervalues([1,2])) == [1,2]
assert list(itervalues((1,2))) == [1,2]
assert list(itervalues({'a': 1})) == [1]
def test_merge():
assert eq(merge({1: 2}, {3: 4}), {1: 2, 3: 4})
def test_join():
assert join([]) is None
with pytest.raises(TypeError): join([1])
assert eq(join(['ab', '', 'cd']), 'abcd')
assert eq(join([['a', 'b'], 'c']), list('abc'))
assert eq(join([('a', 'b'), ('c',)]), tuple('abc'))
assert eq(join([{'a': 1}, {'b': 2}]), {'a': 1, 'b': 2})
assert eq(join([{'a': 1}, {'a': 2}]), {'a': 2})
assert eq(join([{1,2}, {3}]), {1,2,3})
it1 = (x for x in range(2))
it2 = (x for x in range(5, 7))
joined = join([it1, it2])
assert isinstance(joined, Iterator) and list(joined) == [0,1,5,6]
dd1 = defaultdict(int, a=1)
dd2 = defaultdict(int, b=2)
assert eq(join([dd1, dd2]), defaultdict(int, a=1, b=2))
def test_join_iter():
assert join(iter('abc')) == 'abc'
assert join(iter([[1], [2]])) == [1, 2]
assert eq(join(iter([{'a': 1}, {'b': 2}])), {'a': 1, 'b': 2})
assert eq(join(iter([{1,2}, {3}])), {1,2,3})
it1 = (x for x in range(2))
it2 = (x for x in range(5, 7))
chained = join(iter([it1, it2]))
assert isinstance(chained, Iterator) and list(chained) == [0,1,5,6]
def test_merge_with():
assert merge_with(list, {1: 1}, {1: 10, 2: 2}) == {1: [1, 10], 2: [2]}
assert merge_with(sum, {1: 1}, {1: 10, 2: 2}) == {1: 11, 2: 2}
# Also works for collection of pairs
assert merge_with(sum, {1: 1}, {1: 10, 2: 2}.items()) == {1: 11, 2: 2}
def test_join_with():
assert join_with(sum, ({n % 3: n} for n in range(5))) == {0: 3, 1: 5, 2: 2}
assert join_with(list, [{1: 1}]) == {1: 1}
assert join_with(list, [{1: 1}], strict=True) == {1: [1]}
def test_walk():
assert eq(walk(inc, [1,2,3]), [2,3,4])
assert eq(walk(inc, (1,2,3)), (2,3,4))
assert eq(walk(inc, {1,2,3}), {2,3,4})
assert eq(walk(hinc, {1:1,2:2,3:3}), {2:2,3:3,4:4})
def test_walk_iter():
it = walk(inc, chain([0], [1, 2]))
assert isinstance(it, Iterator) and list(it) == [1,2,3]
it = walk(inc, (i for i in [0,1,2]))
assert isinstance(it, Iterator) and list(it) == [1,2,3]
def test_walk_extended():
assert walk(None, {2, 3}) == {2, 3}
assert walk(r'\d+', {'a2', '13b'}) == {'2', '13'}
assert walk({'a': '1', 'b': '2'}, 'ab') == '12'
assert walk({1, 2, 3}, (0, 1, 2)) == (False, True, True)
def test_walk_keys():
assert walk_keys(str.upper, {'a': 1, 'b':2}) == {'A': 1, 'B': 2}
assert walk_keys(r'\d', {'a1': 1, 'b2': 2}) == {'1': 1, '2': 2}
def test_walk_values():
assert walk_values(_ * 2, {'a': 1, 'b': 2}) == {'a': 2, 'b': 4}
assert walk_values(r'\d', {1: 'a1', 2: 'b2'}) == {1: '1', 2: '2'}
def test_walk_values_defaultdict():
dd = defaultdict(lambda: 'hey', {1: 'a', 2: 'ab'})
walked_dd = walk_values(len, dd)
assert walked_dd == {1: 1, 2: 2}
# resulting default factory should be compose(len, lambda: 'hey')
assert walked_dd[0] == 3
def test_select():
assert eq(select(_ > 1, [1,2,3]), [2,3])
assert eq(select(_ > 1, (1,2,3)), (2,3))
assert eq(select(_ > 1, {1,2,3}), {2,3})
assert eq(select(_[1] > 1, {'a':1,'b':2,'c':3}), {'b':2,'c':3})
assert select(_[1] > 1, defaultdict(int)) == {}
def test_select_extended():
assert select(None, [2, 3, 0]) == [2, 3]
assert select(r'\d', 'a23bn45') == '2345'
assert select({1,2,3}, (0, 1, 2, 4, 1)) == (1, 2, 1)
def test_select_keys():
assert select_keys(_[0] == 'a', {'a':1, 'b':2, 'ab':3}) == {'a': 1, 'ab':3}
assert select_keys(r'^a', {'a':1, 'b':2, 'ab':3, 'ba': 4}) == {'a': 1, 'ab':3}
def test_select_values():
assert select_values(_ % 2, {'a': 1, 'b': 2}) == {'a': 1}
assert select_values(r'a', {1: 'a', 2: 'b'}) == {1: 'a'}
def test_compact():
assert eq(compact([0, 1, None, 3]), [1, 3])
assert eq(compact((0, 1, None, 3)), (1, 3))
assert eq(compact({'a': None, 'b': 0, 'c': 1}), {'c': 1})
def test_is_distinct():
assert is_distinct('abc')
assert not is_distinct('aba')
assert is_distinct(['a', 'ab', 'abc'], key=len)
assert not is_distinct(['ab', 'cb', 'ad'], key=0)
def test_all():
assert all([1,2,3])
assert not all([1,2,''])
assert all(callable, [abs, open, int])
assert not all(_ < 3, [1,2,5])
def test_all_extended():
assert all(None, [1,2,3])
assert not all(None, [1,2,''])
assert all(r'\d', '125')
assert not all(r'\d', '12.5')
def test_any():
assert any([0, False, 3, ''])
assert not any([0, False, ''])
assert any(_ > 0, [1,2,0])
assert not any(_ < 0, [1,2,0])
def test_one():
assert one([0, False, 3, ''])
assert not one([0, False, ''])
assert not one([1, False, 'a'])
assert one(_ > 0, [0,1])
assert not one(_ < 0, [0,1,2])
assert not one(_ > 0, [0,1,2])
def test_none():
assert none([0, False])
assert not none(_ < 0, [0, -1])
def test_some():
assert some([0, '', 2, 3]) == 2
assert some(_ > 3, range(10)) == 4
def test_zipdict():
assert zipdict([1, 2], 'ab') == {1: 'a', 2:'b'}
assert zipdict('ab', count()) == {'a': 0, 'b': 1}
def test_flip():
assert flip({'a':1, 'b':2}) == {1:'a', 2:'b'}
def test_project():
assert project({'a':1, 'b':2, 'c': 3}, 'ac') == {'a':1, 'c': 3}
dd = defaultdict(int, {'a':1, 'b':2, 'c': 3})
assert eq(project(dd, 'ac'), defaultdict(int, {'a':1, 'c': 3}))
def test_omit():
assert omit({'a': 1, 'b': 2, 'c': 3}, 'ac') == {'b': 2}
dd = defaultdict(int, {'a': 1, 'b': 2, 'c': 3})
assert eq(omit(dd, 'ac'), defaultdict(int, {'b': 2}))
def test_zip_values():
assert list(zip_values({1: 10}, {1: 20, 2: 30})) == [(10, 20)]
with pytest.raises(TypeError): list(zip_values())
def test_zip_dicts():
assert list(zip_dicts({1: 10}, {1: 20, 2: 30})) == [(1, (10, 20))]
with pytest.raises(TypeError): list(zip_dicts())
@pytest.mark.parametrize("get", [get_in, get_lax])
def test_get(get):
d = {
"a": {
"b": "c",
"f": {"g": "h"}
},
"i": "j"
}
assert get(d, ["i"]) == "j"
assert get(d, ["a", "b"]) == "c"
assert get(d, ["a", "f", "g"]) == "h"
assert get(d, ["m"]) is None
assert get(d, ["a", "n"]) is None
assert get(d, ["m", "n"], "foo") == "foo"
@pytest.mark.parametrize("get", [get_in, get_lax])
def test_get_list(get):
assert get([1, 2], [0]) == 1
assert get([1, 2], [3]) is None
assert get({'x': [1, 2]}, ['x', 1]) == 2
def test_get_error():
with pytest.raises(TypeError): get_in([1, 2], ['a'])
assert get_lax([1, 2], ['a']) is None
assert get_lax([1, 2], ['a'], 'foo') == 'foo'
with pytest.raises(TypeError): get_in('abc', [2, 'a'])
assert get_lax('abc', [2, 'a']) is None
with pytest.raises(TypeError): get_in(None, ['a', 'b'])
assert get_lax({'a': None}, ['a', 'b']) is None
def test_set_in():
d = {
'a': {
'b': 1,
'c': 2,
},
'd': 5
}
d2 = set_in(d, ['a', 'c'], 7)
assert d['a']['c'] == 2
assert d2['a']['c'] == 7
d3 = set_in(d, ['e', 'f'], 42)
assert d3['e'] == {'f': 42}
assert d3['a'] is d['a']
def test_set_in_list():
l = [{}, 1]
l2 = set_in(l, [1], 7)
assert l2 == [{}, 7]
assert l2[0] is l[0]
def test_update_in():
d = {'c': []}
assert update_in(d, ['c'], len) == {'c': 0}
d2 = update_in(d, ['a', 'b'], inc, default=0)
assert d2['a']['b'] == 1
assert d2['c'] is d['c']
def test_del_in():
d = {'c': [1, 2, 3]}
assert del_in(d, []) is d
assert del_in(d, ['a', 'b']) is d
assert del_in(d, ['c', 1]) == {'c': [1, 3]}
with pytest.raises(TypeError): del_in(d, ['c', 'b'])
def test_has_path():
d = {
"a": {
"b": "c",
"d": "e",
"f": {
"g": "h"
}
},
"i": "j"
}
assert has_path(d, [])
assert not has_path(d, ["m"])
assert not has_path(d, ["m", "n"])
assert has_path(d, ("i",))
assert has_path(d, ("a", "b"))
assert has_path(d, ["a", "f", "g"])
def test_has_path_list():
assert has_path([1, 2], [0])
assert not has_path([1, 2], [3])
assert has_path({'x': [1, 2]}, ['x', 1])
def test_where():
data = [{'a': 1, 'b': 2}, {'a': 10, 'b': 2}]
assert isinstance(where(data, a=1), Iterator)
assert list(where(data, a=1)) == [{'a': 1, 'b': 2}]
def test_lwhere():
data = [{'a': 1, 'b': 2}, {'a': 10, 'b': 2}]
assert lwhere(data, a=1, b=2) == [{'a': 1, 'b': 2}]
assert lwhere(data, b=2) == data
# Test non-existent key
assert lwhere(data, c=1) == []
def test_pluck():
data = [{'a': 1, 'b': 2}, {'a': 10, 'b': 2}]
assert lpluck('a', data) == [1, 10]
def test_pluck_attr():
TestObj = namedtuple('TestObj', ('id', 'name'))
objs = [TestObj(1, 'test1'), TestObj(5, 'test2'), TestObj(10, 'test3')]
assert lpluck_attr('id', objs) == [1, 5, 10]
def test_invoke():
assert linvoke(['abc', 'def', 'b'], 'find', 'b') == [1, -1, 0]
|