deb-murano/functionaltests/api/v1/test_envs.py
Sergey Murashov fe627d1bbb Refactor murano functional tests
Change-Id: I5f60d47bea135e25a5cee022187f499bf177439c
2014-04-02 10:22:40 +00:00

103 lines
3.4 KiB
Python

# Copyright (c) 2014 Mirantis, 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 tempest import exceptions
from tempest.test import attr
from functionaltests.api import base
class TestEnvironments(base.TestCase):
@attr(type='smoke')
def test_list_environments(self):
resp, body = self.client.get_environments_list()
self.assertIn('environments', body)
self.assertEqual(resp.status, 200)
@attr(type='smoke')
def test_create_and_delete_environment(self):
environments_list_start = self.client.get_environments_list()[1]
resp, env = self.client.create_environment('test')
self.environments.append(env)
self.assertEqual(resp.status, 200)
self.assertEqual('test', env['name'])
environments_list = self.client.get_environments_list()[1]
self.assertEqual(len(environments_list_start['environments']) + 1,
len(environments_list['environments']))
self.client.delete_environment(env['id'])
environments_list = self.client.get_environments_list()[1]
self.assertEqual(len(environments_list_start['environments']),
len(environments_list['environments']))
self.environments.pop(self.environments.index(env))
@attr(type='smoke')
def test_get_environment(self):
env = self.create_environment('test')
resp, environment = self.client.get_environment(env['id'])
self.assertEqual(resp.status, 200)
self.assertEqual(environment['name'], 'test')
@attr(type='smoke')
def test_update_environment(self):
env = self.create_environment('test')
resp, environment = self.client.update_environment(env['id'])
self.assertEqual(resp.status, 200)
self.assertEqual(environment['name'], 'changed-environment-name')
@attr(type='negative')
def test_update_environment_with_wrong_env_id(self):
self.assertRaises(exceptions.NotFound,
self.client.update_environment,
None)
@attr(type='negative')
def test_delete_environment_with_wrong_env_id(self):
self.assertRaises(exceptions.NotFound,
self.client.delete_environment,
None)
@attr(type='negative')
def test_double_delete_environment(self):
env = self.create_environment('test')
self.client.delete_environment(env['id'])
self.assertRaises(exceptions.NotFound,
self.client.delete_environment,
env['id'])
@attr(type='negative')
def test_get_deleted_environment(self):
env = self.create_environment('test')
self.client.delete_environment(env['id'])
self.assertRaises(exceptions.NotFound,
self.client.get_environment,
env['id'])