diff --git a/neutron/agent/linux/ip_lib.py b/neutron/agent/linux/ip_lib.py index 1d961923043..d649706b717 100644 --- a/neutron/agent/linux/ip_lib.py +++ b/neutron/agent/linux/ip_lib.py @@ -551,7 +551,7 @@ class IpAddrCommand(IpDeviceCommandBase): if not common_utils.is_cidr_host(cidr): kwargs['mask'] = common_utils.cidr_mask_length(cidr) if scope: - kwargs['scope'] = IP_ADDRESS_SCOPE_NAME[scope] + kwargs['scope'] = scope if ip_version: kwargs['family'] = common_utils.get_socket_address_family( ip_version) diff --git a/neutron/tests/functional/agent/linux/test_ip_lib.py b/neutron/tests/functional/agent/linux/test_ip_lib.py index 68b000dc61d..dca760b77b0 100644 --- a/neutron/tests/functional/agent/linux/test_ip_lib.py +++ b/neutron/tests/functional/agent/linux/test_ip_lib.py @@ -982,3 +982,34 @@ class IpRouteCommandTestCase(functional_base.BaseSudoTestCase): self.device.route.flush(ip_version, table=table) routes = self.device.route.list_routes(ip_version, table=table) self.assertEqual([], routes) + + +class IpAddrCommandTestCase(functional_base.BaseSudoTestCase): + + def setUp(self): + super(IpAddrCommandTestCase, self).setUp() + self.namespace = self.useFixture(net_helpers.NamespaceFixture()).name + ip_lib.IPWrapper(self.namespace).add_dummy('test_device') + self.device = ip_lib.IPDevice('test_device', namespace=self.namespace) + self.device.link.set_up() + + def test_list_with_scope(self): + scope_ip = [ + ('global', '192.168.100.1/24'), + ('global', '2001:db8::1/64'), + ('link', '192.168.101.1/24'), + ('link', 'fe80::1:1/64'), + ('site', 'fec0:0:0:f101::1/64'), + ('host', '192.168.102.1/24')] + for scope, _ip in scope_ip: + self.device.addr.add(_ip, scope=scope) + + devices = self.device.addr.list() + devices_cidr = {device['cidr'] for device in devices} + for scope in scope_ip: + self.assertIn(scope[1], devices_cidr) + + for scope, _ip in scope_ip: + devices_filtered = self.device.addr.list(scope=scope) + devices_cidr = {device['cidr'] for device in devices_filtered} + self.assertIn(_ip, devices_cidr) diff --git a/neutron/tests/unit/agent/linux/test_ip_lib.py b/neutron/tests/unit/agent/linux/test_ip_lib.py index 905f83f5a0f..6d2a4004303 100644 --- a/neutron/tests/unit/agent/linux/test_ip_lib.py +++ b/neutron/tests/unit/agent/linux/test_ip_lib.py @@ -790,7 +790,7 @@ class TestIpAddrCommand(TestIPCmdBase): self.addr_cmd.list(scope='link') mock_get_dev_ip.assert_called_once_with('test_ns', name=self.addr_cmd.name, - scope=253) + scope='link') @mock.patch.object(ip_lib, 'get_devices_with_ip') def test_list_to(self, mock_get_dev_ip):