test_ok2/testing/test_argcomplete.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

98 lines
3.1 KiB
Python
Raw Normal View History

# mypy: allow-untyped-defs
from pathlib import Path
2017-12-27 11:47:26 +08:00
import subprocess
import sys
from _pytest.monkeypatch import MonkeyPatch
import pytest
# Test for _argcomplete but not specific for any application.
def equal_with_bash(prefix, ffc, fc, out=None):
res = ffc(prefix)
res_bash = set(fc(prefix))
retval = set(res) == res_bash
if out:
2020-10-03 04:16:22 +08:00
out.write(f"equal_with_bash({prefix}) {retval} {res}\n")
if not retval:
2018-05-23 22:48:46 +08:00
out.write(" python - bash: %s\n" % (set(res) - res_bash))
out.write(" bash - python: %s\n" % (res_bash - set(res)))
return retval
2018-05-23 22:48:46 +08:00
# Copied from argcomplete.completers as import from there.
# Also pulls in argcomplete.__init__ which opens filedescriptor 9.
# This gives an OSError at the end of testrun.
def _wrapcall(*args, **kargs):
try:
return subprocess.check_output(*args, **kargs).decode().splitlines()
2017-12-27 11:47:26 +08:00
except subprocess.CalledProcessError:
return []
2019-06-03 06:32:00 +08:00
class FilesCompleter:
"""File completer class, optionally takes a list of allowed extensions."""
def __init__(self, allowednames=(), directories=True):
# Fix if someone passes in a string instead of a list
if type(allowednames) is str:
allowednames = [allowednames]
2018-05-23 22:48:46 +08:00
self.allowednames = [x.lstrip("*").lstrip(".") for x in allowednames]
self.directories = directories
def __call__(self, prefix, **kwargs):
completion = []
if self.allowednames:
if self.directories:
2020-10-03 04:16:22 +08:00
files = _wrapcall(["bash", "-c", f"compgen -A directory -- '{prefix}'"])
2018-05-23 22:48:46 +08:00
completion += [f + "/" for f in files]
for x in self.allowednames:
2018-05-23 22:48:46 +08:00
completion += _wrapcall(
2020-10-03 04:16:22 +08:00
["bash", "-c", f"compgen -A file -X '!*.{x}' -- '{prefix}'"]
2018-05-23 22:48:46 +08:00
)
else:
2020-10-03 04:16:22 +08:00
completion += _wrapcall(["bash", "-c", f"compgen -A file -- '{prefix}'"])
2020-10-03 04:16:22 +08:00
anticomp = _wrapcall(["bash", "-c", f"compgen -A directory -- '{prefix}'"])
completion = list(set(completion) - set(anticomp))
if self.directories:
2018-05-23 22:48:46 +08:00
completion += [f + "/" for f in anticomp]
return completion
2019-06-03 06:32:00 +08:00
class TestArgComplete:
@pytest.mark.skipif("sys.platform in ('win32', 'darwin')")
def test_compare_with_compgen(
self, tmp_path: Path, monkeypatch: MonkeyPatch
) -> None:
from _pytest._argcomplete import FastFilesCompleter
2018-05-23 22:48:46 +08:00
ffc = FastFilesCompleter()
fc = FilesCompleter()
monkeypatch.chdir(tmp_path)
assert equal_with_bash("", ffc, fc, out=sys.stdout)
tmp_path.cwd().joinpath("data").touch()
for x in ["d", "data", "doesnotexist", ""]:
assert equal_with_bash(x, ffc, fc, out=sys.stdout)
@pytest.mark.skipif("sys.platform in ('win32', 'darwin')")
def test_remove_dir_prefix(self):
"""This is not compatible with compgen but it is with bash itself: ls /usr/<TAB>."""
from _pytest._argcomplete import FastFilesCompleter
2018-05-23 22:48:46 +08:00
ffc = FastFilesCompleter()
fc = FilesCompleter()
2018-05-23 22:48:46 +08:00
for x in "/usr/".split():
2017-12-27 11:47:26 +08:00
assert not equal_with_bash(x, ffc, fc, out=sys.stdout)