X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fofproto-macros.at;h=b0c4fa048c05caa8c3c8a415d32555f34a201a2b;hb=71baec0655e41bb93f125d162bc62cc9da0be73b;hp=24cb45a7dd9cfbeb23d0ce5fae5b85651cc3b1cf;hpb=045b2e5c77d02cd0d7bba046e2dbed72ec4828c8;p=openvswitch diff --git a/tests/ofproto-macros.at b/tests/ofproto-macros.at index 24cb45a7..b0c4fa04 100644 --- a/tests/ofproto-macros.at +++ b/tests/ofproto-macros.at @@ -1,23 +1,66 @@ +m4_divert_push([PREPARE_TESTS]) +[ +# Strips out uninteresting parts of ovs-ofctl output, as well as parts +# that vary from one run to another. +ofctl_strip () { + sed ' +s/ (xid=0x[0-9a-fA-F]*)// +s/ duration=[0-9.]*s,// +s/ cookie=0x0,// +s/ table=0,// +s/ n_packets=0,// +s/ n_bytes=0,// +s/ idle_age=[0-9]*,// +s/ hard_age=[0-9]*,// +' +}] +m4_divert_pop([PREPARE_TESTS]) + m4_define([STRIP_XIDS], [[sed 's/ (xid=0x[0-9a-fA-F]*)//']]) m4_define([STRIP_DURATION], [[sed 's/\bduration=[0-9.]*s/duration=?s/']]) m4_define([TESTABLE_LOG], [-vPATTERN:ANY:'%c|%p|%m']) -m4_define([OFPROTO_START], - [OVS_RUNDIR=$PWD; export OVS_RUNDIR - OVS_LOGDIR=$PWD; export OVS_LOGDIR - trap 'kill `cat test-openflowd.pid`' 0 - AT_CAPTURE_FILE([test-openflowd.log]) - AT_CHECK( - [test-openflowd --detach --pidfile --enable-dummy --log-file --fail=closed dummy@br0 none --datapath-id=fedcba9876543210 $1], - [0], [], [stderr]) +# OVS_VSWITCHD_START([vsctl-args], [vsctl-output]) +# +# Creates a database and starts ovsdb-server, starts ovs-vswitchd +# connected to that database, calls ovs-vsctl to create a bridge named +# br0 with predictable settings, passing 'vsctl-args' as additional +# commands to ovs-vsctl. If 'vsctl-args' causes ovs-vsctl to provide +# output (e.g. because it includes "create" commands) then 'vsctl-output' +# specifies the expected output after filtering through uuidfilt.pl. +m4_define([OVS_VSWITCHD_START], + [OVS_RUNDIR=`pwd`; export OVS_RUNDIR + OVS_LOGDIR=`pwd`; export OVS_LOGDIR + OVS_SYSCONFDIR=`pwd`; export OVS_SYSCONFDIR + 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 --disable-system --log-file], [0], [], [stderr]) + AT_CAPTURE_FILE([ovs-vswitchd.log]) AT_CHECK([[sed < stderr ' /vlog|INFO|opened log file/d -/openflowd|INFO|Open vSwitch version/d -/openflowd|INFO|OpenFlow protocol version/d +/reconnect|INFO|/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 other-config:hwaddr=aa:55:aa:55:00:00 fail-mode=secure -- $1 m4_if([$2], [], [], [| perl $srcdir/uuidfilt.pl])], [0], [$2]) ]) -m4_define([OFPROTO_STOP], - [AT_CHECK([ovs-appctl -t test-openflowd exit]) +m4_define([OVS_VSWITCHD_STOP], + [AT_CHECK([ovs-appctl -t ovs-vswitchd exit]) + AT_CHECK([ovs-appctl -t ovsdb-server exit]) trap '' 0])