b2edc5f35e
This adds ML2 mechanism driver controlling OpenFlow switches and an agent using Ryu as OpenFlow Python library. - An agent acts as an OpenFlow controller on each compute nodes. - OpenFlow 1.3 (vendor agnostic unlike OVS extensions). Implements: blueprint ryu-ml2-driver Change-Id: I6a8168d24f911996639179d91c4da49151751057
44 lines
1.8 KiB
Python
44 lines
1.8 KiB
Python
# Copyright (C) 2014 VA Linux Systems Japan K.K.
|
|
#
|
|
# 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.
|
|
# @author: Fumihiko Kakuma, VA Linux Systems Japan K.K.
|
|
|
|
import mock
|
|
|
|
|
|
def patch_fake_oflib_of():
|
|
ryu_mod = mock.Mock()
|
|
ryu_base_mod = ryu_mod.base
|
|
ryu_lib_mod = ryu_mod.lib
|
|
ryu_lib_hub = ryu_lib_mod.hub
|
|
ryu_ofproto_mod = ryu_mod.ofproto
|
|
ryu_ofproto_of13 = ryu_ofproto_mod.ofproto_v1_3
|
|
ryu_ofproto_of13.OFPTT_ALL = 0xff
|
|
ryu_ofproto_of13.OFPG_ANY = 0xffffffff
|
|
ryu_ofproto_of13.OFPP_ANY = 0xffffffff
|
|
ryu_ofproto_of13.OFPFC_ADD = 0
|
|
ryu_ofproto_of13.OFPFC_DELETE = 3
|
|
ryu_app_mod = ryu_mod.app
|
|
ryu_app_ofctl_mod = ryu_app_mod.ofctl
|
|
ryu_ofctl_api = ryu_app_ofctl_mod.api
|
|
return mock.patch.dict('sys.modules',
|
|
{'ryu': ryu_mod,
|
|
'ryu.base': ryu_base_mod,
|
|
'ryu.lib': ryu_lib_mod,
|
|
'ryu.lib.hub': ryu_lib_hub,
|
|
'ryu.ofproto': ryu_ofproto_mod,
|
|
'ryu.ofproto.ofproto_v1_3': ryu_ofproto_of13,
|
|
'ryu.app': ryu_app_mod,
|
|
'ryu.app.ofctl': ryu_app_ofctl_mod,
|
|
'ryu.app.ofctl.api': ryu_ofctl_api})
|