PageRenderTime 29ms CodeModel.GetById 1ms RepoModel.GetById 0ms app.codeStats 0ms

/tests/zfs-tests/tests/functional/cli_root/zfs_share/zfs_share_011_pos.ksh

http://github.com/zfsonlinux/zfs
Korn Shell | 89 lines | 35 code | 14 blank | 40 comment | 4 complexity | 7938d5211309195cb62f741c18df8460 MD5 | raw file
Possible License(s): Apache-2.0, MPL-2.0-no-copyleft-exception
  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) 2016 by Delphix. All rights reserved.
  28. #
  29. . $STF_SUITE/include/libtest.shlib
  30. #
  31. # DESCRIPTION:
  32. # Verify that umount and destroy fail, and do not unshare the shared
  33. # file system
  34. #
  35. # STRATEGY:
  36. # 1. Share the filesystem via 'zfs set sharenfs'.
  37. # 2. Try umount failure, and verify that the file system is still shared.
  38. # 3. Try destroy failure, and verify that the file system is still shared.
  39. #
  40. verify_runnable "global"
  41. function cleanup
  42. {
  43. log_must cd $origdir
  44. log_must zfs set sharenfs=off $TESTPOOL/$TESTFS
  45. unshare_fs $TESTPOOL/$TESTFS
  46. if snapexists "$TESTPOOL/$TESTFS@snapshot"; then
  47. log_must zfs destroy -f $TESTPOOL/$TESTFS@snapshot
  48. fi
  49. if datasetexists $TESTPOOL/$TESTFS/fs2 ; then
  50. log_must zfs destroy -f $TESTPOOL/$TESTFS/fs2
  51. fi
  52. }
  53. log_assert "Verify that umount and destroy fail, and do not unshare the shared" \
  54. "file system"
  55. log_onexit cleanup
  56. typeset origdir=$PWD
  57. # unmount fails will not unshare the shared filesystem
  58. log_must zfs set sharenfs=on $TESTPOOL/$TESTFS
  59. log_must is_shared $TESTDIR
  60. if cd $TESTDIR ; then
  61. log_mustnot zfs umount $TESTPOOL/$TESTFS
  62. else
  63. log_fail "cd $TESTDIR fails"
  64. fi
  65. log_must is_shared $TESTDIR
  66. # destroy fails will not unshare the shared filesystem
  67. log_must zfs create $TESTPOOL/$TESTFS/fs2
  68. if cd $TESTDIR/fs2 ; then
  69. log_mustnot zfs destroy $TESTPOOL/$TESTFS/fs2
  70. else
  71. log_fail "cd $TESTDIR/fs2 fails"
  72. fi
  73. log_must is_shared $TESTDIR/fs2
  74. log_pass "Verify that umount and destroy fail, and do not unshare the shared" \
  75. "file system"