xfstests: remove stale machine configs
[xfstests-dev.git] / 262
1 #! /bin/bash
2 # FS QA Test No. 262
3 #
4 # This test checks the project quota values reported by the quota
5 # "df" and "report" subcommands to ensure they match what they
6 # should be.  There was a bug (fixed by xfsprogs commit 7cb2d41b)
7 # where the values reported were double what they should have been.
8 #
9 # SGI PV 1015651
10 #
11 #-----------------------------------------------------------------------
12 # Copyright (c) 2011 SGI.  All Rights Reserved.
13 #
14 # This program is free software; you can redistribute it and/or
15 # modify it under the terms of the GNU General Public License as
16 # published by the Free Software Foundation.
17 #
18 # This program is distributed in the hope that it would be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 # GNU General Public License for more details.
22 #
23 # You should have received a copy of the GNU General Public License
24 # along with this program; if not, write the Free Software Foundation,
25 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
26 #-----------------------------------------------------------------------
27 #
28
29 seq=$(basename $0)
30 echo "QA output created by ${seq}"
31
32 here=$(pwd)
33
34 cp /dev/null "${seq}.full"
35
36 tmp=/tmp/$$
37 my_projects=${tmp}.projects
38 my_projid=${tmp}.projid
39 proj_name=test_project
40 proj_num=1
41
42 qlimit_meg=500  # 500M limit imposed = 500 * 1024 * 1024 bytes
43
44 status=1        # failure is the default!
45 trap "_cleanup; exit \$status" 0 1 2 3 15
46
47 _cleanup()
48 {
49     cd /
50     rm -f ${tmp}.*
51 }
52
53 # get standard environment, filters and checks
54 . ./common.rc
55 . ./common.filter
56 . ./common.quota
57
58 echo "Silence is golden."
59
60 # real QA test starts here
61
62 proj_dir="${SCRATCH_MNT}/test"
63
64 # Modify as appropriate.
65 _supported_fs xfs
66 _supported_os Linux
67
68 _require_quota
69 _require_scratch
70
71
72 # Make sure the hard limits reported are what was set.
73 # It is entirely too clever...
74 # It exploits the fact that we've set the soft and hard limits to
75 # the same value, and as a result the value in the fourth field in
76 # both the "df" and the "report" output.  For "report", the line we're
77 # interested in contains our project name in the first field.  For "df"
78 # it contains our project directory in the last field.
79 _filter_quota_rpt() {
80         awk '
81         BEGIN {
82                 proj_name = "'${proj_name}'";
83                 proj_dir = "'${proj_dir}'";
84                 qlimit_meg = '${qlimit_meg}';
85                 qlimit = qlimit_meg * 1024 * 1024;
86         }
87         # This function parses the human-readable values produced
88         # by xfs_quota output
89         function byte_size(value,  result) {
90                 result = strtonum(value);
91                 unit = value;
92                 gsub("[0-9][0-9]*", "", unit);
93                 shift = index("KMGTPE", unit);
94                 while (shift--)
95                         result *= 1024;
96                 return result;
97         }
98         {
99                 if ($1 !~ proj_name && $nf !~ proj_dir)
100                         next;
101                 bsize = byte_size($4);
102                 if (bsize != qlimit)
103                         printf("hard limit %d bytes, expected %d\n",
104                                 bsize, qlimit);
105         }
106         '
107 }
108
109 _quota_cmd() {
110         xfs_quota -P "${my_projid}" -D "${my_projects}" -x \
111                 -c "$@" "${SCRATCH_MNT}"
112 }
113
114 # Set up--mount scratch and create the project directory
115
116 echo ${proj_name}:${proj_num} > "${my_projid}"
117 echo ${proj_num}:${proj_dir} > "${my_projects}"
118
119 _scratch_mkfs                                           >> "${seq}.full" 2>&1
120
121 export MOUNT_OPTIONS="-opquota"
122 _qmount
123 mkdir -p "${proj_dir}"
124
125 # Setup the project quota directory
126 _quota_cmd "project -s ${proj_name}"                    >> "${seq}.full" 2>&1
127
128 # Assign block quota limits
129 _quota_cmd "limit -p bhard=${qlimit_meg}m bsoft=${qlimit_meg}m ${proj_name}" \
130                                                         2>> "${seq}.full" 1>&2
131
132 # See what gets reported
133 _quota_cmd "report"             | _filter_quota_rpt     2>> "${seq}.full"
134 _quota_cmd "df"                 | _filter_quota_rpt     2>> "${seq}.full"
135
136 # This time using "human readable" output
137 _quota_cmd "report -h"          | _filter_quota_rpt     2>> "${seq}.full"
138 _quota_cmd "df -h"              | _filter_quota_rpt     2>> "${seq}.full"
139
140 # Clean up
141 rm -rf "${proj_dir}"
142 _scratch_unmount
143
144 status=0        # success, all done