httpie-cli/tests/test_auth.py

143 lines
4.8 KiB
Python
Raw Normal View History

2014-04-24 14:07:31 +02:00
"""HTTP authentication-related tests."""
2016-03-03 11:47:12 +01:00
import mock
2014-04-24 15:17:23 +02:00
import pytest
2014-04-24 14:07:31 +02:00
from httpie.plugins.builtin import HTTPBasicAuth
from httpie.status import ExitStatus
from httpie.utils import ExplicitNullAuth
from utils import http, add_auth, HTTP_OK, MockEnvironment
2019-08-31 15:17:10 +02:00
import httpie.cli.constants
import httpie.cli.definition
2014-04-24 14:07:31 +02:00
def test_basic_auth(httpbin_both):
2016-03-03 11:47:12 +01:00
r = http('--auth=user:password',
'GET', httpbin_both + '/basic-auth/user/password')
2016-03-03 11:47:12 +01:00
assert HTTP_OK in r
assert r.json == {'authenticated': True, 'user': 'user'}
2016-03-03 11:47:12 +01:00
@pytest.mark.parametrize('argument_name', ['--auth-type', '-A'])
def test_digest_auth(httpbin_both, argument_name):
2016-03-03 11:47:12 +01:00
r = http(argument_name + '=digest', '--auth=user:password',
'GET', httpbin_both.url + '/digest-auth/auth/user/password')
2016-03-03 11:47:12 +01:00
assert HTTP_OK in r
assert r.json == {'authenticated': True, 'user': 'user'}
2019-08-31 15:17:10 +02:00
@mock.patch('httpie.cli.argtypes.AuthCredentials._getpass',
2016-03-03 11:47:12 +01:00
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',
2016-03-03 11:47:12 +01:00
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):
2016-03-03 11:47:12 +01:00
"""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',
2016-03-03 11:47:12 +01:00
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):
"""
2020-12-23 22:07:27 +01:00
https://github.com/httpie/httpie/issues/242
2016-03-03 11:47:12 +01:00
"""
2019-08-31 15:17:10 +02:00
args = httpie.cli.definition.parser.parse_args(args=[url], env=MockEnvironment())
2016-03-03 11:47:12 +01:00
assert args.auth
assert args.auth.username == 'username'
assert args.auth.password == ''
2016-11-23 23:09:45 +01:00
def test_missing_auth(httpbin):
r = http(
'--auth-type=basic',
'GET',
httpbin + '/basic-auth/user/password',
tolerate_error_exit_status=True
2016-11-23 23:09:45 +01:00
)
assert HTTP_OK not in r
assert '--auth required' in r.stderr
def test_netrc(httpbin_both):
# This one gets handled by requests (no --auth, --auth-type present),
# thats why we patch inside `requests.sessions`.
with mock.patch('requests.sessions.get_netrc_auth') as get_netrc_auth:
get_netrc_auth.return_value = ('httpie', 'password')
r = http(httpbin_both + '/basic-auth/httpie/password')
assert get_netrc_auth.call_count == 1
assert HTTP_OK in r
def test_ignore_netrc(httpbin_both):
with mock.patch('httpie.cli.argparser.get_netrc_auth') as get_netrc_auth:
get_netrc_auth.return_value = ('httpie', 'password')
r = http('--ignore-netrc', httpbin_both + '/basic-auth/httpie/password')
assert get_netrc_auth.call_count == 0
assert 'HTTP/1.1 401 UNAUTHORIZED' in r
def test_ignore_netrc_together_with_auth():
2019-08-31 15:17:10 +02:00
args = httpie.cli.definition.parser.parse_args(
args=['--ignore-netrc', '--auth=username:password', 'example.org'],
env=MockEnvironment(),
)
assert isinstance(args.auth, HTTPBasicAuth)
def test_ignore_netrc_with_auth_type_resulting_in_missing_auth(httpbin):
with mock.patch('httpie.cli.argparser.get_netrc_auth') as get_netrc_auth:
get_netrc_auth.return_value = ('httpie', 'password')
r = http(
'--ignore-netrc',
'--auth-type=basic',
httpbin + '/basic-auth/httpie/password',
tolerate_error_exit_status=True,
)
assert get_netrc_auth.call_count == 0
assert r.exit_status == ExitStatus.ERROR
assert '--auth required' in r.stderr
@pytest.mark.parametrize(
argnames=['auth_type', 'endpoint'],
argvalues=[
('basic', '/basic-auth/httpie/password'),
('digest', '/digest-auth/auth/httpie/password'),
],
)
def test_auth_plugin_netrc_parse(auth_type, endpoint, httpbin):
# Test
with mock.patch('httpie.cli.argparser.get_netrc_auth') as get_netrc_auth:
get_netrc_auth.return_value = ('httpie', 'password')
r = http('--auth-type', auth_type, httpbin + endpoint)
assert get_netrc_auth.call_count == 1
assert HTTP_OK in r
def test_ignore_netrc_null_auth():
args = httpie.cli.definition.parser.parse_args(
args=['--ignore-netrc', 'example.org'],
env=MockEnvironment(),
)
assert isinstance(args.auth, ExplicitNullAuth)