LSSTApplications  17.0+103,17.0+11,17.0+61,18.0.0+13,18.0.0+25,18.0.0+5,18.0.0+52,18.0.0-4-g68ffd23,18.1.0-1-g0001055+8,18.1.0-1-g03d53ef+1,18.1.0-1-g1349e88+28,18.1.0-1-g2505f39+22,18.1.0-1-g380d4d4+27,18.1.0-1-g5315e5e+1,18.1.0-1-g5e4b7ea+10,18.1.0-1-g7e8fceb+1,18.1.0-1-g85f8cd4+23,18.1.0-1-g9a6769a+13,18.1.0-1-ga1a4c1a+22,18.1.0-1-gd55f500+17,18.1.0-12-g42eabe8e+10,18.1.0-14-gd04256d+15,18.1.0-16-g430f6a53+1,18.1.0-17-gd2166b6e4,18.1.0-18-gb5d19ff+1,18.1.0-2-gfbf3545+7,18.1.0-2-gfefb8b5+16,18.1.0-3-g52aa583+13,18.1.0-3-g62b5e86+14,18.1.0-3-g8f4a2b1+17,18.1.0-3-g9bc06b8+7,18.1.0-3-gb69f684+9,18.1.0-4-g1ee41a7+1,18.1.0-5-g6dbcb01+13,18.1.0-5-gc286bb7+3,18.1.0-6-g48bdcd3+2,18.1.0-6-gd05e160+9,18.1.0-7-gc4d902b+2,18.1.0-7-gebc0338+8,18.1.0-9-gae7190a+10,w.2019.38
LSSTDataManagementBasePackage
tests.py
Go to the documentation of this file.
1 #
2 # LSST Data Management System
3 # Copyright 2016 LSST Corporation.
4 #
5 # This product includes software developed by the
6 # LSST Project (http://www.lsst.org/).
7 #
8 # This program is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the LSST License Statement and
19 # the GNU General Public License along with this program. If not,
20 # see <http://www.lsstcorp.org/LegalNotices/>.
21 #
22 """
23 Test aggregator for obs_* packages.
24 
25 The intention is for each obs package to have a single test class that inherits
26 from this collector class, thus "automatically" getting all new tests. If those
27 tests require setup that isn't defined in a given obs package, that obs package
28 will be broken until updated. This is intentional, as a way to prevent obs
29 packages from falling behind out of neglect.
30 """
31 
32 from lsst.log import Log
33 
34 from . import butler_tests
35 from . import mapper_tests
36 from . import camera_tests
37 
38 __all__ = ["ObsTests"]
39 
40 
43  """
44  Aggregator class for all of the obs_* test classes.
45 
46  Inherit from this class, then lsst.utils.tests.TestCase, in that order.
47 
48  Example subclass::
49 
50  class TestObsExample(lsst.obs.base.tests.ObsTests, lsst.utils.tests.TestCase):
51  def setUp(self):
52  self.setUp_tests(...)
53  self.setUp_butler_get(...)
54  self.setUp_mapper(...)
55  self.setUp_camera(...)
56  """
57 
58  def setUp_tests(self, butler, mapper, dataIds):
59  """
60  Set up the necessary shared variables used by multiple tests.
61 
62  Parameters
63  ----------
64  butler: lsst.daf.persistence.Butler
65  A butler object, instantiated on the testdata repository for the
66  obs package being tested.
67  mapper: lsst.obs.CameraMapper
68  A CameraMapper object for your camera, instantiated on the testdata
69  repository the obs package being tested.
70  dataIds: dict
71  dictionary of (exposure name): (dataId of that exposure in the
72  testdata repository), with unittest.SkipTest as the value for any
73  exposures you do not have/do not want to test. It must contain a
74  valid 'raw' dataId, in addition to 'bias','flat','dark', which may
75  be set to SkipTest. For example::
76  self.dataIds = {'raw': {'visit': 1, 'filter': 'g'},
77  'bias': {'visit': 1},
78  'flat': {'visit': 1},
79  'dark': unittest.SkipTest
80  }
81  """
82  self.butler = butler
83  self.mapper = mapper
84  self.dataIds = dataIds
85  self.log = Log.getLogger('ObsTests')
86 
87  def tearDown(self):
88  del self.butler
89  del self.mapper
90  super(ObsTests, self).tearDown()
def setUp_tests(self, butler, mapper, dataIds)
Definition: tests.py:58
Definition: Log.h:706