Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-106368: Argument Clinic: Add tests for cloned functions with custom C base names #107977

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions Lib/test/test_clinic.py
Original file line number Diff line number Diff line change
Expand Up @@ -653,6 +653,37 @@ def test_no_c_basename_cloned(self):
err = "No C basename provided after 'as' keyword"
self.expect_failure(block, err, lineno=5)

def test_cloned_with_custom_c_basename(self):
raw = dedent("""
/*[clinic input]
# Make sure we don't create spurious clinic/ directories.
output everything suppress
foo2
[clinic start generated code]*/

/*[clinic input]
foo as foo1 = foo2
[clinic start generated code]*/
""")
self.clinic.parse(raw)
funcs = self.clinic.functions
self.assertEqual(len(funcs), 2)
self.assertEqual(funcs[1].name, "foo")
self.assertEqual(funcs[1].c_basename, "foo1")

def test_cloned_with_illegal_c_basename(self):
block = """
/*[clinic input]
class C "void *" ""
foo1
[clinic start generated code]*/

/*[clinic input]
foo2 as .illegal. = foo1
[clinic start generated code]*/
"""
err = "Illegal C basename: '.illegal. = foo1'"
self.expect_failure(block, err, lineno=7)


class ParseFileUnitTest(TestCase):
Expand Down