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
23#
24# Copyright 2014 Spectra Logic Corporation
25#
26
27. $STF_SUITE/include/libtest.kshlib
28
29#################################################################################
30#
31# __stc_assertion_start
32#
33# ID: snapshot_020_pos
34#
35# DESCRIPTION:
36#	Verify that snapshots can be mounted in the ctldir, then renamed, then
37#	destroyed.  The original bug that this regresses was that the rename
38#	command failed to unmount the snapshot from its old location, leaving
39#	the user unable to either mount it or destroy it.
40#
41# STRATEGY:
42#	1. Create snapshot
43#	2. Access the snapshot through the ctldir to automount it
44#	3. Rename the snapshot
45#	4. Destroy the snapshot
46#
47# TESTABILITY: explicit
48#
49# TEST_AUTOMATION_LEVEL: automated
50#
51# CODING_STATUS: COMPLETED (2014-06-02)
52#
53# __stc_assertion_end
54#
55################################################################################
56
57verify_runnable "both"
58
59function cleanup
60{
61	datasetexists $SNAPFS && \
62		log_must $ZFS destroy -Rf $SNAPFS
63	datasetexists $TESTPOOL/$TESTFS@snap_a && \
64		log_must $ZFS destroy -Rf $TESTPOOL/$TESTFS@snap_a
65	datasetexists $TESTPOOL/$TESTCLONE@snap_a && \
66		log_must $ZFS destroy -Rf $TESTPOOL/$TESTCLONE@snap_a
67
68	datasetexists $TESTPOOL/$TESTCLONE && \
69		log_must $ZFS destroy $TESTPOOL/$TESTCLONE
70	datasetexists $TESTPOOL/$TESTFS && \
71		log_must $ZFS destroy $TESTPOOL/$TESTFS
72
73	log_must $ZFS create $TESTPOOL/$TESTFS
74	log_must $ZFS set mountpoint=$TESTDIR $TESTPOOL/$TESTFS
75}
76
77log_assert "Verify that mounted snapshots can be renamed and destroyed"
78log_onexit cleanup
79
80log_must $ZFS set snapdir=visible $TESTPOOL/$TESTFS
81log_must $ZFS snapshot $SNAPFS
82log_must stat $TESTDIR/$SNAPROOT/$TESTSNAP
83log_must $ZFS rename $SNAPFS $TESTPOOL/$TESTFS@$TESTSNAP1
84log_must stat $TESTDIR/$SNAPROOT/$TESTSNAP1
85log_must $ZFS destroy $TESTPOOL/$TESTFS@$TESTSNAP1
86
87log_pass
88