tempest/tempest/tests/identity/admin/test_services.py

80 lines
3.3 KiB
Python

# vim: tabstop=4 shiftwidth=4 softtabstop=4
# Copyright 2012 OpenStack, LLC
# All Rights Reserved.
#
# 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 nose
from tempest.common.utils.data_utils import rand_name
from tempest import exceptions
from tempest.tests.identity import base
class ServicesTestBase(object):
def test_create_get_delete_service(self):
"""GET Service"""
try:
#Creating a Service
name = rand_name('service-')
type = rand_name('type--')
description = rand_name('description-')
resp, service_data = \
self.client.create_service(name, type, description=description)
self.assertTrue(resp['status'].startswith('2'))
#Verifying response body of create service
self.assertTrue('id' in service_data)
self.assertFalse(service_data['id'] is None)
self.assertTrue('name' in service_data)
self.assertEqual(name, service_data['name'])
self.assertTrue('type' in service_data)
self.assertEqual(type, service_data['type'])
self.assertTrue('description' in service_data)
self.assertEqual(description, service_data['description'])
#Get service
resp, fetched_service = self.client.get_service(service_data['id'])
self.assertTrue(resp['status'].startswith('2'))
#verifying the existence of service created
self.assertTrue('id' in fetched_service)
self.assertEquals(fetched_service['id'], service_data['id'])
self.assertTrue('name' in fetched_service)
self.assertEqual(fetched_service['name'], service_data['name'])
self.assertTrue('type' in fetched_service)
self.assertEqual(fetched_service['type'], service_data['type'])
self.assertTrue('description' in fetched_service)
self.assertEqual(fetched_service['description'],
service_data['description'])
finally:
#Deleting the service created in this method
resp, _ = self.client.delete_service(service_data['id'])
self.assertTrue(resp['status'].startswith('2'))
#Checking whether service is deleted successfully
self.assertRaises(exceptions.NotFound, self.client.get_service,
service_data['id'])
class ServicesTestJSON(base.BaseIdentityAdminTestJSON, ServicesTestBase):
@classmethod
def setUpClass(cls):
super(ServicesTestJSON, cls).setUpClass()
class ServicesTestXML(base.BaseIdentityAdminTestXML,
ServicesTestBase):
@classmethod
def setUpClass(cls):
super(ServicesTestXML, cls).setUpClass()
raise nose.SkipTest("Skipping until Bug #1061738 resolved")