1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
"""GetAsyncReply message tests."""
from pyof.v0x04.controller2switch.get_async_reply import GetAsyncReply
from tests.unit.test_struct import TestStruct
class TestGetAsyncReply(TestStruct):
"""Test the GetAsyncReply message."""
@classmethod
def setUpClass(cls):
"""Configure raw file and its object in parent class (TestDump)."""
super().setUpClass()
super().set_raw_dump_file('v0x04', 'ofpt_get_async_reply')
super().set_raw_dump_object(GetAsyncReply, xid=3, packet_in_mask1=0,
packet_in_mask2=0, port_status_mask1=0,
port_status_mask2=0, flow_removed_mask1=0,
flow_removed_mask2=0)
super().set_minimum_size(32)
|