X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=tests%2Flearn.at;h=72452957d89a862d461ecceec4bf9d39dd85e675;hb=003ce655b7116d18c86a74c50391e54990346931;hp=cae401f890731f7acdeada7c18af3ed20dbfeeb5;hpb=ecb229bebb9dd2687848dcebc10d2556ae1f2a87;p=sliver-openvswitch.git diff --git a/tests/learn.at b/tests/learn.at index cae401f89..72452957d 100644 --- a/tests/learn.at +++ b/tests/learn.at @@ -216,7 +216,8 @@ done ovs-appctl time/warp 5000 ovs-appctl time/warp 5000 ovs-appctl time/warp 5000 - AT_CHECK([ovs-ofctl dump-flows br0 table=1 | ofctl_strip | sort], [0], [dnl +sleep 1 +AT_CHECK([ovs-ofctl dump-flows br0 table=1 | ofctl_strip | sort], [0], [dnl table=1, priority=0 actions=FLOOD NXST_FLOW reply: ]) @@ -345,7 +346,13 @@ done for i in `seq 1 10`; do ovs-appctl netdev-dummy/receive p1 'in_port(1),eth(src=50:54:00:00:00:06,dst=50:54:00:00:00:07),eth_type(0x0800),ipv4(src=192.168.0.1,dst=192.168.0.2,proto=6,tos=0,ttl=64,frag=no),tcp(src=8,dst=9)' ovs-appctl time/warp 1000 - if [[ $i -eq 1 ]]; then + # Note: netdev-dummy/receive merely queues the packet. + # We need to wait for other thread to process the packet + # and update the flow's 'used' for the packet. + # (i % 3 == 0) below is somehow arbitrary but chosen to ensure + # that we update the flow's 'used' frequently enough to prevent + # idle_timeout. + if [[ $i -eq 1 -o $((i % 3)) -eq 0 ]]; then sleep 1 fi done @@ -402,10 +409,38 @@ for i in `seq 1 10`; do # it's difficult to predict the exact timing of rule expiry # because it's affected by flow dumper thread via udpif_dump_seq. # hard_timeout value for this test was chosen to overcome the uncertainty. - if [[ $i -eq 1 -o $i -eq 6 -o $i -eq 7 ]]; then + # + # receive #1 learn, install flow with hard_timeout=10 + # sleep to ensure the flow installation + # (warp, timeout left 8s) + # receive #2 the learned flow + # (warp, timeout left 6s) + # receive #3 + # (warp, timeout left 4s) + # receive #4 + # (warp, timeout left 2s) + # receive #5 + # (warp, timeout left 0s) + # NOTE: OVS does not consider this expired yet. cf. rule_expire() + # receive #6 + # (warp, timeout left -2s) + # sleep to ensure flow expiration + # receive #7 learn, install flow with hard_timeout=10 + # sleep to ensure the flow installation + # (warp, timeout left 8s) + # receive #8 + # (warp, timeout left 6s) + # receive #9 + # (warp, timeout left 4s) + # receive #10 + # (warp, timeout left 2s) + if [[ $i -eq 1 -o $i -eq 7 ]]; then sleep 1 fi ovs-appctl time/warp 2000 + if [[ $i -eq 6 ]]; then + sleep 1 + fi done # Check that the first packet of each flow went out port 2 and the rest out