1
0

Fixed tests

This commit is contained in:
Jon Michael Aanes 2025-02-27 14:57:33 +01:00
parent ef4bcb4c6f
commit 3eed64b272
3 changed files with 7 additions and 6 deletions

View File

@ -6,7 +6,7 @@ Tool for standardizing Java tests.
import re
TEST_PATTERN: re.Pattern = re.compile(
r'(?:/\*\*(?P<comment>.*)\*/)\s*'
r'(?:/\*\*(?P<comment>.*)\*/)?\s*'
+ r'@(?P<annotation>Test|BeforeEach|ParameterizedTest)\s*'
+ r'(?:@DisplayName\("(?P<display>.*)"\)\s*)?'
+ r'(?P<visibility>public\s+|private\s+)?void\s+(?P<name>\w+)\(', re.IGNORECASE)
@ -47,7 +47,7 @@ def from_camel_case(name: str) -> str:
return name
def replace_test_pattern(match: re.Match) -> str:
comment = match.group('comment').strip()
comment = (match.group('comment') or '').strip()
annotation = match.group('annotation').strip()
visibility = (match.group('visibility') or '').strip()
name = match.group('name').strip()

View File

@ -15,6 +15,7 @@ def standardize_in_file(path: pathlib.Path):
if False:
with open(path, 'w') as f:
f.write(text)
def main():
argparser = argparse.ArgumentParser()
argparser .add_argument('repo', type=pathlib.Path)

View File

@ -11,7 +11,7 @@ public void selectInvocationWithoutPermission() { }
OUTPUT_1 = """
@Test
@DisplayName("Invocations fail with callers without required permissions")
public void selectInvocationWithoutPermission() { }
public void invocationsFailWithCallersWithoutRequiredPermissions() { }
"""
INPUT_2 = """
@ -23,13 +23,13 @@ public void selectInvocationWithoutPermission() { }
OUTPUT_2 = """
@Test
@DisplayName("Invocations fail with callers without required permissions")
public void selectInvocationWithoutPermission() { }
public void invocationsFailWithCallersWithoutRequiredPermissions() { }
"""
def test_1():
assert standardize_java_text(INPUT_1) == OUTPUT_1
assert standardize_java_text(INPUT_1.strip()) == OUTPUT_1.strip()
def test_2():
assert standardize_java_text(INPUT_2) == OUTPUT_2
assert standardize_java_text(INPUT_2.strip()) == OUTPUT_2.strip()