From bb1f5e7d97b5a2d63024071dbed91697e8bc8bcc Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Sat, 22 Mar 2025 21:52:51 +0100 Subject: test: add basic tests for parse_proposal --- default.nix | 4 ++++ tests/test_proposals.py | 56 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100644 tests/test_proposals.py diff --git a/default.nix b/default.nix index d923d2e..fc9e1b0 100644 --- a/default.nix +++ b/default.nix @@ -24,4 +24,8 @@ buildPythonApplication rec { mkdir -p $out/share/osm-proposals cp -r ${./static}/. $out/share/osm-proposals/ ''; + + nativeCheckInputs = [ + pytestCheckHook + ]; } diff --git a/tests/test_proposals.py b/tests/test_proposals.py new file mode 100644 index 0000000..e11c1be --- /dev/null +++ b/tests/test_proposals.py @@ -0,0 +1,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 = + | 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 -- cgit v1.2.3