ObsLsstObsBaseOverrides

class lsst.obs.lsst.testHelper.ObsLsstObsBaseOverrides

Bases: lsst.obs.base.tests.ObsTests

Specialist butler tests for obs_lsst.

Methods Summary

setUp_butler_get([ccdExposureId_bits, …])

Set up the necessary variables for butlerGet tests.

setUp_camera([camera_name, n_detectors, …])

Set up the necessary variables for camera tests.

setUp_mapper([output, path_to_raw, keys, …])

Set up the necessary variables for mapper tests.

setUp_tests(butler, mapper, dataIds)

Set up the necessary shared variables used by multiple tests.

tearDown()

testCcdExposureIdBits()

Check that we have enough bits for the exposure ID

testDcrCoaddId()

testDcrMergedCoaddId()

testDeepCoaddId()

testDeepMergedCoaddId()

testQueryRawAmp()

testRawFilename()

testRawVisitInfo()

test_bias()

test_camera_butler()

Check that the butler returns the right type of camera.

test_can_standardize()

test_dark()

test_exposureId_bits()

test_flat()

test_get_dataset_types()

test_get_default_level()

test_get_keys_raw()

test_get_linearizer()

Test that we can get a linearizer for good detectorIds.

test_get_linearizer_bad_detectorIds()

Do bad detectorIds raise?

test_iterable()

Simplest camera test: can we get a Camera instance, and does iterating return Detectors?

test_keys()

test_map()

test_map_config_data()

test_map_metadata_data()

test_plate_scale()

Check the plate scale at center of focal plane

test_query_metadata()

Test expansion of incomplete information of the available data in this obs package’s testdata repo.

test_raw()

test_raw_header_wcs()

Test that raw_header_wcs returns the unmodified raw image header.

test_raw_sub_bbox()

test_subset_raw()

test_validate()

Methods Documentation

setUp_butler_get(ccdExposureId_bits=None, exposureIds=None, filters=None, exptimes=None, detectorIds=None, detector_names=None, detector_serials=None, dimensions=None, sky_origin=None, raw_subsets=None, good_detectorIds=None, bad_detectorIds=None, linearizer_type=None, raw_header_wcs=None)

Set up the necessary variables for butlerGet tests.

All “exposure name” entries below should correspond to an entry in self.dataIds.

Parameters
ccdExposureId_bitsint

expected value of ccdExposureId_bits

exposureIdsdict

dict of exposure name : ccdExposureId (the number as returned by the butler)

filtersdict

dict of exposure name : filter name

exptimesdict

dict of exposure name : exposure time

detector_namesdict

dict of exposure name : detector name

detectorIdsdict

dict of exposure name : detectorId

detector_serialsdict

dict of exposure name : detector serial

dimensionsdict

dict of exposure name : dimensions (as a geom.Extent2I)

sky_origintuple of float

Longitude, Latitude of ‘raw’ exposure

raw_subsetstuple of (kwargs, int)

keyword args and expected number of subsets for butler.subset(‘raw’, **kwargs)

good_detectorIdslist of int

list of valid ccd numbers

bad_detectorIdslist of int

list of invalid ccd numbers

linearizer_typedict

dict of detectorId (usually int): LinearizerType (e.g. lsst.ip.isr.LinearizeLookupTable.LinearityType), or unittest.SkipTest to skip all linearizer tests.

raw_header_wcslsst.afw.geom.SkyWcs
The SkyWcs object that should be returned by:

butler.get("raw_header_wcs", dataId=self.dataIds["raw"])

setUp_camera(camera_name=None, n_detectors=None, first_detector_name=None, plate_scale=None)

Set up the necessary variables for camera tests.

Parameters
camera_namestr

name of this camera

n_detectorsint

number of detectors in this camera

first_detector_namestr

name of the first detector in this camera

plate_scalelsst.geom.Angle

plate scale at center of focal plane, as angle-on-sky/mm

setUp_mapper(output=None, path_to_raw=None, keys=None, query_format=None, queryMetadata=None, metadata_output_path=None, map_python_type=None, map_python_std_type=None, map_cpp_type=None, map_storage_name=None, raw_filename=None, default_level=None, raw_levels=None, test_config_metadata=True)

Set up the necessary variables for mapper tests.

Parameters
outputstr

full path to output repository (can be the same as data_dir input repository)

path_to_rawstr

full path to the raw file referenced by dataIds[‘raw’]

keysset

dictionary keys that this mapper should contain

query_formatlist

format list for the results portion of queryMetadata

queryMetadatatuple of (dict, tuple)

dataIds and the results of calling them in queryMetadata

metadata_output_pathstr

path to metadata output associated with dataIds[‘raw’]

map_python_typetype

full python type specification returned by the mapper for dataIds[‘raw’]

map_python_std_typetype

full python type specification returned by the mapper for dataIds[‘raw’] after standardization

map_cpp_typestr

C++ type specification returned by the mapper for dataIds[‘raw’]

map_storage_namestr

butler name for the storage type dataIds[‘raw’]

raw_filenamestr

Name of the raw files returned by the mapper for dataIds[‘raw’]

default_levelstr

value returned from mapper.getDefaultLevel

raw_levelstuple of (str, set of str)

(level, expect) level and expected mapper return for mapper.getKeys(‘raw’, level)

test_config_metadatabool

Test persisted config and metadata? These tests may not be appropriate for test stand data. Defaults to True.

setUp_tests(butler, mapper, dataIds)

Set up the necessary shared variables used by multiple tests.

Parameters
butler: lsst.daf.persistence.Butler

A butler object, instantiated on the testdata repository for the obs package being tested.

mapper: lsst.obs.CameraMapper

A CameraMapper object for your camera, instantiated on the testdata repository the obs package being tested.

dataIds: dict

dictionary of (exposure name): (dataId of that exposure in the testdata repository), with unittest.SkipTest as the value for any exposures you do not have/do not want to test. It must contain a valid ‘raw’ dataId, in addition to ‘bias’,’flat’,’dark’, which may be set to SkipTest. For example:

self.dataIds = {'raw': {'visit': 1, 'filter': 'g'},
                'bias': {'visit': 1},
                'flat': {'visit': 1},
                'dark': unittest.SkipTest
                }
tearDown()
testCcdExposureIdBits()

Check that we have enough bits for the exposure ID

testDcrCoaddId()
testDcrMergedCoaddId()
testDeepCoaddId()
testDeepMergedCoaddId()
testQueryRawAmp()
testRawFilename()
testRawVisitInfo()
test_bias()
test_camera_butler()

Check that the butler returns the right type of camera.

test_can_standardize()
test_dark()
test_exposureId_bits()
test_flat()
test_get_dataset_types()
test_get_default_level()
test_get_keys_raw()
test_get_linearizer()

Test that we can get a linearizer for good detectorIds.

test_get_linearizer_bad_detectorIds()

Do bad detectorIds raise?

test_iterable()

Simplest camera test: can we get a Camera instance, and does iterating return Detectors?

test_keys()
test_map()
test_map_config_data()
test_map_metadata_data()
test_plate_scale()

Check the plate scale at center of focal plane

Check plate_scale using the FOCAL_PLANE to FIELD_ANGLE transform from the camera.

test_query_metadata()

Test expansion of incomplete information of the available data in this obs package’s testdata repo.

test_raw()
test_raw_header_wcs()

Test that raw_header_wcs returns the unmodified raw image header.

test_raw_sub_bbox()
test_subset_raw()
test_validate()