]> git.proxmox.com Git - mirror_ovs.git/blame - tests/ovsdb-server.at
stp: Fix memory leak.
[mirror_ovs.git] / tests / ovsdb-server.at
CommitLineData
80d326ad 1AT_BANNER([OVSDB -- ovsdb-server transactions (Unix sockets)])
21ff1aee
BP
2
3# OVSDB_CHECK_EXECUTION(TITLE, SCHEMA, TRANSACTIONS, OUTPUT, [KEYWORDS])
4#
5# Creates a database with the given SCHEMA, starts an ovsdb-server on
6# that database, and runs each of the TRANSACTIONS (which should be a
7# quoted list of quoted strings) against it with ovsdb-client one at a
8# time.
9#
10# Checks that the overall output is OUTPUT, but UUIDs in the output
11# are replaced by markers of the form <N> where N is a number. The
12# first unique UUID is replaced by <0>, the next by <1>, and so on.
13# If a given UUID appears more than once it is always replaced by the
14# same marker.
15#
16# TITLE is provided to AT_SETUP and KEYWORDS to AT_KEYWORDS.
17m4_define([OVSDB_CHECK_EXECUTION],
18 [AT_SETUP([$1])
19 AT_KEYWORDS([ovsdb server positive $5])
20 AT_DATA([schema], [$2
21])
7c126fbb 22 AT_CHECK([ovsdb-tool create db schema], [0], [stdout], [ignore])
0b1fae1b 23 AT_CHECK([ovsdb-server --detach --pidfile=$PWD/pid --remote=punix:socket --unixctl=$PWD/unixctl db], [0], [ignore], [ignore])
21ff1aee 24 m4_foreach([txn], [$3],
7c126fbb 25 [AT_CHECK([ovsdb-client transact unix:socket 'txn'], [0], [stdout], [ignore],
21ff1aee
BP
26 [test ! -e pid || kill `cat pid`])
27cat stdout >> output
28])
b12e3c41 29 AT_CHECK([perl $srcdir/uuidfilt.pl output], [0], [$4], [ignore],
21ff1aee
BP
30 [test ! -e pid || kill `cat pid`])
31 test ! -e pid || kill `cat pid`
32 AT_CLEANUP])
33
34EXECUTION_EXAMPLES
80d326ad 35\f
0b1fae1b
BP
36AT_SETUP([--remote=db: implementation])
37AT_KEYWORDS([ovsdb server positive])
38AT_DATA([schema],
39 [[{"name": "mydb",
40 "tables": {
41 "Manager": {
42 "columns": {
43 "manager": {"type": "string"}}}}}
44]])
7c126fbb
BP
45AT_CHECK([ovsdb-tool create db schema], [0], [ignore], [ignore])
46AT_CHECK(
0b1fae1b
BP
47 [[ovsdb-tool transact db \
48 '[{"op": "insert",
49 "table": "Manager",
50 "row": {"manager": "punix:socket"}}]']], [0], [ignore], [ignore])
51AT_CHECK([ovsdb-server --detach --pidfile=$PWD/pid --remote=db:Manager,manager --unixctl=$PWD/unixctl db], [0], [ignore], [ignore])
7c126fbb 52AT_CHECK(
0b1fae1b
BP
53 [[ovsdb-client transact unix:socket \
54 '[{"op": "select",
55 "table": "Manager",
56 "where": [],
57 "columns": ["manager"]}]']],
58 [0], [stdout], [ignore], [test ! -e pid || kill `cat pid`])
59AT_CHECK(
60 [perl $srcdir/uuidfilt.pl stdout],
61 [0],
62 [[[{"rows":[{"manager":"punix:socket"}]}]
63]],
64 [ignore],
65 [test ! -e pid || kill `cat pid`])
66test ! -e pid || kill `cat pid`
67AT_CLEANUP
80d326ad
BP
68\f
69AT_BANNER([OVSDB -- ovsdb-server transactions (SSL sockets)])
70
71# OVSDB_CHECK_EXECUTION(TITLE, SCHEMA, TRANSACTIONS, OUTPUT, [KEYWORDS])
72#
73# Creates a database with the given SCHEMA, starts an ovsdb-server on
74# that database, and runs each of the TRANSACTIONS (which should be a
75# quoted list of quoted strings) against it with ovsdb-client one at a
76# time.
77#
78# Checks that the overall output is OUTPUT, but UUIDs in the output
79# are replaced by markers of the form <N> where N is a number. The
80# first unique UUID is replaced by <0>, the next by <1>, and so on.
81# If a given UUID appears more than once it is always replaced by the
82# same marker.
83#
84# TITLE is provided to AT_SETUP and KEYWORDS to AT_KEYWORDS.
85m4_define([OVSDB_CHECK_EXECUTION],
86 [AT_SETUP([$1])
87 AT_KEYWORDS([ovsdb server positive ssl $5])
88 AT_SKIP_IF([test "$HAVE_OPENSSL" = no])
89 AT_SKIP_IF([test "x$RANDOM" = x])
90 AT_DATA([schema], [$2
91])
92 SSL_PORT=`expr 32767 + \( $RANDOM % 32767 \)`
93 PKIDIR=$abs_top_srcdir/tests
7c126fbb 94 AT_CHECK([ovsdb-tool create db schema], [0], [stdout], [ignore])
80d326ad
BP
95 AT_CHECK([ovsdb-server --detach --pidfile=$PWD/pid --private-key=$PKIDIR/testpki-privkey2.pem --certificate=$PKIDIR/testpki-cert2.pem --ca-cert=$PKIDIR/testpki-cacert.pem --remote=pssl:$SSL_PORT:127.0.0.1 --unixctl=$PWD/unixctl db], [0], [ignore], [ignore])
96 m4_foreach([txn], [$3],
7c126fbb 97 [AT_CHECK([ovsdb-client --private-key=$PKIDIR/testpki-privkey.pem --certificate=$PKIDIR/testpki-cert.pem --ca-cert=$PKIDIR/testpki-cacert.pem transact ssl:127.0.0.1:$SSL_PORT 'txn'], [0], [stdout], [ignore],
80d326ad
BP
98 [test ! -e pid || kill `cat pid`])
99cat stdout >> output
100])
101 AT_CHECK([perl $srcdir/uuidfilt.pl output], [0], [$4], [ignore],
102 [test ! -e pid || kill `cat pid`])
103 test ! -e pid || kill `cat pid`
104 AT_CLEANUP])
105
106EXECUTION_EXAMPLES