-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathtest_nodes.py
149 lines (133 loc) Β· 4.97 KB
/
test_nodes.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
146
147
148
149
import pytest
from lira.parsers import State, nodes
class TestNodes:
def test_text_node(self):
node = nodes.Text("Hello")
assert node.tagname == "Text"
assert node.text() == "Hello"
assert str(node) == '<Text: "Hello">'
def test_strong_node(self):
node = nodes.Strong("hello")
assert node.tagname == "Strong"
assert node.text() == "hello"
assert str(node) == '<Strong: "hello">'
def test_emphasis_node(self):
node = nodes.Emphasis("hello")
assert node.tagname == "Emphasis"
assert node.text() == "hello"
assert str(node) == '<Emphasis: "hello">'
def test_literal_node(self):
node = nodes.Literal("hello")
assert node.tagname == "Literal"
assert node.text() == "hello"
assert str(node) == '<Literal: "hello">'
def test_paragraph_node(self):
node = nodes.Paragraph(children=[nodes.Text("Hello "), nodes.Strong("world!")])
assert node.tagname == "Paragraph"
assert node.text() == "Hello world!"
assert str(node) == '<Paragraph: [<Text: "Hello ">, <Strong: "world!">]>'
for child in node.children:
assert child.parent is node
def test_code_block_node(self):
node = nodes.CodeBlock(
content=[
"import os",
"",
"print('Hello world')",
],
attributes=dict(
language="python",
),
)
assert node.tagname == "CodeBlock"
assert node.text() == "import os\n\nprint('Hello world')"
assert str(node) == "<CodeBlock python: import os...>"
def test_test_block_node(self):
node = nodes.TestBlock(
content=["# Write a comment"],
attributes=dict(
validator="lira.validators.TestBlockValidator",
language="python",
state=State.UNKNOWN,
description="I'm a validator",
extension=".txt",
),
)
assert node.tagname == "TestBlock"
assert node.attributes.validator == "lira.validators.TestBlockValidator"
assert node.attributes.language == "python"
assert node.attributes.description == "I'm a validator"
assert node.attributes.state == State.UNKNOWN
assert node.text() == "# Write a comment"
assert (
str(node)
== "<TestBlock lira.validators.TestBlockValidator: I'm a validator>"
)
def test_block_node_reset(self):
node = nodes.TestBlock(
content=["# Write a comment"],
attributes=dict(
validator="lira.validators.TestBlockValidator",
language="python",
state=State.UNKNOWN,
description="I'm a validator",
extension=".txt",
),
)
node.attributes.language = "python"
node.attributes.state = State.VALID
node.attributes.description = "Please revert me!"
node.content = ["One", "Two"]
node.reset()
assert node.tagname == "TestBlock"
assert node.attributes.validator == "lira.validators.TestBlockValidator"
assert node.attributes.language == "python"
assert node.attributes.description == "I'm a validator"
assert node.attributes.state == State.UNKNOWN
assert node.text() == "# Write a comment"
@pytest.mark.parametrize(
"type",
["note", "warning", "tip"],
)
def test_admonition_node(self, type):
paragraph = nodes.Paragraph(
children=[nodes.Text("Hello "), nodes.Strong("world!")]
)
node = nodes.Admonition(
children=[paragraph],
attributes=dict(
title="Hey!",
type=type,
),
)
assert node.tagname == "Admonition"
assert node.attributes.title == "Hey!"
assert node.attributes.type == type
assert node.text() == "Hello world!"
repr = (
'<Admonition Hey!: [<Paragraph: [<Text: "Hello ">, <Strong: "world!">]>]>'
)
assert str(node) == repr
def test_section_node(self):
paragraph = nodes.Paragraph(
children=[nodes.Text("Hello "), nodes.Strong("world!")]
)
paragraph2 = nodes.Paragraph(children=[nodes.Text("Hello again")])
node = nodes.Section(
children=[
paragraph,
paragraph2,
],
attributes=dict(title="I'm a section"),
)
assert node.tagname == "Section"
assert node.attributes.title == "I'm a section"
assert node.text() == "Hello world!\n\nHello again"
repr = (
"<Section I'm a section: "
'[<Paragraph: [<Text: "Hello ">, <Strong: "world!">]>, '
'<Paragraph: [<Text: "Hello again">]>]>'
)
assert str(node) == repr
for child in node.children:
assert child.parent is node