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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420
|
"""Tests the xonsh builtins."""
import os
import re
import shutil
import types
from ast import AST, Expression, Interactive, Module
from pathlib import Path
import pytest
from xonsh.built_ins import (
call_macro,
convert_macro_arg,
ensure_list_of_strs,
enter_macro,
expand_path,
helper,
in_macro_call,
list_of_list_of_strs_outer_product,
list_of_strs_or_callables,
pathsearch,
regexsearch,
reglob,
superhelper,
)
from xonsh.environ import Env
from xonsh.pytest.tools import skip_if_on_windows
HOME_PATH = os.path.expanduser("~")
@pytest.fixture(autouse=True)
def xonsh_execer_autouse(xonsh_execer):
return xonsh_execer
@pytest.mark.parametrize("testfile", reglob("test_.*"))
def test_reglob_tests(testfile):
assert testfile.startswith("test_")
@pytest.fixture
def home_env(xession):
"""Set `__xonsh__.env ` to a new Env instance on `xonsh_builtins`"""
xession.env["HOME"] = HOME_PATH
return xession
@skip_if_on_windows
def test_repath_backslash(home_env):
exp = os.listdir(HOME_PATH)
exp = {p for p in exp if re.match(r"\w\w.*", p)}
exp = {os.path.join(HOME_PATH, p) for p in exp}
obs = set(pathsearch(regexsearch, r"~/\w\w.*"))
assert exp == obs
@skip_if_on_windows
def test_repath_HOME_PATH_itself(home_env):
exp = HOME_PATH
obs = pathsearch(regexsearch, "~")
assert 1 == len(obs)
assert exp == obs[0]
@skip_if_on_windows
def test_repath_HOME_PATH_contents(home_env):
exp = os.listdir(HOME_PATH)
exp = {os.path.join(HOME_PATH, p) for p in exp}
obs = set(pathsearch(regexsearch, "~/.*"))
assert exp == obs
@skip_if_on_windows
def test_repath_HOME_PATH_var(home_env):
exp = HOME_PATH
obs = pathsearch(regexsearch, "$HOME")
assert 1 == len(obs)
assert exp == obs[0]
@skip_if_on_windows
def test_repath_HOME_PATH_var_brace(home_env):
exp = HOME_PATH
obs = pathsearch(regexsearch, '${"HOME"}')
assert 1 == len(obs)
assert exp == obs[0]
# helper
def check_repath(path, pattern):
base_testdir = Path("re_testdir")
testdir = base_testdir / path
testdir.mkdir(parents=True)
try:
obs = regexsearch(str(base_testdir / pattern))
assert [str(testdir)] == obs
finally:
shutil.rmtree(base_testdir)
@skip_if_on_windows
@pytest.mark.parametrize(
"path, pattern",
[
("test*1/model", ".*/model"),
("hello/test*1/model", "hello/.*/model"),
],
)
def test_repath_containing_asterisk(path, pattern):
check_repath(path, pattern)
@pytest.mark.parametrize(
"path, pattern",
[
("test+a/model", ".*/model"),
("hello/test+1/model", "hello/.*/model"),
],
)
def test_repath_containing_plus_sign(path, pattern):
check_repath(path, pattern)
def test_helper_int(home_env):
helper(int, "int")
def test_helper_helper(home_env):
helper(helper, "helper")
def test_helper_env(home_env):
helper(Env, "Env")
def test_superhelper_int(home_env):
superhelper(int, "int")
def test_superhelper_helper(home_env):
superhelper(helper, "helper")
def test_superhelper_env(home_env):
superhelper(Env, "Env")
@pytest.mark.parametrize(
"exp, inp", [(["yo"], "yo"), (["yo"], ["yo"]), (["42"], 42), (["42"], [42])]
)
def test_ensure_list_of_strs(exp, inp):
obs = ensure_list_of_strs(inp)
assert exp == obs
f = lambda x: 20
@pytest.mark.parametrize(
"exp, inp",
[
(["yo"], "yo"),
(["yo"], ["yo"]),
(["42"], 42),
(["42"], [42]),
([f], f),
([f], [f]),
],
)
def test_list_of_strs_or_callables(exp, inp):
obs = list_of_strs_or_callables(inp)
assert exp == obs
@pytest.mark.parametrize(
"inp, exp",
[
(["x", ["y", "z"]], ["xy", "xz"]),
(["x", ["y", "z"], ["a"]], ["xya", "xza"]),
([["y", "z"], ["a", "b"]], ["ya", "yb", "za", "zb"]),
],
)
def test_list_of_list_of_strs_outer_product(xession, inp, exp):
obs = list_of_list_of_strs_outer_product(inp)
assert exp == obs
@pytest.mark.parametrize(
"s",
[
"~",
"~/",
"x=~/place",
"x=one:~/place",
"x=one:~/place:~/yo",
"x=~/one:~/place:~/yo",
],
)
def test_expand_path(s, home_env):
if os.sep != "/":
s = s.replace("/", os.sep)
if os.pathsep != ":":
s = s.replace(":", os.pathsep)
assert expand_path(s) == s.replace("~", HOME_PATH)
@pytest.mark.parametrize("kind", [str, "s", "S", "str", "string"])
def test_convert_macro_arg_str(kind):
raw_arg = "value"
arg = convert_macro_arg(raw_arg, kind, None, None)
assert arg is raw_arg
@pytest.mark.parametrize("kind", [AST, "a", "Ast"])
def test_convert_macro_arg_ast(kind):
raw_arg = "42"
arg = convert_macro_arg(raw_arg, kind, {}, None)
assert isinstance(arg, AST)
@pytest.mark.parametrize("kind", [types.CodeType, compile, "c", "code", "compile"])
def test_convert_macro_arg_code(kind):
raw_arg = "42"
arg = convert_macro_arg(raw_arg, kind, {}, None)
assert isinstance(arg, types.CodeType)
@pytest.mark.parametrize("kind", [eval, "v", "eval"])
def test_convert_macro_arg_eval(kind):
# literals
raw_arg = "42"
arg = convert_macro_arg(raw_arg, kind, {}, None)
assert arg == 42
# exprs
raw_arg = "x + 41"
arg = convert_macro_arg(raw_arg, kind, {}, {"x": 1})
assert arg == 42
@pytest.mark.parametrize("kind", [exec, "x", "exec"])
def test_convert_macro_arg_exec(kind):
# at global scope
raw_arg = "def f(x, y):\n return x + y"
glbs = {}
arg = convert_macro_arg(raw_arg, kind, glbs, None)
assert arg is None
assert "f" in glbs
assert glbs["f"](1, 41) == 42
# at local scope
raw_arg = "def g(z):\n return x + z\ny += 42"
glbs = {"x": 40}
locs = {"y": 1}
arg = convert_macro_arg(raw_arg, kind, glbs, locs)
assert arg is None
assert "g" in locs
assert locs["g"](1) == 41
assert "y" in locs
assert locs["y"] == 43
@pytest.mark.parametrize("kind", [type, "t", "type"])
def test_convert_macro_arg_type(kind):
# literals
raw_arg = "42"
arg = convert_macro_arg(raw_arg, kind, {}, None)
assert arg is int
# exprs
raw_arg = "x + 41"
arg = convert_macro_arg(raw_arg, kind, {}, {"x": 1})
assert arg is int
def test_in_macro_call():
def f():
pass
with in_macro_call(f, True, True):
assert f.macro_globals
assert f.macro_locals
assert not hasattr(f, "macro_globals")
assert not hasattr(f, "macro_locals")
@pytest.mark.parametrize("arg", ["x", "42", "x + y"])
def test_call_macro_str(arg):
def f(x: str):
return x
rtn = call_macro(f, [arg], None, None)
assert rtn is arg
@pytest.mark.parametrize("arg", ["x", "42", "x + y"])
def test_call_macro_ast(arg):
def f(x: AST):
return x
rtn = call_macro(f, [arg], {}, None)
assert isinstance(rtn, AST)
@pytest.mark.parametrize("arg", ["x", "42", "x + y"])
def test_call_macro_code(arg):
def f(x: compile):
return x
rtn = call_macro(f, [arg], {}, None)
assert isinstance(rtn, types.CodeType)
@pytest.mark.parametrize("arg", ["x", "42", "x + y"])
def test_call_macro_eval(arg):
def f(x: eval):
return x
rtn = call_macro(f, [arg], {"x": 42, "y": 0}, None)
assert rtn == 42
@pytest.mark.parametrize(
"arg", ["if y:\n pass", "if 42:\n pass", "if x + y:\n pass"]
)
def test_call_macro_exec(arg):
def f(x: exec):
return x
rtn = call_macro(f, [arg], {"x": 42, "y": 0}, None)
assert rtn is None
@pytest.mark.parametrize("arg", ["x", "42", "x + y"])
def test_call_macro_raw_arg(arg):
def f(x: str):
return x
rtn = call_macro(f, ["*", arg], {"x": 42, "y": 0}, None)
assert rtn == 42
@pytest.mark.parametrize("arg", ["x", "42", "x + y"])
def test_call_macro_raw_kwarg(arg):
def f(x: str):
return x
rtn = call_macro(f, ["*", "x=" + arg], {"x": 42, "y": 0}, None)
assert rtn == 42
@pytest.mark.parametrize("arg", ["x", "42", "x + y"])
def test_call_macro_raw_kwargs(arg):
def f(x: str):
return x
rtn = call_macro(f, ["*", '**{"x" :' + arg + "}"], {"x": 42, "y": 0}, None)
assert rtn == 42
def test_call_macro_ast_eval_expr():
def f(x: ("ast", "eval")):
return x
rtn = call_macro(f, ["x == 5"], {}, None)
assert isinstance(rtn, Expression)
def test_call_macro_ast_single_expr():
def f(x: ("ast", "single")):
return x
rtn = call_macro(f, ["x == 5"], {}, None)
assert isinstance(rtn, Interactive)
def test_call_macro_ast_exec_expr():
def f(x: ("ast", "exec")):
return x
rtn = call_macro(f, ["x == 5"], {}, None)
assert isinstance(rtn, Module)
def test_call_macro_ast_eval_statement():
def f(x: ("ast", "eval")):
return x
try:
call_macro(f, ["x = 5"], {}, None)
assert False
except SyntaxError:
# It doesn't make sense to pass a statement to
# something that expects to be evaled
assert True
else:
assert False
def test_call_macro_ast_single_statement():
def f(x: ("ast", "single")):
return x
rtn = call_macro(f, ["x = 5"], {}, None)
assert isinstance(rtn, Interactive)
def test_call_macro_ast_exec_statement():
def f(x: ("ast", "exec")):
return x
rtn = call_macro(f, ["x = 5"], {}, None)
assert isinstance(rtn, Module)
def test_enter_macro():
obj = lambda: None
rtn = enter_macro(obj, "wakka", True, True)
assert obj is rtn
assert obj.macro_block == "wakka"
assert obj.macro_globals
assert obj.macro_locals
|