1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
# Copyright (c) 2015 Hewlett-Packard Development Company, L.P.
#
# 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.
"""
test_services
----------------------------------
Functional tests for service resource.
"""
import random
import string
from openstack.cloud import exc
from openstack import exceptions
from openstack.tests.functional import base
class TestServices(base.KeystoneBaseFunctionalTest):
service_attributes = ['id', 'name', 'type', 'description']
def setUp(self):
super().setUp()
if not self.operator_cloud:
self.skipTest("Operator cloud is required for this test")
# Generate a random name for services in this test
self.new_service_name = 'test_' + ''.join(
random.choice(string.ascii_lowercase) for _ in range(5)
)
self.addCleanup(self._cleanup_services)
def _cleanup_services(self):
exception_list = list()
for s in self.operator_cloud.list_services():
if s['name'] is not None and s['name'].startswith(
self.new_service_name
):
try:
self.operator_cloud.delete_service(name_or_id=s['id'])
except Exception as e:
# We were unable to delete a service, let's try with next
exception_list.append(str(e))
continue
if exception_list:
# Raise an error: we must make users aware that something went
# wrong
raise exceptions.SDKException('\n'.join(exception_list))
def test_create_service(self):
service = self.operator_cloud.create_service(
name=self.new_service_name + '_create',
type='test_type',
description='this is a test description',
)
self.assertIsNotNone(service.get('id'))
def test_update_service(self):
ver = self.operator_cloud.config.get_api_version('identity')
if ver.startswith('2'):
# NOTE(SamYaple): Update service only works with v3 api
self.assertRaises(
exc.OpenStackCloudUnavailableFeature,
self.operator_cloud.update_service,
'service_id',
name='new name',
)
else:
service = self.operator_cloud.create_service(
name=self.new_service_name + '_create',
type='test_type',
description='this is a test description',
enabled=True,
)
new_service = self.operator_cloud.update_service(
service.id,
name=self.new_service_name + '_update',
description='this is an updated description',
enabled=False,
)
self.assertEqual(
new_service.name, self.new_service_name + '_update'
)
self.assertEqual(
new_service.description, 'this is an updated description'
)
self.assertFalse(new_service.is_enabled)
self.assertEqual(service.id, new_service.id)
def test_list_services(self):
service = self.operator_cloud.create_service(
name=self.new_service_name + '_list', type='test_type'
)
observed_services = self.operator_cloud.list_services()
self.assertIsInstance(observed_services, list)
found = False
for s in observed_services:
# Test all attributes are returned
if s['id'] == service['id']:
self.assertEqual(
self.new_service_name + '_list', s.get('name')
)
self.assertEqual('test_type', s.get('type'))
found = True
self.assertTrue(found, msg='new service not found in service list!')
def test_delete_service_by_name(self):
# Test delete by name
service = self.operator_cloud.create_service(
name=self.new_service_name + '_delete_by_name', type='test_type'
)
self.operator_cloud.delete_service(name_or_id=service['name'])
observed_services = self.operator_cloud.list_services()
found = False
for s in observed_services:
if s['id'] == service['id']:
found = True
break
self.assertEqual(False, found, message='service was not deleted!')
def test_delete_service_by_id(self):
# Test delete by id
service = self.operator_cloud.create_service(
name=self.new_service_name + '_delete_by_id', type='test_type'
)
self.operator_cloud.delete_service(name_or_id=service['id'])
observed_services = self.operator_cloud.list_services()
found = False
for s in observed_services:
if s['id'] == service['id']:
found = True
self.assertEqual(False, found, message='service was not deleted!')
|