Coverage for tests/test_cliLog.py: 65%
20 statements
« prev ^ index » next coverage.py v6.4.4, created at 2022-09-22 02:10 -0700
« prev ^ index » next coverage.py v6.4.4, created at 2022-09-22 02:10 -0700
1# This file is part of daf_butler.
2#
3# Developed for the LSST Data Management System.
4# This product includes software developed by the LSST Project
5# (http://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/>.
22"""Unit tests for the daf_butler CliLog utility. Code is implemented in
23daf_butler but some only runs if lsst.log.Log can be imported so these parts of
24it can't be tested there because daf_butler does not directly depend on
25lsst.log, and only uses it if it has been setup by another package."""
27import unittest
29try:
30 import lsst.log as lsstLog
31except ImportError:
32 lsstLog = None
34from lsst.daf.butler.cli.cliLog import CliLog
35from lsst.daf.butler.tests import CliLogTestBase
38class CliLogTestCase(CliLogTestBase, unittest.TestCase):
39 """Test log initialization, reset, and setting log levels on python
40 `logging` and `lsst.log`.
42 This test also runs in daf_butler but will not test `lsst.log` in CI
43 because daf_butler does not directly depend on that package."""
45 pass
48@unittest.skipIf(lsstLog is None, "lsst.log is not available.")
49class ConvertLsstLogLevelTestCase(unittest.TestCase):
50 def test_convertToLsstLogLevel(self):
51 """Test that the log levels accepted by the log_level_option are
52 translated to lsst.log levels correctly."""
53 self.assertEqual(lsstLog.Log.FATAL, CliLog._getLsstLogLevel("CRITICAL"))
54 self.assertEqual(lsstLog.ERROR, CliLog._getLsstLogLevel("ERROR"))
55 self.assertEqual(lsstLog.WARN, CliLog._getLsstLogLevel("WARNING"))
56 self.assertEqual(lsstLog.INFO, CliLog._getLsstLogLevel("INFO"))
57 self.assertEqual(lsstLog.DEBUG, CliLog._getLsstLogLevel("DEBUG"))
60if __name__ == "__main__": 60 ↛ 61line 60 didn't jump to line 61, because the condition on line 60 was never true
61 unittest.main()