-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
format_signatures: Fix whitespace issues and add tests
- Loading branch information
Showing
10 changed files
with
611 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
import sphinx.addnodes | ||
|
||
|
||
TEST_SIGNATURES = { | ||
"cpp_function": "cpp:function:: void foo(int something, int something_else, bool third_param, bool fourth_param, int fifth_param)", | ||
"cpp_function_long": r"cpp:function:: template <typename T, \ | ||
typename U = void, \ | ||
int AnotherParameter = 42> \ | ||
requires std::is_const_v<T> \ | ||
const MyType LongFunctionSignatureExample(\ | ||
const MyType bar, \ | ||
uint8_t* arr, \ | ||
unsigned int len = DEFAULT_LENGTH, \ | ||
bool baz = false)", | ||
"cpp_function_long_return_type": r"cpp:function:: std::integral_constant<ptrdiff_t, N> tensorstore::GetStaticOrDynamicExtent(span<X, N>);", | ||
"py_function": r"py:function:: some_module.method_name( \ | ||
some_parameter_with_a_long_name: \ | ||
collections.abc.MutableMapping[\ | ||
tuple[str, float, numbers.Real], \ | ||
dict[int, tuple[list[frozenset[int]]]]], \ | ||
) -> collections.abc.MutableMapping[\ | ||
tuple[str, float, numbers.Real], \ | ||
dict[int, tuple[list[frozenset[int]]]]]", | ||
} | ||
|
||
|
||
def test_format_signatures(immaterial_make_app, snapshot): | ||
app = immaterial_make_app( | ||
extra_conf=""" | ||
extensions.append("sphinx_immaterial.apidoc.format_signatures") | ||
object_description_options = [ | ||
("cpp:.*", dict(clang_format_style={"BasedOnStyle": "LLVM"})), | ||
("py:.*", dict(black_format_style={})), | ||
] | ||
""", | ||
files={ | ||
"index.rst": "\n\n".join( | ||
f""" | ||
.. {directive} | ||
Synopsis goes here. | ||
""" | ||
for directive in TEST_SIGNATURES.values() | ||
) | ||
}, | ||
) | ||
|
||
app.build() | ||
|
||
assert not app._warning.getvalue() | ||
|
||
doc = app.env.get_and_resolve_doctree("index", app.builder) | ||
|
||
formatted_signatures = { | ||
identifier: signature | ||
for identifier, signature in zip( | ||
TEST_SIGNATURES.keys(), | ||
doc.findall(condition=sphinx.addnodes.desc_signature), | ||
) | ||
} | ||
for identifier in TEST_SIGNATURES.keys(): | ||
node = formatted_signatures[identifier] | ||
snapshot.assert_match(node.astext(), f"{identifier}_astext.txt") | ||
snapshot.assert_match(node.pformat(), f"{identifier}_pformat.txt") |
2 changes: 2 additions & 0 deletions
2
tests/snapshots/format_signatures_test/test_format_signatures/cpp_function_astext.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
void foo(int something, int something_else, bool third_param, | ||
bool fourth_param, int fifth_param); |
6 changes: 6 additions & 0 deletions
6
tests/snapshots/format_signatures_test/test_format_signatures/cpp_function_long_astext.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
template <typename T, typename U = void, int AnotherParameter = 42> | ||
requires std::is_const_v<T> | ||
const MyType | ||
LongFunctionSignatureExample(const MyType bar, uint8_t *arr, | ||
unsigned int len = DEFAULT_LENGTH, | ||
bool baz = false); |
165 changes: 165 additions & 0 deletions
165
tests/snapshots/format_signatures_test/test_format_signatures/cpp_function_long_pformat.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,165 @@ | ||
<desc_signature _toc_name="LongFunctionSignatureExample()" _toc_parts="('LongFunctionSignatureExample',)" classes="sig sig-object highlight cpp" ids="_CPPv4I00_iEIQNSt10is_const_vI1TEEE28LongFunctionSignatureExampleK6MyTypeK6MyTypeP7uint8_tjb" is_multiline="False" multi_line_parameter_list="False" signature_format_id="353e40c43b4168678988580cfda2596c"> | ||
<desc_sig_keyword classes="k"> | ||
template | ||
|
||
<desc_sig_punctuation classes="p"> | ||
< | ||
<desc_cpp_template_param> | ||
<desc_sig_keyword classes="k"> | ||
typename | ||
<desc_sig_space classes="w"> | ||
|
||
<desc_name classes="sig-name descname sig-name-nonprimary" xml:space="preserve"> | ||
<reference classes="desctype n" internal="True" refid="_CPPv4I00_iEIQNSt10is_const_vI1TEEE28LongFunctionSignatureExampleK6MyTypeK6MyTypeP7uint8_tjb" reftitle="LongFunctionSignatureExample::T (C++ type template parameter)"> | ||
<desc_sig_name classes="n"> | ||
T | ||
<desc_sig_punctuation classes="p"> | ||
, | ||
<desc_sig_space classes="w"> | ||
|
||
<desc_cpp_template_param> | ||
<desc_sig_keyword classes="k"> | ||
typename | ||
<desc_sig_space classes="w"> | ||
|
||
<desc_name classes="sig-name descname sig-name-nonprimary" xml:space="preserve"> | ||
<reference classes="desctype n" internal="True" refid="_CPPv4I00_iEIQNSt10is_const_vI1TEEE28LongFunctionSignatureExampleK6MyTypeK6MyTypeP7uint8_tjb" reftitle="LongFunctionSignatureExample::U (C++ type template parameter)"> | ||
<desc_sig_name classes="n"> | ||
U | ||
<desc_sig_space classes="w"> | ||
|
||
<desc_sig_punctuation classes="p"> | ||
= | ||
<desc_sig_space classes="w"> | ||
|
||
<desc_sig_keyword_type classes="kt"> | ||
void | ||
<desc_sig_punctuation classes="p"> | ||
, | ||
<desc_sig_space classes="w"> | ||
|
||
<desc_cpp_template_param> | ||
<desc_sig_keyword_type classes="kt"> | ||
int | ||
<desc_sig_space classes="w"> | ||
|
||
<desc_name classes="sig-name descname sig-name-nonprimary" xml:space="preserve"> | ||
<reference classes="n" internal="True" refid="_CPPv4I00_iEIQNSt10is_const_vI1TEEE28LongFunctionSignatureExampleK6MyTypeK6MyTypeP7uint8_tjb" reftitle="LongFunctionSignatureExample::AnotherParameter (C++ non-type template parameter)"> | ||
<desc_sig_name classes="n"> | ||
AnotherParameter | ||
<desc_sig_space classes="w"> | ||
|
||
<desc_sig_punctuation classes="p"> | ||
= | ||
<desc_sig_space classes="w"> | ||
|
||
<desc_sig_literal_number classes="m"> | ||
42 | ||
<desc_sig_punctuation classes="p"> | ||
> | ||
|
||
|
||
<desc_cpp_requires_clause> | ||
<desc_sig_keyword classes="k"> | ||
requires | ||
<desc_sig_space classes="w"> | ||
|
||
<desc_sig_name classes="n"> | ||
std | ||
<desc_sig_punctuation classes="p"> | ||
:: | ||
<desc_sig_name classes="n"> | ||
is_const_v | ||
<desc_sig_punctuation classes="p"> | ||
< | ||
<reference classes="desctype" internal="True" refid="_CPPv4I00_iEIQNSt10is_const_vI1TEEE28LongFunctionSignatureExampleK6MyTypeK6MyTypeP7uint8_tjb" reftitle="LongFunctionSignatureExample::T (C++ type template parameter)"> | ||
<desc_sig_name classes="n"> | ||
T | ||
<desc_sig_punctuation classes="p"> | ||
> | ||
|
||
<desc_sig_keyword classes="k"> | ||
const | ||
<desc_sig_space classes="w"> | ||
|
||
<desc_sig_name classes="n"> | ||
MyType | ||
<desc_sig_space classes="w"> | ||
|
||
<desc_name classes="sig-name descname" xml:space="preserve"> | ||
<desc_sig_name classes="n"> | ||
LongFunctionSignatureExample | ||
<desc_sig_punctuation classes="p"> | ||
( | ||
<inline> | ||
<desc_sig_keyword classes="k"> | ||
const | ||
<desc_sig_space classes="w"> | ||
|
||
<desc_sig_name classes="n"> | ||
MyType | ||
<desc_sig_space classes="w"> | ||
|
||
<reference classes="n sig-param" internal="True" refid="_CPPv4I00_iEIQNSt10is_const_vI1TEEE28LongFunctionSignatureExampleK6MyTypeK6MyTypeP7uint8_tjb" reftitle="LongFunctionSignatureExample::bar (C++ function parameter)"> | ||
<desc_sig_name classes="n sig-param"> | ||
bar | ||
<desc_sig_punctuation classes="p"> | ||
, | ||
|
||
<inline> | ||
<desc_sig_name classes="n"> | ||
uint8_t | ||
<desc_sig_space classes="w"> | ||
|
||
<desc_sig_punctuation classes="p"> | ||
* | ||
<reference classes="n sig-param" internal="True" refid="_CPPv4I00_iEIQNSt10is_const_vI1TEEE28LongFunctionSignatureExampleK6MyTypeK6MyTypeP7uint8_tjb" reftitle="LongFunctionSignatureExample::arr (C++ function parameter)"> | ||
<desc_sig_name classes="n sig-param"> | ||
arr | ||
<desc_sig_punctuation classes="p"> | ||
, | ||
|
||
|
||
<inline> | ||
<desc_sig_keyword_type classes="kt"> | ||
unsigned | ||
<desc_sig_space classes="w"> | ||
|
||
<desc_sig_keyword_type classes="kt"> | ||
int | ||
<desc_sig_space classes="w"> | ||
|
||
<reference classes="n sig-param" internal="True" refid="_CPPv4I00_iEIQNSt10is_const_vI1TEEE28LongFunctionSignatureExampleK6MyTypeK6MyTypeP7uint8_tjb" reftitle="LongFunctionSignatureExample::len (C++ function parameter)"> | ||
<desc_sig_name classes="n sig-param"> | ||
len | ||
<desc_sig_space classes="w"> | ||
|
||
<desc_sig_punctuation classes="p"> | ||
= | ||
<desc_sig_space classes="w"> | ||
|
||
<desc_sig_name classes="n"> | ||
DEFAULT_LENGTH | ||
<desc_sig_punctuation classes="p"> | ||
, | ||
|
||
|
||
<inline> | ||
<desc_sig_keyword_type classes="kt"> | ||
bool | ||
<desc_sig_space classes="w"> | ||
|
||
<reference classes="n sig-param" internal="True" refid="_CPPv4I00_iEIQNSt10is_const_vI1TEEE28LongFunctionSignatureExampleK6MyTypeK6MyTypeP7uint8_tjb" reftitle="LongFunctionSignatureExample::baz (C++ function parameter)"> | ||
<desc_sig_name classes="n sig-param"> | ||
baz | ||
<desc_sig_space classes="w"> | ||
|
||
<desc_sig_punctuation classes="p"> | ||
= | ||
<desc_sig_space classes="w"> | ||
|
||
<desc_sig_keyword classes="k"> | ||
false | ||
<desc_sig_punctuation classes="p"> | ||
) | ||
; |
2 changes: 2 additions & 0 deletions
2
...ts/format_signatures_test/test_format_signatures/cpp_function_long_return_type_astext.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
std::integral_constant<ptrdiff_t, N> | ||
tensorstore::GetStaticOrDynamicExtent(span<X, N>); |
Oops, something went wrong.