From patchwork Thu Feb 13 03:18:58 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wang Shilong X-Patchwork-Id: 3642271 Return-Path: X-Original-To: patchwork-linux-btrfs@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 2DCFBBF13A for ; Thu, 13 Feb 2014 03:20:58 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 4B78E20154 for ; Thu, 13 Feb 2014 03:20:57 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 5A11320149 for ; Thu, 13 Feb 2014 03:20:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753283AbaBMDUx (ORCPT ); Wed, 12 Feb 2014 22:20:53 -0500 Received: from cn.fujitsu.com ([222.73.24.84]:20317 "EHLO song.cn.fujitsu.com" rhost-flags-OK-FAIL-OK-OK) by vger.kernel.org with ESMTP id S1752573AbaBMDUv (ORCPT ); Wed, 12 Feb 2014 22:20:51 -0500 X-IronPort-AV: E=Sophos;i="4.95,836,1384272000"; d="scan'208";a="9517904" Received: from unknown (HELO tang.cn.fujitsu.com) ([10.167.250.3]) by song.cn.fujitsu.com with ESMTP; 13 Feb 2014 11:16:49 +0800 Received: from fnstmail02.fnst.cn.fujitsu.com (tang.cn.fujitsu.com [127.0.0.1]) by tang.cn.fujitsu.com (8.14.3/8.13.1) with ESMTP id s1D3KXrO002824; Thu, 13 Feb 2014 11:20:37 +0800 Received: from wangs.fnst.cn.fujitsu.com ([10.167.226.104]) by fnstmail02.fnst.cn.fujitsu.com (Lotus Domino Release 8.5.3) with ESMTP id 2014021311183434-1798855 ; Thu, 13 Feb 2014 11:18:34 +0800 From: Wang Shilong To: xfs@oss.sgi.com Cc: linux-btrfs@vger.kernel.org Subject: [PATCH 2/3] xfstests/btrfs: add basic functional test for btrfs quota groups Date: Thu, 13 Feb 2014 11:18:58 +0800 Message-Id: <1392261539-28903-2-git-send-email-wangsl.fnst@cn.fujitsu.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1392261539-28903-1-git-send-email-wangsl.fnst@cn.fujitsu.com> References: <1392261539-28903-1-git-send-email-wangsl.fnst@cn.fujitsu.com> X-MIMETrack: Itemize by SMTP Server on mailserver/fnst(Release 8.5.3|September 15, 2011) at 2014/02/13 11:18:34, Serialize by Router on mailserver/fnst(Release 8.5.3|September 15, 2011) at 2014/02/13 11:18:39, Serialize complete at 2014/02/13 11:18:39 Sender: linux-btrfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-btrfs@vger.kernel.org X-Spam-Status: No, score=-7.6 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Add missing test for btrfs quota groups feature,test idea is to create a parent qgroup that groups some subvolume groups, we try to write some data into every subvolume and then check if we exceed parent qgroup's limit size. Signed-off-by: Wang Shilong --- tests/btrfs/039 | 94 +++++++++++++++++++++++++++++++++++++++++++++++++++++ tests/btrfs/039.out | 2 ++ tests/btrfs/group | 1 + 3 files changed, 97 insertions(+) create mode 100644 tests/btrfs/039 create mode 100644 tests/btrfs/039.out diff --git a/tests/btrfs/039 b/tests/btrfs/039 new file mode 100644 index 0000000..f8c9bee --- /dev/null +++ b/tests/btrfs/039 @@ -0,0 +1,94 @@ +#! /bin/bash +# FS QA Test No. 039 +# +# Test the basic functionality of Quota groups +# +#----------------------------------------------------------------------- +# Copyright (c) 2014 Fujitsu. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +#----------------------------------------------------------------------- +# + +seq=`basename $0` +seqres=$RESULT_DIR/$seq +echo "QA output created by $seq" + +here=`pwd` +tmp=/tmp/$$ +status=1 # failure is the default! +trap "_cleanup; exit \$status" 0 1 2 3 15 + +_cleanup() +{ + rm -f $tmp.* +} + +# get standard environment, filters and checks +. ./common/rc +. ./common/filter + +_supported_fs btrfs +_supported_os Linux +_require_scratch + +rm -f $seqres.full + +run_check _scratch_mkfs +run_check _scratch_mount + +LIMIT_SIZE=$((10 * 1024 * 1024)) + +run_check $BTRFS_UTIL_PROG quota enable $SCRATCH_MNT +run_check $BTRFS_UTIL_PROG qgroup create 1/1 $SCRATCH_MNT +run_check $BTRFS_UTIL_PROG qgroup limit $LIMIT_SIZE 1/1 $SCRATCH_MNT + +for i in `seq 10 -1 1`; do + #add newly created subvolume qgroup to it's parent qgroup + run_check $BTRFS_UTIL_PROG subvolume create -i 1/1 \ + $SCRATCH_MNT/subv_$i +done + +#try to write data into every subvolume +for i in `seq 10 -1 1`; do + dd if=/dev/zero of=$SCRATCH_MNT/subv_$i/data bs=4k \ + >> /dev/null 2>&1 & +done + +wait +$BTRFS_UTIL_PROG filesystem sync $SCRATCH_MNT \ + >>$seqres.full 2>&1 + +total_written=0 +#calculate every subvolume's data. +for i in `seq 10 -1 1`; do + #we may fail to create the file, skip this subvolume + test -f $SCRATCH_MNT/subv_$i || continue + + filesize=`du -b $SCRATCH_MNT/subv_$i/data | $AWK_PROG '{print $1}'` + if [ $filesize -gt $LIMIT_SIZE ];then + _fail "subv_$i/data size should be less than $LIMIT_SIZE" + fi + total_written=$(($total_written+$filesize)) +done + +#check if total written exceeds limit +if [ $total_written -gt $LIMIT_SIZE ];then + _fail "total written should be less than $LIMIT_SIZE" +fi + +# success, all done +echo "Silence is golden" +status=0 +exit diff --git a/tests/btrfs/039.out b/tests/btrfs/039.out new file mode 100644 index 0000000..d4e7ef6 --- /dev/null +++ b/tests/btrfs/039.out @@ -0,0 +1,2 @@ +QA output created by 039 +Silence is golden diff --git a/tests/btrfs/group b/tests/btrfs/group index 7ac9f0a..ba6b70c 100644 --- a/tests/btrfs/group +++ b/tests/btrfs/group @@ -38,3 +38,4 @@ 033 auto quick 034 auto quick 038 auto quick +039 auto quick