Remove duplicated test_ping_global_ip_from_vm_with_fip

The test exists[1] in neutron-tempest-plugin for some years
with configurable option, let's remove this test as
it is duplicated.

[1] https://review.opendev.org/727764

Change-Id: I7822d5576b806b0b06287dada4e74fe3b64ffebc
This commit is contained in:
yatinkarel 2025-05-12 09:17:23 +05:30
parent f72e0a2c76
commit a7f2489edb

View File

@ -15,12 +15,9 @@
from tempest.lib import decorators
from neutron_tempest_plugin.common import ssh
from neutron_tempest_plugin import config
from neutron_tempest_plugin.scenario import base
from whitebox_neutron_tempest_plugin.common import constants
CONF = config.CONF
@ -38,17 +35,6 @@ class NetworkBasicTest(base.BaseTempestTestCase):
CONF.validation.image_ssh_user,
self.keypair['private_key'])
@decorators.idempotent_id('c04e26a1-90e9-4099-8375-d55b5d5d55bd')
def test_ping_global_ip_from_vm_with_fip(self):
self.setup_network_and_server()
server_ssh_client = ssh.Client(self.fip['floating_ip_address'],
CONF.validation.image_ssh_user,
pkey=self.keypair['private_key'])
self.check_remote_connectivity(
server_ssh_client,
constants.GLOBAL_IP,
ping_count=1)
@decorators.idempotent_id('ff7f6a84-4705-4638-9fce-cdc79f8b2c73')
def test_soft_hard_vm_reboot(self):
self.setup_network_and_server()