2009-12-02 11:26:15 -08:00
|
|
|
AT_BANNER([OVSDB -- interface description language (IDL)])
|
|
|
|
|
|
|
|
|
|
# OVSDB_CHECK_IDL(TITLE, [PRE-IDL-TXN], TRANSACTIONS, OUTPUT, [KEYWORDS])
|
|
|
|
|
#
|
|
|
|
|
# Creates a database with a schema derived from idltest.ovsidl, runs
|
|
|
|
|
# each PRE-IDL-TXN (if any), starts an ovsdb-server on that database,
|
|
|
|
|
# and runs "test-ovsdb idl" passing each of the TRANSACTIONS along.
|
|
|
|
|
#
|
|
|
|
|
# Checks that the overall output is OUTPUT. Before comparison, the
|
|
|
|
|
# output is sorted (using "sort") and UUIDs in the output are replaced
|
|
|
|
|
# by markers of the form <N> where N is a number. The first unique
|
|
|
|
|
# UUID is replaced by <0>, the next by <1>, and so on. If a given
|
|
|
|
|
# UUID appears more than once it is always replaced by the same
|
|
|
|
|
# marker.
|
|
|
|
|
#
|
|
|
|
|
# TITLE is provided to AT_SETUP and KEYWORDS to AT_KEYWORDS.
|
|
|
|
|
m4_define([OVSDB_CHECK_IDL],
|
|
|
|
|
[AT_SETUP([$1])
|
|
|
|
|
AT_KEYWORDS([ovsdb server idl positive $5])
|
2010-02-01 14:04:25 -08:00
|
|
|
AT_CHECK([ovsdb-tool create db $abs_srcdir/idltest.ovsschema],
|
2010-01-07 15:52:58 -08:00
|
|
|
[0], [stdout], [ignore])
|
2010-02-02 14:16:06 -08:00
|
|
|
AT_CHECK([ovsdb-server '-vPATTERN:console:ovsdb-server|%c|%m' --detach --pidfile=$PWD/pid --remote=punix:socket --unixctl=$PWD/unixctl db], [0], [ignore], [ignore])
|
2009-12-02 11:26:15 -08:00
|
|
|
m4_if([$2], [], [],
|
2010-02-02 14:16:06 -08:00
|
|
|
[AT_CHECK([ovsdb-client transact unix:socket $2], [0], [ignore], [ignore], [kill `cat pid`])])
|
2009-12-07 17:08:04 -08:00
|
|
|
AT_CHECK([test-ovsdb '-vPATTERN:console:test-ovsdb|%c|%m' -vjsonrpc -t10 idl unix:socket $3],
|
2010-02-02 14:16:06 -08:00
|
|
|
[0], [stdout], [ignore], [kill `cat pid`])
|
2009-12-02 11:26:15 -08:00
|
|
|
AT_CHECK([sort stdout | perl $srcdir/uuidfilt.pl], [0], [$4], [],
|
2010-02-02 14:16:06 -08:00
|
|
|
[kill `cat pid`])
|
|
|
|
|
OVSDB_SERVER_SHUTDOWN
|
2009-12-02 11:26:15 -08:00
|
|
|
AT_CLEANUP])
|
|
|
|
|
|
|
|
|
|
OVSDB_CHECK_IDL([simple idl, initially empty, no ops],
|
|
|
|
|
[],
|
|
|
|
|
[],
|
|
|
|
|
[000: empty
|
|
|
|
|
001: done
|
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
OVSDB_CHECK_IDL([simple idl, initially empty, various ops],
|
|
|
|
|
[],
|
2010-02-09 10:17:58 -08:00
|
|
|
[['["idltest",
|
|
|
|
|
{"op": "insert",
|
2009-12-02 11:26:15 -08:00
|
|
|
"table": "simple",
|
|
|
|
|
"row": {"i": 1,
|
|
|
|
|
"r": 2.0,
|
|
|
|
|
"b": true,
|
|
|
|
|
"s": "mystring",
|
|
|
|
|
"u": ["uuid", "84f5c8f5-ac76-4dbc-a24f-8860eb407fc1"],
|
|
|
|
|
"ia": ["set", [1, 2, 3]],
|
|
|
|
|
"ra": ["set", [-0.5]],
|
|
|
|
|
"ba": ["set", [true, false]],
|
|
|
|
|
"sa": ["set", ["abc", "def"]],
|
|
|
|
|
"ua": ["set", [["uuid", "69443985-7806-45e2-b35f-574a04e720f9"],
|
|
|
|
|
["uuid", "aad11ef0-816a-4b01-93e6-03b8b4256b98"]]]}},
|
|
|
|
|
{"op": "insert",
|
|
|
|
|
"table": "simple",
|
|
|
|
|
"row": {}}]' \
|
2010-02-09 10:17:58 -08:00
|
|
|
'["idltest",
|
|
|
|
|
{"op": "update",
|
2009-12-02 11:26:15 -08:00
|
|
|
"table": "simple",
|
|
|
|
|
"where": [],
|
|
|
|
|
"row": {"b": true}}]' \
|
2010-02-09 10:17:58 -08:00
|
|
|
'["idltest",
|
|
|
|
|
{"op": "update",
|
2009-12-02 11:26:15 -08:00
|
|
|
"table": "simple",
|
|
|
|
|
"where": [],
|
|
|
|
|
"row": {"r": 123.5}}]' \
|
2010-02-09 10:17:58 -08:00
|
|
|
'["idltest",
|
|
|
|
|
{"op": "insert",
|
2009-12-02 11:26:15 -08:00
|
|
|
"table": "simple",
|
|
|
|
|
"row": {"i": -1,
|
|
|
|
|
"r": 125,
|
|
|
|
|
"b": false,
|
|
|
|
|
"s": "",
|
|
|
|
|
"ia": ["set", [1]],
|
|
|
|
|
"ra": ["set", [1.5]],
|
|
|
|
|
"ba": ["set", [false]],
|
|
|
|
|
"sa": ["set", []],
|
|
|
|
|
"ua": ["set", []]}}]' \
|
2010-02-09 10:17:58 -08:00
|
|
|
'["idltest",
|
|
|
|
|
{"op": "update",
|
2009-12-02 11:26:15 -08:00
|
|
|
"table": "simple",
|
|
|
|
|
"where": [["i", "<", 1]],
|
|
|
|
|
"row": {"s": "newstring"}}]' \
|
2010-02-09 10:17:58 -08:00
|
|
|
'["idltest",
|
|
|
|
|
{"op": "delete",
|
2009-12-02 11:26:15 -08:00
|
|
|
"table": "simple",
|
|
|
|
|
"where": [["i", "==", 0]]}]' \
|
|
|
|
|
'reconnect']],
|
|
|
|
|
[[000: empty
|
|
|
|
|
001: {"error":null,"result":[{"uuid":["uuid","<0>"]},{"uuid":["uuid","<1>"]}]}
|
|
|
|
|
002: i=0 r=0 b=false s= u=<2> ia=[] ra=[] ba=[] sa=[] ua=[] uuid=<1>
|
|
|
|
|
002: i=1 r=2 b=true s=mystring u=<3> ia=[1 2 3] ra=[-0.5] ba=[false true] sa=[abc def] ua=[<4> <5>] uuid=<0>
|
|
|
|
|
003: {"error":null,"result":[{"count":2}]}
|
|
|
|
|
004: i=0 r=0 b=true s= u=<2> ia=[] ra=[] ba=[] sa=[] ua=[] uuid=<1>
|
|
|
|
|
004: i=1 r=2 b=true s=mystring u=<3> ia=[1 2 3] ra=[-0.5] ba=[false true] sa=[abc def] ua=[<4> <5>] uuid=<0>
|
|
|
|
|
005: {"error":null,"result":[{"count":2}]}
|
|
|
|
|
006: i=0 r=123.5 b=true s= u=<2> ia=[] ra=[] ba=[] sa=[] ua=[] uuid=<1>
|
|
|
|
|
006: i=1 r=123.5 b=true s=mystring u=<3> ia=[1 2 3] ra=[-0.5] ba=[false true] sa=[abc def] ua=[<4> <5>] uuid=<0>
|
|
|
|
|
007: {"error":null,"result":[{"uuid":["uuid","<6>"]}]}
|
|
|
|
|
008: i=-1 r=125 b=false s= u=<2> ia=[1] ra=[1.5] ba=[false] sa=[] ua=[] uuid=<6>
|
|
|
|
|
008: i=0 r=123.5 b=true s= u=<2> ia=[] ra=[] ba=[] sa=[] ua=[] uuid=<1>
|
|
|
|
|
008: i=1 r=123.5 b=true s=mystring u=<3> ia=[1 2 3] ra=[-0.5] ba=[false true] sa=[abc def] ua=[<4> <5>] uuid=<0>
|
|
|
|
|
009: {"error":null,"result":[{"count":2}]}
|
|
|
|
|
010: i=-1 r=125 b=false s=newstring u=<2> ia=[1] ra=[1.5] ba=[false] sa=[] ua=[] uuid=<6>
|
|
|
|
|
010: i=0 r=123.5 b=true s=newstring u=<2> ia=[] ra=[] ba=[] sa=[] ua=[] uuid=<1>
|
|
|
|
|
010: i=1 r=123.5 b=true s=mystring u=<3> ia=[1 2 3] ra=[-0.5] ba=[false true] sa=[abc def] ua=[<4> <5>] uuid=<0>
|
|
|
|
|
011: {"error":null,"result":[{"count":1}]}
|
|
|
|
|
012: i=-1 r=125 b=false s=newstring u=<2> ia=[1] ra=[1.5] ba=[false] sa=[] ua=[] uuid=<6>
|
|
|
|
|
012: i=1 r=123.5 b=true s=mystring u=<3> ia=[1 2 3] ra=[-0.5] ba=[false true] sa=[abc def] ua=[<4> <5>] uuid=<0>
|
|
|
|
|
013: reconnect
|
|
|
|
|
014: i=-1 r=125 b=false s=newstring u=<2> ia=[1] ra=[1.5] ba=[false] sa=[] ua=[] uuid=<6>
|
|
|
|
|
014: i=1 r=123.5 b=true s=mystring u=<3> ia=[1 2 3] ra=[-0.5] ba=[false true] sa=[abc def] ua=[<4> <5>] uuid=<0>
|
|
|
|
|
015: done
|
|
|
|
|
]])
|
|
|
|
|
|
|
|
|
|
OVSDB_CHECK_IDL([simple idl, initially populated],
|
2010-02-09 10:17:58 -08:00
|
|
|
[['["idltest",
|
|
|
|
|
{"op": "insert",
|
2009-12-02 11:26:15 -08:00
|
|
|
"table": "simple",
|
|
|
|
|
"row": {"i": 1,
|
|
|
|
|
"r": 2.0,
|
|
|
|
|
"b": true,
|
|
|
|
|
"s": "mystring",
|
|
|
|
|
"u": ["uuid", "84f5c8f5-ac76-4dbc-a24f-8860eb407fc1"],
|
|
|
|
|
"ia": ["set", [1, 2, 3]],
|
|
|
|
|
"ra": ["set", [-0.5]],
|
|
|
|
|
"ba": ["set", [true, false]],
|
|
|
|
|
"sa": ["set", ["abc", "def"]],
|
|
|
|
|
"ua": ["set", [["uuid", "69443985-7806-45e2-b35f-574a04e720f9"],
|
|
|
|
|
["uuid", "aad11ef0-816a-4b01-93e6-03b8b4256b98"]]]}},
|
|
|
|
|
{"op": "insert",
|
|
|
|
|
"table": "simple",
|
|
|
|
|
"row": {}}]']],
|
2010-02-09 10:17:58 -08:00
|
|
|
[['["idltest",
|
|
|
|
|
{"op": "update",
|
2009-12-02 11:26:15 -08:00
|
|
|
"table": "simple",
|
|
|
|
|
"where": [],
|
|
|
|
|
"row": {"b": true}}]']],
|
|
|
|
|
[[000: i=0 r=0 b=false s= u=<0> ia=[] ra=[] ba=[] sa=[] ua=[] uuid=<1>
|
|
|
|
|
000: i=1 r=2 b=true s=mystring u=<2> ia=[1 2 3] ra=[-0.5] ba=[false true] sa=[abc def] ua=[<3> <4>] uuid=<5>
|
|
|
|
|
001: {"error":null,"result":[{"count":2}]}
|
|
|
|
|
002: i=0 r=0 b=true s= u=<0> ia=[] ra=[] ba=[] sa=[] ua=[] uuid=<1>
|
|
|
|
|
002: i=1 r=2 b=true s=mystring u=<2> ia=[1 2 3] ra=[-0.5] ba=[false true] sa=[abc def] ua=[<3> <4>] uuid=<5>
|
|
|
|
|
003: done
|
|
|
|
|
]])
|
|
|
|
|
|
2009-12-07 17:08:04 -08:00
|
|
|
OVSDB_CHECK_IDL([simple idl, writing via IDL],
|
2010-02-09 10:17:58 -08:00
|
|
|
[['["idltest",
|
|
|
|
|
{"op": "insert",
|
2009-12-07 17:08:04 -08:00
|
|
|
"table": "simple",
|
|
|
|
|
"row": {"i": 1,
|
|
|
|
|
"r": 2.0,
|
|
|
|
|
"b": true,
|
|
|
|
|
"s": "mystring",
|
|
|
|
|
"u": ["uuid", "84f5c8f5-ac76-4dbc-a24f-8860eb407fc1"],
|
|
|
|
|
"ia": ["set", [1, 2, 3]],
|
|
|
|
|
"ra": ["set", [-0.5]],
|
|
|
|
|
"ba": ["set", [true, false]],
|
|
|
|
|
"sa": ["set", ["abc", "def"]],
|
|
|
|
|
"ua": ["set", [["uuid", "69443985-7806-45e2-b35f-574a04e720f9"],
|
|
|
|
|
["uuid", "aad11ef0-816a-4b01-93e6-03b8b4256b98"]]]}},
|
|
|
|
|
{"op": "insert",
|
|
|
|
|
"table": "simple",
|
|
|
|
|
"row": {}}]']],
|
|
|
|
|
[['set 0 b 1, set 1 r 3.5' \
|
|
|
|
|
'insert 2, delete 1']],
|
|
|
|
|
[[000: i=0 r=0 b=false s= u=<0> ia=[] ra=[] ba=[] sa=[] ua=[] uuid=<1>
|
|
|
|
|
000: i=1 r=2 b=true s=mystring u=<2> ia=[1 2 3] ra=[-0.5] ba=[false true] sa=[abc def] ua=[<3> <4>] uuid=<5>
|
|
|
|
|
001: commit, status=success
|
|
|
|
|
002: i=0 r=0 b=true s= u=<0> ia=[] ra=[] ba=[] sa=[] ua=[] uuid=<1>
|
|
|
|
|
002: i=1 r=3.5 b=true s=mystring u=<2> ia=[1 2 3] ra=[-0.5] ba=[false true] sa=[abc def] ua=[<3> <4>] uuid=<5>
|
|
|
|
|
003: commit, status=success
|
|
|
|
|
004: i=0 r=0 b=true s= u=<0> ia=[] ra=[] ba=[] sa=[] ua=[] uuid=<1>
|
|
|
|
|
004: i=2 r=0 b=false s= u=<0> ia=[] ra=[] ba=[] sa=[] ua=[] uuid=<6>
|
|
|
|
|
005: done
|
|
|
|
|
]])
|
|
|
|
|
|
2009-12-16 16:26:17 -08:00
|
|
|
OVSDB_CHECK_IDL([simple idl, increment operation],
|
2010-02-09 10:17:58 -08:00
|
|
|
[['["idltest",
|
|
|
|
|
{"op": "insert",
|
2009-12-16 16:26:17 -08:00
|
|
|
"table": "simple",
|
|
|
|
|
"row": {}}]']],
|
|
|
|
|
[['set 0 r 2.0, increment simple i']],
|
|
|
|
|
[[000: i=0 r=0 b=false s= u=<0> ia=[] ra=[] ba=[] sa=[] ua=[] uuid=<1>
|
|
|
|
|
001: commit, status=success, increment=1
|
|
|
|
|
002: i=1 r=2 b=false s= u=<0> ia=[] ra=[] ba=[] sa=[] ua=[] uuid=<1>
|
|
|
|
|
003: done
|
|
|
|
|
]])
|
|
|
|
|
|
2009-12-02 11:26:15 -08:00
|
|
|
OVSDB_CHECK_IDL([self-linking idl, consistent ops],
|
|
|
|
|
[],
|
2010-02-09 10:17:58 -08:00
|
|
|
[['["idltest",
|
|
|
|
|
{"op": "insert",
|
2009-12-03 10:35:45 -08:00
|
|
|
"table": "link1",
|
2009-12-02 11:26:15 -08:00
|
|
|
"row": {"i": 0, "k": ["named-uuid", "self"]},
|
|
|
|
|
"uuid-name": "self"}]' \
|
2010-02-09 10:17:58 -08:00
|
|
|
'["idltest",
|
|
|
|
|
{"op": "insert",
|
2009-12-03 10:35:45 -08:00
|
|
|
"table": "link1",
|
2009-12-07 11:47:48 -08:00
|
|
|
"row": {"i": 1, "k": ["named-uuid", "row2"]},
|
2009-12-02 11:26:15 -08:00
|
|
|
"uuid-name": "row1"},
|
|
|
|
|
{"op": "insert",
|
2009-12-03 10:35:45 -08:00
|
|
|
"table": "link1",
|
2009-12-02 11:26:15 -08:00
|
|
|
"row": {"i": 2, "k": ["named-uuid", "row1"]},
|
2009-12-07 11:47:48 -08:00
|
|
|
"uuid-name": "row2"}]' \
|
2010-02-09 10:17:58 -08:00
|
|
|
'["idltest",
|
|
|
|
|
{"op": "update",
|
2009-12-03 10:35:45 -08:00
|
|
|
"table": "link1",
|
2009-12-02 11:26:15 -08:00
|
|
|
"where": [["i", "==", 1]],
|
|
|
|
|
"row": {"k": ["uuid", "#1#"]}}]' \
|
2010-02-09 10:17:58 -08:00
|
|
|
'["idltest",
|
|
|
|
|
{"op": "update",
|
2009-12-03 10:35:45 -08:00
|
|
|
"table": "link1",
|
2009-12-02 11:26:15 -08:00
|
|
|
"where": [],
|
|
|
|
|
"row": {"k": ["uuid", "#0#"]}}]']],
|
|
|
|
|
[[000: empty
|
|
|
|
|
001: {"error":null,"result":[{"uuid":["uuid","<0>"]}]}
|
2009-12-03 10:35:45 -08:00
|
|
|
002: i=0 k=0 ka=[] l2= uuid=<0>
|
2010-02-08 16:03:21 -08:00
|
|
|
003: {"error":null,"result":[{"uuid":["uuid","<1>"]},{"uuid":["uuid","<2>"]}]}
|
2009-12-03 10:35:45 -08:00
|
|
|
004: i=0 k=0 ka=[] l2= uuid=<0>
|
|
|
|
|
004: i=1 k=2 ka=[] l2= uuid=<1>
|
|
|
|
|
004: i=2 k=1 ka=[] l2= uuid=<2>
|
2009-12-02 11:26:15 -08:00
|
|
|
005: {"error":null,"result":[{"count":1}]}
|
2009-12-03 10:35:45 -08:00
|
|
|
006: i=0 k=0 ka=[] l2= uuid=<0>
|
|
|
|
|
006: i=1 k=1 ka=[] l2= uuid=<1>
|
|
|
|
|
006: i=2 k=1 ka=[] l2= uuid=<2>
|
2009-12-02 11:26:15 -08:00
|
|
|
007: {"error":null,"result":[{"count":3}]}
|
2009-12-03 10:35:45 -08:00
|
|
|
008: i=0 k=0 ka=[] l2= uuid=<0>
|
|
|
|
|
008: i=1 k=0 ka=[] l2= uuid=<1>
|
|
|
|
|
008: i=2 k=0 ka=[] l2= uuid=<2>
|
2009-12-02 11:26:15 -08:00
|
|
|
009: done
|
|
|
|
|
]])
|
|
|
|
|
|
|
|
|
|
OVSDB_CHECK_IDL([self-linking idl, inconsistent ops],
|
|
|
|
|
[],
|
2010-02-09 10:17:58 -08:00
|
|
|
[['["idltest",
|
|
|
|
|
{"op": "insert",
|
2009-12-03 10:35:45 -08:00
|
|
|
"table": "link1",
|
2009-12-02 11:26:15 -08:00
|
|
|
"row": {"i": 0, "k": ["uuid", "cf197cc5-c8c9-42f5-82d5-c71a9f2cb96b"]}}]' \
|
2010-02-09 10:17:58 -08:00
|
|
|
'+["idltest",
|
|
|
|
|
{"op": "insert",
|
2009-12-03 10:35:45 -08:00
|
|
|
"table": "link1",
|
2010-02-08 14:09:41 -08:00
|
|
|
"uuid-name": "one",
|
|
|
|
|
"row": {"i": 1, "k": ["named-uuid", "one"]}},
|
|
|
|
|
{"op": "insert",
|
|
|
|
|
"table": "link1",
|
|
|
|
|
"row": {"i": 2, "k": ["named-uuid", "one"]}}]' \
|
2010-02-09 10:17:58 -08:00
|
|
|
'["idltest",
|
|
|
|
|
{"op": "update",
|
2009-12-03 10:35:45 -08:00
|
|
|
"table": "link1",
|
2009-12-02 11:26:15 -08:00
|
|
|
"where": [],
|
|
|
|
|
"row": {"k": ["uuid", "c2fca39a-e69a-42a4-9c56-5eca85839ce9"]}}]' \
|
2010-02-09 10:17:58 -08:00
|
|
|
'+["idltest",
|
|
|
|
|
{"op": "delete",
|
2009-12-03 10:35:45 -08:00
|
|
|
"table": "link1",
|
2010-02-08 14:09:41 -08:00
|
|
|
"where": [["_uuid", "==", ["uuid", "#1#"]]]}]' \
|
2010-02-09 10:17:58 -08:00
|
|
|
'+["idltest",
|
|
|
|
|
{"op": "delete",
|
2009-12-03 10:35:45 -08:00
|
|
|
"table": "link1",
|
2010-02-08 14:09:41 -08:00
|
|
|
"where": [["_uuid", "==", ["uuid", "#2#"]]]}]' \
|
2010-02-09 10:17:58 -08:00
|
|
|
'["idltest",
|
|
|
|
|
{"op": "delete",
|
2010-02-08 14:09:41 -08:00
|
|
|
"table": "link1",
|
|
|
|
|
"where": []}]' \
|
2009-12-02 11:26:15 -08:00
|
|
|
]],
|
|
|
|
|
[[000: empty
|
2010-02-08 14:09:41 -08:00
|
|
|
001: {"error":null,"result":[{"uuid":["uuid","<0>"]},{"details":"reference to nonexistent row <1>","error":"referential integrity violation"}]}
|
|
|
|
|
002: {"error":null,"result":[{"uuid":["uuid","<2>"]},{"uuid":["uuid","<3>"]}]}
|
|
|
|
|
003: i=1 k=1 ka=[] l2= uuid=<2>
|
|
|
|
|
003: i=2 k=1 ka=[] l2= uuid=<3>
|
|
|
|
|
004: {"error":null,"result":[{"count":2},{"details":"reference to nonexistent row <4>","error":"referential integrity violation"}]}
|
|
|
|
|
005: {"error":null,"result":[{"count":1},{"details":"cannot delete link1 row <2> because of 1 remaining reference(s)","error":"referential integrity violation"}]}
|
|
|
|
|
006: {"error":null,"result":[{"count":1}]}
|
|
|
|
|
007: i=1 k=1 ka=[] l2= uuid=<2>
|
|
|
|
|
008: {"error":null,"result":[{"count":1}]}
|
|
|
|
|
009: empty
|
|
|
|
|
010: done
|
2009-12-02 11:26:15 -08:00
|
|
|
]])
|
|
|
|
|
|
|
|
|
|
OVSDB_CHECK_IDL([self-linking idl, sets],
|
|
|
|
|
[],
|
2010-02-09 10:17:58 -08:00
|
|
|
[['["idltest",
|
|
|
|
|
{"op": "insert",
|
2009-12-03 10:35:45 -08:00
|
|
|
"table": "link1",
|
2010-02-08 14:09:41 -08:00
|
|
|
"row": {"i": 0, "k": ["named-uuid", "i0"], "ka": ["set", [["named-uuid", "i0"]]]},
|
2009-12-02 11:26:15 -08:00
|
|
|
"uuid-name": "i0"},
|
|
|
|
|
{"op": "insert",
|
2009-12-03 10:35:45 -08:00
|
|
|
"table": "link1",
|
2010-02-08 14:09:41 -08:00
|
|
|
"row": {"i": 1, "k": ["named-uuid", "i0"], "ka": ["set", [["named-uuid", "i1"]]]},
|
2009-12-02 11:26:15 -08:00
|
|
|
"uuid-name": "i1"},
|
|
|
|
|
{"op": "insert",
|
2009-12-03 10:35:45 -08:00
|
|
|
"table": "link1",
|
2010-02-08 14:09:41 -08:00
|
|
|
"row": {"i": 2, "k": ["named-uuid", "i0"], "ka": ["set", [["named-uuid", "i2"]]]},
|
2009-12-02 11:26:15 -08:00
|
|
|
"uuid-name": "i2"},
|
|
|
|
|
{"op": "insert",
|
2009-12-03 10:35:45 -08:00
|
|
|
"table": "link1",
|
2010-02-08 14:09:41 -08:00
|
|
|
"row": {"i": 3, "k": ["named-uuid", "i0"], "ka": ["set", [["named-uuid", "i3"]]]},
|
2009-12-02 11:26:15 -08:00
|
|
|
"uuid-name": "i3"}]' \
|
2010-02-09 10:17:58 -08:00
|
|
|
'["idltest",
|
|
|
|
|
{"op": "update",
|
2009-12-03 10:35:45 -08:00
|
|
|
"table": "link1",
|
2009-12-02 11:26:15 -08:00
|
|
|
"where": [],
|
|
|
|
|
"row": {"ka": ["set", [["uuid", "#0#"], ["uuid", "#1#"], ["uuid", "#2#"], ["uuid", "#3#"]]]}}]' \
|
2010-02-09 10:17:58 -08:00
|
|
|
'["idltest",
|
|
|
|
|
{"op": "update",
|
2009-12-03 10:35:45 -08:00
|
|
|
"table": "link1",
|
2009-12-02 11:26:15 -08:00
|
|
|
"where": [],
|
2010-02-08 14:09:41 -08:00
|
|
|
"row": {"ka": ["set", [["uuid", "#0#"], ["uuid", "88702e78-845b-4a6e-ad08-cf68922ae84a"], ["uuid", "#2#"], ["uuid", "1ac2b12e-b767-4805-a55d-43976e40c465"]]]}}]' \
|
2010-02-09 10:17:58 -08:00
|
|
|
'+["idltest",
|
|
|
|
|
{"op": "delete",
|
2010-02-08 14:09:41 -08:00
|
|
|
"table": "link1",
|
|
|
|
|
"where": []}]']],
|
2009-12-02 11:26:15 -08:00
|
|
|
[[000: empty
|
|
|
|
|
001: {"error":null,"result":[{"uuid":["uuid","<0>"]},{"uuid":["uuid","<1>"]},{"uuid":["uuid","<2>"]},{"uuid":["uuid","<3>"]}]}
|
2010-02-08 14:09:41 -08:00
|
|
|
002: i=0 k=0 ka=[0] l2= uuid=<0>
|
|
|
|
|
002: i=1 k=0 ka=[1] l2= uuid=<1>
|
|
|
|
|
002: i=2 k=0 ka=[2] l2= uuid=<2>
|
|
|
|
|
002: i=3 k=0 ka=[3] l2= uuid=<3>
|
2009-12-02 11:26:15 -08:00
|
|
|
003: {"error":null,"result":[{"count":4}]}
|
2010-02-08 14:09:41 -08:00
|
|
|
004: i=0 k=0 ka=[0 1 2 3] l2= uuid=<0>
|
|
|
|
|
004: i=1 k=0 ka=[0 1 2 3] l2= uuid=<1>
|
|
|
|
|
004: i=2 k=0 ka=[0 1 2 3] l2= uuid=<2>
|
|
|
|
|
004: i=3 k=0 ka=[0 1 2 3] l2= uuid=<3>
|
|
|
|
|
005: {"error":null,"result":[{"count":4},{"details":"reference to nonexistent row <4>","error":"referential integrity violation"}]}
|
|
|
|
|
006: {"error":null,"result":[{"count":4}]}
|
|
|
|
|
007: empty
|
|
|
|
|
008: done
|
2009-12-02 11:26:15 -08:00
|
|
|
]])
|
|
|
|
|
|
2009-12-03 10:35:45 -08:00
|
|
|
OVSDB_CHECK_IDL([external-linking idl, consistent ops],
|
|
|
|
|
[],
|
2010-02-09 10:17:58 -08:00
|
|
|
[['["idltest",
|
|
|
|
|
{"op": "insert",
|
2009-12-03 10:35:45 -08:00
|
|
|
"table": "link2",
|
|
|
|
|
"row": {"i": 0},
|
|
|
|
|
"uuid-name": "row0"},
|
|
|
|
|
{"op": "insert",
|
|
|
|
|
"table": "link1",
|
2010-02-08 14:09:41 -08:00
|
|
|
"row": {"i": 1, "k": ["named-uuid", "row1"], "l2": ["set", [["named-uuid", "row0"]]]},
|
2009-12-03 10:35:45 -08:00
|
|
|
"uuid-name": "row1"}]']],
|
|
|
|
|
[[000: empty
|
|
|
|
|
001: {"error":null,"result":[{"uuid":["uuid","<0>"]},{"uuid":["uuid","<1>"]}]}
|
|
|
|
|
002: i=0 l1= uuid=<0>
|
2010-02-08 14:09:41 -08:00
|
|
|
002: i=1 k=1 ka=[] l2=0 uuid=<1>
|
2009-12-03 10:35:45 -08:00
|
|
|
003: done
|
|
|
|
|
]])
|