# Copyright 2014: 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 datetime as date import os.path import tempfile import mock import six from rally.cli.commands import verify from rally import consts from rally import exceptions from rally import objects from tests.unit import test class VerifyCommandsTestCase(test.TestCase): def setUp(self): super(VerifyCommandsTestCase, self).setUp() self.verify = verify.VerifyCommands() self.image1 = mock.Mock() self.image1.name = "cirros-1" self.image1.id = "fake_image_id_1" self.image2 = mock.Mock() self.image2.id = "fake_image_id_2" self.image2.name = "cirros-2" self.flavor1 = mock.Mock() self.flavor2 = mock.Mock() self.flavor1.id = "fake_flavor_id_1" self.flavor2.id = "fake_flavor_id_2" self.flavor1.ram = 128 self.flavor2.ram = 64 @mock.patch("rally.osclients.Clients") @mock.patch("rally.api.Verification.verify") def test_start(self, mock_verification_verify, mock_clients): deployment_id = "0fba91c6-82d5-4ce1-bd00-5d7c989552d9" mock_clients().glance().images.list.return_value = [ self.image1, self.image2] mock_clients().nova().flavors.list.return_value = [ self.flavor1, self.flavor2] self.verify.start(deployment=deployment_id) default_set_name = "full" default_regex = None mock_verification_verify.assert_called_once_with( deployment_id, default_set_name, default_regex, None) @mock.patch("rally.osclients.Clients") @mock.patch("rally.api.Verification.verify") def test_start_with_user_specified_tempest_config( self, mock_verification_verify, mock_clients): deployment_id = "0fba91c6-82d5-4ce1-bd00-5d7c989552d9" mock_clients().glance().images.list.return_value = [ self.image1, self.image2] mock_clients().nova().flavors.list.return_value = [ self.flavor1, self.flavor2] tempest_config = tempfile.NamedTemporaryFile() self.verify.start(deployment=deployment_id, tempest_config=tempest_config.name) default_set_name = "full" default_regex = None mock_verification_verify.assert_called_once_with( deployment_id, default_set_name, default_regex, tempest_config.name) tempest_config.close() @mock.patch("rally.api.Verification.verify") def test_start_with_wrong_set_name(self, mock_verification_verify): deployment_id = "f2009aae-6ef3-468e-96b2-3c987d584010" wrong_set_name = "unexpected_value" self.verify.start(deployment_id, wrong_set_name) self.assertNotIn(wrong_set_name, consts.TempestTestsSets, consts.TempestTestsAPI) self.assertFalse(mock_verification_verify.called) @mock.patch("rally.cli.cliutils.print_list") @mock.patch("rally.db.verification_list") def test_list(self, mock_db_verification_list, mock_print_list): fields = ["UUID", "Deployment UUID", "Set name", "Tests", "Failures", "Created at", "Duration", "Status"] verifications = [{"created_at": date.datetime.now(), "updated_at": date.datetime.now()}] mock_db_verification_list.return_value = verifications self.verify.list() for row in verifications: self.assertEqual(row["updated_at"] - row["created_at"], row["duration"]) mock_db_verification_list.assert_called_once_with() mock_print_list.assert_called_once_with(verifications, fields, sortby_index=fields.index( "Created at")) @mock.patch("rally.cli.cliutils.print_list") @mock.patch("rally.db.verification_get") @mock.patch("rally.db.verification_result_get") @mock.patch("rally.objects.Verification") def test_show(self, mock_objects_verification, mock_verification_result_get, mock_verification_get, mock_print_list): class Test_dummy(): data = {"test_cases": {"test_a": {"name": "test_a", "time": 20, "status": "PASS"}, "test_b": {"name": "test_b", "time": 20, "status": "SKIP"}, "test_c": {"name": "test_c", "time": 20, "status": "FAIL"}}} verification_id = "39121186-b9a4-421d-b094-6c6b270cf9e9" total_fields = ["UUID", "Deployment UUID", "Set name", "Tests", "Failures", "Created at", "Status"] fields = ["name", "time", "status"] verification = mock.MagicMock() tests = Test_dummy() mock_verification_result_get.return_value = tests mock_verification_get.return_value = verification mock_objects_verification.return_value = 1 values = [objects.Verification(t) for t in six.itervalues(tests.data["test_cases"])] self.verify.show(verification_id) self.assertEqual([mock.call([verification], fields=total_fields), mock.call(values, fields, sortby_index=0)], mock_print_list.call_args_list) mock_verification_get.assert_called_once_with(verification_id) mock_verification_result_get.assert_called_once_with(verification_id) @mock.patch("rally.db.verification_result_get", return_value={"data": {}}) @mock.patch("json.dumps") def test_results(self, mock_json_dumps, mock_verification_result_get): verification_uuid = "a0231bdf-6a4e-4daf-8ab1-ae076f75f070" self.verify.results(verification_uuid, output_html=False, output_json=True) mock_verification_result_get.assert_called_once_with(verification_uuid) mock_json_dumps.assert_called_once_with({}, sort_keys=True, indent=4) @mock.patch("rally.db.verification_result_get") def test_results_verification_not_found( self, mock_verification_result_get): verification_uuid = "9044ced5-9c84-4666-8a8f-4b73a2b62acb" mock_verification_result_get.side_effect = ( exceptions.NotFoundException() ) self.assertEqual(self.verify.results(verification_uuid, output_html=False, output_json=True), 1) mock_verification_result_get.assert_called_once_with(verification_uuid) @mock.patch("rally.cli.commands.verify.open", side_effect=mock.mock_open(), create=True) @mock.patch("rally.db.verification_result_get", return_value={"data": {}}) def test_results_with_output_json_and_output_file( self, mock_verification_result_get, mock_open): mock_open.side_effect = mock.mock_open() verification_uuid = "94615cd4-ff45-4123-86bd-4b0741541d09" self.verify.results(verification_uuid, output_file="results", output_html=False, output_json=True) mock_verification_result_get.assert_called_once_with(verification_uuid) mock_open.assert_called_once_with("results", "wb") mock_open.side_effect().write.assert_called_once_with("{}") @mock.patch("rally.cli.commands.verify.open", side_effect=mock.mock_open(), create=True) @mock.patch("rally.db.verification_result_get") @mock.patch("rally.verification.tempest.json2html.HtmlOutput") def test_results_with_output_html_and_output_file( self, mock_html_output, mock_verification_result_get, mock_open): verification_uuid = "7140dd59-3a7b-41fd-a3ef-5e3e615d7dfa" fake_data = {} results = {"data": fake_data} mock_verification_result_get.return_value = results mock_create = mock.Mock(return_value="html_report") mock_html_output.return_value = mock.Mock(create_report=mock_create) self.verify.results(verification_uuid, output_html=True, output_json=False, output_file="results") mock_verification_result_get.assert_called_once_with(verification_uuid) mock_html_output.assert_called_once_with(fake_data) mock_open.assert_called_once_with("results", "wb") mock_open.side_effect().write.assert_called_once_with("html_report") @mock.patch("rally.db.verification_result_get", return_value={"data": {"test_cases": {}}}) @mock.patch("json.dumps") def test_compare(self, mock_json_dumps, mock_verification_result_get): uuid1 = "8eda1b10-c8a4-4316-9603-8468ff1d1560" uuid2 = "f6ef0a98-1b18-452f-a6a7-922555c2e326" self.verify.compare(uuid1, uuid2, output_csv=False, output_html=False, output_json=True) fake_data = [] calls = [mock.call(uuid1), mock.call(uuid2)] mock_verification_result_get.assert_has_calls(calls, True) mock_json_dumps.assert_called_once_with(fake_data, sort_keys=True, indent=4) @mock.patch("rally.db.verification_result_get", side_effect=exceptions.NotFoundException()) def test_compare_verification_not_found(self, mock_verification_result_get): uuid1 = "f7dc82da-31a6-4d40-bbf8-6d366d58960f" uuid2 = "2f8a05f3-d310-4f02-aabf-e1165aaa5f9c" self.assertEqual(self.verify.compare(uuid1, uuid2, output_csv=False, output_html=False, output_json=True), 1) mock_verification_result_get.assert_called_once_with(uuid1) @mock.patch("rally.cli.commands.verify.open", side_effect=mock.mock_open(), create=True) @mock.patch("rally.db.verification_result_get", return_value={"data": {"test_cases": {}}}) def test_compare_with_output_csv_and_output_file( self, mock_verification_result_get, mock_open): fake_string = "Type,Field,Value 1,Value 2,Test Name\r\n" uuid1 = "5e744557-4c3a-414f-9afb-7d3d8708028f" uuid2 = "efe1c74d-a632-476e-bb6a-55a9aa9cf76b" self.verify.compare(uuid1, uuid2, output_file="results", output_csv=True, output_html=False, output_json=False) calls = [mock.call(uuid1), mock.call(uuid2)] mock_verification_result_get.assert_has_calls(calls, True) mock_open.assert_called_once_with("results", "wb") mock_open.side_effect().write.assert_called_once_with(fake_string) @mock.patch("rally.cli.commands.verify.open", side_effect=mock.mock_open(), create=True) @mock.patch("rally.db.verification_result_get", return_value={"data": {"test_cases": {}}}) def test_compare_with_output_json_and_output_file( self, mock_verification_result_get, mock_open): fake_json_string = "[]" uuid1 = "0505e33a-738d-4474-a611-9db21547d863" uuid2 = "b1908417-934e-481c-8d23-bc0badad39ed" self.verify.compare(uuid1, uuid2, output_file="results", output_csv=False, output_html=False, output_json=True) calls = [mock.call(uuid1), mock.call(uuid2)] mock_verification_result_get.assert_has_calls(calls, True) mock_open.assert_called_once_with("results", "wb") mock_open.side_effect().write.assert_called_once_with(fake_json_string) @mock.patch("rally.cli.commands.verify.open", side_effect=mock.mock_open(), create=True) @mock.patch("rally.db.verification_result_get") @mock.patch(("rally.verification.tempest." "compare2html.create_report"), return_value="") def test_compare_with_output_html_and_output_file( self, mock_compare2html_create_report, mock_verification_result_get, mock_open): uuid1 = "cdf64228-77e9-414d-9d4b-f65e9d62c61f" uuid2 = "39393eec-1b45-4103-8ec1-631edac4b8f0" results = {"data": {"test_cases": {}}} fake_data = [] self.verify.compare(uuid1, uuid2, output_file="results", output_csv=False, output_html=True, output_json=False) mock_verification_result_get.return_value = results calls = [mock.call(uuid1), mock.call(uuid2)] mock_verification_result_get.assert_has_calls(calls, True) mock_compare2html_create_report.assert_called_once_with(fake_data) mock_open.assert_called_once_with("results", "wb") mock_open.side_effect().write.assert_called_once_with("") @mock.patch("rally.common.fileutils._rewrite_env_file") @mock.patch("rally.cli.commands.verify.db.verification_get", return_value=True) def test_use(self, mock_verification_get, mock__rewrite_env_file): verification_id = "80422553-5774-44bd-98ac-38bd8c7a0feb" self.verify.use(verification_id) mock__rewrite_env_file.assert_called_once_with( os.path.expanduser("~/.rally/globals"), ["RALLY_VERIFICATION=%s\n" % verification_id]) @mock.patch("rally.cli.commands.verify.db.verification_get") def test_use_not_found(self, mock_verification_get): verification_id = "ddc3f8ba-082a-496d-b18f-72cdf5c10a14" mock_verification_get.side_effect = exceptions.NotFoundException( uuid=verification_id) self.assertRaises(exceptions.NotFoundException, self.verify.use, verification_id)