comparison usr/src/test/zfs-tests/tests/functional/cli_root/zfs/zfs_002_pos.ksh @ 13899:0bcf78798346

3311 Want a test framework for arbitrary OS unit tests 3312 Add a testrunner package for OS unit tests 3313 Add a testrunner package to convert ZFS tests from STF Reviewed by: Matt Ahrens <matthew.ahrens@delphix.com> Reviewed by: Will Guyette <will.guyette@delphix.com> Reviewed by: Dan Kimmel <dan.kimmel@delphix.com> Reviewed by: Adam Leventhal <ahl@delphix.com> Reviewed by: Henrik Mattson <henrik.mattson@delphix.com> Reviewed by: Sonu Pillai <sonu.pillai@delphix.com> Reviewed by: Christopher Siden <chris.siden@delphix.com> Reviewed by: George Wilson <george.wilson@delphix.com> Reviewed by: Richard Lowe <richlowe@richlowe.net> Approved by: Richard Lowe <richlowe@richlowe.net>
author John Wren Kennedy <john.kennedy@delphix.com>
date Wed, 05 Dec 2012 22:04:50 -0500
parents
children
comparison
equal deleted inserted replaced
13898:7f822b09519b 13899:0bcf78798346
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) 2012 by Delphix. All rights reserved.
30 #
31
32 . $STF_SUITE/include/libtest.shlib
33
34 #
35 # DESCRIPTION:
36 # With ZFS_ABORT set, all zfs commands should be able to abort and generate a
37 # core file.
38 #
39 # STRATEGY:
40 # 1. Create an array of zfs command
41 # 2. Execute each command in the array
42 # 3. Verify the command aborts and generate a core file
43 #
44
45 verify_runnable "both"
46
47 function cleanup
48 {
49 unset ZFS_ABORT
50
51 if [[ -d $corepath ]]; then
52 $RM -rf $corepath
53 fi
54 for ds in $fs1 $fs $ctr; do
55 if datasetexists $ds; then
56 log_must $ZFS destroy -rRf $ds
57 fi
58 done
59 }
60
61 log_assert "With ZFS_ABORT set, all zfs commands can abort and generate a " \
62 "core file."
63 log_onexit cleanup
64
65 #preparation work for testing
66 corepath=$TESTDIR/core
67 if [[ -d $corepath ]]; then
68 $RM -rf $corepath
69 fi
70 log_must $MKDIR $corepath
71
72 ctr=$TESTPOOL/$TESTCTR
73 log_must $ZFS create $ctr
74
75 fs=$ctr/$TESTFS
76 fs1=$ctr/$TESTFS1
77 snap=$fs@$TESTSNAP
78 clone=$ctr/$TESTCLONE
79 streamf=$corepath/s.$$
80
81 typeset cmds=("create $fs" "list $fs" "snapshot $snap" "set snapdir=hidden $fs" \
82 "get snapdir $fs" "rollback $snap" "inherit snapdir $fs" \
83 "rename $fs $fs-new" "rename $fs-new $fs" "unmount $fs" \
84 "mount $fs" "share $fs" "unshare $fs" "send $snap \>$streamf" \
85 "receive $fs1 \<$streamf" "clone $snap $clone" "promote $clone" \
86 "promote $fs" "destroy -rRf $fs")
87
88 typeset badparams=("" "create" "destroy" "snapshot" "rollback" "clone" \
89 "promote" "rename" "list -*" "set" "get -*" "inherit" "mount -A" \
90 "unmount" "share" "unshare" "send" "receive")
91
92 log_must $COREADM -p ${corepath}/core.%f
93 log_must export ZFS_ABORT=yes
94
95 for subcmd in "${cmds[@]}" "${badparams[@]}"; do
96 $ZFS $subcmd >/dev/null 2>&1 && log_fail "$subcmd passed incorrectly."
97 corefile=${corepath}/core.zfs
98 if [[ ! -e $corefile ]]; then
99 log_fail "$ZFS $subcmd cannot generate core file with " \
100 "ZFS_ABORT set."
101 fi
102 log_must $RM -f $corefile
103 done
104
105 log_pass "With ZFS_ABORT set, zfs command can abort and generate core file " \
106 "as expected."