
Add the SASL protocol for memcached, to improve the security of authority. SASL(Simple Authentication and Security Layer): is a memchanism used to extend the verification ability of C/S mode. SASL is only the authentication process, which integrates the application layer and the system authentication mechanism. However, the current memcached hasn't any authenticaction mechanism to protect the user's data cached in memcached server. Depends-On: 7828bed0febabfa11a0a8f6960f4c7cc8acec841 Implements: blueprint enable-sasl-protocol Change-Id: I40b9f4eac518f34a3dfb710b5c4ab3a76da7c00c
50 lines
1.9 KiB
Python
50 lines
1.9 KiB
Python
# Copyright 2020 OpenStack Foundation
|
|
#
|
|
# 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.
|
|
|
|
import os
|
|
|
|
from oslo_cache.tests.functional import test_base
|
|
|
|
|
|
class TestMemcachePoolCacheBackend(test_base.BaseTestCaseCacheBackend):
|
|
def setUp(self):
|
|
MEMCACHED_PORT = os.getenv("OSLO_CACHE_TEST_MEMCACHED_PORT", "11211")
|
|
self.config_fixture.config(
|
|
group='cache',
|
|
backend='oslo_cache.memcache_pool',
|
|
enabled=True,
|
|
memcache_servers=[f'localhost:{MEMCACHED_PORT}']
|
|
)
|
|
# NOTE(hberaud): super must be called after all to ensure that
|
|
# config fixture is properly initialized with value related to
|
|
# the current backend in use.
|
|
super(TestMemcachePoolCacheBackend, self).setUp()
|
|
|
|
|
|
class TestBMemcachePoolCacheBackend(test_base.BaseTestCaseCacheBackend):
|
|
def setUp(self):
|
|
MEMCACHED_PORT = os.getenv("OSLO_CACHE_TEST_MEMCACHED_PORT", "11211")
|
|
# If the cache support the sasl, the memcache_sasl_enabled
|
|
# should be True.
|
|
self.config_fixture.config(
|
|
group='cache',
|
|
backend='oslo_cache.memcache_pool',
|
|
enabled=True,
|
|
memcache_servers=[f'localhost:{MEMCACHED_PORT}'],
|
|
memcache_sasl_enabled=False,
|
|
memcache_username='sasl_name',
|
|
memcache_password='sasl_pswd'
|
|
)
|
|
super(TestBMemcachePoolCacheBackend, self).setUp()
|