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
|
r"""*Nonlocal CLI tests for* ``sphobjinv``.
``sphobjinv`` is a toolkit for manipulation and inspection of
Sphinx |objects.inv| files.
**Author**
Brian Skinn (brian.skinn@gmail.com)
**File Created**
20 Mar 2019
**Copyright**
\(c) Brian Skinn 2016-2025
**Source Repository**
http://www.github.com/bskinn/sphobjinv
**Documentation**
https://sphobjinv.readthedocs.io/en/stable
**License**
Code: `MIT License`_
Docs & Docstrings: |CC BY 4.0|_
See |license_txt|_ for full license terms.
**Members**
"""
import json
import re
import pytest
#from stdio_mgr import stdio_mgr
from sphobjinv import Inventory
CLI_TEST_TIMEOUT = 5
p_instance_of = re.compile("^.*instance_of.*$", re.M)
p_inventory = re.compile("^.*nventory.*$", re.I | re.M)
pytestmark = [
pytest.mark.cli,
pytest.mark.nonloc,
pytest.mark.flaky(retries=2, delay=5),
]
@pytest.fixture(scope="module", autouse=True)
def skip_if_no_nonloc(pytestconfig):
"""Skip test if --nonloc not provided.
Auto-applied to all functions in module, since module is nonlocal.
"""
if not pytestconfig.getoption("--nonloc"):
pytest.skip("'--nonloc' not specified") # pragma: no cover
class TestConvert:
"""Test nonlocal CLI convert mode functionality."""
@pytest.mark.timeout(CLI_TEST_TIMEOUT * 4)
def test_cli_convert_from_url_with_dest(
self, scratch_path, misc_info, run_cmdline_test, monkeypatch
):
"""Confirm CLI URL D/L, convert works w/outfile supplied."""
monkeypatch.chdir(scratch_path)
dest_path = scratch_path / (misc_info.FNames.MOD + misc_info.Extensions.DEC)
run_cmdline_test(
[
"convert",
"plain",
"-u",
misc_info.remote_url.format("attrs"),
str(dest_path),
]
)
assert dest_path.is_file()
@pytest.mark.timeout(CLI_TEST_TIMEOUT * 4)
def test_cli_convert_from_url_no_dest(
self, scratch_path, misc_info, run_cmdline_test, monkeypatch
):
"""Confirm CLI URL D/L, convert works w/o outfile supplied."""
monkeypatch.chdir(scratch_path)
dest_path = scratch_path / (misc_info.FNames.INIT + misc_info.Extensions.DEC)
dest_path.unlink()
run_cmdline_test(
["convert", "plain", "-u", misc_info.remote_url.format("attrs")]
)
assert dest_path.is_file()
@pytest.mark.timeout(CLI_TEST_TIMEOUT * 4)
def test_cli_url_in_json(
self, scratch_path, misc_info, run_cmdline_test, monkeypatch
):
"""Confirm URL is present when using CLI URL mode."""
monkeypatch.chdir(scratch_path)
dest_path = scratch_path / (misc_info.FNames.MOD + misc_info.Extensions.JSON)
run_cmdline_test(
[
"convert",
"json",
"-u",
misc_info.remote_url.format("attrs"),
str(dest_path.resolve()),
]
)
d = json.loads(dest_path.read_text())
assert "objects" in d.get("metadata", {}).get("url", {})
@pytest.mark.timeout(CLI_TEST_TIMEOUT * 4)
@pytest.mark.skip(reason="Required dependency 'stdio_mgr' isn't packaged yet.")
def test_clifail_bad_url(self, run_cmdline_test, misc_info, scratch_path):
"""Confirm proper error behavior when a bad URL is passed."""
with stdio_mgr() as (in_, out_, err_):
run_cmdline_test(
[
"convert",
"plain",
"-u",
misc_info.remote_url.format("blarghers"),
str(scratch_path),
],
expect=1,
)
assert "HTTP error: 404 Not Found." in err_.getvalue()
@pytest.mark.timeout(CLI_TEST_TIMEOUT * 4)
@pytest.mark.skip(reason="Required dependency 'stdio_mgr' isn't packaged yet.")
def test_clifail_url_no_leading_http(self, run_cmdline_test, scratch_path):
"""Confirm proper error behavior when a URL w/o leading 'http://' is passed."""
with stdio_mgr() as (in_, out_, err_):
run_cmdline_test(
[
"convert",
"plain",
"-u",
"sphobjinv.readthedocs.io/en/latest",
str(scratch_path),
],
expect=1,
)
assert "file found but inventory could not be loaded" in err_.getvalue()
@pytest.mark.skip(reason="Required dependency 'stdio_mgr' isn't packaged yet.")
def test_cli_json_export_import(
self, res_cmp, scratch_path, misc_info, run_cmdline_test, sphinx_load_test
):
"""Confirm JSON sent to stdout from local source imports ok."""
inv_url = misc_info.remote_url.format("attrs")
mod_path = scratch_path / (misc_info.FNames.MOD + misc_info.Extensions.CMP)
with stdio_mgr() as (in_, out_, err_):
run_cmdline_test(["convert", "json", "-u", inv_url, "-"])
data = out_.getvalue()
with stdio_mgr(data) as (in_, out_, err_):
run_cmdline_test(["convert", "zlib", "-", str(mod_path.resolve())])
assert Inventory(json.loads(data))
assert Inventory(mod_path)
sphinx_load_test(mod_path)
class TestSuggest:
"""Test nonlocal CLI suggest mode functionality."""
@pytest.mark.timeout(CLI_TEST_TIMEOUT * 4)
@pytest.mark.skip(reason="Required dependency 'stdio_mgr' isn't packaged yet.")
def test_cli_suggest_from_url(self, misc_info, run_cmdline_test):
"""Confirm reST-only suggest output works from URL."""
with stdio_mgr() as (in_, out_, err_):
run_cmdline_test(
[
"suggest",
"-u",
misc_info.remote_url.format("attrs"),
"instance",
"-t",
"50",
]
)
assert p_instance_of.search(out_.getvalue())
@pytest.mark.parametrize(
"url",
[
"http://sphobjinv.readthedocs.io/en/v2.0/modules/",
"http://sphobjinv.readthedocs.io/en/v2.0/modules/cmdline.html",
(
"http://sphobjinv.readthedocs.io/en/v2.0/modules/"
"cmdline.html#sphobjinv.cmdline.do_convert"
),
],
)
@pytest.mark.timeout(CLI_TEST_TIMEOUT * 4)
@pytest.mark.skip(reason="Required dependency 'stdio_mgr' isn't packaged yet.")
def test_cli_suggest_from_docset_urls(self, url, run_cmdline_test, check):
"""Confirm reST-only suggest output works from URLs within a docset."""
with stdio_mgr() as (in_, out_, err_):
run_cmdline_test(["suggest", "-u", url, "inventory", "-at", "50"])
check.is_true(p_inventory.search(out_.getvalue()))
check.is_in("LIKELY", err_.getvalue())
check.is_in(
"(http://sphobjinv.readthedocs.io/en/v2.0/, None)", err_.getvalue()
)
@pytest.mark.timeout(CLI_TEST_TIMEOUT * 4)
@pytest.mark.skip(reason="Required dependency 'stdio_mgr' isn't packaged yet.")
def test_cli_suggest_from_typical_objinv_url(self, run_cmdline_test, check):
"""Confirm reST-only suggest works for direct objects.inv URL."""
url = "http://sphobjinv.readthedocs.io/en/v2.0/objects.inv"
with stdio_mgr() as (in_, out_, err_):
run_cmdline_test(["suggest", "-u", url, "inventory", "-at", "50"])
check.is_true(p_inventory.search(out_.getvalue()))
check.is_in("PROBABLY", err_.getvalue())
check.is_in(
"(http://sphobjinv.readthedocs.io/en/v2.0/, None)", err_.getvalue()
)
@pytest.mark.timeout(CLI_TEST_TIMEOUT * 4)
@pytest.mark.skip(reason="Required dependency 'stdio_mgr' isn't packaged yet.")
def test_cli_suggest_from_django_objinv_url(self, run_cmdline_test, check):
"""Confirm reST-only suggest works for direct objects.inv URL."""
url = "https://docs.djangoproject.com/en/4.1/_objects/"
with stdio_mgr() as (in_, out_, err_):
run_cmdline_test(["suggest", "-u", url, "route", "-a"])
check.is_true(re.search("DATABASE_ROUTERS", out_.getvalue()))
check.is_in("Cannot infer intersphinx_mapping", err_.getvalue())
|