PageRenderTime 28ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/tests/zfs-tests/tests/functional/cli_root/zfs_rollback/zfs_rollback_003_neg.ksh

http://github.com/zfsonlinux/zfs
Korn Shell | 84 lines | 37 code | 7 blank | 40 comment | 2 complexity | f6b17b1814f750057e2216223fdf5c15 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. . $STF_SUITE/tests/functional/cli_root/zfs_rollback/zfs_rollback_common.kshlib
  31. #
  32. # DESCRIPTION:
  33. # Separately verify 'zfs rollback ''|-f|-r|-rf|-R|-rR will fail in
  34. # different conditions.
  35. #
  36. # STRATEGY:
  37. # 1. Create pool and file system
  38. # 2. Create 'snap' and 'snap1' of this file system.
  39. # 3. Run 'zfs rollback ""|-f <snap>' and it should fail.
  40. # 4. Create 'clone1' based on 'snap1'.
  41. # 5. Run 'zfs rollback -r|-rf <snap>' and it should fail.
  42. #
  43. verify_runnable "both"
  44. function cleanup
  45. {
  46. pkill ${DD##*/}
  47. for snap in $FSSNAP0 $FSSNAP1 $FSSNAP2; do
  48. if snapexists $snap; then
  49. log_must zfs destroy -Rf $snap
  50. fi
  51. done
  52. }
  53. log_assert "Separately verify 'zfs rollback ''|-f|-r|-rf will fail in " \
  54. "different conditions."
  55. log_onexit cleanup
  56. # Create snapshot1 and snapshot2 for this file system.
  57. #
  58. create_snapshot $TESTPOOL/$TESTFS $TESTSNAP
  59. create_snapshot $TESTPOOL/$TESTFS $TESTSNAP1
  60. # Run 'zfs rollback ""|-f <snap>' and it should fail.
  61. #
  62. log_mustnot zfs rollback $TESTPOOL/$TESTFS@$TESTSNAP
  63. log_mustnot zfs rollback -f $TESTPOOL/$TESTFS@$TESTSNAP
  64. # Create 'clone1' based on 'snap1'.
  65. #
  66. create_clone $TESTPOOL/$TESTFS@$TESTSNAP1 $TESTPOOL/$TESTCLONE1
  67. # Run 'zfs rollback -r|-rf <snap>' and it should fail.
  68. #
  69. log_mustnot zfs rollback -r $TESTPOOL/$TESTFS@$TESTSNAP
  70. log_mustnot zfs rollback -rf $TESTPOOL/$TESTFS@$TESTSNAP
  71. log_pass "zfs rollback ''|-f|-r|-rf will fail in different conditions " \
  72. "passed."