2014-08-10 02:28:31 -05:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
2014-08-10 09:47:27 -05:00
|
|
|
test_domain_std
|
2014-08-10 02:28:31 -05:00
|
|
|
~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Tests the std domain
|
|
|
|
|
|
|
|
:copyright: Copyright 2007-2014 by the Sphinx team, see AUTHORS.
|
|
|
|
:license: BSD, see LICENSE for details.
|
|
|
|
"""
|
|
|
|
|
|
|
|
from docutils import nodes
|
|
|
|
|
|
|
|
from sphinx.domains.std import StandardDomain
|
|
|
|
from util import mock
|
|
|
|
|
|
|
|
|
|
|
|
def test_process_doc_handle_figure_caption():
|
|
|
|
env = mock.Mock(domaindata={})
|
|
|
|
figure_node = nodes.figure(
|
|
|
|
'',
|
|
|
|
nodes.caption('caption text', 'caption text'),
|
|
|
|
)
|
|
|
|
document = mock.Mock(
|
|
|
|
nametypes={'testname': True},
|
|
|
|
nameids={'testname': 'testid'},
|
|
|
|
ids={'testid': figure_node},
|
|
|
|
)
|
|
|
|
|
|
|
|
domain = StandardDomain(env)
|
|
|
|
if 'testname' in domain.data['labels']:
|
|
|
|
del domain.data['labels']['testname']
|
|
|
|
domain.process_doc(env, 'testdoc', document)
|
|
|
|
assert 'testname' in domain.data['labels']
|
|
|
|
assert domain.data['labels']['testname'] == (
|
|
|
|
'testdoc', 'testid', 'caption text')
|
|
|
|
|
|
|
|
|
|
|
|
def test_process_doc_handle_image_parent_figure_caption():
|
|
|
|
env = mock.Mock(domaindata={})
|
|
|
|
img_node = nodes.image('', alt='image alt')
|
|
|
|
figure_node = nodes.figure(
|
|
|
|
'',
|
|
|
|
nodes.caption('caption text', 'caption text'),
|
|
|
|
img_node,
|
|
|
|
)
|
|
|
|
document = mock.Mock(
|
|
|
|
nametypes={'testname': True},
|
|
|
|
nameids={'testname': 'testid'},
|
|
|
|
ids={'testid': img_node},
|
|
|
|
)
|
|
|
|
|
|
|
|
domain = StandardDomain(env)
|
|
|
|
if 'testname' in domain.data['labels']:
|
|
|
|
del domain.data['labels']['testname']
|
|
|
|
domain.process_doc(env, 'testdoc', document)
|
|
|
|
assert 'testname' in domain.data['labels']
|
|
|
|
assert domain.data['labels']['testname'] == (
|
|
|
|
'testdoc', 'testid', 'caption text')
|
|
|
|
|
|
|
|
|
|
|
|
def test_process_doc_handle_table_title():
|
|
|
|
env = mock.Mock(domaindata={})
|
|
|
|
table_node = nodes.table(
|
|
|
|
'',
|
|
|
|
nodes.title('title text', 'title text'),
|
|
|
|
)
|
|
|
|
document = mock.Mock(
|
|
|
|
nametypes={'testname': True},
|
|
|
|
nameids={'testname': 'testid'},
|
|
|
|
ids={'testid': table_node},
|
|
|
|
)
|
|
|
|
|
|
|
|
domain = StandardDomain(env)
|
|
|
|
if 'testname' in domain.data['labels']:
|
|
|
|
del domain.data['labels']['testname']
|
|
|
|
domain.process_doc(env, 'testdoc', document)
|
|
|
|
assert 'testname' in domain.data['labels']
|
|
|
|
assert domain.data['labels']['testname'] == (
|
|
|
|
'testdoc', 'testid', 'title text')
|