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 = | value = | tagging = | type = | definition = | taginfo = yes | appearance = | draftStartDate = 2022-12-07 | rfcStartDate = | voteStartDate = | voteEndDate = }} ''' 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