Improved parsing of DisplayName and improved handling of abbreviations
This commit is contained in:
parent
5117a9afd2
commit
e803f21f6e
|
@ -6,12 +6,13 @@ Tool for standardizing Java tests.
|
||||||
import re
|
import re
|
||||||
|
|
||||||
PATTERN_JAVADOC = r'/\*\*(?P<javadoc>.*(\n\s*\*.*)*?)\s*\*/'
|
PATTERN_JAVADOC = r'/\*\*(?P<javadoc>.*(\n\s*\*.*)*?)\s*\*/'
|
||||||
|
PATTERN_DISPLAY_NAME = r'@DisplayName\(\s*"(?P<display>[^"]*?)"\s*\)'
|
||||||
|
|
||||||
TEST_PATTERN: re.Pattern = re.compile(
|
TEST_PATTERN: re.Pattern = re.compile(
|
||||||
r''
|
r''
|
||||||
+ r'(?:' + PATTERN_JAVADOC + r'\s*)?'
|
+ r'(?:' + PATTERN_JAVADOC + r'\s*)?'
|
||||||
+ r'@(?P<annotation>Test|BeforeEach|ParameterizedTest)\s*'
|
+ r'@(?P<annotation>Test|BeforeEach|ParameterizedTest)\s*'
|
||||||
+ r'(?:@DisplayName\("(?P<display>[^"]*?)"\)\s*)?'
|
+ r'(?:'+PATTERN_DISPLAY_NAME+r'\s*)?'
|
||||||
+ r'(?P<visibility>public\s+|private\s+)?void\s+(?P<name>\w+)\(',
|
+ r'(?P<visibility>public\s+|private\s+)?void\s+(?P<name>\w+)\(',
|
||||||
re.IGNORECASE)
|
re.IGNORECASE)
|
||||||
|
|
||||||
|
@ -43,21 +44,18 @@ def format_test_prefix(name: str, description: str, annotation:
|
||||||
str_builder += ['void ',name,'(']
|
str_builder += ['void ',name,'(']
|
||||||
return ''.join(str_builder)
|
return ''.join(str_builder)
|
||||||
|
|
||||||
def to_camel_case_word(word: str) -> str | None:
|
def to_camel_case_word(word: str, first: bool = False) -> str | None:
|
||||||
print(word)
|
|
||||||
if word.lower() in IGNORABLE_WORDS_IN_NAME:
|
if word.lower() in IGNORABLE_WORDS_IN_NAME:
|
||||||
return None
|
return None
|
||||||
if len(word) > 1 and word.upper() == word:
|
if len(word) > 1 and word.upper() == word:
|
||||||
word = word[0].upper() + word[1:].lower()
|
word = word.lower()
|
||||||
else:
|
return (word[0].lower() if first else word[0].upper()) + word[1:]
|
||||||
word = word[0].upper() + word[1:]
|
|
||||||
return word
|
|
||||||
|
|
||||||
def to_camel_case(description: str) -> str:
|
def to_camel_case(description: str) -> str:
|
||||||
description = description.strip(' \t.').replace(',',' ')
|
description = description.strip(' \t.').replace(',',' ')
|
||||||
words = description.split(' ')
|
words = description.split(' ')
|
||||||
|
|
||||||
words[0] = words[0][0].lower() + words[0][1:]
|
words[0] = to_camel_case_word(words[0], first=True)
|
||||||
for i in range(1, len(words)):
|
for i in range(1, len(words)):
|
||||||
word = to_camel_case_word(words[i])
|
word = to_camel_case_word(words[i])
|
||||||
if not word:
|
if not word:
|
||||||
|
|
|
@ -4,41 +4,58 @@ import re
|
||||||
|
|
||||||
|
|
||||||
INPUT_1 = """
|
INPUT_1 = """
|
||||||
|
package test;
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@DisplayName("Invocations fail with callers without required permissions")
|
@DisplayName("Invocations fail with callers without required permissions")
|
||||||
public void selectInvocationWithoutPermission() { }
|
public void selectInvocationWithoutPermission() { }
|
||||||
"""
|
"""
|
||||||
|
|
||||||
OUTPUT_1 = """
|
OUTPUT_1 = """
|
||||||
|
package test;
|
||||||
|
import org.junit.jupiter.api.DisplayName;
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@DisplayName("Invocations fail with callers without required permissions")
|
@DisplayName("Invocations fail with callers without required permissions")
|
||||||
public void invocationsFailWithCallersWithoutRequiredPermissions() { }
|
public void invocationsFailWithCallersWithoutRequiredPermissions() { }
|
||||||
"""
|
"""
|
||||||
|
|
||||||
INPUT_2 = """
|
INPUT_2 = """
|
||||||
|
package test;
|
||||||
|
|
||||||
/** Invocations fail with callers without required permissions. */
|
/** Invocations fail with callers without required permissions. */
|
||||||
@Test
|
@Test
|
||||||
public void selectInvocationWithoutPermission() { }
|
public void selectInvocationWithoutPermission() { }
|
||||||
"""
|
"""
|
||||||
|
|
||||||
OUTPUT_2 = """
|
OUTPUT_2 = """
|
||||||
|
package test;
|
||||||
|
import org.junit.jupiter.api.DisplayName;
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@DisplayName("Invocations fail with callers without required permissions")
|
@DisplayName("Invocations fail with callers without required permissions")
|
||||||
public void invocationsFailWithCallersWithoutRequiredPermissions() { }
|
public void invocationsFailWithCallersWithoutRequiredPermissions() { }
|
||||||
"""
|
"""
|
||||||
|
|
||||||
INPUT_3 = """
|
INPUT_3 = """
|
||||||
|
package test;
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void helloWorldTest(
|
public void helloWorldTest(
|
||||||
"""
|
"""
|
||||||
|
|
||||||
OUTPUT_3 = """
|
OUTPUT_3 = """
|
||||||
|
package test;
|
||||||
|
import org.junit.jupiter.api.DisplayName;
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@DisplayName("Hello World Test")
|
@DisplayName("Hello World Test")
|
||||||
public void helloWorldTest(
|
public void helloWorldTest(
|
||||||
"""
|
"""
|
||||||
|
|
||||||
INPUT_4 = """
|
INPUT_4 = """
|
||||||
|
package test;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Concat two produces a new array with the two input arrays joined together, with no separators.
|
* Concat two produces a new array with the two input arrays joined together, with no separators.
|
||||||
*/
|
*/
|
||||||
|
@ -47,12 +64,17 @@ public void concatTwo()
|
||||||
"""
|
"""
|
||||||
|
|
||||||
OUTPUT_4 = """
|
OUTPUT_4 = """
|
||||||
|
package test;
|
||||||
|
import org.junit.jupiter.api.DisplayName;
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@DisplayName("Concat two produces a new array with the two input arrays joined together, with no separators")
|
@DisplayName("Concat two produces a new array with the two input arrays joined together, with no separators")
|
||||||
public void concatTwoProducesANewArrayWithTheTwoInputArraysJoinedTogetherWithNoSeparators()
|
public void concatTwoProducesNewArrayWithTwoInputArraysJoinedTogetherWithNoSeparators()
|
||||||
"""
|
"""
|
||||||
|
|
||||||
INPUT_5 = """
|
INPUT_5 = """
|
||||||
|
package test;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@link ZkBinderContextImpl} propagates a lot of fields directly from the underlying {@link
|
* {@link ZkBinderContextImpl} propagates a lot of fields directly from the underlying {@link
|
||||||
* ZkBinderContext}.
|
* ZkBinderContext}.
|
||||||
|
@ -61,17 +83,23 @@ INPUT_5 = """
|
||||||
public void propagate()
|
public void propagate()
|
||||||
"""
|
"""
|
||||||
|
|
||||||
OUTPUT_5 = """
|
INPUT_5B = """
|
||||||
|
package test;
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@DisplayName("ZkBinderContextImpl propagates a lot of fields directly from the underlying ZkBinderContext")
|
@DisplayName(
|
||||||
public void zkBinderContextImplPropagatesALotOfFieldsDirectlyFromTheUnderlyingZkBinderContext()
|
"ZkBinderContextImpl propagates a lot of fields directly from the underlying ZkBinderContext")
|
||||||
|
public void zkBinderContextImplPropagatesLotOfFieldsDirectlyFromTheUnderlyingZkBinderContext()
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
OUTPUT_5 = """
|
||||||
|
package test;
|
||||||
|
import org.junit.jupiter.api.DisplayName;
|
||||||
|
|
||||||
def test_javadoc_parsing():
|
@Test
|
||||||
assert re.match(PATTERN_JAVADOC, '/** Hello World */') is not None
|
@DisplayName("ZkBinderContextImpl propagates a lot of fields directly from the underlying ZkBinderContext")
|
||||||
assert re.match(PATTERN_JAVADOC, '/** Hello\n * World */') is not None
|
public void zkBinderContextImplPropagatesLotOfFieldsDirectlyFromUnderlyingZkBinderContext()
|
||||||
assert re.match(PATTERN_JAVADOC, '/**\n * Hello World\n */') is not None
|
"""
|
||||||
|
|
||||||
|
|
||||||
def test_1():
|
def test_1():
|
||||||
|
@ -89,3 +117,5 @@ def test_4():
|
||||||
def test_5():
|
def test_5():
|
||||||
assert standardize_java_text(INPUT_5.strip(),False,True) == OUTPUT_5.strip()
|
assert standardize_java_text(INPUT_5.strip(),False,True) == OUTPUT_5.strip()
|
||||||
|
|
||||||
|
def test_5b():
|
||||||
|
assert standardize_java_text(INPUT_5B.strip(),False,True) == OUTPUT_5.strip()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user