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 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754
|
"""
Tests for the various structures in rscdef.
"""
#c Copyright 2008-2024, the GAVO project <gavo@ari.uni-heidelberg.de>
#c
#c This program is free software, covered by the GNU GPL. See the
#c COPYING file in the source distribution.
import datetime
import os
import numpy
from gavo.helpers import testhelpers
from gavo import base
from gavo import rsc
from gavo import rscdef
from gavo import rscdesc #noflake: for registration
from gavo import utils
from gavo.utils import DEG
def makeDD(tableCode, rowmakerCode, grammar="<dictlistGrammar/>",
moreMakeStuff="", parentRD=None):
dd = base.parseFromString(rscdef.DataDescriptor,
'<data><table id="foo">%s</table>'
'<make table="foo">'
' <rowmaker id="_foo">%s</rowmaker>'
' %s'
'</make>'
'%s'
'</data>'%(
tableCode, rowmakerCode, moreMakeStuff, grammar))
if parentRD:
dd.parent = parentRD
td = dd.getTableDefById("foo")
return dd, td
class RowmakerDefTest(testhelpers.VerboseTest):
"""tests for some aspects of creation of rowmaker definitions.
"""
def testBasic(self):
makeDD('<column name="x"/>', '<map dest="x">a+b</map>')
map = base.parseFromString(rscdef.MapRule,'<map dest="bar"/>')
self.assertEqual(map.source, "bar")
def testNoDestRaises(self):
self.assertRaisesWithMsg(base.StructureError,
"At IO:'<map>bar</map>', (1, 8):"
" You must set key on map elements",
base.parseFromString, (rscdef.MapRule, '<map>bar</map>'))
def testStatementRaises(self):
self.assertRaisesWithMsg(base.BadCode,
'At IO:\'<data><table id="foo"><column name="x"/></table><make...\', (1, 108):'
" Bad source code in expression (Not an expression)",
makeDD, ('<column name="x"/>',
'<map dest="x">c = a+b</map>'))
def testBadSourceRaises(self):
self.assertRaisesWithMsg(base.BadCode,
'At IO:\'<data><table id="foo"><column name="x"/></table><make...\', (1, 102):'
" Bad source code in expression (invalid syntax (<unknown>, line 1))",
makeDD, ('<column name="x"/>', '<map dest="x">-</map>'))
def testPleonasticRaises(self):
self.assertRaisesWithMsg(base.StructureError,
'At IO:\'<map dest="bar" src="foo">bar</map>\', (1, 29):'
' Map must have exactly one of source attribute or element content',
base.parseFromString,
(rscdef.MapRule,'<map dest="bar" src="foo">bar</map>'))
class RowmakerMapTest(testhelpers.VerboseTest):
"""tests for mapping of values during parsing.
"""
def testBasicCode(self):
dd, td = makeDD('<column name="x" type="integer" required="True"/>',
'<map dest="x">int(vars["src"])</map>')
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
self.assertEqual(mapper({'src': '15'}, None)['x'], 15)
def testBasicMap(self):
dd, td = makeDD('<column name="x" type="integer" required="True"/>',
'<map dest="x" src="src"/>')
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
self.assertEqual(mapper({'src': '15'}, None)['x'], 15)
def testWithDefault(self):
dd, td = makeDD('<column name="x" type="integer" required="True"'
'><values default="18"/></column>', '<map dest="x">int(@x)</map>')
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
self.assertEqual(mapper({}, None)['x'], 18)
def testMultilineExpressions(self):
dd, td = makeDD('<column name="x" type="integer" required="True"/>'
'<column name="y" type="text"/>',
'<map dest="y">("foobar"+\n'
'@src.decode("utf-8"))\n</map>'
'<map dest="x">int(\n@src.decode("utf-8")\n)</map>')
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
self.assertEqual(mapper({"src": b'-20'}, None),
{"x": -20, "y": 'foobar-20'})
self.assertRaisesWithMsg(base.ValidationError,
"Field x: While building x in _foo: invalid literal for int() with base 10: '3x3'",
mapper, ({"src": b"3x3"}, None))
self.assertRaisesWithMsg(base.ValidationError,
"Field y: While building y in _foo: 'utf-8' codec can't decode byte 0x98 in position 0:"
" invalid start byte",
mapper, ({"src": b"\x98x"}, None))
def testDefaultLiterals(self):
dd, td = makeDD('<column name="si" type="smallint"/>'
' <column name="ii" type="integer"/>'
' <column name="bi" type="bigint"/>'
' <column name="r"/>'
' <column name="dp" type="double precision"/>'
' <column name="b" type="boolean"/>'
' <column name="tx" type="text"/>'
' <column name="c" type="char"/>'
' <column name="d" type="date"/>'
' <column name="ts" type="timestamp"/>'
' <column name="t" type="time"/>'
' <column name="raw" type="raw"/>',
'<map dest="si" src="si"/>'
' <map dest="ii" src="ii"/>'
' <map dest="bi" src="bi"/>'
' <map dest="r" src="r"/>'
' <map dest="dp" src="dp"/>'
' <map dest="b" src="b"/>'
' <map dest="tx" src="tx"/>'
' <map dest="c" src="c"/>'
' <map dest="d" src="d"/>'
' <map dest="ts" src="ts"/>'
' <map dest="t" src="t"/>'
' <map dest="raw" src="raw"/>')
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
self.assertEqual(mapper({"si": "0", "ii": "2000", "bi": "-3000",
"r": "0.25", "dp": "25e3", "b": "Off", "tx": "abc", "c": "\xae",
"d": "2004-04-08", "ts": "2004-04-08T22:30:15", "t": "22:30:14",
"raw": ["x", "y", "z"]}, None), {
'c': '\xae', 'b': False, 'd': datetime.date(2004, 4, 8),
'tx': 'abc', 'bi': -3000,
'ts': datetime.datetime(2004, 4, 8, 22, 30, 15), 'ii': 2000,
'raw': ['x', 'y', 'z'], 'si': 0, 'r': 0.25,
't': datetime.time(22, 30, 14), 'dp': 25000.0})
def testIdmapsSimple(self):
dd, td = makeDD('<column name="foo"/><column name="bar"/>',
'<idmaps>foo</idmaps><map key="bar">3.0</map>')
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
self.assertEqual(mapper({'foo': 2}, None),
{'foo': 2, 'bar': 3.0})
def testIdmapsDontOverwrite(self):
dd, td = makeDD('<column name="foo"/><column name="bar"/>',
'<map dest="foo">float(@foo)/2</map><idmaps>*</idmaps>')
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
self.assertEqual(mapper({'foo': 2, 'bar': 2}, None),
{'foo': 1, 'bar':2})
def testIdmapsAndNull(self):
dd, td = makeDD('<column name="foo" type="text"/>',
'<map dest="foo">parseWithNull(@foo, str, "None")</map>'
'<idmaps>*</idmaps>')
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
self.assertEqual(mapper({'foo': "None"}, None), {'foo': None})
self.assertEqual(mapper({'foo': "123"}, None), {'foo': "123"})
def testMapNullAuto(self):
dd, td = makeDD('<column name="foo" type="integer"/>',
'<map dest="foo" nullExpr="22"/>')
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
self.assertEqual(mapper({'foo': "22"}, None), {'foo': None})
self.assertEqual(mapper({'foo': "23"}, None), {'foo': 23})
def testMapNullExprValue(self):
dd, td = makeDD('<column name="foo" type="integer"/>',
'<map dest="foo" nullExpr="22">parseInt(@bar)+22</map>')
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
self.assertEqual(mapper({'bar': "0"}, None), {'foo': None})
self.assertEqual(mapper({'bar': "1"}, None), {'foo': 23})
def testBadNullExpr(self):
self.assertRaisesWithMsg(base.BadCode,
'At IO:\'<data><table id="foo"><column name="foo" type="intege...\', (1, 152):'
" Bad source code in expression (invalid syntax"
" (<unknown>, line 1))",
makeDD,
('<column name="foo" type="integer"/>',
'<map dest="foo" nullExpr="22-">parseInt(@bar)+22</map>'))
def testNullExcAutoTimestamp(self):
dd, td = makeDD('<column name="foo" type="timestamp"/>',
'<map dest="foo" src="foo" nullExcs="ValueError"/>')
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
self.assertEqual(mapper({'foo': "x3"}, None), {'foo': None})
def testOddSourceAtts(self):
dd, td = makeDD('<column name="foo"/><column name="bar"/>',
'<map dest="foo" source=\'knall"fall\'/>'
r'<map dest="bar" source="bad\ass"/>')
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
self.assertEqual(
mapper({
'knall"fall': "21",
"bad\\ass": "5e4"}, None),
{'foo': 21., 'bar': 5e4})
def testNumpyBool(self):
dd, td = makeDD('<column name="b" type="boolean"/>',
'<idmaps>*</idmaps>')
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
self.assertEqual(mapper({"b": numpy.bool_(True)}, None)["b"], True)
self.assertEqual(mapper({"b": numpy.bool_(False)}, None)["b"], False)
class RowmakerMapMessageTest(testhelpers.VerboseTest, metaclass=testhelpers.SamplesBasedAutoTest):
def _runTest(self, example):
tableBody, rmkBody, data, message = example
dd, td = makeDD(tableBody, rmkBody)
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
self.assertRaisesWithMsg(
base.ValidationError,
message,
mapper,
(data, None))
samples = [(
'<column name="x" type="integer" required="True"/>',
'<map dest="x">int(@src)</map>',
{},
"Field x: While building x in _foo: Key 'src' not found in a mapping."
),(
'<column name="x" type="integer" required="True"/>',
'<map dest="x">int(@src)</map>',
{"src": "ab c"},
"Field x: While building x in _foo: invalid literal for int()"
" with base 10: 'ab c'"
),(
'<column name="x" type="integer" required="True"/>',
'<var name="x">int(@src)</var>',
{"src": "ab c"},
"Field x: While assigning x in _foo: invalid literal for int()"
" with base 10: 'ab c'"
),(
'<column name="x" type="text" required="True"/>',
'<map name="x">"abc"+@src</map>',
{"src": None},
"Field x: While building x in _foo: can only concatenate"
' str (not "NoneType") to str'
),
]
class ApplyTest(testhelpers.VerboseTest):
"""Tests for mapping procedures.
"""
def testArtificial(self):
rd = base.parseFromString(rscdesc.RD,
'<resource schema="test"><procDef type="apply" id="artificial">'
'<setup><par key="val"/></setup><code>result["si"] = val</code>'
'</procDef>'
'<data><table id="foo"><column name="si" type="smallint"/></table>'
'<rowmaker id="_foo"><apply procDef="artificial" name="p1">\n'
'<bind key="val">23</bind></apply></rowmaker>\n'
'<make table="foo" rowmaker="_foo"/>'
'<dictlistGrammar/></data></resource>')
data = rd.dds[0]
mapper = data.rowmakers[0].compileForTableDef(data.makes[0].table)
self.assertEqual(mapper({"src": 23}, None), {'si': 23})
def testInline(self):
dd, td = makeDD(' <column name="si" type="smallint"/>',
' <apply name="p1"><code>\n'
' for i in range(int(vars["src"])):\n'
' result["si"] = result.get("si", 0)+i\n'
' </code></apply>')
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
self.assertEqual(mapper({"src": 23}, None), {'si': 253})
def testRaising(self):
self.assertRaisesWithMsg(base.NotFoundError,
"Element with id 'quatsch' could not be located in parse context",
makeDD, ('', '<apply name="xy" procDef="quatsch"/>'))
def testArgExpansion(self):
dd, td = makeDD('<column name="d" type="date"/>',
'<apply name="foo">'
' <code>result["si"] = "\\test{1}{2}"\n</code>'
'</apply>')
res = rsc.makeData(dd, forceSource=[{}])
self.assertEqual(res.getPrimaryTable().rows,
[{'si': 'test macro expansion'},])
def testTableAccess(self):
dd, td = makeDD('<column name="d" type="date"/>',
'<apply name="foo">'
' <code>result["ct"] = len(targetTable)\n</code>'
'</apply>')
res = rsc.makeData(dd, forceSource=[{}, {}, {}])
self.assertEqual(res.getPrimaryTable().rows,
[{'ct': 0}, {'ct': 1}, {'ct': 2}])
def testVariablesAvailable(self):
rowmakerDef = base.parseFromString(rscdef.RowmakerDef, """<rowmaker>
<apply>
<setup>
<par key="foo" late="True">@xzzx+"h"</par>
</setup>
<code>
result["norks"] = foo
</code>
</apply>
</rowmaker>""")
tab = rsc.TableForDef(base.makeStruct(rscdef.TableDef, columns=[]))
rmk = rowmakerDef.compileForTableDef(tab.tableDef)
self.assertEqual(rmk({"xzzx": "u"}, None)["norks"], "uh")
def testMissingRequiredPar(self):
self.assertRaisesWithMsg(base.StructureError,
'At IO:\'<data><table id="foo"><column name="d" type="text"/><...\', (6, 3):'
' Parameter foo is not defaulted in foo and thus must be bound.',
makeDD,
('<column name="d" type="text"/>',
"""<apply name="foo">
<setup>
<par name="foo" late="True"/>
</setup>
<code>result["d"] = @foo</code>
</apply>""",))
def testLateAliasOverwrites(self):
rowmakerDef = base.parseFromString(rscdef.RowmakerDef, """<rowmaker>
<apply id="t">
<setup>
<par key="foo" alias="bar" late="True">"knall"</par>
</setup>
<code>
result[foo] = vars["in"]
</code>
</apply>
<apply procDef="t">
<bind name="bar">"fall"</bind>
</apply>
</rowmaker>""")
tab = rsc.TableForDef(base.makeStruct(rscdef.TableDef, columns=[]))
rmk = rowmakerDef.compileForTableDef(tab.tableDef)
self.assertEqual(
rmk({"in": "x"}, None),
{'knall': 'x', 'fall': 'x'})
def testEarlyAliasOverwrites(self):
rowmakerDef = base.parseFromString(rscdef.RowmakerDef, """<rowmaker>
<apply id="t">
<setup>
<par key="foo" alias="bar">"knall"</par>
</setup>
<code>
result[foo] = vars["in"]
</code>
</apply>
<apply procDef="t">
<bind name="bar">"fall"</bind>
</apply>
</rowmaker>""")
tab = rsc.TableForDef(base.makeStruct(rscdef.TableDef, columns=[]))
rmk = rowmakerDef.compileForTableDef(tab.tableDef)
self.assertEqual(
rmk({"in": "x"}, None),
{'knall': 'x', 'fall': 'x'})
def testComplexAliasing(self):
rmk = base.parseFromString(rscdef.RowmakerDef, """<rowmaker>
<apply procDef="//siap2#setMeta" id="foo">
<bind key="instrument">"tubelet"</bind>
<bind key="obs_collection">"testing"</bind>
</apply></rowmaker>""")
tab = rsc.TableForDef(base.makeStruct(rscdef.TableDef, columns=[]))
tab.tableDef.addMeta("facility", "GAVO")
rmk = rmk.compileForTableDef(tab.tableDef)
res = rmk({"prodtblAccref": "ab", "prodtblTable": None,
"prodtblMime": None, "prodtblFsize": None}, tab.tableDef)
# this means that the facility_name default has been overwritten
self.assertEqual(res["instrument_name"], "tubelet")
# this means that the getMeta defaults are still in place
self.assertEqual(res["facility_name"], "GAVO")
def testNoEarlyVar(self):
proc = base.parseFromString(
rscdef.RowmakerDef, """<rowmaker>
<apply procDef="//procs#dictMap" id="foo">
<bind key="mapping">@mapping</bind>
<bind key="key">"testing"</bind>
</apply></rowmaker>""")
td = base.makeStruct(rscdef.TableDef, columns=[])
self.assertRaisesWithMsg(
base.StructureError,
utils.EqualingRE(r"At .*/procs.rd, line 238: You cannot use @-references in non-late parameter bindings. But '@mapping' \(bound to mapping\) looks like an @-reference, so I give up."),
proc.compileForTableDef,
(td,))
class VarTest(testhelpers.VerboseTest):
"""tests for rowmaker variables.
"""
def testBadNameRaises(self):
self.assertRaisesWithMsg(base.StructureError,
'At IO:\'<data><table id="foo"></table><make table="foo"> <row...\', (1, 69):'
" '77x' is not a valid column identifier",
makeDD, ('', '<var name="77x">a</var>'))
def testBadSourceRaises(self):
self.assertRaisesWithMsg(base.StructureError,
'At IO:\'<data><table id="foo"></table><make table="foo"> <row...\', (1, 88): Bad source code in'
' expression (Not an expression)',
makeDD, ('', '<var name="x77">a=b</var>'))
def testBasic(self):
dd, td = makeDD(' <column name="si" type="smallint"/>',
' <var name="x">28</var>'
' <var name="y">29+@x</var>'
' <map dest="si">@y</map>')
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
self.assertEqual(mapper({}, None), {'si': 57})
def testRaising(self):
dd, td = makeDD(' <column name="si" type="smallint"/>',
' <map dest="si" nullExcs="ZeroDivisionError">1/0</map>')
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
self.assertEqual(mapper({}, None), {'si': None})
def testDefaultMapping(self):
dd, td = makeDD(' <column name="x"/>',
' <var key="xcooked" source="xraw" nullExcs="KeyError"/>'
' <map key="x" source="xcooked"/>')
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
self.assertEqual(mapper({}, None), {'x': None})
self.assertEqual(mapper({"xraw": "33"}, None), {'x': 33.})
class SimpleMapsTest(testhelpers.VerboseTest):
def testBasic(self):
dd, td = makeDD('<column name="si" type="smallint"/>'
'<column name="bi" type="smallint"/>',
' <simplemaps>si:x, bi:y</simplemaps>')
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
self.assertEqual(mapper({'x': 57, 'y':'28'}, None),
{'si': 57, 'bi': 28})
def testFromAttribute(self):
dd = base.parseFromString(rscdef.DataDescriptor,
'<data><table id="foo"><column name="z" type="date"/></table>'
'<dictlistGrammar/><make table="foo">'
'<rowmaker simplemaps="z:ds"/></make></data>')
td = dd.getTableDefById("foo")
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
self.assertEqual(mapper({'ds': '2010-01-03'}, None),
{'z': datetime.date(2010, 1, 3)})
def testMissingTargetFails(self):
dd, td = makeDD('<column name="si" type="smallint"/>',
' <simplemaps>bi:y</simplemaps>')
self.assertRaisesWithMsg(base.NotFoundError,
"column 'bi' could not be located in table foo's columns",
dd.makes[0].rowmaker.compileForTableDef, (td,))
class PredefinedTest(testhelpers.VerboseTest):
"""tests for procedures from //procs and some predefined rowmaker functions.
"""
def testSimbadOk(self):
dd, td = makeDD(' <column name="alpha" type="real"/>'
' <column name="delta" type="real"/>',
' <apply procDef="//procs#resolveObject">'
' <bind key="identifier">vars["src"]</bind>'
' </apply>'
' <map dest="alpha">@simbadAlpha</map>'
' <map dest="delta">@simbadDelta</map>')
res = rsc.makeData(dd, forceSource=[{'src': "Aldebaran"}])
row = res.getPrimaryTable().rows[0]
self.assertEqual(str(row["alpha"])[:6], "68.980")
self.assertEqual(len(row), 2)
def testSimbadFail(self):
dd, td = makeDD('<column name="alpha" type="real"/>'
' <column name="delta" type="real"/>',
' <apply procDef="//procs#resolveObject">'
' <bind key="ignoreUnknowns">False</bind>'
' <bind key="identifier">src</bind>'
' </apply>'
' <map dest="alpha">simbadAlpha</map>'
' <map dest="delta">simbadDelta</map>')
self.assertRaises(base.ValidationError,
rsc.makeData, dd, forceSource=[{'src': "Quxmux_333x"}])
def testNoAliasing(self):
dd, td = makeDD('<column name="x" type="text"/>'
'<column name="y" type="text"/>',
'<apply procDef="//procs#mapValue">'
'<bind key="sourceName">"%s"</bind>'
'<bind key="destination">"x"</bind><bind key="value">'
'vars["in1"]</bind></apply>'
'<apply procDef="//procs#mapValue">'
'<bind key="sourceName">"%s"</bind>'
'<bind key="destination">"y"</bind><bind key="value">'
'vars["in2"]</bind></apply>'
'<idmaps>*</idmaps>'%(os.path.abspath("test_data/map1.map"),
os.path.abspath("test_data/map2.map")))
res = rsc.makeData(dd, forceSource=[{'in1': 'foo', 'in2': 'left'}])
self.assertEqual(res.getPrimaryTable().rows,
[{'y': 'right', 'x': 'bar'}])
def testMapDict(self):
dd, td = makeDD(' <column name="foo" type="text"/>',
' <apply procDef="//procs#dictMap" name="mapFoo">'
' <bind key="key">"foo"</bind>'
' <bind key="mapping">{"x": "u", "0": "1"}</bind>'
' </apply><idmaps>*</idmaps>')
res = rsc.makeData(dd, forceSource=[{'foo': "x"}])
self.assertEqual(res.getPrimaryTable().rows[0]["foo"], "u")
self.assertRaisesWithMsg(base.ValidationError,
"Field foo: dictMap saw '1', which it was not prepared to see.",
rsc.makeData,
(dd,), forceSource=[{'foo': "1"}])
def testMapDictDefault(self):
dd, td = makeDD(' <column name="foo" type="text"/>',
' <apply procDef="//procs#dictMap" name="mapFoo">'
' <bind key="key">"foo"</bind>'
' <bind key="default">None</bind>'
' <bind key="mapping">{"x": "u", "0": "1"}</bind>'
' </apply><idmaps>*</idmaps>')
res = rsc.makeData(dd, forceSource=[{'foo': "x"}, {"foo": "y"}])
rows = res.getPrimaryTable().rows
self.assertEqual(rows[0]["foo"], "u")
self.assertEqual(rows[1]["foo"], None)
def testUnboundDictMap(self):
dd, td = makeDD(' <column name="foo" type="text"/>',
' <apply procDef="//procs#dictMap" name="mapFoo">'
' <setup><par name="mapping">{"x": 3, "y": 2}</par>'
' <par name="key">"foo"</par></setup>'
' </apply><idmaps>*</idmaps>')
res = rsc.makeData(dd, forceSource=[{'foo': "x"}, {"foo": "y"}])
rows = res.getPrimaryTable().rows
self.assertEqual(rows[0]["foo"], "3")
self.assertEqual(rows[1]["foo"], "2")
class RowmakerMacroTest(testhelpers.VerboseTest):
"""tests for the standard macros defined by row makers.
"""
def test_standardPubDID(self):
dd, td = makeDD('<column name="x" type="text" required="True"/>',
r'<map dest="x">\standardPubDID</map>',
parentRD=testhelpers.getTestRD("ssatest"))
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
self.assertEqual(
mapper(
{'prodtblAccref': 'foo'}, None)['x'],
'ivo://x-testing/~?foo')
def test_standardPubDIDRejectingUnregistered(self):
with testhelpers.tempConfig(("ivoa", "authority", "x-unregistred")):
dd, td = makeDD('<column name="x" type="text" required="True"/>',
r'<map dest="x">\standardPubDID</map>',
parentRD=testhelpers.getTestRD("ssatest"))
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
self.assertRaisesWithMsg(base.ValidationError,
"Field x: While building x in _foo: You must configure your"
" IVOA authority before creating standard PubDIDs.",
mapper,
({'prodtblAccref': 'foo'}, None))
def test_dlMetaURI(self):
dd, td = makeDD('<column name="x" type="text" required="True"/>',
r'<map dest="x">\dlMetaURI{dl}</map>',
parentRD=testhelpers.getTestRD("ssatest"))
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
self.assertEqual(
mapper(
{'prodtblAccref': 'foo'}, None)['x'],
'http://localhost:8080/data/ssatest/dl/dlmeta'
'?ID=ivo%3A//x-testing/~%3Ffoo')
def test_inputRelativePath(self):
dd, td = makeDD('<column name="x" type="text" required="True"/>',
r'<map dest="x">\inputRelativePath</map>',
parentRD=testhelpers.getTestRD("ssatest"))
class Parser:
sourceToken = dd.rd.getAbsPath('foo/bar+baz')
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
self.assertEqual(
mapper({"parser_": Parser} , None)['x'],
'foo/bar+baz')
def test_rowsMade(self):
dd, td = makeDD('<column name="x" type="integer" required="True"/>',
r'<map dest="x">\rowsMade</map>')
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
self.assertEqual(
mapper({}, None)['x'],
0)
self.assertEqual(
mapper({}, None)['x'],
1)
def test_property(self):
dd, td = makeDD('<column name="x" type="integer" required="True"/>',
r'<map dest="x">\property{prop}</map>',
grammar='<dictlistGrammar/><property key="prop">bla</property>')
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
self.assertEqual(
mapper({}, None)['x'],
"bla")
def test_srcstem(self):
dd, td = makeDD('<column name="x" type="integer" required="True"/>',
r'<map dest="x">\srcstem</map>')
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
class Parser:
sourceToken = 'goo/quux/foo/bar+baz.tar.gz'
self.assertEqual(
mapper({"parser_": Parser}, None)['x'],
"bar+baz")
def test_lastSourceEl(self):
dd, td = makeDD('<column name="x" type="text" required="True"/>',
r'<map dest="x">\lastSourceElements{3}</map>',
parentRD=testhelpers.getTestRD("ssatest"))
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
class Parser:
sourceToken = dd.rd.getAbsPath('goo/quux/foo/bar+baz')
self.assertEqual(
mapper({"parser_": Parser}, None)['x'],
'quux/foo/bar+baz')
def test_rootlessPathl(self):
dd, td = makeDD('<column name="x" type="text" required="True"/>',
r'<map dest="x">\rootlessPath</map>',
parentRD=testhelpers.getTestRD("ssatest"))
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
class Parser:
sourceToken = dd.rd.getAbsPath('norz/foo.fits')
self.assertEqual(
mapper({"parser_": Parser}, None)['x'],
'norz/foo.fits')
def test_inputSize(self):
dd, td = makeDD('<column name="x" type="integer" required="True"/>',
r'<map dest="x">\inputSize</map>',
parentRD=testhelpers.getTestRD("ssatest"))
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
class Parser:
sourceToken = dd.rd.getAbsPath('data/spec3.ssatest')
self.assertEqual(
mapper({"parser_": Parser}, None)['x'], 213)
def test_qName(self):
dd, td = makeDD('<column name="x" type="text" required="True"/>',
r'<map dest="x">\qName</map>',
parentRD=testhelpers.getTestRD("ssatest"))
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
self.assertEqual(
mapper({}, None)['x'], 'test.foo')
class IgnoreOnTest(testhelpers.VerboseTest):
"""tests for working ignoreOn clauses.
"""
def testBasic(self):
dd, td = makeDD('<column name="si"/>',
'<ignoreOn><keyPresent key="y"/></ignoreOn><idmaps>*</idmaps>')
mapper = dd.makes[0].rowmaker.compileForTableDef(td)
self.assertEqual(mapper({'si': '1'}, None), {'si': 1.0})
self.assertRaises(rscdef.IgnoreThisRow, mapper,
{'si': 1, 'y': None}, None)
def testBuilding(self):
dd, td = makeDD('<column name="si"/>',
'<ignoreOn><keyMissing key="y"/></ignoreOn><idmaps>*</idmaps>')
table = rsc.makeData(dd, forceSource=[{'si':1}, {'si':2, 'y':"yes"},
{'si': 3}]).getPrimaryTable()
self.assertEqual(table.rows, [{'si':2.}])
class ToParameterTest(testhelpers.VerboseTest):
def testPlain(self):
dd, td = makeDD('<param name="u" type="integer"/>', "",
'<dictlistGrammar asPars="True"/>',
'<parmaker><map dest="u" src="u"/></parmaker>')
data = rsc.makeData(dd, forceSource=[{"u": "10"}])
self.assertEqual(data.getPrimaryTable().getParam("u"), 10)
def testConstant(self):
dd, td = makeDD('<param name="u" type="integer"/>', "",
'<dictlistGrammar/>',
'<parmaker><map dest="u">10</map></parmaker>')
data = rsc.makeData(dd, forceSource=[])
self.assertEqual(data.getPrimaryTable().getParam("u"), 10)
def testIdmaps(self):
dd, td = makeDD('<param name="u" type="timestamp"/>'
'<param name="pos" type="spoint"/>', "",
'<dictlistGrammar asPars="True"/>',
'<parmaker idmaps="*"/>')
data = rsc.makeData(dd, forceSource=[
{'u': "2010-10-10T10:10:10", 'pos': '34,-30'}])
self.assertEqual(data.getPrimaryTable().getParam("u"),
datetime.datetime(2010, 10, 10, 10, 10, 10))
self.assertAlmostEqual(data.getPrimaryTable().getParam("pos").x,
34*DEG)
def testBadDest(self):
dd, td = makeDD('<param name="u" type="timestamp"/>', "",
'<dictlistGrammar/>',
'<parmaker><map dest="foo">10</map></parmaker>')
self.assertRaisesWithMsg(base.NotFoundError,
"column 'foo' could not be located in table foo's params",
rsc.makeData,
(dd, rsc.parseNonValidating, []))
def testBadSource(self):
dd, td = makeDD('<param name="u" type="timestamp"/>', "",
'<dictlistGrammar/>',
'<parmaker><map dest="u" src="bar"/></parmaker>')
self.assertRaisesWithMsg(base.ValidationError,
"Field u: While building u in <rowmaker without id>: Key 'bar'"
" not found in a mapping.",
rsc.makeData,
(dd, rsc.parseNonValidating, []))
if __name__=="__main__":
testhelpers.main(ToParameterTest)
|