Coverage for tests/test_cliUtilToUpper.py: 52%
29 statements
« prev ^ index » next coverage.py v6.4.2, created at 2022-08-03 02:30 -0700
« prev ^ index » next coverage.py v6.4.2, created at 2022-08-03 02:30 -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 shared CLI options.
23"""
25import unittest
27import click
28from lsst.daf.butler.cli.utils import LogCliRunner, to_upper
31@click.command()
32@click.option("--value", callback=to_upper)
33def cli(value):
34 click.echo(value)
37class ToUpperTestCase(unittest.TestCase):
38 def setUp(self):
39 self.runner = LogCliRunner()
41 def test_isolated(self):
42 """test the to_upper callback by itself"""
43 ctx = "unused"
44 param = "unused"
45 self.assertEqual(to_upper(ctx, param, "debug"), "DEBUG")
47 def test_lowerToUpper(self):
48 """test the to_upper callback in an option with a lowercase value"""
49 result = self.runner.invoke(cli, ["--value", "debug"])
50 self.assertEqual(result.exit_code, 0)
51 self.assertEqual(result.stdout, "DEBUG\n")
53 def test_upperToUpper(self):
54 """test the to_upper callback in an option with a uppercase value"""
55 result = self.runner.invoke(cli, ["--value", "DEBUG"])
56 self.assertEqual(result.exit_code, 0)
57 self.assertEqual(result.stdout, "DEBUG\n")
59 def test_mixedToUpper(self):
60 """test the to_upper callback in an option with a mixed-case value"""
61 result = self.runner.invoke(cli, ["--value", "DeBuG"])
62 self.assertEqual(result.exit_code, 0)
63 self.assertEqual(result.stdout, "DEBUG\n")
66if __name__ == "__main__": 66 ↛ 67line 66 didn't jump to line 67, because the condition on line 66 was never true
67 unittest.main()