LSSTApplications  20.0.0
LSSTDataManagementBasePackage
instrument_tests.py
Go to the documentation of this file.
1 # This file is part of obs_base.
2 #
3 # Developed for the LSST Data Management System.
4 # This product includes software developed by the LSST Project
5 # (https://www.lsst.org).
6 # See the COPYRIGHT file at the top-level directory of this distribution
7 # for details of code ownership.
8 #
9 # This program is free software: you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation, either version 3 of the License, or
12 # (at your option) any later version.
13 #
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program. If not, see <http://www.gnu.org/licenses/>.
21 
22 """Helpers for writing tests against subclassses of Instrument.
23 
24 These are not tests themselves, but can be subclassed (plus unittest.TestCase)
25 to get a functional test of an Instrument.
26 """
27 
28 import abc
29 import dataclasses
30 
31 from lsst.obs.base import Instrument
32 from lsst.obs.base.gen2to3 import TranslatorFactory
33 from lsst.daf.butler import Registry
34 from lsst.daf.butler import ButlerConfig
35 
36 
37 @dataclasses.dataclass
39  """Values to test against in sublcasses of `InstrumentTests`.
40  """
41 
42  name: str
43  """The name of the Camera this instrument describes."""
44 
45  nDetectors: int
46  """The number of detectors in the Camera."""
47 
48  firstDetectorName: str
49  """The name of the first detector in the Camera."""
50 
51  physical_filters: {str}
52  """A subset of the physical filters should be registered."""
53 
54 
55 class InstrumentTests(metaclass=abc.ABCMeta):
56  """Tests of sublcasses of Instrument.
57 
58  TestCase subclasses must derive from this, then `TestCase`, and override
59  ``data`` and ``instrument``.
60  """
61 
62  data = None
63  """`InstrumentTestData` containing the values to test against."""
64 
65  instrument = None
66  """The `~lsst.obs.base.Instrument` to be tested."""
67 
68  def test_name(self):
69  self.assertEqual(self.instrument.getName(), self.data.name)
70 
71  def test_getCamera(self):
72  """Test that getCamera() returns a reasonable Camera definition.
73  """
74  camera = self.instrument.getCamera()
75  self.assertEqual(camera.getName(), self.instrument.getName())
76  self.assertEqual(len(camera), self.data.nDetectors)
77  self.assertEqual(next(iter(camera)).getName(), self.data.firstDetectorName)
78 
79  def test_register(self):
80  """Test that register() sets appropriate Dimensions.
81  """
82  registry = Registry.fromConfig(ButlerConfig())
83  # check that the registry starts out empty
84  self.assertEqual(list(registry.queryDimensions(["instrument"])), [])
85  self.assertEqual(list(registry.queryDimensions(["detector"])), [])
86  self.assertEqual(list(registry.queryDimensions(["physical_filter"])), [])
87 
88  # register the instrument and check that certain dimensions appear
89  self.instrument.register(registry)
90  instrumentDataIds = list(registry.queryDimensions(["instrument"]))
91  self.assertEqual(len(instrumentDataIds), 1)
92  instrumentNames = {dataId["instrument"] for dataId in instrumentDataIds}
93  self.assertEqual(instrumentNames, {self.data.name})
94  detectorDataIds = list(registry.queryDimensions(["detector"]))
95  self.assertEqual(len(detectorDataIds), self.data.nDetectors)
96  detectorNames = {dataId.records["detector"].full_name for dataId in detectorDataIds}
97  self.assertIn(self.data.firstDetectorName, detectorNames)
98  physicalFilterDataIds = list(registry.queryDimensions(["physical_filter"]))
99  filterNames = {dataId['physical_filter'] for dataId in physicalFilterDataIds}
100  self.assertGreaterEqual(filterNames, self.data.physical_filters)
101 
102  # Check that the instrument class can be retrieved
103  registeredInstrument = Instrument.fromName(self.instrument.getName(), registry)
104  self.assertEqual(type(registeredInstrument), type(self.instrument))
105 
107  factory = self.instrument.makeDataIdTranslatorFactory()
108  self.assertIsInstance(factory, TranslatorFactory)
109  str(factory) # just make sure this doesn't raise.
astshim.fitsChanContinued.next
def next(self)
Definition: fitsChanContinued.py:105
lsst.obs.base.instrument_tests.InstrumentTests.test_name
def test_name(self)
Definition: instrument_tests.py:68
lsst.obs.base.gen2to3
Definition: __init__.py:1
lsst.obs.base.instrument_tests.InstrumentTests
Definition: instrument_tests.py:55
lsst.obs.base.instrument_tests.InstrumentTests.data
data
Definition: instrument_tests.py:62
lsst.obs.base.instrument_tests.InstrumentTests.testMakeTranslatorFactory
def testMakeTranslatorFactory(self)
Definition: instrument_tests.py:106
lsst.obs.base.instrument_tests.InstrumentTests.test_register
def test_register(self)
Definition: instrument_tests.py:79
list
daf::base::PropertyList * list
Definition: fits.cc:913
lsst.gdb.ip.diffim.printers.register
def register(obj)
Definition: printers.py:20
type
table::Key< int > type
Definition: Detector.cc:163
lsst.obs.base.instrument_tests.InstrumentTests.instrument
instrument
Definition: instrument_tests.py:65
lsst.obs.base.instrument_tests.InstrumentTests.test_getCamera
def test_getCamera(self)
Definition: instrument_tests.py:71
astshim.fitsChanContinued.iter
def iter(self)
Definition: fitsChanContinued.py:88
lsst.obs.base
Definition: __init__.py:1
lsst.obs.base.instrument_tests.InstrumentTestData
Definition: instrument_tests.py:38