Best Python code snippet using tempest_python
test_delete_floating_ip.py
Source:test_delete_floating_ip.py
1##############################################################################2# Copyright (c) 2017 Huawei Technologies Co.,Ltd and others.3#4# All rights reserved. This program and the accompanying materials5# are made available under the terms of the Apache License, Version 2.06# which accompanies this distribution, and is available at7# http://www.apache.org/licenses/LICENSE-2.08##############################################################################9from oslo_utils import uuidutils10import unittest11import mock12from yardstick.common import openstack_utils13from yardstick.common import exceptions14from yardstick.benchmark.scenarios.lib import delete_floating_ip15class DeleteFloatingIpTestCase(unittest.TestCase):16 def setUp(self):17 self._mock_delete_floating_ip = mock.patch.object(18 openstack_utils, 'delete_floating_ip')19 self.mock_delete_floating_ip = self._mock_delete_floating_ip.start()20 self._mock_get_shade_client = mock.patch.object(21 openstack_utils, 'get_shade_client')22 self.mock_get_shade_client = self._mock_get_shade_client.start()23 self._mock_log = mock.patch.object(delete_floating_ip, 'LOG')24 self.mock_log = self._mock_log.start()25 self.args = {'options': {'floating_ip_id': uuidutils.generate_uuid()}}26 self.result = {}27 self.del_obj = delete_floating_ip.DeleteFloatingIp(28 self.args, mock.ANY)29 self.addCleanup(self._stop_mock)30 def _stop_mock(self):31 self._mock_delete_floating_ip.stop()32 self._mock_get_shade_client.stop()33 self._mock_log.stop()34 def test_run(self):35 self.mock_delete_floating_ip.return_value = True36 self.assertIsNone(self.del_obj.run(self.result))37 self.assertEqual({"delete_floating_ip": 1}, self.result)38 self.mock_log.info.assert_called_once_with(39 "Delete floating ip successful!")40 def test_run_fail(self):41 self.mock_delete_floating_ip.return_value = False42 with self.assertRaises(exceptions.ScenarioDeleteFloatingIPError):43 self.del_obj.run(self.result)44 self.assertEqual({"delete_floating_ip": 0}, self.result)45 self.mock_log.error.assert_called_once_with(...
delete_floating_ip.py
Source:delete_floating_ip.py
...28 def run(self, result):29 """execute the test"""30 if not self.setup_done:31 self.setup()32 status = op_utils.delete_floating_ip(nova_client=self.nova_client,33 floatingip_id=self.floating_ip_id)34 if status:35 result.update({"delete_floating_ip": 1})36 LOG.info("Delete floating ip successful!")37 else:38 result.update({"delete_floating_ip": 0})...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!