ofproto-dpif: Add ovs-appctl commands for ovs-dpctl functions.
[sliver-openvswitch.git] / tests / ofproto-macros.at
1 m4_divert_push([PREPARE_TESTS])
2 [
3 # Strips out uninteresting parts of ovs-ofctl output, as well as parts
4 # that vary from one run to another.
5 ofctl_strip () {
6     sed '
7 s/ (xid=0x[0-9a-fA-F]*)//
8 s/ duration=[0-9.]*s,//
9 s/ cookie=0x0,//
10 s/ table=0,//
11 s/ n_packets=0,//
12 s/ n_bytes=0,//
13 s/ idle_age=[0-9]*,//
14 s/ hard_age=[0-9]*,//
15 '
16 }]
17 m4_divert_pop([PREPARE_TESTS])
18
19 m4_define([STRIP_XIDS], [[sed 's/ (xid=0x[0-9a-fA-F]*)//']])
20 m4_define([STRIP_DURATION], [[sed 's/\bduration=[0-9.]*s/duration=?s/']])
21 m4_define([STRIP_USED], [[sed 's/used:[0-9]\.[0-9]*/used:0.0/']])
22 m4_define([TESTABLE_LOG], [-vPATTERN:ANY:'%c|%p|%m'])
23
24 # OVS_VSWITCHD_START([vsctl-args], [vsctl-output])
25 #
26 # Creates a database and starts ovsdb-server, starts ovs-vswitchd
27 # connected to that database, calls ovs-vsctl to create a bridge named
28 # br0 with predictable settings, passing 'vsctl-args' as additional
29 # commands to ovs-vsctl.  If 'vsctl-args' causes ovs-vsctl to provide
30 # output (e.g. because it includes "create" commands) then 'vsctl-output'
31 # specifies the expected output after filtering through uuidfilt.pl.
32 m4_define([OVS_VSWITCHD_START],
33   [OVS_RUNDIR=`pwd`; export OVS_RUNDIR
34    OVS_LOGDIR=`pwd`; export OVS_LOGDIR
35    OVS_DBDIR=`pwd`; export OVS_DBDIR
36    OVS_SYSCONFDIR=`pwd`; export OVS_SYSCONFDIR
37    ON_EXIT([kill `cat ovsdb-server.pid ovs-vswitchd.pid`])
38
39    dnl Create database.
40    touch .conf.db.~lock~
41    AT_CHECK([ovsdb-tool create conf.db $abs_top_srcdir/vswitchd/vswitch.ovsschema])
42
43    dnl Start ovsdb-server.
44    AT_CHECK([ovsdb-server --detach --no-chdir --pidfile --log-file --remote=punix:$OVS_RUNDIR/db.sock], [0], [], [stderr])
45    AT_CHECK([[sed < stderr '
46 /vlog|INFO|opened log file/d
47 /ovsdb_server|INFO|ovsdb-server (Open vSwitch)/d']])
48    AT_CAPTURE_FILE([ovsdb-server.log])
49
50    dnl Initialize database.
51    AT_CHECK([ovs-vsctl --no-wait init])
52
53    dnl Start ovs-vswitchd.
54    AT_CHECK([ovs-vswitchd --detach --no-chdir --pidfile --enable-dummy --disable-system --log-file -vvconn -vofproto_dpif], [0], [], [stderr])
55    AT_CAPTURE_FILE([ovs-vswitchd.log])
56    AT_CHECK([[sed < stderr '
57 /vlog|INFO|opened log file/d
58 /vswitchd|INFO|ovs-vswitchd (Open vSwitch)/d
59 /reconnect|INFO|/d
60 /ofproto|INFO|using datapath ID/d
61 /ofproto|INFO|datapath ID changed to fedcba9876543210/d']])
62
63    dnl Add bridges, ports, etc.
64    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])
65 ])
66
67 m4_define([OVS_VSWITCHD_STOP],
68   [AT_CHECK([ovs-appctl -t ovs-vswitchd exit])
69    AT_CHECK([ovs-appctl -t ovsdb-server exit])])
70
71 # ADD_OF_PORTS(BRIDGE, OF_PORT[, OF_PORT...])
72 #
73 # Creates a dummy interface with an OpenFlow port number of OF_PORT and
74 # name of p{OF_PORT}.  The dummy implementation will treat the OF_PORT
75 # as the datapath port number, which as the effect of making the
76 # OpenFlow and datapath numbers the same.
77 m4_define([ADD_OF_PORTS],
78  [ovs-vsctl m4_foreach([of_port], m4_cdr($@),
79     [ \
80     -- add-port $1 p[]of_port -- set Interface p[]of_port type=dummy ofport_request=of_port])])