-
Notifications
You must be signed in to change notification settings - Fork 201
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
Introduce plugin for migrating scalatest #572
base: master
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,42 +1,69 @@ | ||||||
from polyglot_piranha import Rule, OutgoingEdges, RuleGraph, PiranhaArguments, execute_piranha | ||||||
from polyglot_piranha import ( | ||||||
Rule, | ||||||
OutgoingEdges, | ||||||
RuleGraph, | ||||||
PiranhaArguments, | ||||||
execute_piranha, | ||||||
) | ||||||
|
||||||
|
||||||
def replace_imports( | ||||||
target_new_types: dict[str, str], search_heuristic: str, path_to_codebase: str, | ||||||
dry_run = False | ||||||
target_new_types: dict[str, str], | ||||||
search_heuristic: str, | ||||||
path_to_codebase: str, | ||||||
dry_run=False, | ||||||
): | ||||||
"""This function replaces the imports of the target types with the new types. | ||||||
The search heuristic is used to find the files that contain the target types. | ||||||
|
||||||
Args: | ||||||
target_new_types (dict[str, str]): A dictionary from target type to new type (fully qualified names) | ||||||
search_heuristic (str): The search heuristic to find the files that contain the target types | ||||||
path_to_codebase (str): The path to the codebase | ||||||
dry_run (bool, optional): True if the changes should not be written to disk. Defaults to False. | ||||||
|
||||||
Returns: | ||||||
_type_: A list of PiranhaOutput objects | ||||||
""" | ||||||
find_relevant_files = Rule( | ||||||
name="find_relevant_files", | ||||||
query="((identifier) @x (#eq? @x \"@search_heuristic\"))", | ||||||
query='((identifier) @x (#eq? @x "@search_heuristic"))', | ||||||
holes={"search_heuristic"}, | ||||||
) | ||||||
e1 = OutgoingEdges("find_relevant_files", to=[f"update_import"], scope="File") | ||||||
find_relevant_files_andThen_update_import = OutgoingEdges( | ||||||
"find_relevant_files", to=["update_import"], scope="File" | ||||||
) | ||||||
|
||||||
rules = [find_relevant_files] | ||||||
edges = [e1] | ||||||
edges = [find_relevant_files_andThen_update_import] | ||||||
|
||||||
for target_type, new_type in target_new_types.items(): | ||||||
rs, es = replace_import_rules_edges(target_type, new_type) | ||||||
rs, es = replace_import_rules_and_edges(target_type, new_type) | ||||||
rules.extend(rs) | ||||||
edges.extend(es) | ||||||
|
||||||
rule_graph = RuleGraph(rules=rules, edges=edges) | ||||||
|
||||||
args= PiranhaArguments( | ||||||
args = PiranhaArguments( | ||||||
language="scala", | ||||||
path_to_codebase=path_to_codebase, | ||||||
rule_graph=rule_graph, | ||||||
substitutions={"search_heuristic": f"{search_heuristic}"}, | ||||||
dry_run=dry_run | ||||||
dry_run=dry_run, | ||||||
) | ||||||
|
||||||
return execute_piranha(args) | ||||||
|
||||||
|
||||||
|
||||||
def replace_import_rules_edges( | ||||||
def replace_import_rules_and_edges( | ||||||
target_qualified_type_name: str, new_qualified_type_name: str | ||||||
) -> (list[Rule], list[OutgoingEdges]): | ||||||
|
||||||
"""This function generates the rules and edges to replace the imports of the target type with the new type. | ||||||
It supports both simple and nested imports. While the simple imports are replaced directly, the nested imports are deleted and the new type is imported (as a simple non-nested import). | ||||||
Assume that the target type is "a.b.c.d" and the new type is "x.y.z". Then the following rules are generated: | ||||||
import a.b.c.d -> import x.y.z | ||||||
import a.b.c.{d, e} -> import x.y.z \n import a.b.c.{d} | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
I believe you meant |
||||||
""" | ||||||
name_components = target_qualified_type_name.split(".") | ||||||
type_name = name_components[-1] | ||||||
|
||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,11 @@ | ||
from logging import debug, error | ||
from logging import error | ||
from pathlib import Path | ||
|
||
from os.path import join, basename | ||
from os import listdir | ||
|
||
from update_imports import update_imports | ||
# from update_imports import update_imports | ||
|
||
def test_update_imports(): | ||
summary = update_imports("plugins/scala_test/tests/resources/input/", dry_run=True) | ||
summary = update_imports("plugins/scala_test/tests/resources/input/", "3.2.2", dry_run=True) | ||
assert is_as_expected("plugins/scala_test/tests/resources/", summary) | ||
|
||
def is_as_expected(path_to_scenario, output_summary): | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Wonder if there is a clean way to avoid the duplication between this code and the top level test harness logic. Maybe a shared test utilities library? Not a big deal, but if every plugin will have it's own copy of this code that might be a pain when you need to update something. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I agree. I wanted to that . I will eventually extract out a |
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This needs a description/explanation of what this is, before the Usage instructions.
Would also be a good point to note if this is a WIP or already functional and for which cases.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.