mirror of
https://github.com/faucetsdn/ryu.git
synced 2026-05-08 13:56:09 +02:00
unit test for OFPMatch old/new api compatibility
Signed-off-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp> Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
This commit is contained in:
parent
30b2dfb7a1
commit
6bc1d4d817
133
ryu/tests/unit/ofproto/test_parser_compat.py
Normal file
133
ryu/tests/unit/ofproto/test_parser_compat.py
Normal file
@ -0,0 +1,133 @@
|
||||
# Copyright (C) 2013 Nippon Telegraph and Telephone Corporation.
|
||||
# Copyright (C) 2013 YAMAMOTO Takashi <yamamoto at valinux co jp>
|
||||
#
|
||||
# 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 sys
|
||||
import unittest
|
||||
from nose.tools import eq_
|
||||
from nose.tools import ok_
|
||||
|
||||
from ryu.ofproto import ofproto_v1_2_parser
|
||||
from ryu.ofproto import ofproto_v1_3_parser
|
||||
|
||||
from ryu.lib import addrconv
|
||||
from struct import unpack
|
||||
|
||||
|
||||
class Test_Parser_Compat(unittest.TestCase):
|
||||
def __init__(self, methodName):
|
||||
print 'init', methodName
|
||||
super(Test_Parser_Compat, self).__init__(methodName)
|
||||
|
||||
def setUp(self):
|
||||
pass
|
||||
|
||||
def tearDown(self):
|
||||
pass
|
||||
|
||||
def _test(self, name, ofpp):
|
||||
in_port = 987654321
|
||||
eth_src = 'aa:bb:cc:dd:ee:ff'
|
||||
ipv4_src = '192.0.2.9'
|
||||
ipv6_src = 'fe80::f00b:a4ff:feef:5d8f'
|
||||
|
||||
old_in_port = in_port
|
||||
old_eth_src = addrconv.mac.text_to_bin(eth_src)
|
||||
old_ipv4_src = unpack('!I', addrconv.ipv4.text_to_bin(ipv4_src))[0]
|
||||
old_ipv6_src = list(unpack('!8H',
|
||||
addrconv.ipv6.text_to_bin(ipv6_src)))
|
||||
|
||||
def check(o):
|
||||
check_old(o)
|
||||
check_new(o)
|
||||
|
||||
def check_old(o):
|
||||
# old api
|
||||
def get_field(m, t):
|
||||
for f in m.fields:
|
||||
if isinstance(f, t):
|
||||
return f
|
||||
get_value = lambda m, t: get_field(m, t).value
|
||||
|
||||
eq_(get_value(o, ofpp.MTInPort), old_in_port)
|
||||
eq_(get_value(o, ofpp.MTEthSrc), old_eth_src)
|
||||
eq_(get_value(o, ofpp.MTIPV4Src), old_ipv4_src)
|
||||
eq_(get_value(o, ofpp.MTIPv6Src), old_ipv6_src)
|
||||
|
||||
def check_new(o):
|
||||
# new api
|
||||
eq_(o['in_port'], in_port)
|
||||
eq_(o['eth_src'], eth_src)
|
||||
eq_(o['ipv4_src'], ipv4_src)
|
||||
eq_(o['ipv6_src'], ipv6_src)
|
||||
|
||||
# ensure that old and new api produces the same thing
|
||||
|
||||
old = ofpp.OFPMatch()
|
||||
old.set_in_port(old_in_port)
|
||||
old.set_dl_src(old_eth_src)
|
||||
old.set_ipv4_src(old_ipv4_src)
|
||||
old.set_ipv6_src(old_ipv6_src)
|
||||
|
||||
old_buf = bytearray()
|
||||
old.serialize(old_buf, 0)
|
||||
|
||||
# note: you can't inspect an object composed with the old api
|
||||
# before serialize().
|
||||
check_old(old)
|
||||
|
||||
new = ofpp.OFPMatch(in_port=in_port, eth_src=eth_src,
|
||||
ipv4_src=ipv4_src, ipv6_src=ipv6_src)
|
||||
check_new(new)
|
||||
|
||||
new_buf = bytearray()
|
||||
new.serialize(new_buf, 0)
|
||||
eq_(new_buf, old_buf)
|
||||
|
||||
old_jsondict = old.to_jsondict()
|
||||
new_jsondict = new.to_jsondict()
|
||||
eq_(new_jsondict, old_jsondict)
|
||||
|
||||
eq_(str(new), str(old))
|
||||
|
||||
# a parsed object can be inspected by old and new api
|
||||
|
||||
check(ofpp.OFPMatch.parser(buffer(new_buf), 0))
|
||||
check(ofpp.OFPMatch.from_jsondict(new_jsondict.values()[0]))
|
||||
|
||||
|
||||
def _add_tests():
|
||||
import new
|
||||
import functools
|
||||
import itertools
|
||||
|
||||
ofpps = [ofproto_v1_2_parser, ofproto_v1_3_parser]
|
||||
for ofpp in ofpps:
|
||||
mod = ofpp.__name__.split('.')[-1]
|
||||
method_name = 'test_' + mod + '_ofpmatch_compat'
|
||||
|
||||
def _run(self, name, ofpp):
|
||||
print ('processing %s ...' % name)
|
||||
self._test(name, ofpp)
|
||||
print ('adding %s ...' % method_name)
|
||||
f = functools.partial(_run, name=method_name,
|
||||
ofpp=ofpp)
|
||||
f.func_name = method_name
|
||||
f.__name__ = method_name
|
||||
cls = Test_Parser_Compat
|
||||
im = new.instancemethod(f, None, cls)
|
||||
setattr(cls, method_name, im)
|
||||
|
||||
_add_tests()
|
||||
Loading…
x
Reference in New Issue
Block a user