summaryrefslogtreecommitdiffstats
path: root/tests/test_extensions/test_ext_autodoc_private_members.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-05 16:20:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-05 16:20:58 +0000
commitffcb4b87846b4e4a2d9eee8df4b7ec40365878b8 (patch)
tree3c64877dd20ad1141111c77b3463e95686002b39 /tests/test_extensions/test_ext_autodoc_private_members.py
parentAdding debian version 7.2.6-8. (diff)
downloadsphinx-ffcb4b87846b4e4a2d9eee8df4b7ec40365878b8.tar.xz
sphinx-ffcb4b87846b4e4a2d9eee8df4b7ec40365878b8.zip
Merging upstream version 7.3.7.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/test_extensions/test_ext_autodoc_private_members.py')
-rw-r--r--tests/test_extensions/test_ext_autodoc_private_members.py158
1 files changed, 158 insertions, 0 deletions
diff --git a/tests/test_extensions/test_ext_autodoc_private_members.py b/tests/test_extensions/test_ext_autodoc_private_members.py
new file mode 100644
index 0000000..bf14414
--- /dev/null
+++ b/tests/test_extensions/test_ext_autodoc_private_members.py
@@ -0,0 +1,158 @@
+"""Test the autodoc extension. This tests mainly for private-members option.
+"""
+
+import pytest
+
+from tests.test_extensions.autodoc_util import do_autodoc
+
+
+@pytest.mark.sphinx('html', testroot='ext-autodoc')
+def test_private_field(app):
+ app.config.autoclass_content = 'class'
+ options = {"members": None}
+ actual = do_autodoc(app, 'module', 'target.private', options)
+ assert list(actual) == [
+ '',
+ '.. py:module:: target.private',
+ '',
+ '',
+ '.. py:data:: _PUBLIC_CONSTANT',
+ ' :module: target.private',
+ ' :value: None',
+ '',
+ ' :meta public:',
+ '',
+ '',
+ '.. py:function:: _public_function(name)',
+ ' :module: target.private',
+ '',
+ ' public_function is a docstring().',
+ '',
+ ' :meta public:',
+ '',
+ ]
+
+
+@pytest.mark.sphinx('html', testroot='ext-autodoc')
+def test_private_field_and_private_members(app):
+ app.config.autoclass_content = 'class'
+ options = {"members": None,
+ "private-members": None}
+ actual = do_autodoc(app, 'module', 'target.private', options)
+ assert list(actual) == [
+ '',
+ '.. py:module:: target.private',
+ '',
+ '',
+ '.. py:data:: PRIVATE_CONSTANT',
+ ' :module: target.private',
+ ' :value: None',
+ '',
+ ' :meta private:',
+ '',
+ '',
+ '.. py:data:: _PUBLIC_CONSTANT',
+ ' :module: target.private',
+ ' :value: None',
+ '',
+ ' :meta public:',
+ '',
+ '',
+ '.. py:function:: _public_function(name)',
+ ' :module: target.private',
+ '',
+ ' public_function is a docstring().',
+ '',
+ ' :meta public:',
+ '',
+ '',
+ '.. py:function:: private_function(name)',
+ ' :module: target.private',
+ '',
+ ' private_function is a docstring().',
+ '',
+ ' :meta private:',
+ '',
+ ]
+
+
+@pytest.mark.sphinx('html', testroot='ext-autodoc')
+def test_private_members(app):
+ app.config.autoclass_content = 'class'
+ options = {"members": None,
+ "private-members": "_PUBLIC_CONSTANT,_public_function"}
+ actual = do_autodoc(app, 'module', 'target.private', options)
+ assert list(actual) == [
+ '',
+ '.. py:module:: target.private',
+ '',
+ '',
+ '.. py:data:: _PUBLIC_CONSTANT',
+ ' :module: target.private',
+ ' :value: None',
+ '',
+ ' :meta public:',
+ '',
+ '',
+ '.. py:function:: _public_function(name)',
+ ' :module: target.private',
+ '',
+ ' public_function is a docstring().',
+ '',
+ ' :meta public:',
+ '',
+ ]
+
+
+@pytest.mark.sphinx('html', testroot='ext-autodoc')
+def test_private_attributes(app):
+ app.config.autoclass_content = 'class'
+ options = {"members": None}
+ actual = do_autodoc(app, 'class', 'target.private.Foo', options)
+ assert list(actual) == [
+ '',
+ '.. py:class:: Foo()',
+ ' :module: target.private',
+ '',
+ '',
+ ' .. py:attribute:: Foo._public_attribute',
+ ' :module: target.private',
+ ' :value: 47',
+ '',
+ ' A public class attribute whose name starts with an underscore.',
+ '',
+ ' :meta public:',
+ '',
+ ]
+
+
+@pytest.mark.sphinx('html', testroot='ext-autodoc')
+def test_private_attributes_and_private_members(app):
+ app.config.autoclass_content = 'class'
+ options = {"members": None,
+ "private-members": None}
+ actual = do_autodoc(app, 'class', 'target.private.Foo', options)
+ assert list(actual) == [
+ '',
+ '.. py:class:: Foo()',
+ ' :module: target.private',
+ '',
+ '',
+ ' .. py:attribute:: Foo._public_attribute',
+ ' :module: target.private',
+ ' :value: 47',
+ '',
+ ' A public class attribute whose name starts with an underscore.',
+ '',
+ ' :meta public:',
+ '',
+ '',
+ ' .. py:attribute:: Foo.private_attribute',
+ ' :module: target.private',
+ ' :value: 11',
+ '',
+ ' A private class attribute whose name does not start with an underscore.',
+ '',
+ ' :meta private:',
+ '',
+ ]