PageRenderTime 26ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/tests/sys/cddl/zfs/tests/cli_root/zpool_import/zpool_import_008_pos.ksh

https://bitbucket.org/freebsd/freebsd-base
Korn Shell | 112 lines | 47 code | 12 blank | 53 comment | 1 complexity | c44d567052953c3f0b959a648d472c36 MD5 | raw file
  1. #!/usr/local/bin/ksh93 -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. # $FreeBSD$
  23. #
  24. # Copyright 2007 Sun Microsystems, Inc. All rights reserved.
  25. # Use is subject to license terms.
  26. #
  27. # ident "@(#)zpool_import_008_pos.ksh 1.3 07/10/09 SMI"
  28. #
  29. . $STF_SUITE/include/libtest.kshlib
  30. #################################################################################
  31. #
  32. # __stc_assertion_start
  33. #
  34. # ID: zpool_import_008_pos
  35. #
  36. # DESCRIPTION:
  37. # For raidz2, two destroyed pool's devices were removed or used by other
  38. # pool, it still can be imported correctly.
  39. #
  40. # STRATEGY:
  41. # 1. Create a raidz2 pool A with N disks.
  42. # 2. Destroy this pool A.
  43. # 3. Create another pool B with two disks which were used by pool A.
  44. # 4. Verify import this raidz2 pool can succeed.
  45. #
  46. # TESTABILITY: explicit
  47. #
  48. # TEST_AUTOMATION_LEVEL: automated
  49. #
  50. # CODING_STATUS: COMPLETED (2006-06-12)
  51. #
  52. # __stc_assertion_end
  53. #
  54. ################################################################################
  55. verify_runnable "global"
  56. function cleanup
  57. {
  58. destroy_pool $TESTPOOL2
  59. destroy_pool $TESTPOOL1
  60. log_must $RM -rf $DEVICE_DIR/*
  61. typeset i=0
  62. while (( i < $MAX_NUM )); do
  63. log_must create_vdevs ${DEVICE_DIR}/${DEVICE_FILE}$i
  64. ((i += 1))
  65. done
  66. }
  67. function perform_test
  68. {
  69. typeset target=$1
  70. assert_pool_in_cachefile $TESTPOOL1
  71. log_must $ZPOOL destroy $TESTPOOL1
  72. log_must $ZPOOL create $TESTPOOL2 $VDEV0 $VDEV1
  73. log_must $ZPOOL import -d $DEVICE_DIR -D -f $target
  74. log_must $ZPOOL destroy $TESTPOOL1
  75. log_must $ZPOOL destroy $TESTPOOL2
  76. log_must $RM -rf $VDEV0 $VDEV1
  77. log_must $ZPOOL import -d $DEVICE_DIR -D -f $target
  78. log_must $ZPOOL destroy $TESTPOOL1
  79. log_note "For raidz2, more than two destroyed pool's devices were used, " \
  80. "import failed."
  81. log_must create_vdevs $VDEV0 $VDEV1
  82. log_must $ZPOOL create $TESTPOOL2 $VDEV0 $VDEV1 $VDEV2
  83. log_mustnot $ZPOOL import -d $DEVICE_DIR -D -f $target
  84. log_must $ZPOOL destroy $TESTPOOL2
  85. }
  86. log_assert "For raidz2, two destroyed pools devices was removed or used by " \
  87. "other pool, it still can be imported correctly."
  88. log_onexit cleanup
  89. log_note "Testing import by name."
  90. log_must $ZPOOL create $TESTPOOL1 raidz2 $VDEV0 $VDEV1 $VDEV2 $VDEV3
  91. perform_test $TESTPOOL1
  92. log_note "Testing import by GUID."
  93. log_must $ZPOOL create $TESTPOOL1 raidz2 $VDEV0 $VDEV1 $VDEV2 $VDEV3
  94. typeset guid=$(get_config $TESTPOOL1 pool_guid)
  95. perform_test $guid
  96. log_pass "zpool import -D raidz2 passed."