Source code for gemini_instruments.niri.tests.test_niri


import pytest

import astrodata
import astrodata.testing
import gemini_instruments

filename = 'N20190120S0287.fits'





[docs]@pytest.mark.xfail(reason="AstroFaker changes the AstroData factory") @pytest.mark.dragons_remote_data def test_is_right_type(ad): assert type(ad) == gemini_instruments.niri.adclass.AstroDataNiri
[docs]@pytest.mark.dragons_remote_data def test_is_right_instance(ad): # YES, this *can* be different from test_is_right_type. Metaclasses! assert isinstance(ad, gemini_instruments.niri.adclass.AstroDataNiri)
[docs]@pytest.mark.dragons_remote_data def test_extension_data_shape(ad): assert ad[0].data.shape == (1024, 1024)
[docs]@pytest.mark.dragons_remote_data def test_tags(ad): tags = ad.tags expected = {'RAW', 'GEMINI', 'NORTH', 'SIDEREAL', 'UNPREPARED', 'IMAGE', 'NIRI'} assert expected.issubset(tags)
[docs]@pytest.mark.dragons_remote_data def test_can_return_instrument(ad): assert ad.phu['INSTRUME'] == 'NIRI' assert ad.instrument() == ad.phu['INSTRUME']
[docs]@pytest.mark.dragons_remote_data def test_can_return_ad_length(ad): assert len(ad) == 1
[docs]@pytest.mark.dragons_remote_data def test_slice_range(ad): metadata = ('SCI', 2), ('SCI', 3) slc = ad[1:] assert len(slc) == 0 for ext, md in zip(slc, metadata): assert (ext.hdr['EXTNAME'], ext.hdr['EXTVER']) == md
[docs]@pytest.mark.dragons_remote_data def test_read_a_keyword_from_hdr(ad): try: assert ad.hdr['CCDNAME'] == 'NIRI' except KeyError: # KeyError only accepted if it's because headers out of range assert len(ad) == 1