forked from rstcheck/rstcheck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_rstcheck.py
executable file
·145 lines (104 loc) · 2.7 KB
/
test_rstcheck.py
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
#!/usr/bin/env python
"""Test suite for rstcheck."""
from __future__ import unicode_literals
import unittest
import rstcheck
class Tests(unittest.TestCase):
def assert_lines_equal(self, line_numbers, results):
self.assertEqual(line_numbers,
list(dict(results).keys()))
def test_parse_gcc_style_error_message(self):
self.assertEqual(
(32, 'error message'),
rstcheck.parse_gcc_style_error_message(
'filename:32:7: error message',
filename='filename'))
def test_parse_gcc_style_error_message_with_no_column(self):
self.assertEqual(
(32, 'error message'),
rstcheck.parse_gcc_style_error_message(
'filename:32: error message',
filename='filename',
has_column=False))
def test_parse_gcc_style_error_message_with_parsing_error(self):
with self.assertRaises(ValueError):
rstcheck.parse_gcc_style_error_message(
':32:3 error message',
filename='filename')
with self.assertRaises(IndexError):
rstcheck.parse_gcc_style_error_message(
'filename:32: error message',
filename='filename',
has_column=True)
def test_check(self):
self.assert_lines_equal(
[6],
rstcheck.check(
"""\
Test
====
.. code-block:: python
print(
"""))
def test_check_json(self):
self.assert_lines_equal(
[7],
rstcheck.check(
"""\
Test
====
.. code-block:: json
{
'abc': 123
}
"""))
def test_check_with_extra_blank_lines(self):
self.assert_lines_equal(
[6],
rstcheck.check(
"""\
Test
====
.. code-block:: python
print(
"""))
def test_check_nested_rst(self):
self.assert_lines_equal(
[32],
rstcheck.check(
"""\
Test
====
.. code-block:: rst
Test
====
.. code-block:: rst
Test
====
.. code-block:: rst
Test
====
.. code-block:: rst
Test
====
.. code-block:: rst
Test
====
.. code-block:: python
print(
"""))
def test_ignore_sphinx_directives(self):
self.assert_lines_equal(
[],
rstcheck.check(
"""\
.. toctree::
:maxdepth: 2
intro
strings
datatypes
numeric
(many more documents listed here)
"""))
if __name__ == '__main__':
unittest.main()