Skip to content

Commit

Permalink
OpenZFS 8072 - zfs-tests: several test cases incorrectly spell TESTPOOL
Browse files Browse the repository at this point in the history
Authored by: Yuri Pankov <yuri.pankov@nexenta.com>
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed by: John Kennedy <jwk404@gmail.com>
Approved by: Richard Lowe <richlowe@richlowe.net>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Ported-by: Giuseppe Di Natale <dinatale2@llnl.gov>

OpenZFS-issue: https://www.illumos.org/issues/8072
OpenZFS-commit: openzfs/openzfs@56e4733
Closes #6137
  • Loading branch information
Yuri Pankov authored and behlendorf committed May 25, 2017
1 parent 1d8da99 commit 7bc181e
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 19 deletions.
Expand Up @@ -53,7 +53,7 @@ snap=$TESTPOOL/$TESTFS@$TESTSNAP
set -A args "" \
"$TESTPOOL/blah" \
"$TESTPOOL" "$TESTPOOL/$TESTFS" "$snap" \
"$TESTPOOL/$TESTVOL" "$TESTPOL $TESTPOOL/$TESTFS" \
"$TESTPOOL/$TESTVOL" "$TESTPOOL $TESTPOOL/$TESTFS" \
"$clone $TESTPOOL/$TESTFS" "- $clone" "-? $clone"

function cleanup
Expand Down
18 changes: 9 additions & 9 deletions tests/zfs-tests/tests/functional/cli_user/misc/misc.cfg
Expand Up @@ -31,7 +31,7 @@
if is_linux; then
# these are the set of setable ZFS properties
PROP_NAMES="\
aclinherit acltype atime \
acltype atime \
checksum compression devices \
exec mountpoint quota readonly \
recordsize reservation setuid \
Expand All @@ -41,17 +41,17 @@ if is_linux; then
# zfs get/set subcommands - ordered as per the list above so we
# can iterate over both sets in an array
PROP_VALS="\
secure posixacl on \
posixacl on \
fletcher2 on on \
on legacy none on \
128k none on \
128K none on \
visible"

# these are an alternate set of property values
PROP_ALTVALS="\
noallow noacl off \
noacl off \
fletcher4 lzjb off \
off /tmp/zfstest 100m off \
off /tmp/zfstest 100M off \
512 10m off \
hidden"
else
Expand All @@ -67,17 +67,17 @@ else
# zfs get/set subcommands - ordered as per the list above so we
# can iterate over both sets in an array
PROP_VALS="\
secure discard on \
passthrough discard on \
fletcher2 on on \
on legacy none on \
128k none on on \
128K none on on \
visible"

# these are an alternate set of property values
PROP_ALTVALS="\
noallow noacl off \
passthrough-x groupmask off \
fletcher4 lzjb off \
off /tmp/zfstest 100m off \
off /tmp/zfstest 100M off \
512 10m off off \
hidden"
fi
Expand Down
Expand Up @@ -41,7 +41,6 @@
# 1. Run zfs get with an array of different arguments
# 2. Verify for each property, we get the value that's expected
#
#

log_assert "zfs get works when run as a user"

Expand All @@ -50,16 +49,16 @@ typeset -i i=0
set -A props $PROP_NAMES
set -A prop_vals $PROP_VALS

while [[ $i -lt ${#args[*]} ]]
while [[ $i -lt ${#props[*]} ]]
do
PROP=${props[$i]}
EXPECTED=${prop_vals[$i]}
ACTUAL=$( zfs get $PROP -o value -H snapdir $TESTPOOl/$TESTFS/prop )
ACTUAL=$(zfs get -H -o value $PROP $TESTPOOL/$TESTFS/prop)
if [ "$ACTUAL" != "$EXPECTED" ]
then
log_fail "Property $PROP value was $ACTUAL, expected $EXPECTED"
fi
i=$(( $i + 1 ))
i=$(( $i + 1 ))
done

log_pass "zfs get works when run as a user"
Expand Up @@ -50,7 +50,7 @@ log_mustnot zfs promote $TESTPOOL/$TESTFS/clone
# Now verify that the above command didn't do anything
if datasetexists $TESTPOOL/$TESTFS/clone@snap
then
log_fail "Clone $TESTPOOl/$TESTFS/clone was actually promoted!"
log_fail "Clone $TESTPOOL/$TESTFS/clone was actually promoted!"
fi

log_pass "zfs promote returns an error when run as a user"
Expand Up @@ -41,7 +41,6 @@
# 1. Attempt to set an array of properties on a dataset
# 2. Verify that those properties were not set and retain their original values.
#
#

log_assert "zfs set returns an error when run as a user"

Expand All @@ -51,20 +50,20 @@ set -A props $PROP_NAMES
set -A prop_vals $PROP_VALS
set -A prop_new $PROP_ALTVALS

while [[ $i -lt ${#args[*]} ]]
while [[ $i -lt ${#props[*]} ]]
do
PROP=${props[$i]}
EXPECTED=${prop_vals[$i]}
NEW=${prop_new[$i]}
log_mustnot zfs set $PROP=$NEW $TESTPOOL/$TESTFS/prop

# Now verify that the above command did nothing
ACTUAL=$(zfs get $PROP -o value -H snapdir $TESTPOOl/$TESTFS/prop )
ACTUAL=$(zfs get -H -o value $PROP $TESTPOOL/$TESTFS/prop)
if [ "$ACTUAL" != "$EXPECTED" ]
then
log_fail "Property $PROP was set to $ACTUAL, expected $EXPECTED"
fi
i=$(( $i + 1 ))
i=$(( $i + 1 ))
done

log_pass "zfs set returns an error when run as a user"

0 comments on commit 7bc181e

Please sign in to comment.