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