xfstests 068: Add mmap load
[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 # creator
29 owner=aelder@sgi.com
30
31 seq=$(basename $0)
32 echo "QA output created by ${seq}"
33
34 here=$(pwd)
35
36 cp /dev/null "${seq}.full"
37
38 tmp=/tmp/$$
39 my_projects=${tmp}.projects
40 my_projid=${tmp}.projid
41 proj_name=test_project
42 proj_num=1
43
44 qlimit_meg=500  # 500M limit imposed = 500 * 1024 * 1024 bytes
45
46 status=1        # failure is the default!
47 trap "_cleanup; exit \$status" 0 1 2 3 15
48
49 _cleanup()
50 {
51     cd /
52     rm -f ${tmp}.*
53 }
54
55 # get standard environment, filters and checks
56 . ./common.rc
57 . ./common.filter
58 . ./common.quota
59
60 echo "Silence is golden."
61
62 # real QA test starts here
63
64 proj_dir="${SCRATCH_MNT}/test"
65
66 # Modify as appropriate.
67 _supported_fs xfs
68 _supported_os Linux
69
70 _require_quota
71 _require_scratch
72
73
74 # Make sure the hard limits reported are what was set.
75 # It is entirely too clever...
76 # It exploits the fact that we've set the soft and hard limits to
77 # the same value, and as a result the value in the fourth field in
78 # both the "df" and the "report" output.  For "report", the line we're
79 # interested in contains our project name in the first field.  For "df"
80 # it contains our project directory in the last field.
81 _filter_quota_rpt() {
82         awk '
83         BEGIN {
84                 proj_name = "'${proj_name}'";
85                 proj_dir = "'${proj_dir}'";
86                 qlimit_meg = '${qlimit_meg}';
87                 qlimit = qlimit_meg * 1024 * 1024;
88         }
89         # This function parses the human-readable values produced
90         # by xfs_quota output
91         function byte_size(value,  result) {
92                 result = strtonum(value);
93                 unit = value;
94                 gsub("[0-9][0-9]*", "", unit);
95                 shift = index("KMGTPE", unit);
96                 while (shift--)
97                         result *= 1024;
98                 return result;
99         }
100         {
101                 if ($1 !~ proj_name && $nf !~ proj_dir)
102                         next;
103                 bsize = byte_size($4);
104                 if (bsize != qlimit)
105                         printf("hard limit %d bytes, expected %d\n",
106                                 bsize, qlimit);
107         }
108         '
109 }
110
111 _quota_cmd() {
112         xfs_quota -P "${my_projid}" -D "${my_projects}" -x \
113                 -c "$@" "${SCRATCH_MNT}"
114 }
115
116 # Set up--mount scratch and create the project directory
117
118 echo ${proj_name}:${proj_num} > "${my_projid}"
119 echo ${proj_num}:${proj_dir} > "${my_projects}"
120
121 _scratch_mkfs                                           >> "${seq}.full" 2>&1
122
123 export MOUNT_OPTIONS="-opquota"
124 _qmount
125 mkdir -p "${proj_dir}"
126
127 # Setup the project quota directory
128 _quota_cmd "project -s ${proj_name}"                    >> "${seq}.full" 2>&1
129
130 # Assign block quota limits
131 _quota_cmd "limit -p bhard=${qlimit_meg}m bsoft=${qlimit_meg}m ${proj_name}" \
132                                                         2>> "${seq}.full" 1>&2
133
134 # See what gets reported
135 _quota_cmd "report"             | _filter_quota_rpt     2>> "${seq}.full"
136 _quota_cmd "df"                 | _filter_quota_rpt     2>> "${seq}.full"
137
138 # This time using "human readable" output
139 _quota_cmd "report -h"          | _filter_quota_rpt     2>> "${seq}.full"
140 _quota_cmd "df -h"              | _filter_quota_rpt     2>> "${seq}.full"
141
142 # Clean up
143 rm -rf "${proj_dir}"
144 _scratch_unmount
145
146 status=0        # success, all done