xref: /illumos-gate/usr/src/test/zfs-tests/tests/functional/userquota/groupspace_003_pos.ksh (revision 3dae5456c609a0bdfeffc8d1c0dc436db6ab3436)
1#!/bin/ksh -p
2#
3# CDDL HEADER START
4#
5# The contents of this file are subject to the terms of the
6# Common Development and Distribution License (the "License").
7# You may not use this file except in compliance with the License.
8#
9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10# or http://www.opensolaris.org/os/licensing.
11# See the License for the specific language governing permissions
12# and limitations under the License.
13#
14# When distributing Covered Code, include this CDDL HEADER in each
15# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16# If applicable, add the following below this CDDL HEADER, with the
17# fields enclosed by brackets "[]" replaced with your own identifying
18# information: Portions Copyright [yyyy] [name of copyright owner]
19#
20# CDDL HEADER END
21#
22
23#
24# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
25# Use is subject to license terms.
26#
27
28#
29# Copyright (c) 2013 by Delphix. All rights reserved.
30# Copyright 2019 Joyent, Inc.
31#
32
33. $STF_SUITE/include/libtest.shlib
34. $STF_SUITE/tests/functional/userquota/userquota_common.kshlib
35
36#
37# DESCRIPTION:
38#       Check the user used and groupspace object counts in zfs groupspace
39#
40#
41# STRATEGY:
42#	1. set zfs groupquota to a fs
43#	2. create objects for different users in the same group
44#	3. use zfs groupspace to check the object count
45#
46
47function cleanup
48{
49	if datasetexists $snapfs; then
50		log_must zfs destroy $snapfs
51	fi
52
53	log_must rm -f ${QFILE}_*
54	log_must cleanup_quota
55}
56
57function group_object_count
58{
59	typeset fs=$1
60	typeset user=$2
61	typeset cnt=$(zfs groupspace -oname,objused $fs | grep $user |
62			awk '{print $2}')
63	echo $cnt
64}
65
66log_onexit cleanup
67
68log_assert "Check the zfs groupspace object used"
69
70mkmount_writable $QFS
71log_must zfs set xattr=on $QFS
72
73((user1_cnt = RANDOM % 100 + 1))
74((user2_cnt = RANDOM % 100 + 1))
75log_must user_run $QUSER1 mkfiles ${QFILE}_1 $user1_cnt
76log_must user_run $QUSER2 mkfiles ${QFILE}_2 $user2_cnt
77((grp_cnt = user1_cnt + user2_cnt))
78sync_pool
79
80typeset snapfs=$QFS@snap
81
82log_must zfs snapshot $snapfs
83
84log_must eval "zfs groupspace $QFS >/dev/null 2>&1"
85log_must eval "zfs groupspace $snapfs >/dev/null 2>&1"
86
87for fs in "$QFS" "$snapfs"; do
88	log_note "check the object count in zfs groupspace $fs"
89        [[ $(group_object_count $fs $QGROUP) -eq $grp_cnt ]] ||
90                log_fail "expected $grp_cnt"
91done
92
93log_note "file removal"
94log_must rm ${QFILE}_*
95sync_pool
96
97[[ $(group_object_count $QFS $QGROUP) -eq 0 ]] ||
98        log_fail "expected 0 files for $QGROUP"
99
100[[ $(group_object_count $snapfs $QGROUP) -eq $grp_cnt ]] ||
101        log_fail "expected $grp_cnt files for $QGROUP"
102
103cleanup
104log_pass "Check the zfs groupspace object used pass as expected"
105