
Change-Id: I27326b8f2e0d84d3ef2c2fbdcb5c96a5ac1d79e4 Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
203 lines
6.1 KiB
Python
203 lines
6.1 KiB
Python
# 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 unittest import mock
|
|
|
|
from openstackclient.compute.v2 import usage as usage_cmds
|
|
from openstackclient.tests.unit.compute.v2 import fakes as compute_fakes
|
|
from openstackclient.tests.unit.identity.v3 import fakes as identity_fakes
|
|
|
|
|
|
class TestUsage(compute_fakes.TestComputev2):
|
|
def setUp(self):
|
|
super(TestUsage, self).setUp()
|
|
|
|
self.app.client_manager.sdk_connection = mock.Mock()
|
|
self.app.client_manager.sdk_connection.compute = mock.Mock()
|
|
self.sdk_client = self.app.client_manager.sdk_connection.compute
|
|
|
|
self.projects_mock = self.app.client_manager.identity.projects
|
|
self.projects_mock.reset_mock()
|
|
|
|
|
|
class TestUsageList(TestUsage):
|
|
project = identity_fakes.FakeProject.create_one_project()
|
|
# Return value of self.usage_mock.list().
|
|
usages = compute_fakes.create_usages(
|
|
attrs={'project_id': project.name}, count=1
|
|
)
|
|
|
|
columns = (
|
|
"Project",
|
|
"Servers",
|
|
"RAM MB-Hours",
|
|
"CPU Hours",
|
|
"Disk GB-Hours",
|
|
)
|
|
|
|
data = [
|
|
(
|
|
usage_cmds.ProjectColumn(usages[0].project_id),
|
|
usage_cmds.CountColumn(usages[0].server_usages),
|
|
usage_cmds.FloatColumn(usages[0].total_memory_mb_usage),
|
|
usage_cmds.FloatColumn(usages[0].total_vcpus_usage),
|
|
usage_cmds.FloatColumn(usages[0].total_local_gb_usage),
|
|
)
|
|
]
|
|
|
|
def setUp(self):
|
|
super(TestUsageList, self).setUp()
|
|
|
|
self.sdk_client.usages.return_value = self.usages
|
|
|
|
self.projects_mock.list.return_value = [self.project]
|
|
# Get the command object to test
|
|
self.cmd = usage_cmds.ListUsage(self.app, None)
|
|
|
|
def test_usage_list_no_options(self):
|
|
arglist = []
|
|
verifylist = [
|
|
('start', None),
|
|
('end', None),
|
|
]
|
|
|
|
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
|
|
|
columns, data = self.cmd.take_action(parsed_args)
|
|
|
|
self.projects_mock.list.assert_called_with()
|
|
|
|
self.assertCountEqual(self.columns, columns)
|
|
self.assertCountEqual(tuple(self.data), tuple(data))
|
|
|
|
def test_usage_list_with_options(self):
|
|
arglist = [
|
|
'--start',
|
|
'2016-11-11',
|
|
'--end',
|
|
'2016-12-20',
|
|
]
|
|
verifylist = [
|
|
('start', '2016-11-11'),
|
|
('end', '2016-12-20'),
|
|
]
|
|
|
|
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
|
|
|
columns, data = self.cmd.take_action(parsed_args)
|
|
|
|
self.projects_mock.list.assert_called_with()
|
|
self.sdk_client.usages.assert_called_with(
|
|
start='2016-11-11T00:00:00',
|
|
end='2016-12-20T00:00:00',
|
|
detailed=True,
|
|
)
|
|
|
|
self.assertCountEqual(self.columns, columns)
|
|
self.assertCountEqual(tuple(self.data), tuple(data))
|
|
|
|
def test_usage_list_with_pagination(self):
|
|
arglist = []
|
|
verifylist = [
|
|
('start', None),
|
|
('end', None),
|
|
]
|
|
|
|
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
|
|
|
columns, data = self.cmd.take_action(parsed_args)
|
|
|
|
self.projects_mock.list.assert_called_with()
|
|
self.sdk_client.usages.assert_has_calls(
|
|
[mock.call(start=mock.ANY, end=mock.ANY, detailed=True)]
|
|
)
|
|
self.assertCountEqual(self.columns, columns)
|
|
self.assertCountEqual(tuple(self.data), tuple(data))
|
|
|
|
|
|
class TestUsageShow(TestUsage):
|
|
project = identity_fakes.FakeProject.create_one_project()
|
|
# Return value of self.usage_mock.list().
|
|
usage = compute_fakes.create_one_usage(attrs={'project_id': project.name})
|
|
|
|
columns = (
|
|
'Project',
|
|
'Servers',
|
|
'RAM MB-Hours',
|
|
'CPU Hours',
|
|
'Disk GB-Hours',
|
|
)
|
|
|
|
data = (
|
|
usage_cmds.ProjectColumn(usage.project_id),
|
|
usage_cmds.CountColumn(usage.server_usages),
|
|
usage_cmds.FloatColumn(usage.total_memory_mb_usage),
|
|
usage_cmds.FloatColumn(usage.total_vcpus_usage),
|
|
usage_cmds.FloatColumn(usage.total_local_gb_usage),
|
|
)
|
|
|
|
def setUp(self):
|
|
super(TestUsageShow, self).setUp()
|
|
|
|
self.sdk_client.get_usage.return_value = self.usage
|
|
|
|
self.projects_mock.get.return_value = self.project
|
|
# Get the command object to test
|
|
self.cmd = usage_cmds.ShowUsage(self.app, None)
|
|
|
|
def test_usage_show_no_options(self):
|
|
self.app.client_manager.auth_ref = mock.Mock()
|
|
self.app.client_manager.auth_ref.project_id = self.project.id
|
|
|
|
arglist = []
|
|
verifylist = [
|
|
('project', None),
|
|
('start', None),
|
|
('end', None),
|
|
]
|
|
|
|
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
|
|
|
columns, data = self.cmd.take_action(parsed_args)
|
|
|
|
self.assertEqual(self.columns, columns)
|
|
self.assertEqual(self.data, data)
|
|
|
|
def test_usage_show_with_options(self):
|
|
arglist = [
|
|
'--project',
|
|
self.project.id,
|
|
'--start',
|
|
'2016-11-11',
|
|
'--end',
|
|
'2016-12-20',
|
|
]
|
|
verifylist = [
|
|
('project', self.project.id),
|
|
('start', '2016-11-11'),
|
|
('end', '2016-12-20'),
|
|
]
|
|
|
|
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
|
|
|
columns, data = self.cmd.take_action(parsed_args)
|
|
|
|
self.sdk_client.get_usage.assert_called_with(
|
|
project=self.project.id,
|
|
start='2016-11-11T00:00:00',
|
|
end='2016-12-20T00:00:00',
|
|
)
|
|
|
|
self.assertEqual(self.columns, columns)
|
|
self.assertEqual(self.data, data)
|