def setUp(self): super(TestAuth, self).setUp() redis_client = fakeredis_connection() self.auth = auth.wrap(tests.util.app, redis_client) self.test_url = '/v2/vault' self.default_max_cache_life = 30
from eom import auth from eom import bastion from eom import rbac from deuce.transport.wsgi.app import app as deuce_app from oslo.config import cfg conf = cfg.CONF conf(project='eom', args=[]) # Get the separated Redis Server for Auth auth_redis_client = auth.get_auth_redis_client() rbac_app = rbac.wrap(deuce_app) auth_app = auth.wrap(rbac_app, auth_redis_client) app = bastion.wrap(deuce_app, auth_app)
# Copyright (c) 2013 Rackspace, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or # implied. # See the License for the specific language governing permissions and # limitations under the License. from oslo_config import cfg from eom import auth from tests.util import app as example_app conf = cfg.CONF conf(project='eom', args=[]) # Get the separated Redis Server for Auth auth_redis_client = auth.get_auth_redis_client() app = auth.wrap(example_app, auth_redis_client)