Coverage for tests/test_cliLog.py: 62%
20 statements
« prev ^ index » next coverage.py v7.2.7, created at 2023-07-27 09:12 +0000
« prev ^ index » next coverage.py v7.2.7, created at 2023-07-27 09:12 +0000
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.
26"""
28import unittest
30try:
31 import lsst.log as lsstLog
32except ImportError:
33 lsstLog = None
35from lsst.daf.butler.cli.cliLog import CliLog
36from lsst.daf.butler.tests import CliLogTestBase
39class CliLogTestCase(CliLogTestBase, unittest.TestCase):
40 """Test log initialization, reset, and setting log levels on python
41 `logging` and `lsst.log`.
43 This test also runs in daf_butler but will not test `lsst.log` in CI
44 because daf_butler does not directly depend on that package.
45 """
47 pass
50@unittest.skipIf(lsstLog is None, "lsst.log is not available.")
51class ConvertLsstLogLevelTestCase(unittest.TestCase):
52 """Test ability to handle lsst.log loggers."""
54 def test_convertToLsstLogLevel(self):
55 """Test that the log levels accepted by the log_level_option are
56 translated to lsst.log levels correctly.
57 """
58 self.assertEqual(lsstLog.Log.FATAL, CliLog._getLsstLogLevel("CRITICAL"))
59 self.assertEqual(lsstLog.ERROR, CliLog._getLsstLogLevel("ERROR"))
60 self.assertEqual(lsstLog.WARN, CliLog._getLsstLogLevel("WARNING"))
61 self.assertEqual(lsstLog.INFO, CliLog._getLsstLogLevel("INFO"))
62 self.assertEqual(lsstLog.DEBUG, CliLog._getLsstLogLevel("DEBUG"))
65if __name__ == "__main__": 65 ↛ 66line 65 didn't jump to line 66, because the condition on line 65 was never true
66 unittest.main()