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
|
# -*- coding: utf-8 -*-
from __future__ import absolute_import, print_function, division
import pytest
from petl.compat import next
from petl.errors import ArgumentError
from petl.test.helpers import ieq, eq_
from petl.transform.regex import capture, split, search, searchcomplement, splitdown
from petl.transform.basics import TransformError
def test_capture():
table = (('id', 'variable', 'value'),
('1', 'A1', '12'),
('2', 'A2', '15'),
('3', 'B1', '18'),
('4', 'C12', '19'))
expectation = (('id', 'value', 'treat', 'time'),
('1', '12', 'A', '1'),
('2', '15', 'A', '2'),
('3', '18', 'B', '1'),
('4', '19', 'C', '12'))
result = capture(table, 'variable', '(\\w)(\\d+)', ('treat', 'time'))
ieq(expectation, result)
result = capture(table, 'variable', '(\\w)(\\d+)', ('treat', 'time'),
include_original=False)
ieq(expectation, result)
# what about including the original field?
expectation = (('id', 'variable', 'value', 'treat', 'time'),
('1', 'A1', '12', 'A', '1'),
('2', 'A2', '15', 'A', '2'),
('3', 'B1', '18', 'B', '1'),
('4', 'C12', '19', 'C', '12'))
result = capture(table, 'variable', '(\\w)(\\d+)', ('treat', 'time'),
include_original=True)
ieq(expectation, result)
# what about if number of captured groups is different from new fields?
expectation = (('id', 'value'),
('1', '12', 'A', '1'),
('2', '15', 'A', '2'),
('3', '18', 'B', '1'),
('4', '19', 'C', '12'))
result = capture(table, 'variable', '(\\w)(\\d+)')
ieq(expectation, result)
def test_capture_empty():
table = (('foo', 'bar'),)
expect = (('foo', 'baz', 'qux'),)
actual = capture(table, 'bar', r'(\w)(\d)', ('baz', 'qux'))
ieq(expect, actual)
def test_capture_headerless():
table = []
with pytest.raises(ArgumentError):
for i in capture(table, 'bar', r'(\w)(\d)', ('baz', 'qux')):
pass
def test_capture_nonmatching():
table = (('id', 'variable', 'value'),
('1', 'A1', '12'),
('2', 'A2', '15'),
('3', 'B1', '18'),
('4', 'C12', '19'))
expectation = (('id', 'value', 'treat', 'time'),
('1', '12', 'A', '1'),
('2', '15', 'A', '2'),
('3', '18', 'B', '1'))
# default behaviour, raise exception
result = capture(table, 'variable', r'([A-B])(\d+)', ('treat', 'time'))
it = iter(result)
eq_(expectation[0], next(it)) # header
eq_(expectation[1], next(it))
eq_(expectation[2], next(it))
eq_(expectation[3], next(it))
try:
next(it) # doesn't match
except TransformError:
pass # expected
else:
assert False, 'expected exception'
# explicit fill
result = capture(table, 'variable', r'([A-B])(\d+)',
newfields=('treat', 'time'), fill=['', 0])
it = iter(result)
eq_(expectation[0], next(it)) # header
eq_(expectation[1], next(it))
eq_(expectation[2], next(it))
eq_(expectation[3], next(it))
eq_(('4', '19', '', 0), next(it))
def test_split():
table = (('id', 'variable', 'value'),
('1', 'parad1', '12'),
('2', 'parad2', '15'),
('3', 'tempd1', '18'),
('4', 'tempd2', '19'))
expectation = (('id', 'value', 'variable', 'day'),
('1', '12', 'para', '1'),
('2', '15', 'para', '2'),
('3', '18', 'temp', '1'),
('4', '19', 'temp', '2'))
result = split(table, 'variable', 'd', ('variable', 'day'))
ieq(expectation, result)
ieq(expectation, result)
# proper regex
result = split(table, 'variable', '[Dd]', ('variable', 'day'))
ieq(expectation, result)
# integer field reference
result = split(table, 1, 'd', ('variable', 'day'))
ieq(expectation, result)
expectation = (('id', 'variable', 'value', 'variable', 'day'),
('1', 'parad1', '12', 'para', '1'),
('2', 'parad2', '15', 'para', '2'),
('3', 'tempd1', '18', 'temp', '1'),
('4', 'tempd2', '19', 'temp', '2'))
result = split(table, 'variable', 'd', ('variable', 'day'),
include_original=True)
ieq(expectation, result)
# what about if no new fields?
expectation = (('id', 'value'),
('1', '12', 'para', '1'),
('2', '15', 'para', '2'),
('3', '18', 'temp', '1'),
('4', '19', 'temp', '2'))
result = split(table, 'variable', 'd')
ieq(expectation, result)
def test_split_empty():
table = (('foo', 'bar'),)
expect = (('foo', 'baz', 'qux'),)
actual = split(table, 'bar', 'd', ('baz', 'qux'))
ieq(expect, actual)
def test_split_headerless():
table = []
with pytest.raises(ArgumentError):
for i in split(table, 'bar', 'd', ('baz', 'qux')):
pass
def test_search():
table1 = (('foo', 'bar', 'baz'),
('orange', 12, 'oranges are nice fruit'),
('mango', 42, 'I like them'),
('banana', 74, 'lovely too'),
('cucumber', 41, 'better than mango'))
# search any field
table2 = search(table1, '.g.')
expect2 = (('foo', 'bar', 'baz'),
('orange', 12, 'oranges are nice fruit'),
('mango', 42, 'I like them'),
('cucumber', 41, 'better than mango'))
ieq(expect2, table2)
ieq(expect2, table2)
# search a specific field
table3 = search(table1, 'foo', '.g.')
expect3 = (('foo', 'bar', 'baz'),
('orange', 12, 'oranges are nice fruit'),
('mango', 42, 'I like them'))
ieq(expect3, table3)
ieq(expect3, table3)
def test_search_2():
# test ported from selectre
table = (('foo', 'bar', 'baz'),
('aa', 4, 9.3),
('aaa', 2, 88.2),
('b', 1, 23.3),
('ccc', 8, 42.0),
('bb', 7, 100.9),
('c', 2))
actual = search(table, 'foo', '[ab]{2}')
expect = (('foo', 'bar', 'baz'),
('aa', 4, 9.3),
('aaa', 2, 88.2),
('bb', 7, 100.9))
ieq(expect, actual)
ieq(expect, actual)
def test_search_headerless():
table = []
actual = search(table, 'foo', '[ab]{2}')
expect = []
ieq(expect, actual)
ieq(expect, actual)
def test_searchcomplement():
table1 = (('foo', 'bar', 'baz'),
('orange', 12, 'oranges are nice fruit'),
('mango', 42, 'I like them'),
('banana', 74, 'lovely too'),
('cucumber', 41, 'better than mango'))
# search any field
table2 = searchcomplement(table1, '.g.')
expect2 = (('foo', 'bar', 'baz'),
('banana', 74, 'lovely too'))
ieq(expect2, table2)
ieq(expect2, table2)
# search a specific field
table3 = searchcomplement(table1, 'foo', '.g.')
expect3 = (('foo', 'bar', 'baz'),
('banana', 74, 'lovely too'),
('cucumber', 41, 'better than mango'))
ieq(expect3, table3)
ieq(expect3, table3)
# search any field, using complement
table2 = search(table1, '.g.', complement=True)
expect2 = (('foo', 'bar', 'baz'),
('banana', 74, 'lovely too'))
ieq(expect2, table2)
ieq(expect2, table2)
# search a specific field, using complement
table3 = search(table1, 'foo', '.g.', complement=True)
expect3 = (('foo', 'bar', 'baz'),
('banana', 74, 'lovely too'),
('cucumber', 41, 'better than mango'))
ieq(expect3, table3)
ieq(expect3, table3)
def test_search_unicode():
tbl = ((u'name', u'id'),
(u'Արամ Խաչատրյան', 1),
(u'Johann Strauß', 2),
(u'Вагиф Сәмәдоғлу', 3),
(u'章子怡', 4))
actual = search(tbl, u'.Խա.')
expect = ((u'name', u'id'),
(u'Արամ Խաչատրյան', 1))
ieq(expect, actual)
ieq(expect, actual)
def test_splitdown():
tbl = ((u'name', u'roles'),
(u'Jane Doe', u'president,engineer,tailor,lawyer'),
(u'John Doe', u'rocket scientist,optometrist,chef,knight,sailor'))
actual = splitdown(tbl, 'roles', ',')
expect = ((u'name', u'roles'),
(u'Jane Doe', u'president'),
(u'Jane Doe', u'engineer'),
(u'Jane Doe', u'tailor'),
(u'Jane Doe', u'lawyer'),
(u'John Doe', u'rocket scientist'),
(u'John Doe', u'optometrist'),
(u'John Doe', u'chef'),
(u'John Doe', u'knight'),
(u'John Doe', u'sailor'))
ieq(expect, actual)
ieq(expect, actual)
ieq(expect, actual)
ieq(expect, actual)
ieq(expect, actual)
ieq(expect, actual)
ieq(expect, actual)
ieq(expect, actual)
ieq(expect, actual)
ieq(expect, actual)
# TODO test sub()
|