Obtain a token right before API test execution

Currently authentication token for Heat API tests is obtained once during
test suite initialization.

This patch introduces Gabbi fixture and corresponding changes to tests which
assures a token is requested before test execution

Change-Id: I0e2a044c383a68b2e7b019d0028fbb81d833ef56
Story: 1762493
Task: 18915
This commit is contained in:
Mikhail Chernik 2018-04-09 17:42:19 +00:00 committed by rabi
parent efd071c518
commit 9ca1fc2c55
8 changed files with 48 additions and 2 deletions

View File

@ -0,0 +1,28 @@
#
# 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 gabbi import fixture
from heat_tempest_plugin.services import clients
from tempest import config
class AuthenticationFixture(fixture.GabbiFixture):
def start_fixture(self):
conf = config.CONF.heat_plugin
manager = clients.ClientManager(conf)
os.environ['OS_TOKEN'] = manager.identity_client.auth_token
def stop_fixture(self):
pass

View File

@ -1,3 +1,6 @@
fixtures:
- AuthenticationFixture
defaults:
request_headers:
X-Auth-Token: $ENVIRON['OS_TOKEN']

View File

@ -1,3 +1,6 @@
fixtures:
- AuthenticationFixture
defaults:
request_headers:
X-Auth-Token: $ENVIRON['OS_TOKEN']

View File

@ -1,3 +1,6 @@
fixtures:
- AuthenticationFixture
defaults:
request_headers:
X-Auth-Token: $ENVIRON['OS_TOKEN']

View File

@ -1,3 +1,6 @@
fixtures:
- AuthenticationFixture
defaults:
request_headers:
X-Auth-Token: $ENVIRON['OS_TOKEN']

View File

@ -1,3 +1,6 @@
fixtures:
- AuthenticationFixture
defaults:
request_headers:
X-Auth-Token: $ENVIRON['OS_TOKEN']

View File

@ -1,3 +1,6 @@
fixtures:
- AuthenticationFixture
defaults:
request_headers:
X-Auth-Token: $ENVIRON['OS_TOKEN']

View File

@ -24,6 +24,7 @@ from tempest import config
from heat_tempest_plugin.common import test
from heat_tempest_plugin.services import clients
from heat_tempest_plugin.tests.api import fixtures
LOG = logging.getLogger(__name__)
TESTS_DIR = 'gabbits'
@ -41,7 +42,6 @@ def load_tests(loader, tests, pattern):
endpoint = manager.identity_client.get_endpoint_url(
'orchestration', region=conf.region,
endpoint_type=conf.endpoint_type)
os.environ['OS_TOKEN'] = manager.identity_client.auth_token
os.environ['PREFIX'] = test.rand_name('api')
# Catch the authentication exceptions that can happen if one of the
@ -93,7 +93,7 @@ def load_tests(loader, tests, pattern):
register_test_case_id(test_case)
api_tests = driver.build_tests(test_dir, loader, url=endpoint, host="",
fixture_module=fixtures,
test_loader_name=__name__)
register_test_suite_ids(api_tests)
return api_tests