From 77f0420af22d30c223f577d3b5271cea169e4aca Mon Sep 17 00:00:00 2001 From: Jon Michael Aanes Date: Mon, 3 Mar 2025 10:08:55 +0100 Subject: [PATCH] Parsing tests --- test/test_parsing.py | 46 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 test/test_parsing.py diff --git a/test/test_parsing.py b/test/test_parsing.py new file mode 100644 index 0000000..9aa4f98 --- /dev/null +++ b/test/test_parsing.py @@ -0,0 +1,46 @@ +import re + +import pytest + +from standardize_test_format import ( + PATTERN_DISPLAY_NAME, + PATTERN_DISPLAY_NAME_EXPRESSION, + PATTERN_JAVADOC, +) + +VALID_JAVADOCS = [ + '/** Hello World */', + '/** Hello\n * World */', + '/**\n * Hello World\n */', +] + + +VALID_DISPLAY_NAME_EXPRESSIONS = [ + '"Hello"', + ' "Hello" ', + '"Hello " + " World!"', +] + + +VALID_DISPLAY_NAMES = [ + '@DisplayName("test")', + '@DisplayName( "test" )', + '@DisplayName(\n"test"\n)', + '@DisplayName("Hello " + " World!")', + '@DisplayName("Hello "\n+\n" World!")', +] + + +@pytest.mark.parametrize('text', VALID_JAVADOCS) +def test_javadoc_parsing(text: str): + assert re.match(PATTERN_JAVADOC, text) is not None + + +@pytest.mark.parametrize('text', VALID_DISPLAY_NAMES) +def test_display_name_parsing(text: str): + assert re.match(PATTERN_DISPLAY_NAME, text) is not None + + +@pytest.mark.parametrize('text', VALID_DISPLAY_NAME_EXPRESSIONS) +def test_display_name_expressions(text: str): + assert re.match(PATTERN_DISPLAY_NAME_EXPRESSION, text) is not None