forked from extern/httpie-cli
4f1c9441c5
* Fix encoding error with non-prettified encoded responses
Removed `--format-option response.as` an promote `--response-as`: using
the format option would be misleading as it is now also used by non-prettified
responses.
* Encoding refactoring
* split --response-as into --response-mime and --response-charset
* add support for Content-Type charset for requests printed to terminal
* add support charset detection for requests printed to terminal without a Content-Type charset
* etc.
* `test_unicode.py` → `test_encoding.py`
* Drop sequence length check
* Clean-up tests
* [skip ci] Tweaks
* Use the compatible release clause for `charset_normalizer` requirement
Cf. https://www.python.org/dev/peps/pep-0440/#version-specifiers
* Clean-up
* Partially revert d52a4833e4
* Changelog
* Tweak tests
* [skip ci] Better test name
* Cleanup tests and add request body charset detection
* More test suite cleanups
* Cleanup
* Fix code style in test
* Improve detect_encoding() docstring
* Uniformize pytest.mark.parametrize() calls
* [skip ci] Comment out TODOs (will be tackled in a specific PR)
Co-authored-by: Jakub Roztocil <jakub@roztocil.co>
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.encoding import UTF8
|
|
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()
|
|
(env.config_dir / Config.FILENAME).write_text('{invalid json}', encoding=UTF8)
|
|
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
|