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

/tests/zfs-tests/tests/functional/cli_user/zfs_list/zfs_list_004_neg.ksh

http://github.com/zfsonlinux/zfs
Korn Shell | 63 lines | 13 code | 10 blank | 40 comment | 3 complexity | 8ff6f106710fcb6973f45ad594a26643 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 2007 Sun Microsystems, Inc. All rights reserved.
  24. # Use is subject to license terms.
  25. #
  26. #
  27. # Copyright (c) 2013, 2016 by Delphix. All rights reserved.
  28. #
  29. . $STF_SUITE/include/libtest.shlib
  30. #
  31. # DESCRIPTION:
  32. # Verify 'zfs list [-r]' should fail while
  33. # * the given dataset does not exist
  34. # * the given path does not exist.
  35. # * the given path does not belong to zfs.
  36. #
  37. # STRATEGY:
  38. # 1. Create an array of invalid options.
  39. # 2. Execute each element in the array.
  40. # 3. Verify failure is returned.
  41. #
  42. verify_runnable "both"
  43. log_assert "Verify 'zfs list [-r]' should fail while the given " \
  44. "dataset/path does not exist or not belong to zfs."
  45. paths="$TESTPOOL/NONEXISTFS $TESTPOOL/$TESTFS/NONEXISTFS \
  46. /$TESTDIR/NONEXISTFS /devices /tmp ./../devices ./../tmp"
  47. cd /tmp
  48. for fs in $paths ; do
  49. log_mustnot zfs list $fs
  50. log_mustnot zfs list -r $fs
  51. done
  52. log_pass "'zfs list [-r]' fails while the given dataset/path does not exist " \
  53. "or not belong to zfs."