"""Test cmdline.py for coverage.""" import os, re, shlex, sys, textwrap, unittest import mock import coverage sys.path.insert(0, os.path.split(__file__)[0]) # Force relative import for Py3k from coveragetest import CoverageTest OK, ERR = 0, 1 class CmdLineTest(CoverageTest): """Tests of execution paths through the command line interpreter.""" run_in_temp_dir = False INIT_LOAD = """\ .coverage(cover_pylib=None, data_suffix=False, timid=None, branch=None) .load()\n""" def command_line(self, args, ret=OK): """Run `args` through the command line. Checks that `ret` is returned. """ ret_actual = coverage.CoverageScript().command_line(shlex.split(args)) self.assertEqual(ret_actual, ret) def model_object(self): """Return a Mock suitable for use in CoverageScript.""" mk = mock.Mock() mk.coverage.return_value = mk return mk def mock_command_line(self, args): """Run `args` through the command line, with a Mock. Returns the Mock it used and the status code returned. """ m = self.model_object() ret = coverage.CoverageScript( _covpkg=m, _run_python_file=m.run_python_file, _help_fn=m.help_fn ).command_line(shlex.split(args)) return m, ret def cmd_executes(self, args, code, ret=OK): """Assert that the `args` end up executing the sequence in `code`.""" m1, r1 = self.mock_command_line(args) self.assertEqual(r1, ret, "Wrong status: got %s, wanted %s" % (r1, ret) ) code = textwrap.dedent(code) code = re.sub(r"(?m)^\.", "m2.", code) m2 = self.model_object() code_obj = compile(code, "", "exec") eval(code_obj, globals(), { 'm2': m2 }) self.assertEqual(m1.method_calls, m2.method_calls) def cmd_executes_same(self, args1, args2): """Assert that the `args1` executes the same as `args2`.""" m1, r1 = self.mock_command_line(args1) m2, r2 = self.mock_command_line(args2) self.assertEqual(r1, r2) self.assertEqual(m1.method_calls, m2.method_calls) def cmd_help(self, args, help_msg=None, topic=None, ret=ERR): """Run a command line, and check that it prints the right help. Only the last function call in the mock is checked, which should be the help message that we want to see. """ m, r = self.mock_command_line(args) self.assertEqual(r, ret, "Wrong status: got %s, wanted %s" % (r, ret) ) if help_msg: self.assertEqual(m.method_calls[-1], ('help_fn', (help_msg,), {}) ) else: self.assertEqual(m.method_calls[-1], ('help_fn', (), {'topic':topic}) ) class ClassicCmdLineTest(CmdLineTest): """Tests of the classic coverage.py command line.""" def testErase(self): # coverage -e self.cmd_executes("-e", """\ .coverage(cover_pylib=None, data_suffix=False, timid=None, branch=None) .erase() """) self.cmd_executes_same("-e", "--erase") def testExecute(self): # coverage -x [-p] [-L] [--timid] MODULE.py [ARG1 ARG2 ...] # -x calls coverage.load first. self.cmd_executes("-x foo.py", """\ .coverage(cover_pylib=None, data_suffix=False, timid=None, branch=None) .load() .start() .run_python_file('foo.py', ['foo.py']) .stop() .save() """) # -e -x calls coverage.erase first. self.cmd_executes("-e -x foo.py", """\ .coverage(cover_pylib=None, data_suffix=False, timid=None, branch=None) .erase() .start() .run_python_file('foo.py', ['foo.py']) .stop() .save() """) # --timid sets a flag, and program arguments get passed through. self.cmd_executes("-x --timid foo.py abc 123", """\ .coverage(cover_pylib=None, data_suffix=False, timid=True, branch=None) .load() .start() .run_python_file('foo.py', ['foo.py', 'abc', '123']) .stop() .save() """) # -L sets a flag, and flags for the program don't confuse us. self.cmd_executes("-x -p -L foo.py -a -b", """\ .coverage(cover_pylib=True, data_suffix=True, timid=None, branch=None) .load() .start() .run_python_file('foo.py', ['foo.py', '-a', '-b']) .stop() .save() """) # Check that long forms of flags do the same thing as short forms. self.cmd_executes_same("-x f.py", "--execute f.py") self.cmd_executes_same("-e -x f.py", "--erase --execute f.py") self.cmd_executes_same("-x -p f.py", "-x --parallel-mode f.py") self.cmd_executes_same("-x -L f.py", "-x --pylib f.py") def testCombine(self): # coverage -c self.cmd_executes("-c", """\ .coverage(cover_pylib=None, data_suffix=False, timid=None, branch=None) .load() .combine() .save() """) self.cmd_executes_same("-c", "--combine") def testReport(self): # coverage -r [-m] [-i] [-o DIR,...] [FILE1 FILE2 ...] self.cmd_executes("-r", self.INIT_LOAD + """\ .report(ignore_errors=None, omit_prefixes=None, morfs=[], show_missing=None) """) self.cmd_executes("-r -i", self.INIT_LOAD + """\ .report(ignore_errors=True, omit_prefixes=None, morfs=[], show_missing=None) """) self.cmd_executes("-r -m", self.INIT_LOAD + """\ .report(ignore_errors=None, omit_prefixes=None, morfs=[], show_missing=True) """) self.cmd_executes("-r -o fooey", self.INIT_LOAD + """\ .report(ignore_errors=None, omit_prefixes=["fooey"], morfs=[], show_missing=None) """) self.cmd_executes("-r -o fooey,booey", self.INIT_LOAD + """\ .report(ignore_errors=None, omit_prefixes=["fooey", "booey"], morfs=[], show_missing=None) """) self.cmd_executes("-r mod1", self.INIT_LOAD + """\ .report(ignore_errors=None, omit_prefixes=None, morfs=["mod1"], show_missing=None) """) self.cmd_executes("-r mod1 mod2 mod3", self.INIT_LOAD + """\ .report(ignore_errors=None, omit_prefixes=None, morfs=["mod1", "mod2", "mod3"], show_missing=None) """) self.cmd_executes_same("-r", "--report") self.cmd_executes_same("-r -i", "-r --ignore-errors") self.cmd_executes_same("-r -m", "-r --show-missing") self.cmd_executes_same("-r -o f", "-r --omit=f") self.cmd_executes_same("-r -o f", "-r --omit f") self.cmd_executes_same("-r -o f,b", "-r --omit=f,b") self.cmd_executes_same("-r -o f,b", "-r --omit f,b") self.cmd_executes_same("-r -of", "-r --omit=f") self.cmd_executes_same("-r -of,b", "-r --omit=f,b") def testAnnotate(self): # coverage -a [-d DIR] [-i] [-o DIR,...] [FILE1 FILE2 ...] self.cmd_executes("-a", self.INIT_LOAD + """\ .annotate(directory=None, ignore_errors=None, omit_prefixes=None, morfs=[]) """) self.cmd_executes("-a -d dir1", self.INIT_LOAD + """\ .annotate(directory="dir1", ignore_errors=None, omit_prefixes=None, morfs=[]) """) self.cmd_executes("-a -i", self.INIT_LOAD + """\ .annotate(directory=None, ignore_errors=True, omit_prefixes=None, morfs=[]) """) self.cmd_executes("-a -o fooey", self.INIT_LOAD + """\ .annotate(directory=None, ignore_errors=None, omit_prefixes=["fooey"], morfs=[]) """) self.cmd_executes("-a -o fooey,booey", self.INIT_LOAD + """\ .annotate(directory=None, ignore_errors=None, omit_prefixes=["fooey", "booey"], morfs=[]) """) self.cmd_executes("-a mod1", self.INIT_LOAD + """\ .annotate(directory=None, ignore_errors=None, omit_prefixes=None, morfs=["mod1"]) """) self.cmd_executes("-a mod1 mod2 mod3", self.INIT_LOAD + """\ .annotate(directory=None, ignore_errors=None, omit_prefixes=None, morfs=["mod1", "mod2", "mod3"]) """) self.cmd_executes_same("-a", "--annotate") self.cmd_executes_same("-a -d d1", "-a --directory=d1") self.cmd_executes_same("-a -i", "-a --ignore-errors") self.cmd_executes_same("-a -o f", "-a --omit=f") self.cmd_executes_same("-a -o f", "-a --omit f") self.cmd_executes_same("-a -o f,b", "-a --omit=f,b") self.cmd_executes_same("-a -o f,b", "-a --omit f,b") self.cmd_executes_same("-a -of", "-a --omit=f") self.cmd_executes_same("-a -of,b", "-a --omit=f,b") def testHtmlReport(self): # coverage -b -d DIR [-i] [-o DIR,...] [FILE1 FILE2 ...] self.cmd_executes("-b", self.INIT_LOAD + """\ .html_report(directory=None, ignore_errors=None, omit_prefixes=None, morfs=[]) """) self.cmd_executes("-b -d dir1", self.INIT_LOAD + """\ .html_report(directory="dir1", ignore_errors=None, omit_prefixes=None, morfs=[]) """) self.cmd_executes("-b -i", self.INIT_LOAD + """\ .html_report(directory=None, ignore_errors=True, omit_prefixes=None, morfs=[]) """) self.cmd_executes("-b -o fooey", self.INIT_LOAD + """\ .html_report(directory=None, ignore_errors=None, omit_prefixes=["fooey"], morfs=[]) """) self.cmd_executes("-b -o fooey,booey", self.INIT_LOAD + """\ .html_report(directory=None, ignore_errors=None, omit_prefixes=["fooey", "booey"], morfs=[]) """) self.cmd_executes("-b mod1", self.INIT_LOAD + """\ .html_report(directory=None, ignore_errors=None, omit_prefixes=None, morfs=["mod1"]) """) self.cmd_executes("-b mod1 mod2 mod3", self.INIT_LOAD + """\ .html_report(directory=None, ignore_errors=None, omit_prefixes=None, morfs=["mod1", "mod2", "mod3"]) """) self.cmd_executes_same("-b", "--html") self.cmd_executes_same("-b -d d1", "-b --directory=d1") self.cmd_executes_same("-b -i", "-b --ignore-errors") self.cmd_executes_same("-b -o f", "-b --omit=f") self.cmd_executes_same("-b -o f,b", "-b --omit=f,b") self.cmd_executes_same("-b -of", "-b --omit=f") self.cmd_executes_same("-b -of,b", "-b --omit=f,b") def testHelp(self): # coverage -h self.cmd_help("-h", topic="help", ret=OK) self.cmd_help("--help", topic="help", ret=OK) ## Error cases def testArglessActions(self): self.cmd_help("-e foo bar", "Unexpected arguments: foo bar") self.cmd_help("-c baz quux", "Unexpected arguments: baz quux") def testNeedAction(self): self.cmd_help("-p", "You must specify at least one of " "-e, -x, -c, -r, -a, or -b.") def testBadActionCombinations(self): self.cmd_help('-e -a', "You can't specify the 'erase' and 'annotate' " "options at the same time." ) self.cmd_help('-e -r', "You can't specify the 'erase' and 'report' " "options at the same time." ) self.cmd_help('-e -b', "You can't specify the 'erase' and 'html' " "options at the same time." ) self.cmd_help('-e -c', "You can't specify the 'erase' and 'combine' " "options at the same time." ) self.cmd_help('-x -a', "You can't specify the 'execute' and 'annotate' " "options at the same time." ) self.cmd_help('-x -r', "You can't specify the 'execute' and 'report' " "options at the same time." ) self.cmd_help('-x -b', "You can't specify the 'execute' and 'html' " "options at the same time." ) self.cmd_help('-x -c', "You can't specify the 'execute' and 'combine' " "options at the same time." ) def testNothingToDo(self): self.cmd_help("-x", "Nothing to do.") def testUnknownOption(self): self.cmd_help("-z", "no such option: -z") class NewCmdLineTest(CmdLineTest): """Tests of the coverage.py command line.""" def testAnnotate(self): self.cmd_executes_same("annotate", "-a") self.cmd_executes_same("annotate -i", "-a -i") self.cmd_executes_same("annotate -d d1", "-a -d d1") self.cmd_executes_same("annotate --omit f", "-a --omit f") self.cmd_executes_same("annotate --omit f,b", "-a --omit f,b") self.cmd_executes_same("annotate m1", "-a m1") self.cmd_executes_same("annotate m1 m2 m3", "-a m1 m2 m3") def testCombine(self): self.cmd_executes_same("combine", "-c") def testDebug(self): self.cmd_help("debug", "What information would you like: data, sys?") self.cmd_help("debug foo", "Don't know what you mean by 'foo'") def testDebugSys(self): self.command_line("debug sys") out = self.stdout() assert "version:" in out assert "data_path:" in out def testErase(self): self.cmd_executes_same("erase", "-e") def testHelp(self): self.cmd_executes("help", ".help_fn(topic='help')") def testCmdHelp(self): self.cmd_executes("run --help", ".help_fn(parser='')") self.cmd_executes_same("help run", "run --help") def testHtml(self): self.cmd_executes_same("html", "-b") self.cmd_executes_same("html -i", "-b -i") self.cmd_executes_same("html -d d1", "-b -d d1") self.cmd_executes_same("html --omit f", "-b --omit f") self.cmd_executes_same("html --omit f,b", "-b --omit f,b") self.cmd_executes_same("html m1", "-b m1") self.cmd_executes_same("html m1 m2 m3", "-b m1 m2 m3") def testReport(self): self.cmd_executes_same("report", "-r") self.cmd_executes_same("report -i", "-r -i") self.cmd_executes_same("report -m", "-r -m") self.cmd_executes_same("report --omit f", "-r --omit f") self.cmd_executes_same("report --omit f,b", "-r --omit f,b") self.cmd_executes_same("report m1", "-r m1") self.cmd_executes_same("report m1 m2 m3", "-r m1 m2 m3") def testRun(self): self.cmd_executes_same("run f.py", "-e -x f.py") self.cmd_executes_same("run f.py -a arg -z", "-e -x f.py -a arg -z") self.cmd_executes_same("run -a f.py", "-x f.py") self.cmd_executes_same("run -p f.py", "-e -x -p f.py") self.cmd_executes_same("run -L f.py", "-e -x -L f.py") self.cmd_executes_same("run --timid f.py", "-e -x --timid f.py") self.cmd_executes_same("run", "-x") def testXml(self): # coverage xml [-i] [--omit DIR,...] [FILE1 FILE2 ...] self.cmd_executes("xml", self.INIT_LOAD + """\ .xml_report(ignore_errors=None, omit_prefixes=None, morfs=[], outfile="coverage.xml") """) self.cmd_executes("xml -i", self.INIT_LOAD + """\ .xml_report(ignore_errors=True, omit_prefixes=None, morfs=[], outfile="coverage.xml") """) self.cmd_executes("xml -o myxml.foo", self.INIT_LOAD + """\ .xml_report(ignore_errors=None, omit_prefixes=None, morfs=[], outfile="myxml.foo") """) self.cmd_executes("xml -o -", self.INIT_LOAD + """\ .xml_report(ignore_errors=None, omit_prefixes=None, morfs=[], outfile=None) """) self.cmd_executes("xml --omit fooey", self.INIT_LOAD + """\ .xml_report(ignore_errors=None, omit_prefixes=["fooey"], morfs=[], outfile="coverage.xml") """) self.cmd_executes("xml --omit fooey,booey", self.INIT_LOAD + """\ .xml_report(ignore_errors=None, omit_prefixes=["fooey", "booey"], morfs=[], outfile="coverage.xml") """) self.cmd_executes("xml mod1", self.INIT_LOAD + """\ .xml_report(ignore_errors=None, omit_prefixes=None, morfs=["mod1"], outfile="coverage.xml") """) self.cmd_executes("xml mod1 mod2 mod3", self.INIT_LOAD + """\ .xml_report(ignore_errors=None, omit_prefixes=None, morfs=["mod1", "mod2", "mod3"], outfile="coverage.xml") """) def testNoArgumentsAtAll(self): self.cmd_help("", topic="minimum_help", ret=OK) def testBadCommand(self): self.cmd_help("xyzzy", "Unknown command: 'xyzzy'") class CmdLineStdoutTest(CmdLineTest): """Test the command line with real stdout output.""" def testMinimumHelp(self): self.command_line("") out = self.stdout() assert "Code coverage for Python." in out assert out.count("\n") < 4 def testHelp(self): self.command_line("help") out = self.stdout() assert "nedbatchelder.com" in out assert out.count("\n") > 10 def testCmdHelp(self): self.command_line("help run") out = self.stdout() assert "" in out assert "--timid" in out assert out.count("\n") > 10 def testError(self): self.command_line("fooey kablooey", ret=ERR) out = self.stdout() assert "fooey" in out assert "help" in out if __name__ == '__main__': unittest.main()