mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 16:34:47 +01:00

* refactor: remove usage of global variables in abbrevs.py * chore: add flake8-mutable to prevent mutable defaults * fix: abbrevs expand test * refactor: add xonsh session singleton * refactor: fix circular errors when using xonshSession as singleton * refactor: remove black magicked builtin attributes * style: black format tests as well * refactor: update tests to use xonsh-session singleton * refactor: update abbrevs to not use builtins * test: remove DummyCommandsCache and patch orig class * fix: failing test_command_completers * test: use monkeypatch to update xession fixture * fix: failing test_pipelines * fix: failing test_main * chore: run test suit as single invocation * test: fix tests/test_xonsh.xsh * refactor: remove builtins from docs/conf.py * fix: mypy error in jobs * fix: test error from test_main * test: close xession error in test_command_completers * chore: use pytest-cov for reporting coverage this will include subprocess calls, and will increase coverage * style:
115 lines
2.8 KiB
Python
115 lines
2.8 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""Testing dirstack"""
|
|
from __future__ import unicode_literals, print_function
|
|
|
|
from contextlib import contextmanager
|
|
import os
|
|
|
|
import pytest # noqa F401
|
|
|
|
from xonsh import dirstack
|
|
from xonsh.environ import Env
|
|
|
|
|
|
HERE = os.path.abspath(os.path.dirname(__file__))
|
|
PARENT = os.path.dirname(HERE)
|
|
|
|
|
|
@contextmanager
|
|
def chdir(adir):
|
|
old_dir = os.getcwd()
|
|
os.chdir(adir)
|
|
yield
|
|
os.chdir(old_dir)
|
|
|
|
|
|
def test_simple(xession):
|
|
xession.env = Env(CDPATH=PARENT, PWD=PARENT)
|
|
with chdir(PARENT):
|
|
assert os.getcwd() != HERE
|
|
dirstack.cd(["tests"])
|
|
assert os.getcwd() == HERE
|
|
|
|
|
|
def test_cdpath_simple(xession):
|
|
xession.env = Env(CDPATH=PARENT, PWD=HERE)
|
|
with chdir(os.path.normpath("/")):
|
|
assert os.getcwd() != HERE
|
|
dirstack.cd(["tests"])
|
|
assert os.getcwd() == HERE
|
|
|
|
|
|
def test_cdpath_collision(xession):
|
|
xession.env = Env(CDPATH=PARENT, PWD=HERE)
|
|
sub_tests = os.path.join(HERE, "tests")
|
|
if not os.path.exists(sub_tests):
|
|
os.mkdir(sub_tests)
|
|
with chdir(HERE):
|
|
assert os.getcwd() == HERE
|
|
dirstack.cd(["tests"])
|
|
assert os.getcwd() == os.path.join(HERE, "tests")
|
|
|
|
|
|
def test_cdpath_expansion(xession):
|
|
xession.env = Env(HERE=HERE, CDPATH=("~", "$HERE"))
|
|
test_dirs = (
|
|
os.path.join(HERE, "xonsh-test-cdpath-here"),
|
|
os.path.expanduser("~/xonsh-test-cdpath-home"),
|
|
)
|
|
try:
|
|
for d in test_dirs:
|
|
if not os.path.exists(d):
|
|
os.mkdir(d)
|
|
assert os.path.exists(
|
|
dirstack._try_cdpath(d)
|
|
), "dirstack._try_cdpath: could not resolve {0}".format(d)
|
|
finally:
|
|
for d in test_dirs:
|
|
if os.path.exists(d):
|
|
os.rmdir(d)
|
|
|
|
|
|
def test_cdpath_events(xession, tmpdir):
|
|
xession.env = Env(CDPATH=PARENT, PWD=os.getcwd())
|
|
target = str(tmpdir)
|
|
|
|
ev = None
|
|
|
|
@xession.builtins.events.on_chdir
|
|
def handler(olddir, newdir, **kw):
|
|
nonlocal ev
|
|
ev = olddir, newdir
|
|
|
|
old_dir = os.getcwd()
|
|
try:
|
|
dirstack.cd([target])
|
|
except Exception:
|
|
raise
|
|
else:
|
|
assert (old_dir, target) == ev
|
|
finally:
|
|
# Use os.chdir() here so dirstack.cd() doesn't fire events (or fail again)
|
|
os.chdir(old_dir)
|
|
|
|
|
|
def test_cd_autopush(xession, tmpdir):
|
|
xession.env = Env(CDPATH=PARENT, PWD=os.getcwd(), AUTO_PUSHD=True)
|
|
target = str(tmpdir)
|
|
|
|
old_dir = os.getcwd()
|
|
old_ds_size = len(dirstack.DIRSTACK)
|
|
|
|
assert target != old_dir
|
|
|
|
try:
|
|
dirstack.cd([target])
|
|
assert target == os.getcwd()
|
|
assert old_ds_size + 1 == len(dirstack.DIRSTACK)
|
|
dirstack.popd([])
|
|
except Exception:
|
|
raise
|
|
finally:
|
|
while len(dirstack.DIRSTACK) > old_ds_size:
|
|
dirstack.popd([])
|
|
|
|
assert old_dir == os.getcwd()
|