X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fqa%2Fworkunits%2Fsuites%2Fcephfs_journal_tool_smoke.sh;fp=src%2Fceph%2Fqa%2Fworkunits%2Fsuites%2Fcephfs_journal_tool_smoke.sh;h=0000000000000000000000000000000000000000;hb=7da45d65be36d36b880cc55c5036e96c24b53f00;hp=60e91496511f9cbb446e73184f36e9d2cc7f92a9;hpb=691462d09d0987b47e112d6ee8740375df3c51b2;p=stor4nfv.git diff --git a/src/ceph/qa/workunits/suites/cephfs_journal_tool_smoke.sh b/src/ceph/qa/workunits/suites/cephfs_journal_tool_smoke.sh deleted file mode 100755 index 60e9149..0000000 --- a/src/ceph/qa/workunits/suites/cephfs_journal_tool_smoke.sh +++ /dev/null @@ -1,92 +0,0 @@ -#!/bin/bash - -set -e -set -x - -export BIN="${BIN:-cephfs-journal-tool}" -export JOURNAL_FILE=/tmp/journal.bin -export JSON_OUTPUT=/tmp/json.tmp -export BINARY_OUTPUT=/tmp/binary.tmp - -if [ -d $BINARY_OUTPUT ] ; then - rm -rf $BINARY_OUTPUT -fi - -# Check that the import/export stuff really works as expected -# first because it's used as the reset method between -# following checks. -echo "Testing that export/import cycle preserves state" -HEADER_STATE=`$BIN header get` -EVENT_LIST=`$BIN event get list` -$BIN journal export $JOURNAL_FILE -$BIN journal import $JOURNAL_FILE -NEW_HEADER_STATE=`$BIN header get` -NEW_EVENT_LIST=`$BIN event get list` - -if [ ! "$HEADER_STATE" = "$NEW_HEADER_STATE" ] ; then - echo "Import failed to preserve header state" - echo $HEADER_STATE - echo $NEW_HEADER_STATE - exit -1 -fi - -if [ ! "$EVENT_LIST" = "$NEW_EVENT_LIST" ] ; then - echo "Import failed to preserve event state" - echo $EVENT_LIST - echo $NEW_EVENT_LIST - exit -1 -fi - -echo "Testing 'journal' commands..." - -# Simplest thing: print the vital statistics of the journal -$BIN journal inspect -$BIN header get - -# Make a copy of the journal in its original state -$BIN journal export $JOURNAL_FILE -if [ ! -s $JOURNAL_FILE ] ; then - echo "Export to $JOURNAL_FILE failed" - exit -1 -fi - -# Can we execute a journal reset? -$BIN journal reset -$BIN journal inspect -$BIN header get - -echo "Rolling back journal to original state..." -$BIN journal import $JOURNAL_FILE - -echo "Testing 'header' commands..." -$BIN header get -$BIN header set write_pos 123 -$BIN header set expire_pos 123 -$BIN header set trimmed_pos 123 - -echo "Rolling back journal to original state..." -$BIN journal import $JOURNAL_FILE - -echo "Testing 'event' commands..." -$BIN event get summary -$BIN event get --type=UPDATE --path=/ --inode=0 --frag=0x100 summary -$BIN event get json --path $JSON_OUTPUT -if [ ! -s $JSON_OUTPUT ] ; then - echo "Export to $JSON_OUTPUT failed" - exit -1 -fi -$BIN event get binary --path $BINARY_OUTPUT -if [ ! -s $BINARY_OUTPUT ] ; then - echo "Export to $BINARY_OUTPUT failed" - exit -1 -fi -$BIN event recover_dentries summary -$BIN event splice summary - -# Tests finish. -# Metadata objects have been modified by the 'event recover_dentries' command. -# Journal is no long consistent with respect to metadata objects (especially inotable). -# To ensure mds successfully replays its journal, we need to do journal reset. -$BIN journal reset -cephfs-table-tool all reset session -