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
|
import textwrap
import pytest
from osm_proposals import proposals
@pytest.mark.parametrize("has_heading", (True, False))
@pytest.mark.parametrize("has_text", (True, False))
def test_parse_proposal_with_template(has_heading: bool, has_text: bool):
proposal = proposals.parse_proposal(
"some title",
textwrap.dedent(
'''
{{Proposal page
| name = some name
| status = draft
| user = SomeUser
| key = <!-- The key of the proposed new tag, if relevant -->
| value = <!-- The value of the proposed new tag, if relevant -->
| tagging = <!-- If your proposal is about multiple tags, you may link them here like: {{tag|foo|bar}}, {{tag|bar}} -->
| type = <!-- node, way, area, relation ({{IconNode}} / {{IconWay}} / {{IconArea}} / {{IconRelation}}) -->
| definition = <!-- A short, clear definition of the feature or property which the new tag represents -->
| taginfo = yes <!-- yes / no: to show taginfo statistics box -->
| appearance = <!-- A possible rendering, if relevant – optional -->
| draftStartDate = 2022-12-07
| rfcStartDate = <!-- Date the RFC email is sent to the Tagging list: YYYY-MM-DD -->
| voteStartDate = <!-- YYYY-MM-DD 00:00:00 (UTC) – date voting starts: at least 2 weeks after RFC -->
| voteEndDate = <!-- YYYY-MM-DD 23:59:59 (UTC) – date voting will end: at least 2 weeks after start of voting -->
}}
'''
f'''
{"== Heading ==" * has_heading}
{"Some text." * has_text}
'''
),
(),
)
if not has_heading or not has_text:
assert proposal is None
else:
assert proposal == {
'page_title': 'some title',
'lang': None,
'name': 'some name',
'status': 'draft',
'authors': 'SomeUser',
'definition': None,
'draft_start': '2022-12-07',
'rfc_start': None,
'vote_start': None,
}
def test_parse_proposal_without_template():
assert proposals.parse_proposal("test", "nothing", ()) is None
|