forked from extern/httpie-cli
a49774d3ab
This extends the `AuthPlugin` API by the following attributes: * `auth_require`: set to `False` to make `--auth, -a` optional * `auth_parse`: set to `False` to disable `username:password` parsing (access the raw value passed to `-a` via `self.raw_auth`). * `prompt_password`: set to`False` to disable password prompt when no password provided (only relevant when `auth_parse == True`) These changes should be 100% backwards-compatible. What needs more testing is auth support in sessions. Close #433 Close #431 Close #378 Ping teracyhq/httpie-jwt-auth#3
65 lines
2.1 KiB
Python
65 lines
2.1 KiB
Python
"""HTTP authentication-related tests."""
|
|
import mock
|
|
import pytest
|
|
|
|
from utils import http, add_auth, HTTP_OK, TestEnvironment
|
|
import httpie.input
|
|
import httpie.cli
|
|
|
|
|
|
def test_basic_auth(httpbin_both):
|
|
r = http('--auth=user:password',
|
|
'GET', httpbin_both + '/basic-auth/user/password')
|
|
assert HTTP_OK in r
|
|
assert r.json == {'authenticated': True, 'user': 'user'}
|
|
|
|
|
|
@pytest.mark.parametrize('argument_name', ['--auth-type', '-A'])
|
|
def test_digest_auth(httpbin_both, argument_name):
|
|
r = http(argument_name + '=digest', '--auth=user:password',
|
|
'GET', httpbin_both.url + '/digest-auth/auth/user/password')
|
|
assert HTTP_OK in r
|
|
assert r.json == {'authenticated': True, 'user': 'user'}
|
|
|
|
|
|
@mock.patch('httpie.input.AuthCredentials._getpass',
|
|
new=lambda self, prompt: 'password')
|
|
def test_password_prompt(httpbin):
|
|
r = http('--auth', 'user',
|
|
'GET', httpbin.url + '/basic-auth/user/password')
|
|
assert HTTP_OK in r
|
|
assert r.json == {'authenticated': True, 'user': 'user'}
|
|
|
|
|
|
def test_credentials_in_url(httpbin_both):
|
|
url = add_auth(httpbin_both.url + '/basic-auth/user/password',
|
|
auth='user:password')
|
|
r = http('GET', url)
|
|
assert HTTP_OK in r
|
|
assert r.json == {'authenticated': True, 'user': 'user'}
|
|
|
|
|
|
def test_credentials_in_url_auth_flag_has_priority(httpbin_both):
|
|
"""When credentials are passed in URL and via -a at the same time,
|
|
then the ones from -a are used."""
|
|
url = add_auth(httpbin_both.url + '/basic-auth/user/password',
|
|
auth='user:wrong')
|
|
r = http('--auth=user:password', 'GET', url)
|
|
assert HTTP_OK in r
|
|
assert r.json == {'authenticated': True, 'user': 'user'}
|
|
|
|
|
|
@pytest.mark.parametrize('url', [
|
|
'username@example.org',
|
|
'username:@example.org',
|
|
])
|
|
def test_only_username_in_url(url):
|
|
"""
|
|
https://github.com/jkbrzt/httpie/issues/242
|
|
|
|
"""
|
|
args = httpie.cli.parser.parse_args(args=[url], env=TestEnvironment())
|
|
assert args.auth
|
|
assert args.auth.username == 'username'
|
|
assert args.auth.password == ''
|