-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathtest_entry.py
146 lines (128 loc) · 4.22 KB
/
test_entry.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
import unittest
from fluent.syntax.ast import from_json
from fluent.syntax.parser import FluentParser
from fluent.syntax.serializer import FluentSerializer
from tests.syntax import dedent_ftl
class TestParseEntry(unittest.TestCase):
maxDiff = None
def setUp(self):
self.parser = FluentParser(with_spans=False)
def test_simple_message(self):
input = """\
foo = Foo
"""
output = {
"comment": None,
"value": {
"elements": [{"span": None, "type": "TextElement", "value": "Foo"}],
"span": None,
"type": "Pattern",
},
"attributes": [],
"type": "Message",
"span": None,
"id": {"span": None, "type": "Identifier", "name": "foo"},
}
message = self.parser.parse_entry(dedent_ftl(input))
self.assertEqual(message.to_json(), output)
def test_ignore_attached_comment(self):
input = """\
# Attached Comment
foo = Foo
"""
output = {
"comment": None,
"value": {
"elements": [{"span": None, "type": "TextElement", "value": "Foo"}],
"span": None,
"type": "Pattern",
},
"attributes": [],
"type": "Message",
"id": {"name": "foo", "span": None, "type": "Identifier"},
"span": None,
}
message = self.parser.parse_entry(dedent_ftl(input))
self.assertEqual(message.to_json(), output)
def test_return_junk(self):
input = """\
# Attached Comment
junk
"""
output = {
"content": "junk\n",
"annotations": [
{
"arguments": ["="],
"code": "E0003",
"message": 'Expected token: "="',
"span": {"end": 23, "start": 23, "type": "Span"},
"type": "Annotation",
}
],
"span": None,
"type": "Junk",
}
message = self.parser.parse_entry(dedent_ftl(input))
self.assertEqual(message.to_json(), output)
def test_ignore_all_valid_comments(self):
input = """\
# Attached Comment
## Group Comment
### Resource Comment
foo = Foo
"""
output = {
"comment": None,
"value": {
"elements": [{"span": None, "type": "TextElement", "value": "Foo"}],
"span": None,
"type": "Pattern",
},
"attributes": [],
"span": None,
"type": "Message",
"id": {"name": "foo", "span": None, "type": "Identifier"},
}
message = self.parser.parse_entry(dedent_ftl(input))
self.assertEqual(message.to_json(), output)
def test_do_not_ignore_invalid_comments(self):
input = """\
# Attached Comment
##Invalid Comment
"""
output = {
"content": "##Invalid Comment\n",
"annotations": [
{
"arguments": [" "],
"code": "E0003",
"message": 'Expected token: " "',
"span": {"end": 21, "start": 21, "type": "Span"},
"type": "Annotation",
}
],
"span": None,
"type": "Junk",
}
message = self.parser.parse_entry(dedent_ftl(input))
self.assertEqual(message.to_json(), output)
class TestSerializeEntry(unittest.TestCase):
def setUp(self):
self.serializer = FluentSerializer()
def test_simple_message(self):
input = {
"comment": None,
"value": {
"elements": [{"type": "TextElement", "value": "Foo"}],
"type": "Pattern",
},
"attributes": [],
"type": "Message",
"id": {"type": "Identifier", "name": "foo"},
}
output = """\
foo = Foo
"""
message = self.serializer.serialize_entry(from_json(input))
self.assertEqual(message, dedent_ftl(output))