Пример #1
0
 def test_get_port_by_tag_not_find_wildcard_lswitch_returns_none(self):
     tenant_id = "pippo"
     neutron_port_id = "whatever"
     transport_zones_config = [{"zone_uuid": _uuid(), "transport_type": "stt"}]
     switchlib.create_lswitch(self.fake_cluster, tenant_id, _uuid(), "fake-switch", transport_zones_config)
     lport = switchlib.get_port_by_neutron_tag(self.fake_cluster, "*", neutron_port_id)
     self.assertIsNone(lport)
Пример #2
0
 def lsn_port_dhcp_setup(
     self, context, network_id, port_id, port_data, subnet_config=None):
     """Connect network to LSN via specified port and port_data."""
     try:
         lsn_id = None
         switch_id = nsx_utils.get_nsx_switch_ids(
             context.session, self.cluster, network_id)[0]
         lswitch_port_id = switch_api.get_port_by_neutron_tag(
             self.cluster, switch_id, port_id)['uuid']
         lsn_id = self.lsn_get(context, network_id)
         lsn_port_id = self.lsn_port_create(context, lsn_id, port_data)
     except (n_exc.NotFound, p_exc.NsxPluginException):
         raise p_exc.PortConfigurationError(
             net_id=network_id, lsn_id=lsn_id, port_id=port_id)
     else:
         try:
             lsn_api.lsn_port_plug_network(
                 self.cluster, lsn_id, lsn_port_id, lswitch_port_id)
         except p_exc.LsnConfigurationConflict:
             self.lsn_port_delete(context, lsn_id, lsn_port_id)
             raise p_exc.PortConfigurationError(
                 net_id=network_id, lsn_id=lsn_id, port_id=port_id)
         if subnet_config:
             self.lsn_port_dhcp_configure(
                 context, lsn_id, lsn_port_id, subnet_config)
         else:
             return (lsn_id, lsn_port_id)
Пример #3
0
 def test_get_port_by_tag(self):
     lswitch, lport = self._create_switch_and_port()
     lport2 = switchlib.get_port_by_neutron_tag(self.fake_cluster,
                                                lswitch['uuid'],
                                                'whatever')
     self.assertIsNotNone(lport2)
     self.assertEqual(lport['uuid'], lport2['uuid'])
Пример #4
0
 def test_get_port_by_tag_not_find_wildcard_lswitch_returns_none(self):
     tenant_id = 'pippo'
     neutron_port_id = 'whatever'
     transport_zones_config = [{'zone_uuid': _uuid(),
                                'transport_type': 'stt'}]
     switchlib.create_lswitch(
         self.fake_cluster, tenant_id, _uuid(),
         'fake-switch', transport_zones_config)
     lport = switchlib.get_port_by_neutron_tag(
         self.fake_cluster, '*', neutron_port_id)
     self.assertIsNone(lport)
Пример #5
0
 def lsn_port_dispose(self, context, network_id, mac_address):
     """Delete a LSN port given the network and the mac address."""
     lsn_id, lsn_port_id = self.lsn_port_get_by_mac(
         context, network_id, mac_address, raise_on_err=False)
     if lsn_port_id:
         self.lsn_port_delete(context, lsn_id, lsn_port_id)
         if mac_address == const.METADATA_MAC:
             try:
                 lswitch_port_id = switch_api.get_port_by_neutron_tag(
                     self.cluster, network_id,
                     const.METADATA_PORT_ID)['uuid']
                 switch_api.delete_port(
                     self.cluster, network_id, lswitch_port_id)
             except (n_exc.PortNotFoundOnNetwork,
                     api_exc.NsxApiException):
                 LOG.warn(_LW("Metadata port not found while attempting "
                              "to delete it from network %s"), network_id)
     else:
         LOG.warn(_LW("Unable to find Logical Services Node "
                      "Port with MAC %s"), mac_address)