[ovs-dev] [trunks 3/3] ofproto-dpif: Add tests for VLAN handling.

Ben Pfaff blp at nicira.com
Wed Aug 24 22:56:34 UTC 2011


These tests would have caught the bug fixed in the previous commit
"ofproto-dpif: Fix behavior when a subset of VLANs is trunked."
---
 tests/ofproto-dpif.at   |   69 +++++++++++++++++++++++++++++++++++++++++++++++
 tests/ofproto-macros.at |   43 +++++++++++++++++++++++++++++
 2 files changed, 112 insertions(+), 0 deletions(-)

diff --git a/tests/ofproto-dpif.at b/tests/ofproto-dpif.at
index c504dfe..a2bc847 100644
--- a/tests/ofproto-dpif.at
+++ b/tests/ofproto-dpif.at
@@ -61,3 +61,72 @@ AT_CHECK([tail -1 stdout], [0],
 ])
 OFPROTO_STOP
 AT_CLEANUP
+
+AT_SETUP([ofproto-dpif - trunks])
+OVS_VSWITCHD_START(
+  [add-port br0 p1 trunks=10,12 -- set Interface p1 type=dummy -- \
+   add-port br0 p2 tag=10       -- set Interface p2 type=dummy -- \
+   add-port br0 p3 tag=12       -- set Interface p3 type=dummy -- \
+   add-port br0 p4 tag=12       -- set Interface p4 type=dummy])
+
+AT_CHECK(
+  [ovs-vsctl \
+        -- get Interface p1 ofport \
+        -- get Interface p2 ofport \
+        -- get Interface p3 ofport \
+        -- get Interface p4 ofport],
+  [0], [stdout])
+set `cat stdout`
+br0=0 p1=$1 p2=$2 p3=$3 p4=$4
+
+dnl Each of these specifies an in_port, a VLAN VID, and one or more sets
+dnl of valid datapath actions.  (The order of datapath actions is somewhat
+dnl unpredictable, hence the ability to specify more than one set.)
+for tuple in \
+        "$br0 0 drop" \
+        "$br0 10 $p1,strip_vlan,$p2" \
+        "$br0 11 drop" \
+        "$br0 12 $p1,strip_vlan,$p3,$p4 $p1,strip_vlan,$p4,$p3" \
+        "$p1 0 drop" \
+        "$p1 10 $br0,strip_vlan,$p2" \
+        "$p1 11 drop" \
+        "$p1 12 $br0,strip_vlan,$p4,$p3 $br0,strip_vlan,$p3,$p4" \
+        "$p2 0 set_tci(vid=10,pcp=0),$br0,$p1 set_tci(vid=10,pcp=0),$p1,$br0" \
+        "$p2 10 drop" \
+        "$p2 11 drop" \
+        "$p2 12 drop" \
+        "$p3 0 $p4,set_tci(vid=12,pcp=0),$br0,$p1 $p4,set_tci(vid=12,pcp=0),$p1,$br0" \
+        "$p3 10 drop" \
+        "$p3 11 drop" \
+        "$p3 12 drop" \
+        "$p4 0 $p3,set_tci(vid=12,pcp=0),$br0,$p1 $p3,set_tci(vid=12,pcp=0),$p1,$br0" \
+        "$p4 10 drop" \
+        "$p4 11 drop" \
+        "$p4 12 drop"
+do
+  set $tuple
+  in_port=$1
+  vlan=$2
+  shift; shift
+
+  if test $vlan = 0; then
+    flow="in_port($in_port),eth(src=50:54:00:00:00:01,dst=ff:ff:ff:ff:ff:ff),eth_type(0xabcd)"
+  else
+    flow="in_port($in_port),eth(src=50:54:00:00:00:01,dst=ff:ff:ff:ff:ff:ff),vlan(vid=$vlan,pcp=0),eth_type(0xabcd)"
+  fi
+
+  AT_CHECK([ovs-appctl ofproto/trace br0 "$flow"], [0], [stdout])
+
+  actions=`tail -1 stdout | sed 's/Datapath actions: //'`
+  no_match=:
+  for pattern
+  do
+    if test X"$actions" = X"$pattern"; then
+      no_match=false
+    fi
+  done
+  AT_FAIL_IF([$no_match])
+done
+
+OVS_VSWITCHD_STOP
+AT_CLEANUP
diff --git a/tests/ofproto-macros.at b/tests/ofproto-macros.at
index 24cb45a..0565ded 100644
--- a/tests/ofproto-macros.at
+++ b/tests/ofproto-macros.at
@@ -21,3 +21,46 @@ m4_define([OFPROTO_START],
 m4_define([OFPROTO_STOP],
   [AT_CHECK([ovs-appctl -t test-openflowd exit])
    trap '' 0])
+
+m4_define([OVS_VSWITCHD_START],
+  [dnl Skip this test if running as root.  Otherwise ovs-vswitchd will tear
+   dnl down any existing datapaths if the kernel module is loaded.
+   AT_SKIP_IF([test "`id -u`" = 0])
+
+   OVS_RUNDIR=$PWD; export OVS_RUNDIR
+   OVS_LOGDIR=$PWD; export OVS_LOGDIR
+   OVS_SYSCONFDIR=$PWD; export OVS_SYSCONFDIR=$PWD
+   trap 'kill `cat ovsdb-server.pid ovs-vswitchd.pid`' 0
+
+   dnl Create database.
+   mkdir openvswitch
+   touch openvswitch/.conf.db.~lock~
+   AT_CHECK([ovsdb-tool create openvswitch/conf.db $abs_top_srcdir/vswitchd/vswitch.ovsschema])
+
+   dnl Start ovsdb-server.
+   AT_CHECK([ovsdb-server --detach --pidfile --log-file --remote=punix:$OVS_RUNDIR/db.sock], [0], [], [stderr])
+   AT_CHECK([[sed < stderr '/vlog|INFO|opened log file/d']])
+   AT_CAPTURE_FILE([ovsdb-server.log])
+
+   dnl Initialize database.
+   AT_CHECK([ovs-vsctl --no-wait init])
+
+   dnl Start ovs-vswitchd.
+   AT_CHECK([ovs-vswitchd --detach --pidfile --enable-dummy --log-file], [0], [], [stderr])
+   AT_CAPTURE_FILE([ovs-vswitchd.log])
+   AT_CHECK([[sed < stderr '
+/vlog|INFO|opened log file/d
+/reconnect|INFO|/d
+/dpif_linux|ERR|Generic Netlink family.*does not exist/d
+/dpif|WARN|failed to enumerate system datapaths: No such file or directory/d
+/ofproto|INFO|using datapath ID/d
+/ofproto|INFO|datapath ID changed to fedcba9876543210/d']])
+
+   dnl Add bridges, ports, etc.
+   AT_CHECK([ovs-vsctl -- add-br br0 -- set bridge br0 datapath-type=dummy other-config:datapath-id=fedcba9876543210 -- $1])
+])
+
+m4_define([OVS_VSWITCHD_STOP],
+  [AT_CHECK([ovs-appctl -t ovs-vswitchd exit])
+   AT_CHECK([ovs-appctl -t ovsdb-server exit])
+   trap '' 0])
-- 
1.7.4.4




More information about the dev mailing list