1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
# This file is part of Hypothesis, which may be found at
# https://github.com/HypothesisWorks/hypothesis/
#
# Copyright the Hypothesis Authors.
# Individual contributors are listed in AUTHORS.rst and the git log.
#
# This Source Code Form is subject to the terms of the Mozilla Public License,
# v. 2.0. If a copy of the MPL was not distributed with this file, You can
# obtain one at https://mozilla.org/MPL/2.0/.
import subprocess
BEFORE = """
from hypothesis.strategies import complex_numbers, complex_numbers as cn
complex_numbers(min_magnitude=None) # simple call to fix
complex_numbers(min_magnitude=None, max_magnitude=1) # plus arg after
complex_numbers(allow_infinity=False, min_magnitude=None) # plus arg before
cn(min_magnitude=None) # imported as alias
"""
AFTER = BEFORE.replace("None", "0")
_unchanged = """
complex_numbers(min_magnitude=1) # value OK
class Foo:
def complex_numbers(self, **kw): pass
complex_numbers(min_magnitude=None) # defined in a different scope
"""
BEFORE += _unchanged
AFTER += _unchanged
del _unchanged
def run(command, *, cwd=None, input=None):
return subprocess.run(
command,
input=input,
capture_output=True,
shell=True,
text=True,
cwd=cwd,
encoding="utf-8",
)
def test_codemod_single_file(tmp_path):
fname = tmp_path / "mycode.py"
fname.write_text(BEFORE, encoding="utf-8")
result = run("hypothesis codemod mycode.py", cwd=tmp_path)
assert result.returncode == 0
assert fname.read_text(encoding="utf-8") == AFTER
def test_codemod_multiple_files(tmp_path):
# LibCST had some trouble with multiprocessing on Windows
files = [tmp_path / "mycode1.py", tmp_path / "mycode2.py"]
for f in files:
f.write_text(BEFORE, encoding="utf-8")
result = run("hypothesis codemod mycode1.py mycode2.py", cwd=tmp_path)
assert result.returncode == 0
for f in files:
assert f.read_text(encoding="utf-8") == AFTER
def test_codemod_from_stdin():
result = run("hypothesis codemod -", input=BEFORE)
assert result.returncode == 0
assert result.stdout.rstrip() == AFTER.rstrip()
|