overlay: run unionmount testsuite test cases
[xfstests-dev.git] / tests / generic / 600
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2020 Red Hat, Inc.  All Rights Reserved.
4 #
5 # FS QA Test No. 600
6 #
7 # Test individual user ID quota grace period extension
8 # This is the linux quota-tools version of the test
9 #
10 # This test only exercises user quota because it's not known whether the
11 # filesystem can set individual grace timers for each quota type
12 #
13 seq=`basename $0`
14 seqres=$RESULT_DIR/$seq
15 echo "QA output created by $seq"
16
17 here=`pwd`
18 tmp=/tmp/$$
19 status=1        # failure is the default!
20 trap "_cleanup; exit \$status" 0 1 2 3 15
21
22 _cleanup()
23 {
24         cd /
25         rm -f $tmp.*
26 }
27
28 # get standard environment, filters and checks
29 . ./common/rc
30 . ./common/filter
31 . ./common/quota
32
33 # remove previous $seqres.full before test
34 rm -f $seqres.full
35
36 # real QA test starts here
37 _supported_fs generic
38 _supported_os Linux
39 _require_scratch
40 _require_quota
41 _require_user
42 _require_setquota_project
43
44 _scratch_mkfs >$seqres.full 2>&1
45 _qmount_option "usrquota"
46 _qmount
47
48 echo "Silence is golden"
49
50 # Set a default user inode grace period of 1 second
51 setquota -t -u 0 1 $SCRATCH_MNT
52 # Soft inode limit 1, hard limit 5
53 setquota -u $qa_user 0 0 1 5 $SCRATCH_MNT
54 # Run qa user over soft limit and go over grace period
55 su $qa_user -c "touch $SCRATCH_MNT/file1 $SCRATCH_MNT/file2"
56 sleep 3
57 # Extend grace to now + 100s
58 now=`date +%s`
59 let set=now+100
60 setquota -T -u $qa_user 0 100 $SCRATCH_MNT 2>&1 | grep -v "^setquota"
61 get=`repquota -up $SCRATCH_MNT | grep  "^$qa_user" | awk '{print $NF}'`
62
63 if [ "$get" != "$set" ]; then
64         echo "set grace to $set but got grace $get"
65 fi
66
67 # success, all done
68 status=0
69 exit