Coverage for tests/test_cliUtilToUpper.py: 52%
Shortcuts on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
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 click
26import unittest
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):
39 def setUp(self):
40 self.runner = LogCliRunner()
42 def test_isolated(self):
43 """test the to_upper callback by itself"""
44 ctx = "unused"
45 param = "unused"
46 self.assertEqual(to_upper(ctx, param, "debug"), "DEBUG")
48 def test_lowerToUpper(self):
49 """test the to_upper callback in an option with a lowercase value"""
50 result = self.runner.invoke(cli, ["--value", "debug"])
51 self.assertEqual(result.exit_code, 0)
52 self.assertEqual(result.stdout, "DEBUG\n")
54 def test_upperToUpper(self):
55 """test the to_upper callback in an option with a uppercase value"""
56 result = self.runner.invoke(cli, ["--value", "DEBUG"])
57 self.assertEqual(result.exit_code, 0)
58 self.assertEqual(result.stdout, "DEBUG\n")
60 def test_mixedToUpper(self):
61 """test the to_upper callback in an option with a mixed-case value"""
62 result = self.runner.invoke(cli, ["--value", "DeBuG"])
63 self.assertEqual(result.exit_code, 0)
64 self.assertEqual(result.stdout, "DEBUG\n")
67if __name__ == "__main__": 67 ↛ 68line 67 didn't jump to line 68, because the condition on line 67 was never true
68 unittest.main()