Ruff
This commit is contained in:
parent
eccd7099e7
commit
253e594a60
|
@ -6,22 +6,21 @@ Is capable of migrating from Javadoc based property specification to the
|
||||||
`@DisplayName` specification and back.
|
`@DisplayName` specification and back.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import re
|
|
||||||
import enum
|
import enum
|
||||||
import hashlib
|
import hashlib
|
||||||
|
import re
|
||||||
|
|
||||||
from ._version import __version__
|
from ._version import __version__
|
||||||
|
|
||||||
__all__ = ['__version__', 'standardize_java_text', 'NamingScheme']
|
__all__ = ['__version__', 'standardize_java_text', 'NamingScheme']
|
||||||
|
|
||||||
|
|
||||||
class NamingScheme(enum.Enum):
|
class NamingScheme(enum.Enum):
|
||||||
PRESERVE = 'preserve'
|
PRESERVE = 'preserve'
|
||||||
HASH_OF_DESC = 'hash'
|
HASH_OF_DESC = 'hash'
|
||||||
FROM_DESC = 'desc'
|
FROM_DESC = 'desc'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
PATTERN_JAVADOC = r'/\*\*(?P<javadoc>.*(\n\s*\*.*)*?)\s*\*/'
|
PATTERN_JAVADOC = r'/\*\*(?P<javadoc>.*(\n\s*\*.*)*?)\s*\*/'
|
||||||
PATTERN_DISPLAY_NAME_EXPRESSION = r'\s*(?:"[^"]*?")(?:\s*\+\s*"[^"]*?")*\s*'
|
PATTERN_DISPLAY_NAME_EXPRESSION = r'\s*(?:"[^"]*?")(?:\s*\+\s*"[^"]*?")*\s*'
|
||||||
PATTERN_DISPLAY_NAME = (
|
PATTERN_DISPLAY_NAME = (
|
||||||
|
@ -51,7 +50,6 @@ IGNORABLE_WORDS_IN_NAME = frozenset(
|
||||||
'the',
|
'the',
|
||||||
'is',
|
'is',
|
||||||
'are',
|
'are',
|
||||||
|
|
||||||
'test',
|
'test',
|
||||||
'tests',
|
'tests',
|
||||||
},
|
},
|
||||||
|
@ -96,7 +94,7 @@ def to_camel_case(description: str) -> str:
|
||||||
.replace('+', ' ')
|
.replace('+', ' ')
|
||||||
.replace('-', ' ')
|
.replace('-', ' ')
|
||||||
.replace(':', ' ')
|
.replace(':', ' ')
|
||||||
.replace('\'', '')
|
.replace("'", '')
|
||||||
.strip(' \t.')
|
.strip(' \t.')
|
||||||
)
|
)
|
||||||
words = description.split(' ')
|
words = description.split(' ')
|
||||||
|
@ -114,7 +112,9 @@ def to_camel_case(description: str) -> str:
|
||||||
|
|
||||||
def from_camel_case(name: str) -> str:
|
def from_camel_case(name: str) -> str:
|
||||||
return re.sub(
|
return re.sub(
|
||||||
r'(^|[A-Z])[a-z]*', lambda x: ' ' + x.group(0).capitalize(), name,
|
r'(^|[A-Z])[a-z]*',
|
||||||
|
lambda x: ' ' + x.group(0).capitalize(),
|
||||||
|
name,
|
||||||
).strip()
|
).strip()
|
||||||
|
|
||||||
|
|
||||||
|
@ -140,9 +140,10 @@ def parse_display_name_to_description(text: str | None):
|
||||||
return text
|
return text
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def replace_test_pattern(
|
def replace_test_pattern(
|
||||||
match: re.Match, with_javadoc: bool, with_display_name: bool,
|
match: re.Match,
|
||||||
|
with_javadoc: bool,
|
||||||
|
with_display_name: bool,
|
||||||
naming_scheme: NamingScheme,
|
naming_scheme: NamingScheme,
|
||||||
) -> str:
|
) -> str:
|
||||||
javadoc = parse_javadoc_to_description(match.group('javadoc'))
|
javadoc = parse_javadoc_to_description(match.group('javadoc'))
|
||||||
|
@ -162,7 +163,7 @@ def replace_test_pattern(
|
||||||
elif naming_scheme == NamingScheme.HASH_OF_DESC:
|
elif naming_scheme == NamingScheme.HASH_OF_DESC:
|
||||||
h = hashlib.sha256()
|
h = hashlib.sha256()
|
||||||
h.update(description.encode('utf8'))
|
h.update(description.encode('utf8'))
|
||||||
name = 'test'+h.hexdigest()
|
name = 'test' + h.hexdigest()
|
||||||
del h
|
del h
|
||||||
|
|
||||||
return format_test_prefix(
|
return format_test_prefix(
|
||||||
|
@ -178,9 +179,20 @@ def replace_test_pattern(
|
||||||
IMPORT_DISPLAY_NAME = 'import org.junit.jupiter.api.DisplayName;'
|
IMPORT_DISPLAY_NAME = 'import org.junit.jupiter.api.DisplayName;'
|
||||||
|
|
||||||
|
|
||||||
def standardize_java_text(text: str, with_javadoc: bool, with_display_name: bool, naming_scheme: NamingScheme):
|
def standardize_java_text(
|
||||||
|
text: str,
|
||||||
|
with_javadoc: bool,
|
||||||
|
with_display_name: bool,
|
||||||
|
naming_scheme: NamingScheme,
|
||||||
|
):
|
||||||
text = TEST_PATTERN.sub(
|
text = TEST_PATTERN.sub(
|
||||||
lambda m: replace_test_pattern(m, with_javadoc, with_display_name, naming_scheme), text,
|
lambda m: replace_test_pattern(
|
||||||
|
m,
|
||||||
|
with_javadoc,
|
||||||
|
with_display_name,
|
||||||
|
naming_scheme,
|
||||||
|
),
|
||||||
|
text,
|
||||||
)
|
)
|
||||||
if '@DisplayName' in text and IMPORT_DISPLAY_NAME not in text:
|
if '@DisplayName' in text and IMPORT_DISPLAY_NAME not in text:
|
||||||
lines = text.split('\n')
|
lines = text.split('\n')
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import argparse
|
import argparse
|
||||||
import pathlib
|
import pathlib
|
||||||
|
|
||||||
from . import standardize_java_text, NamingScheme
|
from . import NamingScheme, standardize_java_text
|
||||||
|
|
||||||
|
|
||||||
def test_files(repo: pathlib.Path) -> list[pathlib.Path]:
|
def test_files(repo: pathlib.Path) -> list[pathlib.Path]:
|
||||||
|
@ -9,13 +9,21 @@ def test_files(repo: pathlib.Path) -> list[pathlib.Path]:
|
||||||
|
|
||||||
|
|
||||||
def standardize_in_file(
|
def standardize_in_file(
|
||||||
path: pathlib.Path, inline: bool, with_javadoc: bool, with_display_name:
|
path: pathlib.Path,
|
||||||
bool, naming_scheme: NamingScheme,
|
inline: bool,
|
||||||
|
with_javadoc: bool,
|
||||||
|
with_display_name: bool,
|
||||||
|
naming_scheme: NamingScheme,
|
||||||
):
|
):
|
||||||
with open(path) as f:
|
with open(path) as f:
|
||||||
text = f.read()
|
text = f.read()
|
||||||
|
|
||||||
text_updated = standardize_java_text(text, with_javadoc, with_display_name, naming_scheme=naming_scheme)
|
text_updated = standardize_java_text(
|
||||||
|
text,
|
||||||
|
with_javadoc,
|
||||||
|
with_display_name,
|
||||||
|
naming_scheme=naming_scheme,
|
||||||
|
)
|
||||||
if text_updated == text:
|
if text_updated == text:
|
||||||
return
|
return
|
||||||
|
|
||||||
|
@ -32,7 +40,12 @@ def argument_parser():
|
||||||
argparser.add_argument('-i', action='store_true')
|
argparser.add_argument('-i', action='store_true')
|
||||||
argparser.add_argument('--javadoc', action='store_true')
|
argparser.add_argument('--javadoc', action='store_true')
|
||||||
argparser.add_argument('--displayname', action='store_true')
|
argparser.add_argument('--displayname', action='store_true')
|
||||||
argparser.add_argument('--naming', type=NamingScheme, choices=list(NamingScheme), default=NamingScheme.FROM_DESC)
|
argparser.add_argument(
|
||||||
|
'--naming',
|
||||||
|
type=NamingScheme,
|
||||||
|
choices=list(NamingScheme),
|
||||||
|
default=NamingScheme.FROM_DESC,
|
||||||
|
)
|
||||||
return argparser
|
return argparser
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user