xref: /freebsd/tests/sys/cddl/zfs/tests/migration/migration_005_pos.ksh (revision ac00d4d59b18a76c6148ca5d7439bb446d38da5c)
1*2fae26bdSAlan Somers#!/usr/local/bin/ksh93 -p
2*2fae26bdSAlan Somers#
3*2fae26bdSAlan Somers# CDDL HEADER START
4*2fae26bdSAlan Somers#
5*2fae26bdSAlan Somers# The contents of this file are subject to the terms of the
6*2fae26bdSAlan Somers# Common Development and Distribution License (the "License").
7*2fae26bdSAlan Somers# You may not use this file except in compliance with the License.
8*2fae26bdSAlan Somers#
9*2fae26bdSAlan Somers# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*2fae26bdSAlan Somers# or http://www.opensolaris.org/os/licensing.
11*2fae26bdSAlan Somers# See the License for the specific language governing permissions
12*2fae26bdSAlan Somers# and limitations under the License.
13*2fae26bdSAlan Somers#
14*2fae26bdSAlan Somers# When distributing Covered Code, include this CDDL HEADER in each
15*2fae26bdSAlan Somers# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*2fae26bdSAlan Somers# If applicable, add the following below this CDDL HEADER, with the
17*2fae26bdSAlan Somers# fields enclosed by brackets "[]" replaced with your own identifying
18*2fae26bdSAlan Somers# information: Portions Copyright [yyyy] [name of copyright owner]
19*2fae26bdSAlan Somers#
20*2fae26bdSAlan Somers# CDDL HEADER END
21*2fae26bdSAlan Somers#
22*2fae26bdSAlan Somers
23*2fae26bdSAlan Somers#
24*2fae26bdSAlan Somers# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
25*2fae26bdSAlan Somers# Use is subject to license terms.
26*2fae26bdSAlan Somers
27*2fae26bdSAlan Somers. $STF_SUITE/include/libtest.kshlib
28*2fae26bdSAlan Somers. $STF_SUITE/tests/migration/migration.kshlib
29*2fae26bdSAlan Somers
30*2fae26bdSAlan Somers################################################################################
31*2fae26bdSAlan Somers#
32*2fae26bdSAlan Somers# __stc_assertion_start
33*2fae26bdSAlan Somers#
34*2fae26bdSAlan Somers# ID: migration_005_pos
35*2fae26bdSAlan Somers#
36*2fae26bdSAlan Somers# DESCRIPTION:
37*2fae26bdSAlan Somers# Migrating test file from ZFS fs to UFS fs using cpio
38*2fae26bdSAlan Somers#
39*2fae26bdSAlan Somers# STRATEGY:
40*2fae26bdSAlan Somers# 1. Calculate chksum of testfile
41*2fae26bdSAlan Somers# 2. Cpio up test file and place on a ZFS filesystem
42*2fae26bdSAlan Somers# 3. Extract cpio contents to a UFS file system
43*2fae26bdSAlan Somers# 4. Calculate chksum of extracted file
44*2fae26bdSAlan Somers# 5. Compare old and new chksums.
45*2fae26bdSAlan Somers#
46*2fae26bdSAlan Somers# TESTABILITY: explicit
47*2fae26bdSAlan Somers#
48*2fae26bdSAlan Somers# TEST_AUTOMATION_LEVEL: automated
49*2fae26bdSAlan Somers#
50*2fae26bdSAlan Somers# CODING_STATUS: COMPLETED (2005-07-04)
51*2fae26bdSAlan Somers#
52*2fae26bdSAlan Somers# __stc_assertion_end
53*2fae26bdSAlan Somers#
54*2fae26bdSAlan Somers################################################################################
55*2fae26bdSAlan Somers
56*2fae26bdSAlan Somersverify_runnable "both"
57*2fae26bdSAlan Somers
58*2fae26bdSAlan Somersfunction cleanup
59*2fae26bdSAlan Somers{
60*2fae26bdSAlan Somers	$RM -rf $TESTDIR/cpio${TESTCASE_ID}.cpio
61*2fae26bdSAlan Somers	$RM -rf $NONZFS_TESTDIR/$BNAME
62*2fae26bdSAlan Somers}
63*2fae26bdSAlan Somers
64*2fae26bdSAlan Somerslog_assert "Migrating test file from ZFS fs to uFS fs using cpio"
65*2fae26bdSAlan Somers
66*2fae26bdSAlan Somerslog_onexit cleanup
67*2fae26bdSAlan Somers
68*2fae26bdSAlan Somerscwd=$PWD
69*2fae26bdSAlan Somerscd $DNAME
70*2fae26bdSAlan Somers(( $? != 0 )) && log_untested "Could not change directory to $DNAME"
71*2fae26bdSAlan Somers
72*2fae26bdSAlan Somers$LS $BNAME | $CPIO -oc > $TESTDIR/cpio${TESTCASE_ID}.cpio
73*2fae26bdSAlan Somers(( $? != 0 )) && log_failED "Unable to create cpio archive"
74*2fae26bdSAlan Somers
75*2fae26bdSAlan Somerscd $cwd
76*2fae26bdSAlan Somers(( $? != 0 )) && log_untested "Could not change directory to $cwd"
77*2fae26bdSAlan Somers
78*2fae26bdSAlan Somersmigrate_cpio $NONZFS_TESTDIR "$TESTDIR/cpio${TESTCASE_ID}.cpio" $SUMA $SUMB
79*2fae26bdSAlan Somers(( $? != 0 )) && log_fail "Uable to successfully migrate test file from" \
80*2fae26bdSAlan Somers    "ZFS fs to UFS fs"
81*2fae26bdSAlan Somers
82*2fae26bdSAlan Somerslog_pass "Successully migrated test file from ZFS fs to UFS fs".
83