Ejemplo n.º 1
0
 def resource_setup(cls):
     """Class level resource setup for test cases."""
     if hasattr(cls, "os"):
         cls.validation_resources = vresources.create_validation_resources(
             cls.os, cls.validation_resources)
     else:
         LOG.warning("Client manager not found, validation resources not"
                     " created")
Ejemplo n.º 2
0
 def resource_setup(cls):
     """Class level resource setup for test cases."""
     if hasattr(cls, "os"):
         cls.validation_resources = vresources.create_validation_resources(
             cls.os, cls.validation_resources)
     else:
         LOG.warning("Client manager not found, validation resources not"
                     " created")
Ejemplo n.º 3
0
 def resource_setup(cls):
     """Class level resource setup for test cases."""
     if (CONF.validation.ip_version_for_ssh not in (4, 6)
             and CONF.service_available.neutron):
         msg = "Invalid IP version %s in ip_version_for_ssh. Use 4 or 6"
         raise lib_exc.InvalidConfiguration(
             msg % CONF.validation.ip_version_for_ssh)
     if hasattr(cls, "os_primary"):
         vr = cls.validation_resources
         cls.validation_resources = vresources.create_validation_resources(
             cls.os_primary,
             use_neutron=CONF.service_available.neutron,
             ethertype='IPv' + str(CONF.validation.ip_version_for_ssh),
             floating_network_id=CONF.network.public_network_id,
             floating_network_name=CONF.network.floating_network_name,
             **vr)
     else:
         LOG.warning("Client manager not found, validation resources not"
                     " created")