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 2007 Sun Microsystems, Inc.  All rights reserved.
25# Use is subject to license terms.
26
27. $STF_SUITE/tests/history/history_common.kshlib
28
29#################################################################################
30#
31# __stc_assertion_start
32#
33# ID: history_007_pos
34#
35# DESCRIPTION:
36#	Verify command history moves with pool while pool being migrated
37#
38# STRATEGY:
39#	1. Import uniform platform and cross platform pools
40#	2. Contract the command history of the imported pool
41#	3. Compare imported history log with the previous log.
42#
43# TESTABILITY: explicit
44#
45# TEST_AUTOMATION_LEVEL: automated
46#
47# CODING_STATUS: COMPLETED (2006-10-25)
48#
49# __stc_assertion_end
50#
51################################################################################
52
53verify_runnable "global"
54
55function cleanup
56{
57	poolexists $migratedpoolname &&  \
58		log_must $ZPOOL destroy -f $migratedpoolname
59
60	[[ -d $import_dir ]] && $RM -rf $import_dir
61}
62
63log_assert "Verify command history moves with pool while migrating."
64log_onexit cleanup
65
66# The *.orig_history.txt files were made using the America/Denver timezone,
67# and since "zpool history" outputs timestamps in localtime, the test must
68# be run in that same timezone
69export TZ="America/Denver"
70
71tst_dir=$STF_SUITE/tests/history
72import_dir=$TESTDIR/importdir.${TESTCASE_ID}
73migrated_cmds_f=$import_dir/migrated_history.${TESTCASE_ID}
74migratedpoolname=$MIGRATEDPOOLNAME
75typeset -i RET=1
76typeset -i linenum=0
77
78[[ ! -d $import_dir ]] && log_must $MKDIR $import_dir
79
80# We test the migrations on both uniform platform and cross platform
81for arch in "i386" "sparc"; do
82	log_must $CP $tst_dir/${arch}.orig_history.txt $import_dir
83	orig_cmds_f=$import_dir/${arch}.orig_history.txt
84	#remove blank line
85	orig_cmds_f1=$import_dir/${arch}.orig_history_1.txt
86	$CAT $orig_cmds_f | $GREP -v "^$" > $orig_cmds_f1
87
88	log_must $CP $tst_dir/${arch}.migratedpool.DAT.Z $import_dir
89	log_must $UNCOMPRESS $import_dir/${arch}.migratedpool.DAT.Z
90
91	#destroy the pool with same name, so that import operation could succeed.
92	poolexists $migratedpoolname &&  \
93		log_must $ZPOOL destroy -f $migratedpoolname
94
95	log_must $ZPOOL import -d $import_dir $migratedpoolname
96	$ZPOOL history $migratedpoolname | $GREP -v "^$" >$migrated_cmds_f
97	RET=$?
98	(( $RET != 0 )) && log_fail "$ZPOOL histroy $migratedpoolname fails."
99
100	# The migrated history file should differ with original history file on
101	# two commands -- 'export' and 'import', which are included in migrated
102	# history file but not in original history file. so, check the two commands
103	# firstly in migrated history file and then delete them, and then compare
104	# this filtered file with the original history file. They should be identical
105	# at this time.
106	for subcmd in "export" "import"; do
107		$GREP "$subcmd" $migrated_cmds_f >/dev/null 2>&1
108		RET=$?
109		(( $RET != 0 )) && log_fail "zpool $subcmd is not logged for" \
110				"the imported pool $migratedpoolname."
111	done
112
113	tmpfile=$import_dir/cmds_tmp.${TESTCASE_ID}
114	linenum=`$CAT $migrated_cmds_f | $WC -l`
115	(( linenum = linenum - 2 ))
116	$HEAD -n $linenum $migrated_cmds_f > $tmpfile
117	log_must $DIFF $tmpfile $orig_cmds_f1
118
119	#cleanup for next loop testing
120	log_must $ZPOOL destroy -f $migratedpoolname
121	log_must $RM -f `$LS $import_dir`
122done
123
124log_pass "Command history moves with pool as expected while pool being migrated. "
125