Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: [CG-10935] tests patch #818

Merged
merged 5 commits into from
Mar 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/codegen/sdk/core/function.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def resolve_name(self, name: str, start_byte: int | None = None, strict: bool =
if symbol.name == name and (start_byte is None or (symbol.start_byte if isinstance(symbol, Class | Function) else symbol.end_byte) <= start_byte):
yield symbol
return
yield from super().resolve_name(name, start_byte)
yield from super().resolve_name(name, start_byte, strict=strict)

@cached_property
@noapidoc
Expand Down
4 changes: 4 additions & 0 deletions src/codegen/sdk/core/interfaces/conditional_block.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,20 @@
from collections.abc import Sequence

from codegen.sdk.core.statements.statement import Statement
from codegen.shared.decorators.docs import noapidoc


class ConditionalBlock(Statement, ABC):
"""An interface for any code block that might not be executed in the code, e.g if block/else block/try block/catch block ect."""

@property
@abstractmethod
@noapidoc
def other_possible_blocks(self) -> Sequence["ConditionalBlock"]:
"""Should return all other "branches" that might be executed instead."""

@property
@noapidoc
def end_byte_for_condition_block(self) -> int:
"""Returns the end byte for the specific condition block"""
return self.end_byte
2 changes: 1 addition & 1 deletion src/codegen/sdk/core/statements/for_loop_statement.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ def resolve_name(self, name: str, start_byte: int | None = None, strict: bool =
return
yield frame.top.node
return
yield from super().resolve_name(name, start_byte)
yield from super().resolve_name(name, start_byte, strict=strict)
4 changes: 3 additions & 1 deletion src/codegen/sdk/core/statements/if_block_statement.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,9 +276,10 @@ def reduce_condition(self, bool_condition: bool, node: Editable | None = None) -
self.remove()

@property
@noapidoc
def other_possible_blocks(self) -> Sequence[ConditionalBlock]:
if self.is_if_statement:
return self._main_if_block.alternative_blocks
return self.alternative_blocks
elif self.is_elif_statement:
main = self._main_if_block
statements = [main]
Expand All @@ -293,6 +294,7 @@ def other_possible_blocks(self) -> Sequence[ConditionalBlock]:
return [main, *main.elif_statements]

@property
@noapidoc
def end_byte_for_condition_block(self) -> int:
if self.is_if_statement:
return self.consequence_block.end_byte
Expand Down
2 changes: 2 additions & 0 deletions src/codegen/sdk/core/statements/switch_case.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,7 @@ def _compute_dependencies(self, usage_type: UsageKind | None = None, dest: HasNa
super()._compute_dependencies(usage_type, dest)

@property
@noapidoc
def other_possible_blocks(self) -> list[ConditionalBlock]:
"""Returns the end byte for the specific condition block"""
return [case for case in self.parent.cases if case != self]
2 changes: 1 addition & 1 deletion src/codegen/sdk/python/function.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def resolve_name(self, name: str, start_byte: int | None = None, strict: bool =
if name == "super()":
yield self.parent_class
return
yield from super().resolve_name(name, start_byte)
yield from super().resolve_name(name, start_byte, strict=strict)

@noapidoc
@commiter
Expand Down
3 changes: 2 additions & 1 deletion src/codegen/sdk/python/statements/catch_statement.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from codegen.sdk.core.statements.catch_statement import CatchStatement
from codegen.sdk.python.detached_symbols.code_block import PyCodeBlock
from codegen.sdk.python.statements.block_statement import PyBlockStatement
from codegen.shared.decorators.docs import py_apidoc
from codegen.shared.decorators.docs import noapidoc, py_apidoc

if TYPE_CHECKING:
from tree_sitter import Node as PyNode
Expand All @@ -29,5 +29,6 @@ def __init__(self, ts_node: PyNode, file_node_id: NodeId, ctx: CodebaseContext,
self.condition = self.children[0]

@property
@noapidoc
def other_possible_blocks(self) -> list[ConditionalBlock]:
return [clause for clause in self.parent.except_clauses if clause != self] + [self.parent]
3 changes: 2 additions & 1 deletion src/codegen/sdk/python/statements/match_case.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from codegen.sdk.core.statements.switch_case import SwitchCase
from codegen.sdk.python.detached_symbols.code_block import PyCodeBlock
from codegen.sdk.python.statements.block_statement import PyBlockStatement
from codegen.shared.decorators.docs import py_apidoc
from codegen.shared.decorators.docs import noapidoc, py_apidoc

if TYPE_CHECKING:
from codegen.sdk.codebase.codebase_context import CodebaseContext
Expand All @@ -23,5 +23,6 @@ def __init__(self, ts_node: PyNode, file_node_id: NodeId, ctx: "CodebaseContext"
self.condition = self.child_by_field_name("alternative")

@property
@noapidoc
def other_possible_blocks(self) -> list["ConditionalBlock"]:
return [case for case in self.parent.cases if case != self]
2 changes: 2 additions & 0 deletions src/codegen/sdk/python/statements/try_catch_statement.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,12 @@ def nested_code_blocks(self) -> list[PyCodeBlock]:
return nested_blocks

@property
@noapidoc
def other_possible_blocks(self) -> Sequence[ConditionalBlock]:
return self.except_clauses

@property
@noapidoc
def end_byte_for_condition_block(self) -> int:
if self.code_block:
return self.code_block.end_byte
Expand Down
2 changes: 1 addition & 1 deletion src/codegen/sdk/typescript/function.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ def resolve_name(self, name: str, start_byte: int | None = None, strict: bool =
if name == "this":
yield self.parent_class
return
yield from super().resolve_name(name, start_byte)
yield from super().resolve_name(name, start_byte, strict=strict)

@staticmethod
def is_valid_node(node: TSNode) -> bool:
Expand Down
3 changes: 2 additions & 1 deletion src/codegen/sdk/typescript/statements/catch_statement.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from codegen.sdk.core.statements.catch_statement import CatchStatement
from codegen.sdk.typescript.statements.block_statement import TSBlockStatement
from codegen.shared.decorators.docs import apidoc
from codegen.shared.decorators.docs import apidoc, noapidoc

if TYPE_CHECKING:
from tree_sitter import Node as TSNode
Expand All @@ -31,5 +31,6 @@ def __init__(self, ts_node: TSNode, file_node_id: NodeId, ctx: CodebaseContext,
self.condition = self.child_by_field_name("parameter")

@property
@noapidoc
def other_possible_blocks(self) -> list[ConditionalBlock]:
return [self.parent]
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,15 @@ def nested_code_blocks(self) -> list[TSCodeBlock]:
return nested_blocks

@property
@noapidoc
def other_possible_blocks(self) -> Sequence[ConditionalBlock]:
if self.catch:
return [self.catch]
else:
return []

@property
@noapidoc
def end_byte_for_condition_block(self) -> int:
if self.code_block:
return self.code_block.end_byte
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,24 @@ def test_if_else_reassigment_handling_partial_if(tmpdir) -> None:
assert usage.match == pyspark_arg


def test_if_else_reassigment_handling_solo_if(tmpdir) -> None:
content = """
PYSPARK = "TEST"
if True:
PYSPARK = True
print(PYSPARK)
"""

with get_codebase_session(tmpdir=tmpdir, files={"test.py": content}) as codebase:
file = codebase.get_file("test.py")
symbo = file.get_symbol("PYSPARK")
funct_call = file.function_calls[0]
pyspark_arg = funct_call.args.children[0]
for symb in file.symbols:
usage = symb.usages[0]
assert usage.match == pyspark_arg


def test_if_else_reassigment_handling_double(tmpdir) -> None:
content = """
if False:
Expand Down Expand Up @@ -266,3 +284,24 @@ def test_if_else_reassigment_handling_nested_usage(tmpdir) -> None:
second = file.symbols[1]
assert len(first.usages) == 0
assert second.usages[0].match == pyspark_arg


def test_if_else_reassigment_inside_func_with_external_element(tmpdir) -> None:
content = """
PYSPARK="0"
def foo():
if True:
PYSPARK = True
else:
PYSPARK = False
print(PYSPARK)

"""

with get_codebase_session(tmpdir=tmpdir, files={"test.py": content}) as codebase:
file = codebase.get_file("test.py")
funct_call = file.function_calls[0]
pyspark_arg = funct_call.args.children[0]
func = file.get_function("foo")
for assign in func.valid_symbol_names[:-1]:
assign.usages[0] == pyspark_arg
Loading