Files
rally/tests/cmd/commands/test_deployment.py
Olga Kopylova c800370cfd Fix hacking 0.9.x issues
Fixed issues:
H202 assertRaises Exception too broad
H305 imports not grouped correctly
H307 like imports should be grouped together
H405 multi line docstring summary not separated with an empty line
H904 Wrap long lines in parentheses instead of a backslash
E122 continuation line missing indentation or outdented
E128 continuation line under-indented for visual indent
E131 continuation line unaligned for hanging indent
E251 unexpected spaces around keyword / parameter equals
E265 block comment should start with '# '

Change-Id: Ia2b8994c58686e3570f303f0725a2850d6b36e47
2014-06-18 14:59:18 +03:00

187 lines
8.6 KiB
Python

# Copyright 2013: Mirantis Inc.
# 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 os
import uuid
import mock
from rally.cmd.commands import deployment
from rally import exceptions
from tests import test
class DeploymentCommandsTestCase(test.TestCase):
def setUp(self):
super(DeploymentCommandsTestCase, self).setUp()
self.deployment = deployment.DeploymentCommands()
@mock.patch.dict(os.environ, {'RALLY_DEPLOYMENT': 'my_deploy_id'})
@mock.patch('rally.cmd.commands.deployment.DeploymentCommands.list')
@mock.patch('rally.cmd.commands.deployment.api.create_deploy')
@mock.patch('rally.cmd.commands.deployment.open',
mock.mock_open(read_data='{"some": "json"}'),
create=True)
def test_create(self, mock_create, mock_list):
self.deployment.create('fake_deploy', False, 'path_to_config.json')
mock_create.assert_called_once_with({'some': 'json'}, 'fake_deploy')
@mock.patch.dict(os.environ, {'OS_AUTH_URL': 'fake_auth_url',
'OS_USERNAME': 'fake_username',
'OS_PASSWORD': 'fake_password',
'OS_TENANT_NAME': 'fake_tenant_name',
'OS_REGION_NAME': 'fake_region_name',
'RALLY_DEPLOYMENT': 'fake_deployment_id'})
@mock.patch('rally.cmd.commands.deployment.api.create_deploy')
@mock.patch('rally.cmd.commands.deployment.DeploymentCommands.list')
def test_createfromenv(self, mock_list, mock_create):
self.deployment.create('from_env', True)
mock_create.assert_called_once_with(
{
"type": "ExistingCloud",
"endpoint": {
"auth_url": 'fake_auth_url',
"username": 'fake_username',
"password": 'fake_password',
"tenant_name": 'fake_tenant_name',
"region_name": 'fake_region_name'
}
},
'from_env'
)
@mock.patch('rally.cmd.commands.deployment.DeploymentCommands.list')
@mock.patch('rally.cmd.commands.use.UseCommands.deployment')
@mock.patch('rally.cmd.commands.deployment.api.create_deploy',
return_value=dict(uuid='uuid'))
@mock.patch('rally.cmd.commands.deployment.open',
mock.mock_open(read_data='{"uuid": "uuid"}'),
create=True)
def test_create_and_use(self, mock_create, mock_use_deployment,
mock_list):
self.deployment.create('fake_deploy', False, 'path_to_config.json',
True)
mock_create.assert_called_once_with({'uuid': 'uuid'}, 'fake_deploy')
mock_use_deployment.assert_called_once_with('uuid')
@mock.patch('rally.cmd.commands.deployment.api.recreate_deploy')
def test_recreate(self, mock_recreate):
deploy_id = str(uuid.uuid4())
self.deployment.recreate(deploy_id)
mock_recreate.assert_called_once_with(deploy_id)
@mock.patch('rally.cmd.commands.deployment.envutils.get_global')
def test_recreate_no_deploy_id(self, mock_default):
mock_default.side_effect = exceptions.InvalidArgumentsException
self.assertRaises(exceptions.InvalidArgumentsException,
self.deployment.recreate, None)
@mock.patch('rally.cmd.commands.deployment.api.destroy_deploy')
def test_destroy(self, mock_destroy):
deploy_id = str(uuid.uuid4())
self.deployment.destroy(deploy_id)
mock_destroy.assert_called_once_with(deploy_id)
@mock.patch('rally.cmd.commands.deployment.envutils.get_global')
def test_destroy_no_deploy_id(self, mock_default):
mock_default.side_effect = exceptions.InvalidArgumentsException
self.assertRaises(exceptions.InvalidArgumentsException,
self.deployment.destroy, None)
@mock.patch('rally.cmd.commands.deployment.common_cliutils.print_list')
@mock.patch('rally.cmd.commands.deployment.utils.Struct')
@mock.patch('rally.cmd.commands.deployment.envutils.get_global')
@mock.patch('rally.cmd.commands.deployment.db.deployment_list')
def test_list_different_deploy_id(self, mock_deployments,
mock_default, mock_struct,
mock_print_list):
current_deploy_id = str(uuid.uuid4())
mock_default.return_value = current_deploy_id
fake_deployment_list = [{'uuid': str(uuid.uuid4()),
'created_at': '03-12-2014',
'name': 'dep1',
'status': 'deploy->started',
'active': 'False'}]
mock_deployments.return_value = fake_deployment_list
self.deployment.list()
fake_deployment = fake_deployment_list[0]
fake_deployment['active'] = ''
mock_struct.assert_called_once_with(**fake_deployment)
headers = ['uuid', 'created_at', 'name', 'status', 'active']
mock_print_list.assert_called_once_with([mock_struct()], headers)
@mock.patch('rally.cmd.commands.deployment.common_cliutils.print_list')
@mock.patch('rally.cmd.commands.deployment.utils.Struct')
@mock.patch('rally.cmd.commands.deployment.envutils.get_global')
@mock.patch('rally.cmd.commands.deployment.db.deployment_list')
def test_list_current_deploy_id(self, mock_deployments,
mock_default, mock_struct,
mock_print_list):
current_deploy_id = str(uuid.uuid4())
mock_default.return_value = current_deploy_id
fake_deployment_list = [{'uuid': current_deploy_id,
'created_at': '13-12-2014',
'name': 'dep2',
'status': 'deploy->finished',
'active': 'True'}]
mock_deployments.return_value = fake_deployment_list
self.deployment.list()
fake_deployment = fake_deployment_list[0]
fake_deployment['active'] = '*'
mock_struct.assert_called_once_with(**fake_deployment)
headers = ['uuid', 'created_at', 'name', 'status', 'active']
mock_print_list.assert_called_once_with([mock_struct()], headers)
@mock.patch('rally.cmd.commands.deployment.db.deployment_get')
def test_config(self, mock_deployment):
deploy_id = str(uuid.uuid4())
value = {'config': 'config'}
mock_deployment.return_value = value
self.deployment.config(deploy_id)
mock_deployment.assert_called_once_with(deploy_id)
@mock.patch('rally.cmd.commands.deployment.envutils.get_global')
def test_config_no_deploy_id(self, mock_default):
mock_default.side_effect = exceptions.InvalidArgumentsException
self.assertRaises(exceptions.InvalidArgumentsException,
self.deployment.config, None)
@mock.patch('rally.cmd.commands.deployment.common_cliutils.print_list')
@mock.patch('rally.cmd.commands.deployment.utils.Struct')
@mock.patch('rally.cmd.commands.deployment.db.deployment_get')
def test_endpoint(self, mock_deployment, mock_struct, mock_print_list):
deploy_id = str(uuid.uuid4())
value = {'endpoints': [{}]}
mock_deployment.return_value = value
self.deployment.endpoint(deploy_id)
mock_deployment.assert_called_once_with(deploy_id)
headers = ['auth_url', 'username', 'password', 'tenant_name',
'region_name', 'use_public_urls', 'admin_port']
fake_data = ['', '', '', '', '', '', '']
mock_struct.assert_called_once_with(**dict(zip(headers, fake_data)))
mock_print_list.assert_called_once_with([mock_struct()], headers)
@mock.patch('rally.cmd.commands.deployment.envutils.get_global')
def test_deploy_no_deploy_id(self, mock_default):
mock_default.side_effect = exceptions.InvalidArgumentsException
self.assertRaises(exceptions.InvalidArgumentsException,
self.deployment.endpoint, None)