From ba387a0aa040d97ff5e735fdecdce4a1ff0c2baf Mon Sep 17 00:00:00 2001 From: Jon Michael Aanes Date: Fri, 28 Feb 2025 09:55:13 +0100 Subject: [PATCH] DisplayName parsing can now handle expressions v2 --- standardize_test_format/__init__.py | 7 +++++-- test/test_standardize.py | 15 +++++++++++++++ 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/standardize_test_format/__init__.py b/standardize_test_format/__init__.py index f8c7587..a8ea8dc 100644 --- a/standardize_test_format/__init__.py +++ b/standardize_test_format/__init__.py @@ -81,8 +81,11 @@ def parse_display_name_to_description(text: str|None): if text is None: return '' - text = re.sub(r'"\s*\+\s*"', '', text).strip('"') - return text.strip() + text = text.strip() + text = re.sub(r'"\s*\+\s*"', '', text) + text = text.strip('"') + text = text.strip() + return text def replace_test_pattern(match: re.Match, with_javadoc: bool, with_display_name: bool) -> str: diff --git a/test/test_standardize.py b/test/test_standardize.py index 2172fd5..8c7c59b 100644 --- a/test/test_standardize.py +++ b/test/test_standardize.py @@ -92,6 +92,18 @@ package test; public void zkBinderContextImplPropagatesLotOfFieldsDirectlyFromTheUnderlyingZkBinderContext() """ +INPUT_5C = """ +package test; + +@Test +@DisplayName( + "ZkBinderContextImpl propagates a lot of " + + "fields directly from " + + "the underlying ZkBinderContext" +) +public void zkBinderContextImplPropagatesLotOfFieldsDirectlyFromTheUnderlyingZkBinderContext() +""" + OUTPUT_5 = """ package test; import org.junit.jupiter.api.DisplayName; @@ -119,3 +131,6 @@ def test_5(): def test_5b(): assert standardize_java_text(INPUT_5B.strip(),False,True) == OUTPUT_5.strip() + +def test_5c(): + assert standardize_java_text(INPUT_5C.strip(),False,True) == OUTPUT_5.strip()