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
|
# -*- coding: utf-8 -*-
# This file is part of quark-sphinx-theme.
# Copyright (c) 2016, 2017 Felix Krull <f_krull@gmx.de>
# Released under the terms of the BSD license; see LICENSE.
import os
import sys
import unittest
DIR = os.path.abspath(os.path.dirname(__file__))
sys.path.insert(0, DIR)
from util import SphinxBuildFixture, with_document, with_elements # noqa
testdoc_html_rewrite = os.path.join(DIR, 'testdoc-html_rewrite')
class TestHTMLRewriteOutputTestCases(SphinxBuildFixture):
source_dir = testdoc_html_rewrite
@with_elements('test_pre_block', './/div[@class="highlight"]//pre//span')
def test_pre_block(self, elems):
for span in elems:
self.assertTrue(span.text)
@with_elements('test_footnote', './/table[@class="docutils footnote"]/..')
def test_footnote(self, elems):
for par in elems:
self.assertEqual(par.tag, 'div')
self.assertEqual(par.get('class'), '-x-quark-footnote-wrapper')
self.assertTrue(par.get('id'))
self.assertFalse(par.find('./table').get('id'))
@with_elements('test_citation', './/table[@class="docutils citation"]/..')
def test_citation(self, elems):
for par in elems:
self.assertEqual(par.tag, 'div')
self.assertEqual(par.get('class'), '-x-quark-citation-wrapper')
self.assertTrue(par.get('id'))
self.assertFalse(par.find('./table').get('id'))
@with_elements('test_admonition',
'.//div[@class="admonition-test admonition"]/../../../..')
def test_admonition(self, elems):
for par in elems:
self.assertEqual(par.tag, 'table')
self.assertIn('-x-quark-admonition', par.get('class'))
self.assertIn('-x-quark-box', par.get('class'))
@with_elements('test_warning',
'.//div[@class="admonition warning"]/../../../..')
def test_warning(self, elems):
for par in elems:
self.assertEqual(par.tag, 'table')
self.assertIn('-x-quark-admonition', par.get('class'))
self.assertIn('-x-quark-warning', par.get('class'))
self.assertIn('-x-quark-box', par.get('class'))
@with_elements('test_topic', './/div[@class="topic"]/../../../..')
def test_topic(self, elems):
for par in elems:
self.assertEqual(par.tag, 'table')
self.assertIn('-x-quark-topic', par.get('class'))
self.assertIn('-x-quark-box', par.get('class'))
@with_elements('test_sidebar', './/div[@class="sidebar"]/../../../..')
def test_sidebar(self, elems):
for par in elems:
self.assertEqual(par.tag, 'table')
self.assertIn('-x-quark-sidebar', par.get('class'))
self.assertIn('-x-quark-box', par.get('class'))
@with_elements('test_literal_block',
'.//div[@class="highlight"]/../../../../..')
def test_literal_block(self, elems):
for par in elems:
self.assertEqual(par.tag, 'table')
self.assertIn('-x-quark-literal-block', par.get('class'))
class TestHTMLRewriteOutput(TestHTMLRewriteOutputTestCases, unittest.TestCase):
pass
class TestHTMLCompatOutput(TestHTMLRewriteOutputTestCases, unittest.TestCase):
tags = ['test_html_compat_alias']
class TestHTMLRewriteFeatures(SphinxBuildFixture, unittest.TestCase):
source_dir = testdoc_html_rewrite
config = {
'quark_html_features': '',
}
@with_elements('test_footnote', './/table[@class="docutils footnote"]/..')
def test_footnote(self, elems):
for par in elems:
self.assertNotIn(par.get('class'), '-x-quark-footnote-wrapper')
@with_elements('test_citation', './/table[@class="docutils citation"]/..')
def test_citation(self, elems):
for par in elems:
self.assertNotIn(par.get('class'), '-x-quark-citation-wrapper')
@with_elements('test_admonition',
'.//div[@class="admonition-test admonition"]/../../../..')
def test_admonition(self, elems):
for par in elems:
self.assertNotEqual(par.tag, 'table')
self.assertNotIn('-x-quark-admonition', par.get('class'))
@with_elements('test_topic', './/div[@class="topic"]/../../../..')
def test_topic(self, elems):
for par in elems:
self.assertNotEqual(par.tag, 'table')
self.assertNotIn('-x-quark-topic', par.get('class'))
@with_elements('test_sidebar', './/div[@class="sidebar"]/../../../..')
def test_sidebar(self, elems):
for par in elems:
self.assertNotEqual(par.tag, 'table')
self.assertNotIn('-x-quark-sidebar', par.get('class'))
@with_elements('test_literal_block',
'.//div[@class="highlight"]/../../../../..')
def test_literal_block(self, elems):
for par in elems:
self.assertNotEqual(par.tag, 'table')
self.assertNotIn('-x-quark-literal-block', par.get('class'))
if __name__ == '__main__':
unittest.main()
|