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