forked from openzfs/zfs
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add regression test for "zpool list -p"
Other than this test, zpool list -p is not well tested by any of the automated tests. Add a test for zpool list -p. Reviewed-by: Prakash Surya <[email protected]> Reviewed-by: Serapheim Dimitropoulos <[email protected]> Reviewed-by: Brian Behlendorf <[email protected]> Signed-off-by: Paul Dagnelie <[email protected]> Closes openzfs#9134
- Loading branch information
1 parent
8b7351f
commit ee3b228
Showing
4 changed files
with
115 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
78 changes: 78 additions & 0 deletions
78
tests/zfs-tests/tests/functional/cli_root/zpool_get/zpool_get_005_pos.ksh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
#!/bin/ksh -p | ||
# | ||
# CDDL HEADER START | ||
# | ||
# The contents of this file are subject to the terms of the | ||
# Common Development and Distribution License (the "License"). | ||
# You may not use this file except in compliance with the License. | ||
# | ||
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE | ||
# or http://www.opensolaris.org/os/licensing. | ||
# See the License for the specific language governing permissions | ||
# and limitations under the License. | ||
# | ||
# When distributing Covered Code, include this CDDL HEADER in each | ||
# file and include the License file at usr/src/OPENSOLARIS.LICENSE. | ||
# If applicable, add the following below this CDDL HEADER, with the | ||
# fields enclosed by brackets "[]" replaced with your own identifying | ||
# information: Portions Copyright [yyyy] [name of copyright owner] | ||
# | ||
# CDDL HEADER END | ||
# | ||
|
||
# | ||
# Copyright 2008 Sun Microsystems, Inc. All rights reserved. | ||
# Use is subject to license terms. | ||
# | ||
|
||
# | ||
# Copyright (c) 2014 by Delphix. All rights reserved. | ||
# | ||
|
||
. $STF_SUITE/include/libtest.shlib | ||
. $STF_SUITE/tests/functional/cli_root/zpool_get/zpool_get_parsable.cfg | ||
|
||
# | ||
# DESCRIPTION: | ||
# | ||
# Zpool get returns parsable values for all known parsable properties | ||
# | ||
# STRATEGY: | ||
# 1. For all parsable properties, verify zpool get -p returns a parsable value | ||
# | ||
|
||
if ! is_global_zone ; then | ||
TESTPOOL=${TESTPOOL%%/*} | ||
fi | ||
|
||
typeset -i i=0 | ||
|
||
while [[ $i -lt "${#properties[@]}" ]]; do | ||
log_note "Checking for parsable ${properties[$i]} property" | ||
log_must eval "zpool get -p ${properties[$i]} $TESTPOOL >/tmp/value.$$" | ||
grep "${properties[$i]}" /tmp/value.$$ >/dev/null 2>&1 | ||
if [[ $? -ne 0 ]]; then | ||
log_fail "${properties[$i]} not seen in output" | ||
fi | ||
|
||
typeset v=$(grep "${properties[$i]}" /tmp/value.$$ | awk '{print $3}') | ||
|
||
log_note "${properties[$i]} has a value of $v" | ||
|
||
# Determine if this value is a valid number, result in return code | ||
log_must test -n "$v" | ||
expr $v + 0 >/dev/null 2>&1 | ||
|
||
# All properties must be positive integers in order to be | ||
# parsable (i.e. a return code of 0 or 1 from expr above). | ||
# The only exception is "expandsize", which may be "-". | ||
if [[ ! ($? -eq 0 || $? -eq 1 || \ | ||
("${properties[$i]}" = "expandsize" && "$v" = "-")) ]]; then | ||
log_fail "${properties[$i]} is not parsable" | ||
fi | ||
|
||
i=$(( $i + 1 )) | ||
done | ||
|
||
rm /tmp/value.$$ | ||
log_pass "Zpool get returns parsable values for all known parsable properties" |
33 changes: 33 additions & 0 deletions
33
tests/zfs-tests/tests/functional/cli_root/zpool_get/zpool_get_parsable.cfg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# | ||
# CDDL HEADER START | ||
# | ||
# The contents of this file are subject to the terms of the | ||
# Common Development and Distribution License (the "License"). | ||
# You may not use this file except in compliance with the License. | ||
# | ||
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE | ||
# or http://www.opensolaris.org/os/licensing. | ||
# See the License for the specific language governing permissions | ||
# and limitations under the License. | ||
# | ||
# When distributing Covered Code, include this CDDL HEADER in each | ||
# file and include the License file at usr/src/OPENSOLARIS.LICENSE. | ||
# If applicable, add the following below this CDDL HEADER, with the | ||
# fields enclosed by brackets "[]" replaced with your own identifying | ||
# information: Portions Copyright [yyyy] [name of copyright owner] | ||
# | ||
# CDDL HEADER END | ||
# | ||
|
||
# | ||
# Copyright 2009 Sun Microsystems, Inc. All rights reserved. | ||
# Use is subject to license terms. | ||
# | ||
|
||
# | ||
# Copyright (c) 2013, 2014 by Delphix. All rights reserved. | ||
# | ||
|
||
# Set the expected properties of zpool | ||
typeset -a properties=("allocated" "capacity" "expandsize" "free" "freeing" | ||
"leaked" "size") |