Coverage for tests / test_common.py: 39%
27 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-22 08:54 +0000
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-22 08:54 +0000
1# This file is part of cell_coadds.
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 <https://www.gnu.org/licenses/>.
22import unittest
24import lsst.cell_coadds.test_utils as test_utils
25import lsst.utils.tests
26from lsst.cell_coadds import CoaddUnits, CommonComponents, PatchIdentifiers
29class CommonComponentsTestCase(lsst.utils.tests.TestCase):
30 """Test the construction and interfaces of CommonComponents."""
32 def setUp(self) -> None: # noqa: D102
33 self.units = CoaddUnits.nJy
34 quantum_data_id = test_utils.generate_data_id()
35 self.wcs = test_utils.generate_wcs()
36 self.band = quantum_data_id.get("band")
37 self.identifiers = PatchIdentifiers.from_data_id(quantum_data_id)
38 self.common = CommonComponents(
39 units=self.units, wcs=self.wcs, band=self.band, identifiers=self.identifiers
40 )
42 def test_commonComponentsProperties(self):
43 """Test the common properties equal those in the common attribute."""
44 self.assertEqual(self.common.units, self.units)
45 self.assertEqual(self.common.wcs, self.wcs)
46 self.assertEqual(self.common.band, self.band)
47 self.assertEqual(self.common.identifiers, self.identifiers)
49 def test_coaddUnits(self):
50 """Test that the member name and values are the same."""
51 for unit in CoaddUnits:
52 with self.subTest(unit.name):
53 self.assertEqual(unit.name, unit.value)
56class TestMemory(lsst.utils.tests.MemoryTestCase):
57 """Check for resource/memory leaks."""
60def setup_module(module): # noqa: D103
61 lsst.utils.tests.init()
64if __name__ == "__main__": 64 ↛ 65line 64 didn't jump to line 65 because the condition on line 64 was never true
65 lsst.utils.tests.init()
66 unittest.main()