mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 08:24:40 +01:00

* Support path completion from path literal * Test path completion when prefix is partial p-string * Update news * Update news * fix test: expect string literal * Support completion of raw-path strings * Resolve raw-string issues when testing on Windows * Simplify p-string prefix checks * Fix test * Update news * fix news: rst * Use raw path string to simplify test * Test path from partial string * Try case sensitive completion
71 lines
2.3 KiB
Python
71 lines
2.3 KiB
Python
import pytest
|
|
from unittest.mock import patch
|
|
import tempfile
|
|
import xonsh.completers.path as xcp
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def xonsh_execer_autouse(xonsh_builtins, xonsh_execer):
|
|
return xonsh_execer
|
|
|
|
|
|
def test_pattern_need_quotes():
|
|
# just make sure the regex compiles
|
|
xcp.PATTERN_NEED_QUOTES.match("")
|
|
|
|
|
|
def test_complete_path(xonsh_builtins):
|
|
xonsh_builtins.__xonsh__.env = {
|
|
"CASE_SENSITIVE_COMPLETIONS": False,
|
|
"GLOB_SORTED": True,
|
|
"SUBSEQUENCE_PATH_COMPLETION": False,
|
|
"FUZZY_PATH_COMPLETION": False,
|
|
"SUGGEST_THRESHOLD": 3,
|
|
"CDPATH": set(),
|
|
}
|
|
xcp.complete_path("[1-0.1]", "[1-0.1]", 0, 7, dict())
|
|
|
|
|
|
@patch("xonsh.completers.path._add_cdpaths")
|
|
def test_cd_path_no_cd(mock_add_cdpaths, xonsh_builtins):
|
|
xonsh_builtins.__xonsh__.env = {
|
|
"CASE_SENSITIVE_COMPLETIONS": False,
|
|
"GLOB_SORTED": True,
|
|
"SUBSEQUENCE_PATH_COMPLETION": False,
|
|
"FUZZY_PATH_COMPLETION": False,
|
|
"SUGGEST_THRESHOLD": 3,
|
|
"CDPATH": ["/"],
|
|
}
|
|
xcp.complete_path("a", "cat a", 4, 5, dict())
|
|
mock_add_cdpaths.assert_not_called()
|
|
|
|
|
|
@pytest.mark.parametrize("quote", ('"', "'"))
|
|
def test_complete_path_when_prefix_is_raw_path_string(quote, xonsh_builtins):
|
|
xonsh_builtins.__xonsh__.env = {
|
|
"CASE_SENSITIVE_COMPLETIONS": True,
|
|
"GLOB_SORTED": True,
|
|
"SUBSEQUENCE_PATH_COMPLETION": False,
|
|
"FUZZY_PATH_COMPLETION": False,
|
|
"SUGGEST_THRESHOLD": 1,
|
|
"CDPATH": set(),
|
|
}
|
|
with tempfile.NamedTemporaryFile(suffix="_dummySuffix") as tmp:
|
|
prefix_file_name = tmp.name.replace("_dummySuffix", "")
|
|
prefix = f"pr{quote}{prefix_file_name}"
|
|
line = f"ls {prefix}"
|
|
out = xcp.complete_path(prefix, line, line.find(prefix), len(line), dict())
|
|
expected = f"pr{quote}{tmp.name}{quote}"
|
|
assert expected == out[0].pop()
|
|
|
|
|
|
@pytest.mark.parametrize("prefix", ("", "r", "p", "pr", "rp"))
|
|
def test_path_from_partial_string(prefix):
|
|
string = "hello"
|
|
quote = "'"
|
|
out = xcp._path_from_partial_string(f"{prefix}{quote}{string}{quote}")
|
|
if "r" in prefix:
|
|
expected = (f"r{quote}{string}{quote}", string, f"{prefix}{quote}", quote)
|
|
else:
|
|
expected = (f"{quote}{string}{quote}", string, f"{prefix}{quote}", quote)
|
|
assert out == expected
|