From 41d6029de3627d9e61c7f90950f4a31b8a260c5a Mon Sep 17 00:00:00 2001 From: caoyuan Date: Sat, 14 Sep 2019 17:09:25 +0000 Subject: [PATCH] Revert "Add test action unit test" This reverts commit 46b368a848f3370466a4e58f05d7ea986fec5de9. Change-Id: I5ce4ba6236d58ec33e0b729177bf08148ec5335f --- kolla_cli/tests/unit/test_test_cmd.py | 79 --------------------------- 1 file changed, 79 deletions(-) delete mode 100644 kolla_cli/tests/unit/test_test_cmd.py diff --git a/kolla_cli/tests/unit/test_test_cmd.py b/kolla_cli/tests/unit/test_test_cmd.py deleted file mode 100644 index f89457a..0000000 --- a/kolla_cli/tests/unit/test_test_cmd.py +++ /dev/null @@ -1,79 +0,0 @@ -# Copyright (c) 2018 OpenStack Foundation -# -# 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 mock - -from kolla_cli.tests.unit.common import KollaCliUnitTest - - -class TestUnit(KollaCliUnitTest): - @mock.patch('kolla_cli.api.control_plane.ControlPlaneApi.pull') - @mock.patch('kolla_cli.common.ansible.job.AnsibleJob.get_status') - @mock.patch('kolla_cli.shell.KollaCli._is_inventory_present', - return_value=True) - def test_pull(self, _, mock_get_status, mock_pull): - mock_get_status.return_value = 0 - mock_pull.return_value = self.get_fake_job() - ret = self.run_cli_command('action pull') - self.assertEqual(ret, 0) - mock_pull.assert_called_once_with(1, [], []) - - @mock.patch('kolla_cli.api.control_plane.ControlPlaneApi.pull') - @mock.patch('kolla_cli.common.ansible.job.AnsibleJob.get_status') - @mock.patch('kolla_cli.shell.KollaCli._is_inventory_present', - return_value=True) - def test_pull_with_hosts(self, _, - mock_get_status, - mock_pull): - mock_get_status.return_value = 0 - mock_pull.return_value = self.get_fake_job() - hostnames = ['host1', 'host2'] - ret = self.run_cli_command( - 'action pull --hosts {hosts}'.format( - hosts=','.join(hostnames))) - self.assertEqual(ret, 0) - mock_pull.assert_called_once_with(1, hostnames, []) - - @mock.patch('kolla_cli.api.control_plane.ControlPlaneApi.pull') - @mock.patch('kolla_cli.common.ansible.job.AnsibleJob.get_status') - @mock.patch('kolla_cli.shell.KollaCli._is_inventory_present', - return_value=True) - def test_pull_with_services(self, _, - mock_get_status, - mock_pull): - mock_get_status.return_value = 0 - mock_pull.return_value = self.get_fake_job() - services = ['service1', 'service2'] - ret = self.run_cli_command( - 'action pull --services {services}'.format( - services=','.join(services))) - self.assertEqual(ret, 0) - mock_pull.assert_called_once_with(1, [], services) - - @mock.patch('kolla_cli.api.control_plane.ControlPlaneApi.pull') - @mock.patch('kolla_cli.common.ansible.job.AnsibleJob.get_status') - @mock.patch('kolla_cli.shell.KollaCli._is_inventory_present', - return_value=True) - def test_pull_with_hosts_and_services(self, _, - mock_get_status, - mock_pull): - mock_get_status.return_value = 0 - mock_pull.return_value = self.get_fake_job() - hostnames = ['host1', 'host2'] - services = ['service1', 'service2'] - ret = self.run_cli_command( - 'action pull --hosts {hosts} --services {services}'.format( - hosts=','.join(hostnames), services=','.join(services))) - self.assertEqual(ret, 0) - mock_pull.assert_called_once_with(1, hostnames, services)