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
|
"""
Generic tests for the STC library.
"""
#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 re
import math
from gavo.helpers import testhelpers
from gavo import stc
from gavo import utils
from gavo.stc import cli
from gavo.stc import dm
from gavo.stc import geo
from gavo.stc import stcs
from gavo.stc import stcsast
class CoordSysTest(testhelpers.VerboseTest):
def testBasic(self):
cs = dm.CoordSys(name="testCase", ucd="test;useless")
self.assertEqual(cs.timeFrame, None)
self.assertEqual(cs.ucd, "test;useless")
self.assertEqual(cs.name, "testCase")
def testBasicRaises(self):
self.assertRaises(TypeError, dm.CoordSys, x=8)
def testFromSTCS(self):
cst = stcs.getCST("TimeInterval TT BARYCENTER"
" PositionInterval FK5 TOPOCENTER"
" SpectralInterval GEOCENTER"
" RedshiftInterval HELIOCENTER VELOCITY")
cs = stcsast.getCoordSys(cst)[1]
self.assertEqual(cs.redshiftFrame.dopplerDef, "OPTICAL")
self.assertEqual(cs.spectralFrame.refPos.standardOrigin, "GEOCENTER")
self.assertEqual(cs.spaceFrame.flavor, "SPHERICAL")
self.assertEqual(cs.spaceFrame.nDim, 2)
self.assertEqual(cs.spaceFrame.refFrame, "FK5")
self.assertEqual(cs.timeFrame.timeScale, "TT")
def testEquinoxes(self):
ast = stcsast.parseSTCS("Position FK4 B1975 30 30")
self.assertEqual(ast.astroSystem.spaceFrame.equinox, "B1975.0")
self.assertEqual(ast.astroSystem.spaceFrame.getEquinox(),
datetime.datetime(1974, 12, 31, 23, 28, 56, 228856))
def testPlanetaryEphemeris(self):
ast = stcsast.parseSTCS("Time TT TOPOCENTER JPL-DE200")
self.assertEqual(ast.astroSystem.timeFrame.refPos.planetaryEphemeris,
"JPL-DE200")
class OtherCoordTest(testhelpers.VerboseTest):
def testSimpleTime(self):
ast = stcsast.parseSTCS("Time TT 2000-12-20T23:02:12 unit yr Error 2")
self.assertEqual(ast.time.frame.timeScale, "TT")
self.assertEqual(ast.time.error.values, (2.0,))
self.assertEqual(ast.time.value,
datetime.datetime(2000, 12, 20, 23, 2, 12))
def testSimpleSpectral(self):
ast = stcsast.parseSTCS("Spectral BARYCENTER 23 Resolution 0.25 0.5")
self.assertEqual(ast.freq.frame.refPos.standardOrigin, "BARYCENTER")
self.assertEqual(ast.freq.value, 23.)
self.assertEqual(ast.freq.resolution.values, (0.25, 0.5))
def testSimpleRedshift(self):
ast = stcsast.parseSTCS("Redshift BARYCENTER 2 unit km/s")
self.assertEqual(ast.redshift.frame.refPos.standardOrigin,
"BARYCENTER")
self.assertEqual(ast.redshift.value, 2.)
def testComplexRedshift(self):
ast = stcsast.parseSTCS("Redshift BARYCENTER REDSHIFT"
" RADIO 2 Error 0 0.125")
self.assertEqual(ast.redshift.error.values, (0, 0.125))
self.assertEqual(ast.redshift.frame.type, "REDSHIFT")
self.assertEqual(ast.redshift.frame.dopplerDef, "RADIO")
def testRaising(self):
self.assertRaises(stc.STCValueError, stcsast.parseSTCS,
"Time TT Error 1 2 3")
self.assertRaises(stc.STCValueError, stcsast.parseSTCS,
"Spectral BARYCENTER 23 Resolution 0.25 0.5 2.5")
class SpaceCoordTest(testhelpers.VerboseTest):
def testSimple(self):
ast = stcsast.parseSTCS("Position FK5 TOPOCENTER 2 4.25 unit deg"
" PixSize 4.5 3.75")
self.assertEqual(ast.place.frame.flavor, "SPHERICAL")
self.assertEqual(ast.place.frame.nDim, 2)
self.assertEqual(ast.place.value, (2., 4.25))
self.assertEqual(ast.place.unit, ("deg", "deg"))
self.assertEqual(ast.place.pixSize.values, ((4.5, 3.75),))
def testPixSizeRange(self):
ast = stcsast.parseSTCS("Position FK5 TOPOCENTER 2 4.25 unit deg"
" PixSize 4.5 3.75 1 5")
self.assertEqual(ast.place.pixSize.values, ((4.5, 3.75), (1., 5.)))
def testSizeRange(self):
ast = stcsast.parseSTCS("Position FK5 TOPOCENTER 2 4.25 unit deg"
" Size 4.5 3.75 1 5")
self.assertEqual(ast.place.size.values, ((4.5, 3.75), (1., 5.)))
def testRaises(self):
self.assertRaises(stc.STCSParseError, stcsast.parseSTCS,
"Position FK5 TOPOCENTER 2 4.25 unit deg PixSize 4.5 3.75 2")
class OtherCoordIntervalTest(testhelpers.VerboseTest):
def testEmptyInterval(self):
ast = stcsast.parseSTCS("TimeInterval TOPOCENTER unit s")
self.assertEqual(ast.time.frame.refPos.standardOrigin,
"TOPOCENTER")
def testHalfOpenInterval(self):
ast = stcsast.parseSTCS("TimeInterval MJD 2000")
self.assertEqual(ast.timeAs[0].upperLimit, None)
self.assertEqual(ast.timeAs[0].lowerLimit,
datetime.datetime(1864, 5, 9, 0, 0, 0, 1))
def testOneInterval(self):
ast = stcsast.parseSTCS("TimeInterval 2000-02-02 2000-02-02T13:20:33")
self.assertEqual(ast.timeAs[0].upperLimit,
datetime.datetime(2000, 2, 2, 13, 20, 33))
self.assertEqual(ast.timeAs[0].lowerLimit,
datetime.datetime(2000, 2, 2, 0, 0))
def _testOneAndAHalfInterval(self):
ast = stcsast.parseSTCS("TimeInterval 2000-02-02 2000-02-02T13:20:33"
" MJD 80002")
self.assertEqual(ast.timeAs[1].upperLimit, None)
self.assertEqual(ast.timeAs[1].lowerLimit,
datetime.datetime(2077, 11, 30, 0, 0, 0, 4))
def testTimeWithPosition(self):
ast = stcsast.parseSTCS("TimeInterval 2000-02-02 2000-02-02T13:20:33"
" Time 2000-02-02T10:34:03.25")
self.assertEqual(len(ast.timeAs), 1)
self.assertEqual(ast.time.value,
datetime.datetime(2000, 2, 2, 10, 34, 3, 250000))
def testSpecInterval(self):
ast = stcsast.parseSTCS("SpectralInterval 23 45 unit Hz")
freqA = testhelpers.pickSingle(ast.freqAs)
self.assertEqual(freqA.frame.refPos.standardOrigin, None)
self.assertEqual(freqA.lowerLimit, 23.0)
self.assertEqual(freqA.upperLimit, 45.0)
def testRedshiftInterval(self):
ast = stcsast.parseSTCS("RedshiftInterval VELOCITY 2 4")
redshiftA = testhelpers.pickSingle(ast.redshiftAs)
self.assertEqual(redshiftA.frame.type,
"VELOCITY")
self.assertEqual(redshiftA.lowerLimit, 2.0)
self.assertEqual(redshiftA.upperLimit, 4.0)
self.assertEqual(ast.redshift.unit, "km")
self.assertEqual(ast.redshift.velTimeUnit, "s")
def testStartTime(self):
ast = stcsast.parseSTCS("StartTime TT MJD24000.5")
timeA = testhelpers.pickSingle(ast.timeAs)
self.assertEqual(timeA.upperLimit, None)
self.assertEqual(timeA.lowerLimit,
datetime.datetime(1924, 8, 3, 12, 0))
def testStopTime(self):
ast = stcsast.parseSTCS("StopTime TT MJD24000.5")
timeA = testhelpers.pickSingle(ast.timeAs)
self.assertEqual(timeA.lowerLimit, None)
self.assertEqual(timeA.upperLimit,
datetime.datetime(1924, 8, 3, 12, 0))
class SpaceCoordIntervalTest(testhelpers.VerboseTest):
def testSimple2D(self):
ast = stcsast.parseSTCS("PositionInterval ICRS 12.25 23.75 13.5 25.0")
area = testhelpers.pickSingle(ast.areas)
self.assertEqual(area.frame.refPos.standardOrigin, None)
self.assertEqual(area.lowerLimit, (12.25, 23.75))
self.assertEqual(area.upperLimit, (13.5, 25.0))
self.assertTrue(ast.place is not None)
def test2DWithError(self):
ast = stcsast.parseSTCS("PositionInterval ICRS 12.25 23.75 13.5 25.0 Error 1 2")
self.assertEqual(len(ast.areas), 1)
self.assertEqual(ast.place.error.values, ((1., 2.),))
def testSimple3D(self):
ast = stcsast.parseSTCS("PositionInterval ICRS CART3 1 2 3")
area = testhelpers.pickSingle(ast.areas)
self.assertEqual(area.lowerLimit, (1.0, 2.0, 3.0))
self.assertEqual(area.upperLimit, None)
def test3DWithError(self):
ast = stcsast.parseSTCS("PositionInterval ICRS CART3 1 2 3 4 5 6"
" Error 0.25 0.5 0.75")
area = testhelpers.pickSingle(ast.areas)
self.assertEqual(area.lowerLimit, (1.0, 2.0, 3.0))
self.assertEqual(area.upperLimit, (4.0, 5.0, 6.0))
self.assertEqual(ast.place.error.values, ((.25, .5, .75),))
def testWithPosition(self):
ast = stcsast.parseSTCS("PositionInterval ICRS 12.25 23.75 13.5 25.0"
" Position 12 24")
self.assertEqual(len(ast.areas), 1)
self.assertEqual(ast.place.value, (12., 24.))
def test1D(self):
ast = stcsast.parseSTCS("PositionInterval ICRS CART1 1"
" Error 0.25 0.5")
self.assertEqual(len(ast.areas), 1)
self.assertEqual(ast.areas[0].lowerLimit, (1.0,))
self.assertEqual(ast.place.error.values[0], (0.25,))
self.assertEqual(ast.place.error.values[1], (0.5,))
def testFunkyUnit(self):
ast = stcsast.parseSTCS("PositionInterval ICRS CART2 1 2 3 4"
" unit m kpc Error 0.25 0.5")
self.assertEqual(len(ast.areas), 1)
self.assertEqual(ast.place.unit, ("m", "kpc"))
def testBadPositionRaises(self):
self.assertRaises(stc.STCValueError, stcsast.parseSTCS,
"PositionInterval ICRS 12.25 23.75 13.5 25.0 Position 12 24 3 4")
class GeometryTest(testhelpers.VerboseTest):
def testAllSky(self):
ast = stcsast.parseSTCS("AllSky ICRS")
self.assertTrue(isinstance(ast.areas[0], dm.AllSky))
self.assertEqual(ast.areas[0].frame.refFrame, 'ICRS')
def testAllSkyRaises(self):
self.assertRaises(stc.STCSParseError, stcsast.parseSTCS,
"AllSky ICRS 12")
def testCircle2D(self):
ast = stcsast.parseSTCS("Circle ICRS CART2 12 13 1.5")
c = ast.areas[0]
self.assertTrue(isinstance(c, dm.Circle))
self.assertEqual(c.frame.refFrame, 'ICRS')
self.assertEqual(c.center, (12., 13.))
self.assertEqual(c.radius, 1.5)
def testCircle3D(self):
ast = stcsast.parseSTCS("Circle FK5 CART3 12 13 15 1.5")
c = ast.areas[0]
self.assertTrue(isinstance(c, dm.Circle))
self.assertEqual(c.frame.refFrame, 'FK5')
self.assertEqual(c.center, (12., 13., 15.))
self.assertEqual(c.radius, 1.5)
def testCircleRaises(self):
self.assertRaises(stc.STCSParseError, stcsast.parseSTCS,
"Circle ICRS 12")
def testEllipse(self):
ast = stcsast.parseSTCS("Ellipse ICRS 12 13 1.5 0.75 0")
c = ast.areas[0]
self.assertTrue(isinstance(c, dm.Ellipse))
self.assertEqual(c.center, (12., 13.))
self.assertEqual(c.smajAxis, 1.5)
self.assertEqual(c.sminAxis, 0.75)
self.assertEqual(c.posAngle, 0)
def testEllipseRaises(self):
self.assertRaises(stc.STCSParseError, stcsast.parseSTCS,
"Ellipse ICRS 12 13 14")
def testBox(self):
ast = stcsast.parseSTCS("Box ICRS 12 13 1.5 0.75")
c = ast.areas[0]
self.assertTrue(isinstance(c, dm.Box))
self.assertEqual(c.center, (12., 13.))
self.assertEqual(c.boxsize, (1.5, 0.75))
def testBoxRaises(self):
self.assertRaises(stc.STCSParseError, stcsast.parseSTCS,
"Box ICRS 12 13 1.5 0.75 0")
def testPolygon(self):
ast = stcsast.parseSTCS("Polygon ICRS 12 13 15 14 11 10")
c = ast.areas[0]
self.assertTrue(isinstance(c, dm.Polygon))
self.assertEqual(c.vertices[0], (12., 13.))
self.assertEqual(c.vertices[1], (15., 14.))
self.assertEqual(c.vertices[2], (11., 10.))
self.assertEqual(len(c.vertices), 3)
def testPolygonRaises(self):
self.assertRaises(stc.STCSParseError, stcsast.parseSTCS,
"Polygon ICRS 12 13 1.5 0.75 0")
def testConvex(self):
ast = stcsast.parseSTCS("Convex ICRS 12 13 15 0.25 14 11 10 -0.25")
c = ast.areas[0]
self.assertEqual(c.vectors[0], (12., 13., 15., 0.25))
self.assertEqual(c.vectors[1], (14., 11., 10., -0.25))
self.assertEqual(len(c.vectors), 2)
class UnitParseTest(testhelpers.VerboseTest):
"""tests for parsing units.
"""
def test2DSpatial(self):
ast = stcsast.parseSTCS("Position ICRS 1 200 unit deg")
self.assertEqual(ast.place.unit, ("deg", "deg"))
def test3DGeo(self):
ast = stcsast.parseSTCS("Position GEO_D SPHER3 49.39861 8.72083 560")
self.assertEqual(ast.place.unit, ("deg", "deg", "m"))
def test1DSpatialInterval(self):
ast = stcsast.parseSTCS("PositionInterval ICRS CART1 1 unit km")
self.assertEqual(ast.place.unit, ("km",))
def test2DSpatialInterval(self):
ast = stcsast.parseSTCS("PositionInterval ICRS 1 2 2 3 unit rad")
self.assertEqual(ast.place.unit, ("rad", "rad"))
def testSpectral(self):
ast = stcsast.parseSTCS("SpectralInterval 1 2 unit nm")
self.assertEqual(ast.freq.unit, "nm")
def testTime(self):
ast = stcsast.parseSTCS("TimeInterval MJD56 MJD57 unit a")
self.assertEqual(ast.time.unit, "a")
def testRedshift(self):
ast = stcsast.parseSTCS("RedshiftInterval 1000 2000 unit km/s")
self.assertEqual(ast.redshift.unit, "km")
self.assertEqual(ast.redshift.velTimeUnit, "s")
class VelocityTest(testhelpers.VerboseTest):
"""tests for velocity handling.
"""
def testTrivial(self):
ast = stcsast.parseSTCS("Position ICRS VelocityInterval 1 2")
self.assertTrue(ast.velocity.frame is ast.astroSystem.spaceFrame)
self.assertEqual(ast.velocity.unit, ("m", "m"))
self.assertEqual(ast.velocity.velTimeUnit, ("s", "s"))
self.assertEqual(ast.velocityAs[0].lowerLimit, (1., 2.0))
self.assertEqual(ast.velocityAs[0].upperLimit, None)
def testSimple(self):
ast = stcsast.parseSTCS("Position ICRS VelocityInterval Velocity 1 2"
" unit deg/cy")
self.assertEqual(ast.velocity.unit, ("deg", "deg"))
self.assertEqual(ast.velocity.velTimeUnit, ("cy", "cy"))
self.assertEqual(ast.velocity.value, (1., 2.))
self.assertEqual(len(ast.velocityAs), 0)
def testComplex(self):
ast = stcsast.parseSTCS("Position ICRS VelocityInterval -0.125 2.5"
" 0.125 3 unit deg/cy Error 0.125 0.25 Resolution 1.5 1"
" PixSize 0.5 0.5")
self.assertEqual(ast.velocityAs[0].lowerLimit, (-0.125, 2.5))
self.assertEqual(ast.velocityAs[0].upperLimit, (0.125, 3))
self.assertEqual(ast.velocity.error.values[0], (0.125, 0.25))
self.assertEqual(ast.velocity.resolution.values[0], (1.5, 1))
self.assertEqual(ast.velocity.pixSize.radii[0], 0.5)
class BinarizationTest(testhelpers.VerboseTest):
def testSimpleBinarization(self):
ast = stc.parseSTCS("Union ICRS (Circle 10 10 1"
" Circle 10 11 1 Circle 11 10 1)").binarize()
self.assertTrue(isinstance(ast.areas[0], dm.Union))
left, right = ast.areas[0].children
self.assertTrue(isinstance(right, dm.Union))
self.assertTrue(isinstance(left, dm.Circle))
def testComplexBinarization(self):
ast = stc.parseSTCS("Union ICRS (Difference (Box 1 2 3 4 Circle 10 10 1)"
" Circle 10 11 1"
" Intersection (Circle 11 10 1 Circle 12 10 1 Box 11 11 3 3 ))"
).binarize()
self.assertTrue(isinstance(ast.areas[0].children[1].children[1].
children[1], dm.Intersection))
def testDebinarization(self):
ast0 = stc.parseSTCS("Union ICRS (Difference (Box 1 2 3 4 Circle 10 10 1)"
" Circle 10 11 1"
" Intersection (Circle 11 10 1 Circle 12 10 1 Box 11 11 3 3 ))")
ast1 = ast0.binarize().debinarize()
self.assertEqual(ast0, ast1)
class STCSRoundtripTest(testhelpers.VerboseTest, metaclass=testhelpers.SamplesBasedAutoTest):
"""tests for STC-S strings going though parsing, STC-X generation, STC-X parsing, and STC-Sgeneration largely unscathed.
"""
def _runTest(self, item):
stcsIn, stcsOut = item
ast = stc.parseSTCS(stcsIn)
stcx = stc.getSTCXProfile(ast)
ast = stc.parseSTCX(stcx)[0][1]
self.assertEqual(stc.getSTCS(ast), stcsOut)
samples = [
# 0
("Position ICRS 12.75 14.25", "Position ICRS 12.75 14.25"),
("Position ICRS 12000.3 14000 unit arcsec Error 0.1 0.14 Resolution 0.5 0.55"
" Size 1 1.1 4.8 2.3 PixSize 0.2 0.2",
"Position ICRS 12000.3 14000.0 unit arcsec Error 0.1 0.14 Resolution 0.5 0.55"
" Size 1.0 1.1 4.8 2.3 PixSize 0.2 0.2"),
("PositionInterval UNKNOWNFrame CART1 1 2 unit mm",
"PositionInterval UNKNOWNFrame CART1 1.0 2.0 unit mm"),
("PositionInterval ICRS Epoch J1900.3 12 13 14 15",
"PositionInterval ICRS Epoch J1900.3 12.0 13.0 14.0 15.0"),
("PositionInterval ICRS 12 13 14 15 Size 1 1.5 1.75 2",
"PositionInterval ICRS 12.0 13.0 14.0 15.0 Size 1.0 1.5 1.75 2.0"),
# 5
("PositionInterval ECLIPTIC CART3 12 13 10 14 15 9 PixSize 1 1 1",
"PositionInterval ECLIPTIC CART3 12.0 13.0 10.0 14.0 15.0 9.0 PixSize 1.0 1.0 1.0"),
("Circle ICRS Epoch J1999.9 12 13 1 unit arcsec",
"Circle ICRS Epoch J1999.9 12.0 13.0 1.0 unit arcsec"),
("Circle ICRS 12 13 1 unit arcsec Resolution 1 2 PixSize 2 1",
"Circle ICRS 12.0 13.0 1.0 unit arcsec Resolution 1.0 2.0 PixSize 2.0 1.0"),
("Ellipse ICRS 12 13 1 0.75 0 Resolution 1 1",
"Ellipse ICRS 12.0 13.0 1.0 0.75 0.0 Resolution 1.0 1.0"),
("Box fillfactor 0.125 ICRS 70 190 23 18",
"Box fillfactor 0.125 ICRS 70.0 190.0 23.0 18.0"),
# 10
("Polygon ICRS 70 190 23 18 12 45 30 -10",
"Polygon ICRS 70.0 190.0 23.0 18.0 12.0 45.0 30.0 -10.0"),
("Convex FK5 J1990 70 190 23 0.125 12 45 30 -0.25",
"Convex FK5 J1990.0 70.0 190.0 23.0 0.125 12.0 45.0 30.0 -0.25 unit deg"),
("TimeInterval TT 2009-03-10T09:56:10.015625"
" SpectralInterval 1e10 1e11 unit Hz"
" RedshiftInterval VELOCITY 1000 7500 unit km/s",
"StartTime TT 2009-03-10T09:56:10.015625\nSpectralInterval"
" 10000000000.0 100000000000.0\nRedshiftInterval VELOCITY 1000.0 7500.0"),
("Time TT 2009-03-10T09:56:10.015625",
"Time TT 2009-03-10T09:56:10.015625"),
("Time TDT 2009-03-10T09:56:10.015625 unit s"
" Error 0.0001 0.0002 Resolution 0.0001 PixSize 2",
"Time TDT 2009-03-10T09:56:10.015625"
" Error 0.0001 0.0002 Resolution 0.0001 PixSize 2.0"),
# 15
("TimeInterval TDT 2009-03-10T09:56:10.015625 unit s"
" Error 0.0001 0.0002 Resolution 0.0001 PixSize 2",
"StartTime TDT 2009-03-10T09:56:10.015625"
" Error 0.0001 0.0002 Resolution 0.0001 PixSize 2.0"),
("Spectral NEPTUNE 12 unit Angstrom Error 4 3"
" Redshift TOPOCENTER REDSHIFT RELATIVISTIC 0.1",
"Spectral NEPTUNE 12.0 unit Angstrom Error 4.0 3.0\nRedshift"
" TOPOCENTER RELATIVISTIC 0.1"),
('Position ICRS Epoch J1999.9 VelocityInterval Velocity 1 2'
' unit pc/cy Error 0.25 0.5',
'Position ICRS Epoch J1999.9 Velocity 1.0 2.0'
' unit pc/cy Error 0.25 0.5'),
("Position ICRS VelocityInterval 0.25 0.5 2 3 Velocity 1 2",
"Position ICRS VelocityInterval 0.25 0.5 2.0 3.0 Velocity 1.0 2.0"),
("Position ICRS CART1 1 unit Mpc VelocityInterval 0.25 0.5 Velocity 2"
" unit pc/cy",
"Position ICRS CART1 1.0 unit Mpc VelocityInterval 0.25 0.5"
" Velocity 2.0 unit pc/cy"),
# 20
("PositionInterval ICRS CART3 1.0 2.0 3.0 4.0 5.0 6.0 VelocityInterval"
" 0 0 0 10 10 10 Velocity 2 3 4 unit pc/cy",
"PositionInterval ICRS CART3 1.0 2.0 3.0 4.0 5.0 6.0 VelocityInterval"
" 0.0 0.0 0.0 10.0 10.0 10.0 Velocity 2.0 3.0 4.0 unit pc/cy"),
("Circle ICRS 1 2 3 unit arcsec VelocityInterval Velocity 1 2",
"Circle ICRS 1.0 2.0 3.0 unit arcsec Velocity 1.0 2.0"),
("Redshift 2",
"Redshift 2.0"),
("Time nil UNKNOWNRefPos MJD302",
"Time 1859-09-15T00:00:00"),
("Difference ICRS Epoch J1999.9 (AllSky Union (Circle 10 10 2"
" Intersection (Polygon 10 2 2 10 10 10 Intersection( Ellipse 11 11 2 3 30"
" Not (Difference (Circle 12 12 3 Box 11 11 2 3))))))",
"Difference ICRS Epoch J1999.9 (AllSky Union (Circle 10.0 10.0 2.0 Intersection (Polygon 10.0 2.0 2.0 10.0 10.0 10.0 Intersection (Ellipse 11.0 11.0 2.0 3.0 30.0 Not (Difference (Circle 12.0 12.0 3.0 Box 11.0 11.0 2.0 3.0))))))"),
# 25
("Union ICRS (PositionInterval 0.5 1 2 1.5 Box 0.5 0.5 0.25 0.125) unit rad"
" Error 0.0001 0.0001",
"Union ICRS (SpaceInterval 0.5 1.0 2.0 1.5 Box 0.5 0.5 0.25 0.125) unit rad Error 0.0001 0.0001"),
("Union ICRS TOPOCENTER (Circle 180 10 20 Circle 190 20 20"
" Intersection (Circle 120 -10 20 Difference (Circle 130 -10 20"
" Circle 125 -10 2) Not (Circle 118 -8 3)))",
"Union ICRS TOPOCENTER (Circle 180.0 10.0 20.0 Circle 190.0 20.0 20.0 Intersection (Circle 120.0 -10.0 20.0 Difference (Circle 130.0 -10.0 20.0 Circle 125.0 -10.0 2.0) Not (Circle 118.0 -8.0 3.0)))"),
("Redshift VELOCITY 2",
"Redshift VELOCITY 2.0"),
("Redshift BARYCENTER JPL-DE405 3.5",
"Redshift BARYCENTER JPL-DE405 3.5"),
]
class DMTest(testhelpers.VerboseTest):
"""tests for direct manipulation of DM objects.
"""
def testBadUnitsRaise(self):
self.assertRaises(stc.STCValueError, dm.RedshiftCoo, unit="m")
self.assertRaises(stc.STCValueError, dm.VelocityCoo, unit=("m", "m"))
self.assertRaises(stc.STCValueError, dm.VelocityCoo, unit=("m", "m"),
velTimeUnit=("s",))
def testEquality(self):
ast = stc.parseSTCS("Position ICRS 1 2 VelocityInterval 0.125 0.25")
ast2 = ast.change()
self.assertTrue(ast==ast2)
ast3 = ast.change(place=ast.place.change(value=(2,1)))
self.assertTrue(ast!=ast3)
class EclipticEquinoxTest(testhelpers.VerboseTest):
"""tests for equinox defaulting in ecliptic coordinates.
"""
def testDefaulting(self):
ast = stc.parseSTCS("Time TT 1980-12-13T08:22:01 Position ECLIPTIC")
self.assertEqual(ast.place.frame.equinox, "J1980.94961977")
def testNoDefaulting(self):
ast = stc.parseSTCS("Position ECLIPTIC")
self.assertEqual(ast.place.frame.equinox, None)
def testOverriding(self):
ast = stc.parseSTCS("Time TT 1980-12-13T08:22:01 Position ECLIPTIC J2000")
self.assertEqual(ast.place.frame.equinox, "J2000.0")
class NullTest(testhelpers.VerboseTest):
"""tests for handling of UNKNOWNx.
"""
def testSpaceFromSTCS(self):
ast = stc.parseSTCS("Position UNKNOWNFrame UNKNOWNRefPos")
self.assertEqual(ast.astroSystem.spaceFrame.refFrame, None)
self.assertEqual(ast.astroSystem.spaceFrame.refPos.standardOrigin, None)
def testSpaceFromUtypes(self):
ast = stc.parseFromUtypes([
('AstroCoordSystem.SpaceFrame.CoordRefFrame', 'UNKNOWNFrame'),
('AstroCoordSystem.SpaceFrame.ReferencePosition', 'UNKNOWNRefPos'),
])
self.assertEqual(ast.astroSystem.spaceFrame.refFrame, None)
self.assertEqual(ast.astroSystem.spaceFrame.refPos.standardOrigin, None)
def testSpaceFromSTCX(self):
ast = stc.parseSTCX(
'<STCSpec xmlns="http://www.ivoa.net/xml/STC/stc-v1.30.xsd">'
"<AstroCoordSystem><SpaceFrame><UNKNOWNFrame/>"
"<UNKNOWNRefPos/></SpaceFrame></AstroCoordSystem></STCSpec>")[0][1]
self.assertEqual(ast.astroSystem.spaceFrame.refFrame, None)
self.assertEqual(ast.astroSystem.spaceFrame.refPos.standardOrigin, None)
def testTimeFromSTCS(self):
ast = stc.parseSTCS("Time nil UNKNOWNRefPos")
# XXX STC pain: only STC-S seems to allow entering None time scales.
self.assertEqual(ast.astroSystem.timeFrame.timeScale, None)
self.assertEqual(ast.astroSystem.timeFrame.refPos.standardOrigin, None)
def testTimeFromUtypes(self):
ast = stc.parseFromUtypes([
('stc:AstroCoordSystem.TimeFrame.ReferencePosition', 'UNKNOWNRefPos')])
self.assertEqual(ast.astroSystem.timeFrame.timeScale, "TT")
self.assertEqual(ast.astroSystem.timeFrame.refPos.standardOrigin, None)
def testTimeFromSTCX(self):
ast = stc.parseSTCX(
'<STCSpec xmlns="http://www.ivoa.net/xml/STC/stc-v1.30.xsd">'
"<AstroCoordSystem><TimeFrame>"
"<UNKNOWNRefPos/></TimeFrame></AstroCoordSystem></STCSpec>")[0][1]
self.assertEqual(ast.astroSystem.timeFrame.timeScale, "TT")
self.assertEqual(ast.astroSystem.timeFrame.refPos.standardOrigin, None)
def _makeEmptySTC(self):
sys = dm.CoordSys(timeFrame=dm.TimeFrame(), spaceFrame=dm.SpaceFrame())
return dm.STCSpec(astroSystem=sys,
place=dm.SpaceCoo(frame=sys.spaceFrame),
time=dm.TimeCoo(frame=sys.timeFrame))
def testToSTCS(self):
self.assertEqual(stc.getSTCS(self._makeEmptySTC()),
'Time\nPosition UNKNOWNFrame')
def testToSTCX(self):
self.assertEqual(
testhelpers.cleanXML(
stc.getSTCX(self._makeEmptySTC(), stc.STC.STCSpec).render(
prefixForEmpty="stc")),
'<STCSpec><AstroCoordSystem><TimeFrame><TimeScale/><UNKNOWNRefPos'
'/></TimeFrame><SpaceFrame><UNKNOWNFrame/><UNKNOWNRefPos/><SPHERIC'
'AL coord_naxes="2"/></SpaceFrame></AstroCoordSystem></STCSpec>')
def testToUtypes(self):
self.assertEqual(dict(stc.getUtypes(self._makeEmptySTC())), {
'stc:AstroCoordSystem.SpaceFrame.CoordFlavor': 'SPHERICAL',
'stc:AstroCoordSystem.SpaceFrame.CoordRefFrame': 'UNKNOWNFrame'})
class GeoTest(testhelpers.VerboseTest):
"""tests for raw geographic conversions.
"""
def testForObs(self):
# Values from obscode list
long, cp, sp = 8.7216, 0.65211, 0.75570
phip = math.atan2(sp, cp)/utils.DEG
long, phi, h = geo.geocToGeod(long, phip, math.sqrt(cp**2+sp**2))
self.assertAlmostEqual(long, 8.7216, 4)
self.assertAlmostEqual(phi, 49.3986, 4)
self.assertAlmostEqual(h, 569, 0)
def testRoundtripFromGeod(self):
for sample in [
(245,80,300),
(145,60,300),
(45,30,-300),
(0,0,3000),
(0,0,0),
(90,0,0),
(180,0,0),
(270,0,0),
]:
res = geo.geocToGeod(*geo.geodToGeoc(*sample))
for i in range(3):
self.assertAlmostEqual(sample[i], res[i], 8, "Bad: %s, %s"%(
sample, res))
def testRoundtripFromGeoc(self):
for sample in [
(245,80,1.001),
(145,60,0.999),
(45,30,1),
(0,0,1.001),
(0,0,1),
(90,0,1),
(180,0,1),
(270,0,1),
]:
res = geo.geodToGeoc(*geo.geocToGeod(*sample))
for i in range(3):
self.assertAlmostEqual(sample[i], res[i], 8, "Bad: %s, %s"%(
sample, res))
class CLITest(testhelpers.VerboseTest):
"""tests for working cli.
This assumes the package has been installed.
"""
def testHelpOpt(self):
self.assertOutput(cli.main, [],
expectedStderr=lambda err: b"Use command 'help' to see" in err,
expectedRetcode=1)
def testHelpCmd(self):
self.assertOutput(cli.main, ["help"],
lambda out: b"Commands include" in out)
baseResprof = '<STCResourceProfile xmlns="http://www.ivoa.net/xml/STC/stc-v1.30.xsd" xmlns:stc="http://www.ivoa.net/xml/STC/stc-v1.30.xsd" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.w3.org/1999/xlink http://vo.ari.uni-heidelberg.de/docs/schemata/xlink.xsd http://www.ivoa.net/xml/STC/stc-v1.30.xsd http://vo.ari.uni-heidelberg.de/docs/schemata/stc-v1.30.xsd"><AstroCoordSystem id="luoopnh"><SpaceFrame id="lggopnh"><ICRS /><UNKNOWNRefPos /><SPHERICAL coord_naxes="2" /></SpaceFrame></AstroCoordSystem><AstroCoordArea coord_system_id="luoopnh"><Circle frame_id="lggopnh" unit="deg"><Center><C1>10.0</C1><C2>10.0</C2></Center><Radius>4.0</Radius></Circle></AstroCoordArea></STCResourceProfile>'
def testResprofGood(self):
def test(res):
return testhelpers.cleanXML(self.baseResprof)==testhelpers.cleanXML(res)
self.assertOutput(cli.main, ["resprof", "Circle ICRS 10 10 4"],
test)
def testResprofError(self):
self.assertOutput(cli.main, ["resprof", "Circle ICRS 10 10 quatsch"],
expectedRetcode=1, expectedStderr="STCS expression 'Circle ICRS 10 10 quatsch' bad somewhere after 18\n (Invalid STCS expression (Expected end of text at 18))\n")
def testParseX(self):
self.assertOutput(cli.main, ["parseX", "-"], input=self.baseResprof,
expectedStdout="Circle ICRS 10.0 10.0 4.0\n")
def testConform(self):
self.assertOutput(cli.main, ["conform",
"Position GALACTIC 3 4 VelocityInterval Velocity 0.01 -0.002"
" unit deg/cy",
"Position FK5"],
expectedStdout=lambda s: re.match(
b"Position FK5 264.3719740.* -24.27950404.*"
b" Velocity 0.007689304978.* 0.007374596245.*"
b" unit deg/cy\n", s))
_utypeInput = 'Position GALACTIC "l" "b" Velocity "vl" "vb"'
_utypeOutput = utils.getDirtyBytes('eJwrLkm2ciwuKcp3zs8vSgmuLC5JzdULLkhMTnUrSsxN1QMLu+UkluUXKWAAW4XgAA/XIE9nRx+u\nYmIMCkpNA/MwDXJ39HF0DvF0jvf0RDOqWC8gvzizJDM/z8hFLywxpzTVSM/ZENMxUKBrp5BDjAlG\n+ExIwjAhLDUnPzmzpJJYN5RhOgKLEXgdUZbEBQBATnG5\n')
def testUtypeGen(self):
self.assertOutput(cli.main, ["utypes", self._utypeInput],
expectedStdout=self._utypeOutput)
def testUtypeParse(self):
self.assertOutput(cli.main, ["parseUtypes"], input=self._utypeOutput,
expectedStdout=self._utypeInput+"\n")
class SystemLibraryTest(testhelpers.VerboseTest):
"""tests for retrieving library systems.
"""
def testBasic(self):
res = stc.getLibrarySystem("TT-ICRS-TOPO")
self.assertEqual(res.timeFrame.timeScale, "TT")
self.assertTrue(stc.getLibrarySystem("TT-ICRS-TOPO") is res)
def testResolvesWithId(self):
self.assertRuns(stc.getLibrarySystem,
("ivo://STClib/CoordSys#TT-FK5-TOPO",))
def testRaising(self):
self.assertRaisesWithMsg(utils.NotFoundError,
"STC library system 'JUNK-RANDOM-LOST' could not be located"
" in IVOA defined systems",
stc.getLibrarySystem, ("JUNK-RANDOM-LOST",))
if __name__=="__main__":
testhelpers.main(GeoTest)
|