1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
|
# (C) Copyright 2005-2023 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!
""" Tests for the trait documenter. """
import contextlib
import io
import os
import shutil
import tempfile
import textwrap
import tokenize
import unittest
import unittest.mock as mock
from traits.api import Bool, HasTraits, Int, Property
from traits.testing.optional_dependencies import sphinx, requires_sphinx
if sphinx is not None:
from sphinx.ext.autodoc import ClassDocumenter, INSTANCEATTR, Options
from sphinx.ext.autodoc.directive import DocumenterBridge
from sphinx.testing.util import SphinxTestApp
from sphinx.util.docutils import LoggingReporter
from traits.util.trait_documenter import (
_get_definition_tokens,
trait_definition,
TraitDocumenter,
)
if sphinx.version_info < (7, 2):
from sphinx.testing.path import path as Path
else:
from pathlib import Path
# Configuration file content for testing.
CONF_PY = """\
extensions = ['sphinx.ext.autodoc']
# The suffix of source filenames.
source_suffix = '.rst'
autodoc_mock_imports = [
'dummy'
]
"""
class MyTestClass(HasTraits):
"""
Class-level docstring.
"""
#: I'm a troublesome trait with a long definition.
bar = Int(42, desc=""" First line
The answer to
Life,
the Universe,
and Everything.
""")
class Fake(HasTraits):
#: Test attribute
test_attribute = Property(Bool, label="ミスあり")
class FindTheTraits(HasTraits):
"""
Class for testing the can_document_member functionality.
"""
#: A TraitType subclass on the right-hand side.
an_int = Int
#: A TraitType instance on the right-hand side.
another_int = Int()
#: A non-trait integer
magic_number = 1729
@property
def not_a_trait(self):
"""
I'm a regular property, not a trait.
"""
@requires_sphinx
class TestTraitDocumenter(unittest.TestCase):
""" Tests for the trait documenter. """
def setUp(self):
self.source = """
depth_interval = Property(Tuple(Float, Float),
depends_on="_depth_interval")
"""
string_io = io.StringIO(self.source)
tokens = tokenize.generate_tokens(string_io.readline)
self.tokens = tokens
def test_get_definition_tokens(self):
src = textwrap.dedent(
"""\
depth_interval = Property(Tuple(Float, Float),
depends_on="_depth_interval")
"""
)
string_io = io.StringIO(src)
tokens = tokenize.generate_tokens(string_io.readline)
definition_tokens = _get_definition_tokens(tokens)
# Check if they are correctly untokenized. This should not raise.
string = tokenize.untokenize(definition_tokens)
self.assertEqual(src.rstrip(), string)
def test_add_line(self):
mocked_directive = mock.MagicMock()
documenter = TraitDocumenter(mocked_directive, "test", " ")
documenter.object_name = "test_attribute"
documenter.parent = Fake
with mock.patch(
(
"traits.util.trait_documenter.ClassLevelDocumenter"
".add_directive_header"
)
):
documenter.add_directive_header("")
self.assertEqual(
len(documenter.directive.result.append.mock_calls), 1)
def test_abbreviated_annotations(self):
# Regression test for enthought/traits#493.
with self.create_directive() as directive:
documenter = TraitDocumenter(
directive, __name__ + ".MyTestClass.bar")
documenter.generate(all_members=True)
result = directive.result
# Find annotations line.
for item in result:
if item.lstrip().startswith(":annotation:"):
break
else:
self.fail("Didn't find the expected trait :annotation:")
# Annotation should be a single line.
self.assertIn("First line", item)
self.assertNotIn("\n", item)
def test_successful_trait_definition(self):
definition = trait_definition(cls=Fake, trait_name="test_attribute")
self.assertEqual(
definition, 'Property(Bool, label="ミスあり")',
)
def test_failed_trait_definition(self):
with self.assertRaises(ValueError):
trait_definition(cls=Fake, trait_name="not_a_trait")
def test_can_document_member(self):
# Regression test for enthought/traits#1238
with self.create_directive() as directive:
class_documenter = ClassDocumenter(
directive, __name__ + ".FindTheTraits"
)
class_documenter.parse_name()
class_documenter.import_object()
self.assertTrue(
TraitDocumenter.can_document_member(
INSTANCEATTR, "an_int", True, class_documenter,
)
)
self.assertTrue(
TraitDocumenter.can_document_member(
INSTANCEATTR, "another_int", True, class_documenter,
)
)
self.assertFalse(
TraitDocumenter.can_document_member(
INSTANCEATTR, "magic_number", True, class_documenter,
)
)
self.assertFalse(
TraitDocumenter.can_document_member(
INSTANCEATTR, "not_a_trait", True, class_documenter,
)
)
@contextlib.contextmanager
def create_directive(self):
"""
Helper function to create a a "directive" suitable
for instantiating the TraitDocumenter with, along with resources
to support that directive, and clean up the resources afterwards.
Returns
-------
contextmanager
A context manager that returns a DocumenterBridge instance.
"""
with self.tmpdir() as tmpdir:
# Ensure configuration file exists.
conf_file = os.path.join(tmpdir, "conf.py")
with open(conf_file, "w", encoding="utf-8") as f:
f.write(CONF_PY)
app = SphinxTestApp(srcdir=Path(tmpdir))
app.builder.env.app = app
app.builder.env.temp_data["docname"] = "dummy"
kwds = {}
state = mock.Mock()
state.document.settings.tab_width = 8
kwds["state"] = state
yield DocumenterBridge(
app.env, LoggingReporter(''), Options(), 1, **kwds)
@contextlib.contextmanager
def tmpdir(self):
"""
Helper function to create a temporary directory.
Returns
-------
contextmanager
Context manager that returns the path to a temporary directory.
"""
tmpdir = tempfile.mkdtemp()
try:
yield tmpdir
finally:
shutil.rmtree(tmpdir)
|