mirror of
https://github.com/ceph/ceph
synced 2025-01-02 00:52:22 +00:00
71ea171604
- stop running via make check - add teuthology yamls to run them - disable ceph_objecstore_tool.py for now (too slow for make check, and we can't use vstart in teuthology via a package install) - drop cephtool tests since those are already covered by other teuthology tests - leave a handful of (fast!) ceph-helpers tests for make check for minimal integration tests. Signed-off-by: Sage Weil <sage@redhat.com>
64 lines
1.5 KiB
Bash
Executable File
64 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
#
|
|
# Generic pool quota test
|
|
#
|
|
|
|
# Includes
|
|
|
|
|
|
source $CEPH_ROOT/qa/standalone/ceph-helpers.sh
|
|
|
|
function run() {
|
|
local dir=$1
|
|
shift
|
|
|
|
export CEPH_MON="127.0.0.1:17108" # git grep '\<17108\>' : there must be only one
|
|
export CEPH_ARGS
|
|
CEPH_ARGS+="--fsid=$(uuidgen) --auth-supported=none "
|
|
CEPH_ARGS+="--mon-host=$CEPH_MON "
|
|
|
|
local funcs=${@:-$(set | sed -n -e 's/^\(TEST_[0-9a-z_]*\) .*/\1/p')}
|
|
for func in $funcs ; do
|
|
$func $dir || return 1
|
|
done
|
|
}
|
|
|
|
function TEST_pool_quota() {
|
|
local dir=$1
|
|
setup $dir || return 1
|
|
|
|
run_mon $dir a || return 1
|
|
run_osd $dir 0 || return 1
|
|
run_osd $dir 1 || return 1
|
|
run_osd $dir 2 || return 1
|
|
|
|
local poolname=testquoa
|
|
ceph osd pool create $poolname 20
|
|
local objects=`ceph df detail | grep -w $poolname|awk '{print $3}'`
|
|
local bytes=`ceph df detail | grep -w $poolname|awk '{print $4}'`
|
|
|
|
echo $objects
|
|
echo $bytes
|
|
if [ $objects != 'N/A' ] || [ $bytes != 'N/A' ] ;
|
|
then
|
|
return 1
|
|
fi
|
|
|
|
ceph osd pool set-quota $poolname max_objects 1000
|
|
ceph osd pool set-quota $poolname max_bytes 1024
|
|
|
|
objects=`ceph df detail | grep -w $poolname|awk '{print $3}'`
|
|
bytes=`ceph df detail | grep -w $poolname|awk '{print $4}'`
|
|
|
|
if [ $objects != '1000' ] || [ $bytes != '1024' ] ;
|
|
then
|
|
return 1
|
|
fi
|
|
|
|
ceph osd pool delete $poolname $poolname --yes-i-really-really-mean-it
|
|
teardown $dir || return 1
|
|
}
|
|
|
|
main testpoolquota
|