7290 ZFS test suite needs to control what utilities it can run
[unleashed.git] / usr / src / test / zfs-tests / tests / functional / cli_root / zfs_unmount / zfs_unmount_005_pos.ksh
blobe21a2954d0c61f6f004d59955591707752af9244
1 #!/bin/ksh -p
3 # CDDL HEADER START
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.
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.
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]
20 # CDDL HEADER END
24 # Copyright 2007 Sun Microsystems, Inc. All rights reserved.
25 # Use is subject to license terms.
29 # Copyright (c) 2016 by Delphix. All rights reserved.
32 . $STF_SUITE/include/libtest.shlib
33 . $STF_SUITE/tests/functional/cli_root/zfs_unmount/zfs_unmount.kshlib
36 # DESCRIPTION:
37 # If invoke "zfs unmount" with a specific filesystem|mountpoint
38 # that have been mounted, but it's currently in use,
39 # it will fail with a return code of 1
40 # and issue an error message.
41 # But unmount forcefully will bypass this restriction and
42 # unmount that given filesystem successfully.
44 # STRATEGY:
45 # 1. Make sure that the ZFS filesystem is mounted.
46 # 2. Change directory to that given mountpoint.
47 # 3. Unmount the file system using the various combinations.
48 # - Without force option. (FAILED)
49 # - With force option. (PASS)
50 # 4. Unmount the mountpoint using the various combinations.
51 # - Without force option. (FAILED)
52 # - With force option. (PASS)
53 # 5. Verify the above expected results of the filesystem|mountpoint.
56 verify_runnable "both"
59 set -A cmd "umount" "unmount"
60 set -A options "" "-f"
61 set -A dev "$TESTPOOL/$TESTFS" "$TESTDIR"
63 function do_unmount_multiple #options #expect
65 typeset opt=$1
66 typeset -i expect=${2-0}
68 typeset -i i=0
69 typeset -i j=0
71 while (( i < ${#cmd[*]} )); do
72 j=0
73 while (( j < ${#dev[*]} )); do
74 mounted ${dev[j]} || \
75 log_must zfs $mountcmd ${dev[0]}
77 cd $TESTDIR || \
78 log_unresolved "Unable change dir to $TESTDIR"
80 do_unmount "${cmd[i]}" "$opt" \
81 "${dev[j]}" $expect
83 cleanup
85 ((j = j + 1))
86 done
88 ((i = i + 1))
89 done
92 log_assert "Verify that 'zfs $unmountcmd <filesystem|mountpoint>' " \
93 "with a filesystem which mountpoint is currently in use " \
94 "will fail with return code 1, and forcefully will succeeds as root."
96 log_onexit cleanup
98 cwd=$PWD
100 typeset -i i=0
102 while (( i < ${#options[*]} )); do
103 if [[ ${options[i]} == "-f" ]]; then
104 do_unmount_multiple "${options[i]}"
105 else
106 do_unmount_multiple "${options[i]}" 1
108 ((i = i + 1))
109 done
111 log_pass "'zfs $unmountcmd <filesystem|mountpoint>' " \
112 "with a filesystem which mountpoint is currently in use " \
113 "will fail with return code 1, and forcefully will succeeds as root."