2016-11-23 23:09:45 +01:00
|
|
|
from mock import mock
|
|
|
|
|
2019-08-31 15:17:10 +02:00
|
|
|
from httpie.cli.constants import SEPARATOR_CREDENTIALS
|
2016-11-23 22:01:58 +01:00
|
|
|
from httpie.plugins import AuthPlugin, plugin_manager
|
2016-11-24 00:58:41 +01:00
|
|
|
from utils import http, HTTP_OK
|
2016-11-23 22:01:58 +01:00
|
|
|
|
|
|
|
# TODO: run all these tests in session mode as well
|
|
|
|
|
2016-11-23 23:09:45 +01:00
|
|
|
USERNAME = 'user'
|
|
|
|
PASSWORD = 'password'
|
|
|
|
# Basic auth encoded `USERNAME` and `PASSWORD`
|
2016-11-24 00:58:41 +01:00
|
|
|
# noinspection SpellCheckingInspection
|
2016-11-23 23:09:45 +01:00
|
|
|
BASIC_AUTH_HEADER_VALUE = 'Basic dXNlcjpwYXNzd29yZA=='
|
2016-11-23 23:20:52 +01:00
|
|
|
BASIC_AUTH_URL = '/basic-auth/{0}/{1}'.format(USERNAME, PASSWORD)
|
2016-11-23 23:09:45 +01:00
|
|
|
AUTH_OK = {'authenticated': True, 'user': USERNAME}
|
2016-11-23 22:01:58 +01:00
|
|
|
|
|
|
|
|
2016-11-23 23:15:18 +01:00
|
|
|
def basic_auth(header=BASIC_AUTH_HEADER_VALUE):
|
2016-11-23 22:01:58 +01:00
|
|
|
|
|
|
|
def inner(r):
|
2016-11-23 23:15:18 +01:00
|
|
|
r.headers['Authorization'] = header
|
2016-11-23 22:01:58 +01:00
|
|
|
return r
|
|
|
|
|
|
|
|
return inner
|
|
|
|
|
|
|
|
|
2016-11-23 22:29:36 +01:00
|
|
|
def test_auth_plugin_parse_auth_false(httpbin):
|
2016-11-23 22:01:58 +01:00
|
|
|
|
2016-11-23 23:09:45 +01:00
|
|
|
class Plugin(AuthPlugin):
|
2016-11-23 23:15:18 +01:00
|
|
|
auth_type = 'test-parse-false'
|
2016-11-23 22:01:58 +01:00
|
|
|
auth_parse = False
|
|
|
|
|
|
|
|
def get_auth(self, username=None, password=None):
|
|
|
|
assert username is None
|
|
|
|
assert password is None
|
|
|
|
assert self.raw_auth == BASIC_AUTH_HEADER_VALUE
|
2016-11-23 23:15:18 +01:00
|
|
|
return basic_auth(self.raw_auth)
|
2016-11-23 22:01:58 +01:00
|
|
|
|
2016-11-23 23:09:45 +01:00
|
|
|
plugin_manager.register(Plugin)
|
2016-11-23 22:01:58 +01:00
|
|
|
try:
|
|
|
|
r = http(
|
|
|
|
httpbin + BASIC_AUTH_URL,
|
2016-11-23 23:09:45 +01:00
|
|
|
'--auth-type',
|
|
|
|
Plugin.auth_type,
|
|
|
|
'--auth',
|
|
|
|
BASIC_AUTH_HEADER_VALUE,
|
2016-11-23 22:01:58 +01:00
|
|
|
)
|
|
|
|
assert HTTP_OK in r
|
2016-11-23 23:09:45 +01:00
|
|
|
assert r.json == AUTH_OK
|
2016-11-23 22:01:58 +01:00
|
|
|
finally:
|
2016-11-23 23:09:45 +01:00
|
|
|
plugin_manager.unregister(Plugin)
|
2016-11-23 22:01:58 +01:00
|
|
|
|
|
|
|
|
2016-11-23 22:29:36 +01:00
|
|
|
def test_auth_plugin_require_auth_false(httpbin):
|
2016-11-23 22:01:58 +01:00
|
|
|
|
2016-11-23 23:09:45 +01:00
|
|
|
class Plugin(AuthPlugin):
|
2016-11-23 23:15:18 +01:00
|
|
|
auth_type = 'test-require-false'
|
2016-11-23 22:01:58 +01:00
|
|
|
auth_require = False
|
|
|
|
|
|
|
|
def get_auth(self, username=None, password=None):
|
|
|
|
assert self.raw_auth is None
|
|
|
|
assert username is None
|
|
|
|
assert password is None
|
2016-11-23 23:15:18 +01:00
|
|
|
return basic_auth()
|
2016-11-23 22:01:58 +01:00
|
|
|
|
2016-11-23 23:09:45 +01:00
|
|
|
plugin_manager.register(Plugin)
|
|
|
|
try:
|
|
|
|
r = http(
|
|
|
|
httpbin + BASIC_AUTH_URL,
|
|
|
|
'--auth-type',
|
|
|
|
Plugin.auth_type,
|
|
|
|
)
|
|
|
|
assert HTTP_OK in r
|
|
|
|
assert r.json == AUTH_OK
|
|
|
|
finally:
|
|
|
|
plugin_manager.unregister(Plugin)
|
|
|
|
|
|
|
|
|
|
|
|
def test_auth_plugin_require_auth_false_and_auth_provided(httpbin):
|
|
|
|
|
|
|
|
class Plugin(AuthPlugin):
|
2016-11-23 23:15:18 +01:00
|
|
|
auth_type = 'test-require-false-yet-provided'
|
2016-11-23 23:09:45 +01:00
|
|
|
auth_require = False
|
|
|
|
|
|
|
|
def get_auth(self, username=None, password=None):
|
2019-08-31 15:17:10 +02:00
|
|
|
assert self.raw_auth == USERNAME + SEPARATOR_CREDENTIALS + PASSWORD
|
2016-11-23 23:09:45 +01:00
|
|
|
assert username == USERNAME
|
|
|
|
assert password == PASSWORD
|
2016-11-23 23:15:18 +01:00
|
|
|
return basic_auth()
|
2016-11-23 23:09:45 +01:00
|
|
|
|
|
|
|
plugin_manager.register(Plugin)
|
2016-11-23 22:01:58 +01:00
|
|
|
try:
|
|
|
|
r = http(
|
|
|
|
httpbin + BASIC_AUTH_URL,
|
2016-11-23 23:09:45 +01:00
|
|
|
'--auth-type',
|
|
|
|
Plugin.auth_type,
|
|
|
|
'--auth',
|
2019-08-31 15:17:10 +02:00
|
|
|
USERNAME + SEPARATOR_CREDENTIALS + PASSWORD,
|
2016-11-23 22:01:58 +01:00
|
|
|
)
|
|
|
|
assert HTTP_OK in r
|
2016-11-23 23:09:45 +01:00
|
|
|
assert r.json == AUTH_OK
|
2016-11-23 22:01:58 +01:00
|
|
|
finally:
|
2016-11-23 23:09:45 +01:00
|
|
|
plugin_manager.unregister(Plugin)
|
2016-11-23 22:01:58 +01:00
|
|
|
|
|
|
|
|
2019-08-31 15:17:10 +02:00
|
|
|
@mock.patch('httpie.cli.argtypes.AuthCredentials._getpass',
|
2016-11-23 23:15:18 +01:00
|
|
|
new=lambda self, prompt: 'UNEXPECTED_PROMPT_RESPONSE')
|
2016-11-23 22:29:36 +01:00
|
|
|
def test_auth_plugin_prompt_password_false(httpbin):
|
2016-11-23 22:01:58 +01:00
|
|
|
|
2016-11-23 23:09:45 +01:00
|
|
|
class Plugin(AuthPlugin):
|
2016-11-23 23:15:18 +01:00
|
|
|
auth_type = 'test-prompt-false'
|
2016-11-23 22:01:58 +01:00
|
|
|
prompt_password = False
|
|
|
|
|
|
|
|
def get_auth(self, username=None, password=None):
|
2016-11-23 23:09:45 +01:00
|
|
|
assert self.raw_auth == USERNAME
|
|
|
|
assert username == USERNAME
|
|
|
|
assert password is None
|
2016-11-23 23:15:18 +01:00
|
|
|
return basic_auth()
|
2016-11-23 22:01:58 +01:00
|
|
|
|
2016-11-23 23:09:45 +01:00
|
|
|
plugin_manager.register(Plugin)
|
2016-11-23 22:01:58 +01:00
|
|
|
|
|
|
|
try:
|
|
|
|
r = http(
|
|
|
|
httpbin + BASIC_AUTH_URL,
|
2016-11-23 23:09:45 +01:00
|
|
|
'--auth-type',
|
|
|
|
Plugin.auth_type,
|
|
|
|
'--auth',
|
|
|
|
USERNAME,
|
2016-11-23 22:01:58 +01:00
|
|
|
)
|
|
|
|
assert HTTP_OK in r
|
2016-11-23 23:09:45 +01:00
|
|
|
assert r.json == AUTH_OK
|
2016-11-23 22:01:58 +01:00
|
|
|
finally:
|
2016-11-23 23:09:45 +01:00
|
|
|
plugin_manager.unregister(Plugin)
|