dragonflow/dragonflow/tests/unit/test_app_base.py

399 lines
13 KiB
Python

# Copyright (c) 2016 OpenStack Foundation.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import logging
import mock
from neutron_lib import constants as n_const
from oslo_config import cfg
from oslo_log import fixture as log_fixture
from dragonflow.common import constants
from dragonflow.controller import datapath
from dragonflow.controller import datapath_layout
from dragonflow.controller import df_local_controller
from dragonflow.controller import ryu_base_app
from dragonflow.controller import topology
from dragonflow.db import api_nb
from dragonflow.db import db_store
from dragonflow.db import model_framework
from dragonflow.db.models import core
from dragonflow.db.models import l2
from dragonflow.db.models import l3
from dragonflow.db.models import ovs
from dragonflow.db.models import secgroups
from dragonflow.tests import base as tests_base
_DEFAULT = object()
class DFAppTestBase(tests_base.BaseTestCase):
apps_list = []
def setUp(self, enable_selective_topo_dist=False):
extra_apps = ['portbinding']
cfg.CONF.set_override(
'apps_list',
self.apps_list + extra_apps,
group='df',
)
cfg.CONF.set_override(
'datapath_layout_path',
'etc/dragonflow_datapath_layout.yaml',
group='df',
)
cfg.CONF.set_override('host', fake_chassis1.id)
super(DFAppTestBase, self).setUp()
self.useFixture(log_fixture.SetLogLevel([None], logging.DEBUG))
mock_app = mock.patch('ryu.base.app_manager.AppManager.get_instance'
).start()
self.addCleanup(mock_app.stop)
mock_nb = mock.patch('dragonflow.db.api_nb.NbApi.get_instance')
mock_nb.start()
self.addCleanup(mock_nb.stop)
mod_flow = mock.patch(
'dragonflow.controller.df_base_app.DFlowApp.mod_flow')
mod_flow_mock = mod_flow.start()
self.addCleanup(mod_flow.stop)
add_flow_go_to_table_mock_patch = mock.patch(
'dragonflow.controller.df_base_app.DFlowApp.add_flow_go_to_table')
add_flow_go_to_table = add_flow_go_to_table_mock_patch
add_flow_go_to_table_mock = add_flow_go_to_table.start()
self.addCleanup(add_flow_go_to_table_mock_patch.stop)
execute = mock.patch('neutron.agent.common.utils.execute')
execute_mock = execute.start()
self.addCleanup(execute.stop)
# Clear old objects from cache
db_store.get_instance().clear()
self.nb_api = api_nb.NbApi.get_instance()
self.controller = df_local_controller.DfLocalController(
fake_chassis1.id, self.nb_api)
switch_backend = self.controller.switch_backend
self.vswitch_api = switch_backend.vswitch_api = mock.MagicMock()
kwargs = dict(
nb_api=self.controller.nb_api,
vswitch_api=self.vswitch_api
)
switch_backend.open_flow_app = ryu_base_app.RyuDFAdapter(
db_change_callback=self.controller.db_change_callback,
**kwargs)
self.open_flow_app = switch_backend.open_flow_app
self.datapath = self.open_flow_app._datapath = mock.Mock()
self.open_flow_app.load(self.open_flow_app, **kwargs)
self.topology = self.controller.topology = topology.Topology(
self.controller, enable_selective_topo_dist)
cfg.CONF.set_override(
'write_datapath_allocation',
False,
group='df',
)
self.open_flow_app._new_dp = datapath.Datapath(
self.get_layout())
self.open_flow_app._new_dp.set_up(
self.open_flow_app, self.vswitch_api, self.nb_api, mock.sentinel)
self.open_flow_app._new_dp.set_up = mock.Mock()
self.dfdp = self.open_flow_app._new_dp
# Add basic network topology
self.controller.update(fake_logic_switch1)
self.controller.update(fake_lswitch_default_subnets[0])
self.controller.update(fake_external_switch1)
self.controller.update(fake_logic_router1)
self.controller.db_store.update(fake_chassis1)
self.controller.db_store.update(fake_chassis2)
mod_flow_mock.reset_mock()
add_flow_go_to_table_mock.reset_mock()
execute_mock.reset_mock()
def get_layout(self):
"""
This method should be overriden by test classes to provide the
minimal layout needed for the tests. For most unit tests of
applications, the layout would include the classification and the
application under test.
"""
return datapath_layout.Layout((), ())
def tearDown(self):
for model in model_framework.iter_models(False):
model.clear_registered_callbacks()
super(DFAppTestBase, self).tearDown()
fake_logical_router_ports = [l3.LogicalRouterPort(network="10.0.0.1/24",
lswitch="fake_switch1",
topic="fake_tenant1",
mac="fa:16:3e:50:96:f4",
unique_key=14,
id="fake_router_port1")]
fake_logic_router1 = l3.LogicalRouter(
name="router1",
topic="fake_tenant1",
version=10,
routes=[],
id="fake_router_id",
unique_key=1,
ports=fake_logical_router_ports)
fake_logic_switch1 = l2.LogicalSwitch(
unique_key=1,
name='private',
is_external=False,
segmentation_id=41,
mtu=1450,
topic='fake_tenant1',
id='fake_switch1',
version=5)
fake_lswitch_default_subnets = [l2.Subnet(name="private-subnet",
enable_dhcp=True,
topic="fake_tenant1",
gateway_ip="10.0.0.1",
cidr="10.0.0.0/24",
id="fake_subnet1",
version=1,
lswitch='fake_switch1')]
fake_external_switch1 = l2.LogicalSwitch(
unique_key=2,
name='public',
is_external=True,
segmentation_id=69,
mtu=1450,
topic='fake_tenant1',
id='fake_external_switch1')
external_switch1_subnets = [l2.Subnet(name="public-subnet",
enable_dhcp=False,
topic="fake_tenant1",
gateway_ip="172.24.4.1",
cidr="172.24.4.0/24",
id="fake_external_subnet1",
version=1,
lswitch='fake_external_switch1')]
fake_chassis1 = core.Chassis(
id='fakehost',
ip='172.24.4.50',
tunnel_types=('vxlan',),
)
fake_chassis2 = core.Chassis(
id='fake_host2',
ip='172.24.4.51',
tunnel_types=('vxlan',),
)
def chassis_binding(chassis):
return l2.PortBinding(
type=l2.BINDING_CHASSIS,
chassis=chassis,
)
local_binding = chassis_binding(fake_chassis1)
remote_binding = chassis_binding(fake_chassis2)
_lport_index = 0
def make_fake_port(id=None,
subnets=None,
macs=('00:00:00:00:00:00',),
ips=('0.0.0.0',),
name='fake_local_port',
lswitch='fake_switch1',
enabled=True,
topic='fake_tenant1',
device_owner='compute:None',
binding=None,
version=2,
unique_key=2,
port_security_enabled=True,
allowed_address_pairs=None,
binding_vnic_type='normal',
security_groups=['fake_security_group_id1'],
device_id='fake_device_id',
dhcp_params=None):
if id is None:
global _lport_index
id = 'lport_{0}'.format(_lport_index)
_lport_index += 1
fake_port = l2.LogicalPort(
enabled=enabled,
id=id,
topic=topic,
name=name,
unique_key=unique_key,
version=version,
ips=ips,
subnets=subnets,
macs=macs,
binding=binding,
lswitch=lswitch,
security_groups=security_groups,
allowed_address_pairs=allowed_address_pairs or [],
port_security_enabled=port_security_enabled,
device_owner=device_owner,
device_id=device_id,
# binding_vnic_type=binding_vnic_type,
dhcp_params={} if not dhcp_params else dhcp_params,
)
return fake_port
def make_fake_local_port(**kargs):
kargs['binding'] = local_binding
return make_fake_port(**kargs)
fake_local_port1_dhcp_opts = {
3: '10.0.0.1',
121: '0.0.0.0/0,10.0.0.1'
}
fake_dhcp_params = {
constants.DHCP_SIADDR: "10.0.0.1",
"opts": fake_local_port1_dhcp_opts
}
fake_local_port1 = make_fake_local_port(
macs=['fa:16:3e:8c:2e:b3'],
ips=['10.0.0.6', '2222:2222::3'],
subnets=['fake_subnet1'],
id='fake_port1',
dhcp_params=fake_dhcp_params)
fake_ovs_port1 = ovs.OvsPort(
id='fake_ovs_port1',
ofport=2,
name='tap-fake_port1',
admin_state='up',
type=constants.SWITCH_COMPUTE_INTERFACE,
lport='fake_port1',
attached_mac='fa:16:3e:8c:2e:b3',
)
fake_local_port2 = make_fake_local_port(
macs=['fa:16:3e:8c:2e:b4'],
ips=['10.0.0.7'],
id='fake_port2',
subnets=['fake_subnet1'])
fake_ovs_port2 = ovs.OvsPort(
id='fake_ovs_port2',
ofport=3,
name='tap-fake_port2',
admin_state='up',
type=constants.SWITCH_COMPUTE_INTERFACE,
lport='fake_port2',
attached_mac='fa:16:3e:8c:2e:b4',
)
def make_fake_remote_port(**kargs):
kargs['binding'] = remote_binding
return make_fake_port(**kargs)
fake_remote_port1 = make_fake_remote_port(
id='fake_remote_port',
macs=['fa:16:3e:8c:2e:af'],
name='fake_remote_port',
ips=['10.0.0.8'],
binding=chassis_binding('fake_host2'),
unique_key=5,
subnets=['fake_subnet1'])
fake_floatingip1 = l3.FloatingIp(
id='fake_floatingip_id1',
topic='fake_tenant1',
version=7,
floating_ip_address='172.24.4.2',
fixed_ip_address='10.0.0.6',
lport='fake_port1',
floating_lport='fake_floatingip_port_id',
lrouter='fake_router_id',
)
fake_security_group = secgroups.SecurityGroup(
name="fake_security_group",
topic="fake_tenant1",
version=5,
unique_key=1,
id="fake_security_group_id1",
rules=[secgroups.SecurityGroupRule(
direction="egress",
security_group_id="fake_security_group_id1",
ethertype=n_const.IPv4,
topic="fake_tenant1",
port_range_max=53,
port_range_min=53,
protocol=n_const.PROTO_NUM_UDP,
remote_group_id=None,
remote_ip_prefix="192.168.180.0/28",
id="fake_security_group_rule_1"),
secgroups.SecurityGroupRule(
direction="ingress",
security_group_id="fake_security_group_id1",
ethertype="IPv4",
topic="fake_tenant1",
port_range_max=None,
port_range_min=None,
protocol=None,
remote_group_id="fake_security_group_id1",
remote_ip_prefix=None,
id="fake_security_group_rule_2"),
secgroups.SecurityGroupRule(
direction="egress",
security_group_id="fake_security_group_id1",
ethertype=n_const.IPv6,
topic="fake_tenant1",
port_range_max=53,
port_range_min=53,
protocol=n_const.PROTO_NUM_UDP,
remote_group_id=None,
remote_ip_prefix="1111::/64",
id="fake_security_group_rule_3"),
secgroups.SecurityGroupRule(
direction="ingress",
security_group_id="fake_security_group_id1",
ethertype=n_const.IPv6,
topic="fake_tenant1",
port_range_max=None,
port_range_min=None,
protocol=None,
remote_group_id="fake_security_group_id1",
remote_ip_prefix=None,
id="fake_security_group_rule_4")])