/tests/zfs-tests/tests/functional/cli_root/zpool_initialize/zpool_initialize_attach_detach_add_remove.ksh

https://github.com/adilger/zfs · Korn Shell · 68 lines · 23 code · 9 blank · 36 comment · 4 complexity · 95edbc4d7e6b78f3ecad83ebfb8873d6 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 (c) 2016 by Delphix. All rights reserved.
  24. #
  25. . $STF_SUITE/include/libtest.shlib
  26. . $STF_SUITE/tests/functional/cli_root/zpool_initialize/zpool_initialize.kshlib
  27. #
  28. # DESCRIPTION:
  29. # Detaching/attaching, adding/removing data devices works with initializing.
  30. #
  31. # STRATEGY:
  32. # 1. Create a single-disk pool.
  33. # 2. Start initializing.
  34. # 3. Attach a second disk, ensure initializing continues.
  35. # 4. Detach the second disk, ensure initializing continues.
  36. # 5. Add a second disk, ensure initializing continues.
  37. # 6. Remove the first disk, ensure initializing stops.
  38. #
  39. DISK1="$(echo $DISKS | cut -d' ' -f1)"
  40. DISK2="$(echo $DISKS | cut -d' ' -f2)"
  41. log_must zpool create -f $TESTPOOL $DISK1
  42. log_must zpool initialize $TESTPOOL $DISK1
  43. progress="$(initialize_progress $TESTPOOL $DISK1)"
  44. [[ -z "$progress" ]] && log_fail "Initializing did not start"
  45. log_must zpool attach $TESTPOOL $DISK1 $DISK2
  46. new_progress="$(initialize_progress $TESTPOOL $DISK1)"
  47. [[ "$progress" -le "$new_progress" ]] || \
  48. log_fail "Lost initializing progress on demotion to child vdev"
  49. progress="$new_progress"
  50. log_must zpool detach $TESTPOOL $DISK2
  51. new_progress="$(initialize_progress $TESTPOOL $DISK1)"
  52. [[ "$progress" -le "$new_progress" ]] || \
  53. log_fail "Lost initializing progress on promotion to top vdev"
  54. progress="$new_progress"
  55. log_must zpool add $TESTPOOL $DISK2
  56. log_must zpool remove $TESTPOOL $DISK1
  57. [[ -z "$(initialize_prog_line $TESTPOOL $DISK1)" ]] || \
  58. log_fail "Initializing continued after initiating removal"
  59. log_pass "Initializing worked as expected across attach/detach and add/remove"