All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
4 from contextlib import contextmanager
5 from functools import partial
6 from pathlib import Path
7 from typing import Any, Iterator, List, Optional, Tuple
10 from black.debug import DebugVisitor
11 from black.mode import TargetVersion
12 from black.output import diff, err, out
14 THIS_DIR = Path(__file__).parent
15 DATA_DIR = THIS_DIR / "data"
16 PROJECT_ROOT = THIS_DIR.parent
17 EMPTY_LINE = "# EMPTY LINE WITH WHITESPACE" + " (this comment will be removed)"
18 DETERMINISTIC_HEADER = "[Deterministic header]"
27 DEFAULT_MODE = black.Mode()
28 ff = partial(black.format_file_in_place, mode=DEFAULT_MODE, fast=True)
29 fs = partial(black.format_str, mode=DEFAULT_MODE)
32 def _assert_format_equal(expected: str, actual: str) -> None:
33 if actual != expected and not os.environ.get("SKIP_AST_PRINT"):
34 bdv: DebugVisitor[Any]
35 out("Expected tree:", fg="green")
37 exp_node = black.lib2to3_parse(expected)
39 list(bdv.visit(exp_node))
40 except Exception as ve:
42 out("Actual tree:", fg="red")
44 exp_node = black.lib2to3_parse(actual)
46 list(bdv.visit(exp_node))
47 except Exception as ve:
50 if actual != expected:
51 out(diff(expected, actual, "expected", "actual"))
53 assert actual == expected
59 mode: black.Mode = DEFAULT_MODE,
62 minimum_version: Optional[Tuple[int, int]] = None,
64 """Convenience function to check that Black formats as expected.
66 You can pass @minimum_version if you're passing code with newer syntax to guard
67 safety guards so they don't just crash with a SyntaxError. Please note this is
68 separate from TargetVerson Mode configuration.
70 actual = black.format_str(source, mode=mode)
71 _assert_format_equal(expected, actual)
72 # It's not useful to run safety checks if we're expecting no changes anyway. The
73 # assertion right above will raise if reality does actually make changes. This just
74 # avoids wasted CPU cycles.
75 if not fast and source != expected:
76 # Unfortunately the AST equivalence check relies on the built-in ast module
77 # being able to parse the code being formatted. This doesn't always work out
78 # when checking modern code on older versions.
79 if minimum_version is None or sys.version_info >= minimum_version:
80 black.assert_equivalent(source, actual)
81 black.assert_stable(source, actual, mode=mode)
84 def dump_to_stderr(*output: str) -> str:
85 return "\n" + "\n".join(output) + "\n"
88 class BlackBaseTestCase(unittest.TestCase):
89 def assertFormatEqual(self, expected: str, actual: str) -> None:
90 _assert_format_equal(expected, actual)
93 def read_data(name: str, data: bool = True) -> Tuple[str, str]:
94 """read_data('test_name') -> 'input', 'output'"""
95 if not name.endswith((".py", ".pyi", ".out", ".diff")):
97 base_dir = DATA_DIR if data else PROJECT_ROOT
98 return read_data_from_file(base_dir / name)
101 def read_data_from_file(file_name: Path) -> Tuple[str, str]:
102 with open(file_name, "r", encoding="utf8") as test:
103 lines = test.readlines()
104 _input: List[str] = []
105 _output: List[str] = []
108 line = line.replace(EMPTY_LINE, "")
109 if line.rstrip() == "# output":
114 if _input and not _output:
115 # If there's no output marker, treat the entire file as already pre-formatted.
117 return "".join(_input).strip() + "\n", "".join(_output).strip() + "\n"
121 def change_directory(path: Path) -> Iterator[None]:
122 """Context manager to temporarily chdir to a different directory."""
123 previous_dir = os.getcwd()
128 os.chdir(previous_dir)