mirror of
https://github.com/httpie/cli.git
synced 2024-11-08 17:04:50 +01:00
105 lines
3.7 KiB
Python
105 lines
3.7 KiB
Python
from pathlib import Path
|
|
|
|
import pytest
|
|
from _pytest.monkeypatch import MonkeyPatch
|
|
|
|
from httpie.compat import is_windows
|
|
from httpie.config import (
|
|
Config, DEFAULT_CONFIG_DIRNAME, DEFAULT_RELATIVE_LEGACY_CONFIG_DIR,
|
|
DEFAULT_RELATIVE_XDG_CONFIG_HOME, DEFAULT_WINDOWS_CONFIG_DIR,
|
|
ENV_HTTPIE_CONFIG_DIR, ENV_XDG_CONFIG_HOME, get_default_config_dir,
|
|
)
|
|
from utils import HTTP_OK, MockEnvironment, http
|
|
|
|
|
|
def test_default_options(httpbin):
|
|
env = MockEnvironment()
|
|
env.config['default_options'] = ['--form']
|
|
env.config.save()
|
|
r = http(httpbin.url + '/post', 'foo=bar', env=env)
|
|
assert r.json['form'] == {
|
|
"foo": "bar"
|
|
}
|
|
|
|
|
|
def test_config_file_not_valid(httpbin):
|
|
env = MockEnvironment()
|
|
env.create_temp_config_dir()
|
|
with (env.config_dir / Config.FILENAME).open('w') as f:
|
|
f.write('{invalid json}')
|
|
r = http(httpbin + '/get', env=env)
|
|
assert HTTP_OK in r
|
|
assert 'http: warning' in r.stderr
|
|
assert 'invalid config file' in r.stderr
|
|
|
|
|
|
@pytest.mark.skipif(is_windows, reason='cannot chmod 000 on Windows')
|
|
def test_config_file_inaccessible(httpbin):
|
|
env = MockEnvironment()
|
|
env.create_temp_config_dir()
|
|
config_path = env.config_dir / Config.FILENAME
|
|
assert not config_path.exists()
|
|
config_path.touch(0o000)
|
|
assert config_path.exists()
|
|
r = http(httpbin + '/get', env=env)
|
|
assert HTTP_OK in r
|
|
assert 'http: warning' in r.stderr
|
|
assert 'cannot read config file' in r.stderr
|
|
|
|
|
|
def test_default_options_overwrite(httpbin):
|
|
env = MockEnvironment()
|
|
env.config['default_options'] = ['--form']
|
|
env.config.save()
|
|
r = http('--json', httpbin.url + '/post', 'foo=bar', env=env)
|
|
assert r.json['json'] == {
|
|
"foo": "bar"
|
|
}
|
|
|
|
|
|
@pytest.mark.skipif(is_windows, reason='XDG_CONFIG_HOME needs *nix')
|
|
def test_explicit_xdg_config_home(monkeypatch: MonkeyPatch, tmp_path: Path):
|
|
home_dir = tmp_path
|
|
monkeypatch.delenv(ENV_HTTPIE_CONFIG_DIR, raising=False)
|
|
monkeypatch.setenv('HOME', str(home_dir))
|
|
custom_xdg_config_home = home_dir / 'custom_xdg_config_home'
|
|
monkeypatch.setenv(ENV_XDG_CONFIG_HOME, str(custom_xdg_config_home))
|
|
expected_config_dir = custom_xdg_config_home / DEFAULT_CONFIG_DIRNAME
|
|
assert get_default_config_dir() == expected_config_dir
|
|
|
|
|
|
@pytest.mark.skipif(is_windows, reason='XDG_CONFIG_HOME needs *nix')
|
|
def test_default_xdg_config_home(monkeypatch: MonkeyPatch, tmp_path: Path):
|
|
home_dir = tmp_path
|
|
monkeypatch.delenv(ENV_HTTPIE_CONFIG_DIR, raising=False)
|
|
monkeypatch.delenv(ENV_XDG_CONFIG_HOME, raising=False)
|
|
monkeypatch.setenv('HOME', str(home_dir))
|
|
expected_config_dir = (
|
|
home_dir
|
|
/ DEFAULT_RELATIVE_XDG_CONFIG_HOME
|
|
/ DEFAULT_CONFIG_DIRNAME
|
|
)
|
|
assert get_default_config_dir() == expected_config_dir
|
|
|
|
|
|
@pytest.mark.skipif(is_windows, reason='legacy config dir needs *nix')
|
|
def test_legacy_config_dir(monkeypatch: MonkeyPatch, tmp_path: Path):
|
|
home_dir = tmp_path
|
|
monkeypatch.delenv(ENV_HTTPIE_CONFIG_DIR, raising=False)
|
|
monkeypatch.setenv('HOME', str(home_dir))
|
|
legacy_config_dir = home_dir / DEFAULT_RELATIVE_LEGACY_CONFIG_DIR
|
|
legacy_config_dir.mkdir()
|
|
assert get_default_config_dir() == legacy_config_dir
|
|
|
|
|
|
def test_custom_config_dir(monkeypatch: MonkeyPatch, tmp_path: Path):
|
|
httpie_config_dir = tmp_path / 'custom/directory'
|
|
monkeypatch.setenv(ENV_HTTPIE_CONFIG_DIR, str(httpie_config_dir))
|
|
assert get_default_config_dir() == httpie_config_dir
|
|
|
|
|
|
@pytest.mark.skipif(not is_windows, reason='windows-only')
|
|
def test_windows_config_dir(monkeypatch: MonkeyPatch):
|
|
monkeypatch.delenv(ENV_HTTPIE_CONFIG_DIR, raising=False)
|
|
assert get_default_config_dir() == DEFAULT_WINDOWS_CONFIG_DIR
|