gh-106368: Increase Argument Clinic CLI test coverage (#107277)

This commit is contained in:
Erlend E. Aasland 2023-07-26 08:34:14 +02:00 committed by GitHub
parent 33838fedf7
commit 579100f6d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 75 additions and 3 deletions

View File

@ -1348,18 +1348,18 @@ class ClinicParserTest(_ParserBase):
class ClinicExternalTest(TestCase):
maxDiff = None
clinic_py = os.path.join(test_tools.toolsdir, "clinic", "clinic.py")
def _do_test(self, *args, expect_success=True):
clinic_py = os.path.join(test_tools.toolsdir, "clinic", "clinic.py")
with subprocess.Popen(
[sys.executable, "-Xutf8", clinic_py, *args],
[sys.executable, "-Xutf8", self.clinic_py, *args],
encoding="utf-8",
bufsize=0,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
) as proc:
proc.wait()
if expect_success == bool(proc.returncode):
if expect_success and proc.returncode:
self.fail("".join(proc.stderr))
stdout = proc.stdout.read()
stderr = proc.stderr.read()
@ -1449,6 +1449,49 @@ class ClinicExternalTest(TestCase):
generated = f.read()
self.assertTrue(generated.endswith(checksum))
def test_cli_make(self):
c_code = dedent("""
/*[clinic input]
[clinic start generated code]*/
""")
py_code = "pass"
c_files = "file1.c", "file2.c"
py_files = "file1.py", "file2.py"
def create_files(files, srcdir, code):
for fn in files:
path = os.path.join(srcdir, fn)
with open(path, "w", encoding="utf-8") as f:
f.write(code)
with os_helper.temp_dir() as tmp_dir:
# add some folders, some C files and a Python file
create_files(c_files, tmp_dir, c_code)
create_files(py_files, tmp_dir, py_code)
# create C files in externals/ dir
ext_path = os.path.join(tmp_dir, "externals")
with os_helper.temp_dir(path=ext_path) as externals:
create_files(c_files, externals, c_code)
# run clinic in verbose mode with --make on tmpdir
out = self.expect_success("-v", "--make", "--srcdir", tmp_dir)
# expect verbose mode to only mention the C files in tmp_dir
for filename in c_files:
with self.subTest(filename=filename):
path = os.path.join(tmp_dir, filename)
self.assertIn(path, out)
for filename in py_files:
with self.subTest(filename=filename):
path = os.path.join(tmp_dir, filename)
self.assertNotIn(path, out)
# don't expect C files from the externals dir
for filename in c_files:
with self.subTest(filename=filename):
path = os.path.join(ext_path, filename)
self.assertNotIn(path, out)
def test_cli_verbose(self):
with os_helper.temp_dir() as tmp_dir:
fn = os.path.join(tmp_dir, "test.c")
@ -1534,6 +1577,35 @@ class ClinicExternalTest(TestCase):
f"expected converter {converter!r}, got {line!r}"
)
def test_cli_fail_converters_and_filename(self):
out = self.expect_failure("--converters", "test.c")
msg = (
"Usage error: can't specify --converters "
"and a filename at the same time"
)
self.assertIn(msg, out)
def test_cli_fail_no_filename(self):
out = self.expect_failure()
self.assertIn("usage: clinic.py", out)
def test_cli_fail_output_and_multiple_files(self):
out = self.expect_failure("-o", "out.c", "input.c", "moreinput.c")
msg = "Usage error: can't use -o with multiple filenames"
self.assertIn(msg, out)
def test_cli_fail_filename_or_output_and_make(self):
for opts in ("-o", "out.c"), ("filename.c",):
with self.subTest(opts=opts):
out = self.expect_failure("--make", *opts)
msg = "Usage error: can't use -o or filenames with --make"
self.assertIn(msg, out)
def test_cli_fail_make_without_srcdir(self):
out = self.expect_failure("--make", "--srcdir", "")
msg = "Usage error: --srcdir must not be empty with --make"
self.assertIn(msg, out)
try:
import _testclinic as ac_tester