2015-01-29 03:51:37 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# Copyright (C) 2014 Red Hat <contact@redhat.com>
|
|
|
|
#
|
|
|
|
# Author: Sebastien Ponce <sebastien.ponce@cern.ch>
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Library Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
# any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Library Public License for more details.
|
|
|
|
#
|
2016-04-22 00:34:38 +00:00
|
|
|
source $(dirname $0)/../detect-build-env-vars.sh
|
2016-01-13 00:33:29 +00:00
|
|
|
source $CEPH_ROOT/qa/workunits/ceph-helpers.sh
|
2015-01-29 03:51:37 +00:00
|
|
|
|
|
|
|
function run() {
|
|
|
|
local dir=$1
|
|
|
|
shift
|
|
|
|
|
2015-10-27 03:48:23 +00:00
|
|
|
export CEPH_MON="127.0.0.1:7116" # git grep '\<7116\>' : there must be only one
|
2015-01-29 03:51:37 +00:00
|
|
|
export CEPH_ARGS
|
|
|
|
CEPH_ARGS+="--fsid=$(uuidgen) --auth-supported=none "
|
|
|
|
CEPH_ARGS+="--mon-host=$CEPH_MON "
|
2015-05-27 15:15:16 +00:00
|
|
|
|
|
|
|
# setup
|
|
|
|
setup $dir || return 1
|
|
|
|
|
2015-01-29 03:51:37 +00:00
|
|
|
# create a cluster with one monitor and three osds
|
|
|
|
run_mon $dir a || return 1
|
|
|
|
run_osd $dir 0 || return 1
|
|
|
|
run_osd $dir 1 || return 1
|
|
|
|
run_osd $dir 2 || return 1
|
|
|
|
|
|
|
|
# create toyfile
|
|
|
|
dd if=/dev/urandom of=$dir/toyfile bs=1234 count=1
|
|
|
|
|
|
|
|
# put a striped object
|
|
|
|
rados --pool rbd --striper put toyfile $dir/toyfile || return 1
|
|
|
|
|
|
|
|
# stat it, with and without striping
|
|
|
|
rados --pool rbd --striper stat toyfile | cut -d ',' -f 2 > $dir/stripedStat || return 1
|
|
|
|
rados --pool rbd stat toyfile.0000000000000000 | cut -d ',' -f 2 > $dir/stat || return 1
|
|
|
|
echo ' size 1234' > $dir/refstat
|
|
|
|
diff -w $dir/stripedStat $dir/refstat || return 1
|
|
|
|
diff -w $dir/stat $dir/refstat || return 1
|
|
|
|
rados --pool rbd stat toyfile >& $dir/staterror
|
|
|
|
grep -q 'No such file or directory' $dir/staterror || return 1
|
|
|
|
|
|
|
|
# get the file back with and without striping
|
|
|
|
rados --pool rbd --striper get toyfile $dir/stripedGroup || return 1
|
|
|
|
diff -w $dir/toyfile $dir/stripedGroup || return 1
|
|
|
|
rados --pool rbd get toyfile.0000000000000000 $dir/nonSTripedGroup || return 1
|
|
|
|
diff -w $dir/toyfile $dir/nonSTripedGroup || return 1
|
|
|
|
|
|
|
|
# test truncate
|
|
|
|
rados --pool rbd --striper truncate toyfile 12
|
|
|
|
rados --pool rbd --striper stat toyfile | cut -d ',' -f 2 > $dir/stripedStat || return 1
|
|
|
|
rados --pool rbd stat toyfile.0000000000000000 | cut -d ',' -f 2 > $dir/stat || return 1
|
|
|
|
echo ' size 12' > $dir/reftrunc
|
|
|
|
diff -w $dir/stripedStat $dir/reftrunc || return 1
|
|
|
|
diff -w $dir/stat $dir/reftrunc || return 1
|
|
|
|
|
|
|
|
# test xattrs
|
|
|
|
rados --pool rbd --striper setxattr toyfile somexattr somevalue || return 1
|
|
|
|
rados --pool rbd --striper getxattr toyfile somexattr > $dir/xattrvalue || return 1
|
|
|
|
rados --pool rbd getxattr toyfile.0000000000000000 somexattr > $dir/xattrvalue2 || return 1
|
|
|
|
echo 'somevalue' > $dir/refvalue
|
|
|
|
diff -w $dir/xattrvalue $dir/refvalue || return 1
|
|
|
|
diff -w $dir/xattrvalue2 $dir/refvalue || return 1
|
|
|
|
rados --pool rbd --striper listxattr toyfile > $dir/xattrlist || return 1
|
|
|
|
echo 'somexattr' > $dir/reflist
|
|
|
|
diff -w $dir/xattrlist $dir/reflist || return 1
|
|
|
|
rados --pool rbd listxattr toyfile.0000000000000000 | grep -v striper > $dir/xattrlist2 || return 1
|
|
|
|
diff -w $dir/xattrlist2 $dir/reflist || return 1
|
|
|
|
rados --pool rbd --striper rmxattr toyfile somexattr || return 1
|
|
|
|
rados --pool rbd --striper getxattr toyfile somexattr >& $dir/rmxattrerror
|
|
|
|
grep -q 'No data available' $dir/rmxattrerror || return 1
|
|
|
|
rados --pool rbd getxattr toyfile.0000000000000000 somexattr >& $dir/rmxattrerror2
|
|
|
|
grep -q 'No data available' $dir/rmxattrerror2 || return 1
|
|
|
|
|
|
|
|
# test rm
|
|
|
|
rados --pool rbd --striper rm toyfile || return 1
|
|
|
|
rados --pool rbd --striper stat toyfile >& $dir/staterror2
|
|
|
|
grep -q 'No such file or directory' $dir/staterror2 || return 1
|
|
|
|
rados --pool rbd stat toyfile.0000000000000000 >& $dir/staterror3
|
2015-05-27 15:15:16 +00:00
|
|
|
grep -q 'No such file or directory' $dir/staterror3 || return 1
|
|
|
|
|
|
|
|
# cleanup
|
|
|
|
teardown $dir || return 1
|
2015-01-29 03:51:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main rados-striper "$@"
|