localstack/localstack

View on GitHub
localstack-core/localstack/utils/docker_utils.py

Summary

Maintainability
A
3 hrs
Test Coverage

Function get_host_path_for_path_in_docker has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

def get_host_path_for_path_in_docker(path):
    """
    Returns the calculated host location for a given subpath of DEFAULT_VOLUME_DIR inside the localstack container.
    The path **has** to be a subdirectory of DEFAULT_VOLUME_DIR (the dir itself *will not* work).

Severity: Minor
Found in localstack-core/localstack/utils/docker_utils.py - About 1 hr to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function reserve_available_container_port has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

def reserve_available_container_port(
    duration: int = None,
    port_start: int = None,
    port_end: int = None,
    protocol: str = None,
Severity: Minor
Found in localstack-core/localstack/utils/docker_utils.py - About 1 hr to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function container_ports_can_be_bound has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

def container_ports_can_be_bound(
    ports: Union[IntOrPort, List[IntOrPort]],
    address: Optional[str] = None,
) -> bool:
    """Determine whether a given list of ports can be bound by Docker containers
Severity: Minor
Found in localstack-core/localstack/utils/docker_utils.py - About 45 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

There are no issues that match your filters.

Category
Status