X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=tests%2Fovsdb-tool.at;h=e4f4a29e9e6f823c8dbc68c67738458eff9e6449;hb=ad4c35fe2dd8edaab6331667021b6b8410abde90;hp=2d19b32d2533b3c543acb10b460b6556c863bdaf;hpb=37d034580ad38d61f81559a5cd03d11b5468762a;p=openvswitch diff --git a/tests/ovsdb-tool.at b/tests/ovsdb-tool.at index 2d19b32d..e4f4a29e 100644 --- a/tests/ovsdb-tool.at +++ b/tests/ovsdb-tool.at @@ -49,8 +49,18 @@ AT_CLEANUP AT_SETUP([ovsdb-tool compact]) AT_KEYWORDS([ovsdb file positive]) ordinal_schema > schema -touch .db.~lock~ +dnl Make sure that "ovsdb-tool create" works with a dangling symlink, +dnl creating the target of the symlink rather than replacing the symlink +dnl with a regular file, and that the lockfile gets created relative to +dnl the symlink's target. +mkdir dir +: > dir/.db.~lock~ +ln -s dir/db db +AT_SKIP_IF([test ! -h db]) AT_CHECK([ovsdb-tool create db schema], [0], [], [ignore]) +AT_CHECK([test ! -e .db.~lock]) +AT_CHECK([test -h db]) +AT_CHECK([test -f dir/db]) dnl Do a bunch of random transactions that put crap in the database log. AT_CHECK( [[for pair in 'zero 0' 'one 1' 'two 2' 'three 3' 'four 4' 'five 5'; do @@ -117,12 +127,16 @@ _uuid name number dnl Now compact the database in-place. touch .db.tmp.~lock~ AT_CHECK([[ovsdb-tool compact db]], [0], [], [ignore]) +dnl Make sure that "db" is still a symlink to dir/db instead of getting +dnl replaced by a regular file. +AT_CHECK([test ! -e .db.~lock]) +AT_CHECK([test -h db]) +AT_CHECK([test -f dir/db]) dnl We can't fully re-check the contents of the database log, because the dnl order of the records is not predictable, but there should only be 4 lines dnl in it now. AT_CAPTURE_FILE([db]) -AT_CHECK([wc -l < db], [0], [4 -]) +AT_CHECK([test `wc -l < db` -eq 4]) dnl And check that the dumped data is the same too: AT_CHECK([[ovsdb-server --unixctl="`pwd`"/unixctl --remote=punix:socket --run "ovsdb-client dump unix:socket ordinals" db]], [0], [stdout], [ignore]) @@ -185,8 +199,7 @@ dnl We can't fully re-check the contents of the database log, because the dnl order of the records is not predictable, but there should only be 4 lines dnl in it now. AT_CAPTURE_FILE([db]) -AT_CHECK([wc -l < db], [0], [4 -]) +AT_CHECK([test `wc -l < db` -eq 4]) dnl And check that the dumped data is the same except for the removed column: AT_CHECK([[ovsdb-server --unixctl="`pwd`"/unixctl --remote=punix:socket --run "ovsdb-client dump unix:socket ordinals" db]], [0], [stdout], [ignore]) @@ -248,8 +261,7 @@ dnl We can't fully re-check the contents of the database log, because the dnl order of the records is not predictable, but there should only be 4 lines dnl in it now. AT_CAPTURE_FILE([db]) -AT_CHECK([wc -l < db], [0], [4 -]) +AT_CHECK([test `wc -l < db` -eq 4]) dnl And check that the dumped data is the same except for the added column: AT_CHECK([[ovsdb-server --unixctl="`pwd`"/unixctl --remote=punix:socket --run "ovsdb-client dump unix:socket ordinals" db]], [0], [stdout], [ignore])