1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
"""Test VendorStats message."""
from pyof.v0x01.controller2switch.common import StatsType, VendorStats
from pyof.v0x01.controller2switch.stats_request import StatsRequest
from tests.unit.test_struct import TestStruct
class TestVendorStats(TestStruct):
"""Test class for TestVendorStats.
The dump and unpacked data were provided by user bug report.
"""
@classmethod
def setUpClass(cls):
"""[Controller2Switch/VendorStats] - size 1056."""
super().setUpClass()
super().set_raw_dump_file('v0x01', 'ofpt_vendor_stats_reply')
super().set_raw_dump_object(StatsRequest, xid=4,
body_type=StatsType.OFPST_VENDOR,
flags=0, body=_get_vendor_stats())
super().set_minimum_size(12)
def _get_vendor_stats():
"""Return vendor stats found in StatsReply.body."""
body = b'\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\x00\x00\xff\x00\x00\x00'
return VendorStats(vendor=0x2320, body=body)
|