httpie-cli/tests/test_auth.py

44 lines
1.7 KiB
Python
Raw Normal View History

2014-04-24 14:07:31 +02:00
"""HTTP authentication-related tests."""
import requests
2014-04-24 15:17:23 +02:00
import pytest
2014-04-24 14:07:31 +02:00
from utils import http, httpbin, HTTP_OK
2014-04-24 14:07:31 +02:00
import httpie.input
2014-04-26 23:04:45 +02:00
class TestAuth:
2014-04-24 14:07:31 +02:00
def test_basic_auth(self):
2014-04-26 23:04:45 +02:00
r = http('--auth=user:password',
'GET', httpbin('/basic-auth/user/password'))
assert HTTP_OK in r
2014-04-26 23:04:45 +02:00
assert r.json == {'authenticated': True, 'user': 'user'}
2014-04-24 14:07:31 +02:00
2014-04-24 15:17:23 +02:00
@pytest.mark.skipif(
requests.__version__ == '0.13.6',
reason='Redirects with prefetch=False are broken in Requests 0.13.6')
2014-04-24 14:07:31 +02:00
def test_digest_auth(self):
2014-04-26 23:04:45 +02:00
r = http('--auth-type=digest', '--auth=user:password',
'GET', httpbin('/digest-auth/auth/user/password'))
assert HTTP_OK in r
2014-04-26 23:04:45 +02:00
assert r.json == {'authenticated': True, 'user': 'user'}
2014-04-24 14:07:31 +02:00
def test_password_prompt(self):
httpie.input.AuthCredentials._getpass = lambda self, prompt: 'password'
2014-04-24 15:48:01 +02:00
r = http('--auth', 'user', 'GET', httpbin('/basic-auth/user/password'))
assert HTTP_OK in r
2014-04-26 23:04:45 +02:00
assert r.json == {'authenticated': True, 'user': 'user'}
2014-04-24 14:07:31 +02:00
def test_credentials_in_url(self):
2014-04-26 23:04:45 +02:00
url = httpbin('/basic-auth/user/password', auth='user:password')
r = http('GET', url)
assert HTTP_OK in r
2014-04-26 23:04:45 +02:00
assert r.json == {'authenticated': True, 'user': 'user'}
2014-04-24 14:07:31 +02:00
def test_credentials_in_url_auth_flag_has_priority(self):
"""When credentials are passed in URL and via -a at the same time,
then the ones from -a are used."""
2014-04-26 23:04:45 +02:00
url = httpbin('/basic-auth/user/password', auth='user:wrong')
r = http('--auth=user:password', 'GET', url)
assert HTTP_OK in r
2014-04-26 23:04:45 +02:00
assert r.json == {'authenticated': True, 'user': 'user'}