/tests/zfs-tests/tests/functional/cli_root/zpool_upgrade/zpool_upgrade_001_pos.ksh

https://github.com/adilger/zfs · Korn Shell · 78 lines · 17 code · 14 blank · 47 comment · 2 complexity · 68727f3f53ba4f892d673945e821459d MD5 · raw file

  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. # Copyright 2008 Sun Microsystems, Inc. All rights reserved.
  24. # Use is subject to license terms.
  25. #
  26. #
  27. # Copyright (c) 2012, 2016 by Delphix. All rights reserved.
  28. # Copyright 2015 Nexenta Systems, Inc. All rights reserved.
  29. #
  30. . $STF_SUITE/tests/functional/cli_root/zpool_upgrade/zpool_upgrade.kshlib
  31. #
  32. # DESCRIPTION:
  33. # Executing 'zpool upgrade -v' command succeeds, prints a description of legacy
  34. # versions, and mentions feature flags.
  35. #
  36. # STRATEGY:
  37. # 1. Execute the command
  38. # 2. Verify a 0 exit status
  39. # 3. Grep for version descriptions and 'feature flags'
  40. #
  41. verify_runnable "global"
  42. function cleanup
  43. {
  44. rm -f $versions
  45. }
  46. log_assert "Executing 'zpool upgrade -v' command succeeds"
  47. log_onexit cleanup
  48. typeset versions=$TEST_BASE_DIR/zpool-versions.$$
  49. log_must zpool upgrade -v
  50. # We also check that the usage message contains a description of legacy
  51. # versions and a note about feature flags.
  52. log_must eval "zpool upgrade -v | head -1 | grep 'feature flags'"
  53. zpool upgrade -v > $versions
  54. #
  55. # Current output for 'zpool upgrade -v' has different indent space
  56. # for single and double digit version number. For example,
  57. # 9 refquota and refreservation properties
  58. # 10 Cache devices
  59. #
  60. for version in {1..28}; do
  61. log_note "Checking for a description of pool version $version"
  62. log_must eval "awk '/^ $version / { print $1 }' $versions | grep $version"
  63. done
  64. log_pass "Executing 'zpool upgrade -v' command succeeds"