X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fofproto.at;h=ca8a558ed764178c1065a90eb8b2ade54b5cd66f;hb=135faefe4af624489ac310810a5ffb5223606252;hp=e6def3ec7ce0510cb37b6b4b1bc9d02e42a55082;hpb=05411977195ce5095c8c4a0d4b6472bdad99008e;p=openvswitch diff --git a/tests/ofproto.at b/tests/ofproto.at index e6def3ec..ca8a558e 100644 --- a/tests/ofproto.at +++ b/tests/ofproto.at @@ -13,29 +13,57 @@ AT_CHECK([STRIP_XIDS stdout], [0], [dnl OFPT_FEATURES_REPLY: ver:0x1, dpid:fedcba9876543210 n_tables:1, n_buffers:256 features: capabilities:0x87, actions:0xfff - LOCAL(br0): addr:aa:55:aa:55:00:00, config: 0x1, state:0x1 + LOCAL(br0): addr:aa:55:aa:55:00:00 + config: PORT_DOWN + state: LINK_DOWN OFPT_GET_CONFIG_REPLY: frags=normal miss_send_len=0 ]) OFPROTO_STOP AT_CLEANUP +dnl This is really bare-bones. +dnl It at least checks request and reply serialization and deserialization. +AT_SETUP([ofproto - port stats]) +OFPROTO_START +AT_CHECK([ovs-ofctl -vANY:ANY:WARN dump-ports br0], [0], [stdout]) +AT_CHECK([STRIP_XIDS stdout], [0], [dnl +OFPST_PORT reply: 1 ports + port 65534: rx pkts=0, bytes=0, drop=0, errs=0, frame=0, over=0, crc=0 + tx pkts=0, bytes=0, drop=0, errs=0, coll=0 +]) +OFPROTO_STOP +AT_CLEANUP + +dnl This is really bare-bones. +dnl It at least checks request and reply serialization and deserialization. +AT_SETUP([ofproto - queue stats]) +OFPROTO_START +AT_CHECK([ovs-ofctl -vANY:ANY:WARN queue-stats br0], [0], [stdout]) +AT_CHECK([STRIP_XIDS stdout], [0], [dnl +OFPST_QUEUE reply: 0 queues +]) +OFPROTO_STOP +AT_CLEANUP + AT_SETUP([ofproto - mod-port]) OFPROTO_START for command_config_state in \ 'up 0 0' \ - 'noflood 0x10 0' \ - 'down 0x11 0x1' \ - 'flood 0x1 0x1' + 'noflood NO_FLOOD 0' \ + 'down PORT_DOWN,NO_FLOOD LINK_DOWN' \ + 'flood PORT_DOWN LINK_DOWN' do set $command_config_state - command=$[1] config=$[2] state=$[3] + command=$[1] config=`echo $[2] | sed 's/,/ /g'` state=$[3] AT_CHECK([ovs-ofctl -vANY:ANY:WARN mod-port br0 br0 $command]) AT_CHECK([ovs-ofctl -vANY:ANY:WARN show br0], [0], [stdout]) AT_CHECK_UNQUOTED([STRIP_XIDS stdout], [0], [dnl OFPT_FEATURES_REPLY: ver:0x1, dpid:fedcba9876543210 n_tables:1, n_buffers:256 features: capabilities:0x87, actions:0xfff - LOCAL(br0): addr:aa:55:aa:55:00:00, config: $config, state:$state + LOCAL(br0): addr:aa:55:aa:55:00:00 + config: $config + state: $state OFPT_GET_CONFIG_REPLY: frags=normal miss_send_len=0 ]) done