keystonemiddleware/keystonemiddleware/tests/unit
Tim Burke da5932affc Respect delay_auth_decision when Keystone is unavailable
The delay_auth_decision option has two main uses:

  1. Allow a service to provide its own auth mechanism, separate from
     auth tokens (like Swift's tempurl middleware).
  2. Allow a service to integrate with multiple auth middlewares which
     may want to use the same X-Auth-Token header.

The first case works fine even when the service has trouble talking to
Keystone -- the client doesn't send an X-Auth-Token header, so we never
even attempt to contact Keystone.

The second case can be problematic, however. The client will provide
some token, and we don't know whether it's valid for Keystone, the other
auth system, or neither. We have to *try* contacting Keystone, but if
that was down we'd previously return a 503 without ever trying the other
auth system. As a result, a Keystone failure results in a total system
failure.

Now, when delay_auth_decision is True and we cannot determine whether a
token is valid or invalid, we'll instead declare the token invalid and
defer the rejection. As a result, Keystone failures only affect Keystone
users, and tokens issued by the other auth system may still be validated
and used.

Change-Id: Ie4b3319862ba7fbd329dc6883ce837e894d5270c
2018-09-11 07:54:43 -06:00
..
audit Add option to disable using oslo_message notifier 2018-02-20 11:26:22 +01:00
auth_token Respect delay_auth_decision when Keystone is unavailable 2018-09-11 07:54:43 -06:00
__init__.py Move unit tests into tests.unit 2015-03-11 17:03:54 -05:00
client_fixtures.py Introduce new header for system-scoped tokens 2018-05-02 19:15:16 +00:00
test_ec2_token_middleware.py Fix D204 PEP257 violation and enable D301 and D209 2016-05-06 16:36:15 +00:00
test_entry_points.py Define entry points for filter factories for Paste Deployment 2015-11-06 12:16:44 -06:00
test_fixtures.py Add project_name to the auth_token fixture 2016-01-13 15:10:36 +11:00
test_opts.py Rename auth_uri to www_authenticate_uri 2017-10-11 14:00:49 +02:00
test_s3_token_middleware.py Rename auth_uri to www_authenticate_uri 2017-10-11 14:00:49 +02:00
utils.py use oslo.log instead of logging 2017-01-13 03:24:18 +00:00