diff options
Diffstat (limited to 'tools/regression/zfs/zpool/create/files.t')
-rw-r--r-- | tools/regression/zfs/zpool/create/files.t | 189 |
1 files changed, 189 insertions, 0 deletions
diff --git a/tools/regression/zfs/zpool/create/files.t b/tools/regression/zfs/zpool/create/files.t new file mode 100644 index 000000000000..06107b29b141 --- /dev/null +++ b/tools/regression/zfs/zpool/create/files.t @@ -0,0 +1,189 @@ +#!/bin/sh +# $FreeBSD$ + +dir=`dirname $0` +. ${dir}/../../misc.sh + +echo "1..59" + +files_create 5 +names_create 1 + +expect_ok ${ZPOOL} create ${name0} ${file0} +expect_ok ${ZPOOL} status -x ${name0} +expect "pool '${name0}' is healthy" ${ZPOOL} status -x ${name0} +exp=`( + echo " pool: ${name0}" + echo " state: ONLINE" + echo " scrub: none requested" + echo "config:" + echo " NAME STATE READ WRITE CKSUM" + echo " ${name0} ONLINE 0 0 0" + echo " ${file0} ONLINE 0 0 0" + echo "errors: No known data errors" +)` +expect "${exp}" ${ZPOOL} status ${name0} +expect_ok ${ZPOOL} destroy ${name0} +expect_fl ${ZPOOL} status -x ${name0} +expect_fl ${ZPOOL} destroy ${name0} + +expect_ok ${ZPOOL} create ${name0} ${file0} ${file1} ${file2} ${file3} ${file4} +expect_ok ${ZPOOL} status -x ${name0} +expect "pool '${name0}' is healthy" ${ZPOOL} status -x ${name0} +exp=`( + echo " pool: ${name0}" + echo " state: ONLINE" + echo " scrub: none requested" + echo "config:" + echo " NAME STATE READ WRITE CKSUM" + echo " ${name0} ONLINE 0 0 0" + echo " ${file0} ONLINE 0 0 0" + echo " ${file1} ONLINE 0 0 0" + echo " ${file2} ONLINE 0 0 0" + echo " ${file3} ONLINE 0 0 0" + echo " ${file4} ONLINE 0 0 0" + echo "errors: No known data errors" +)` +expect "${exp}" ${ZPOOL} status ${name0} +expect_ok ${ZPOOL} destroy ${name0} +expect_fl ${ZPOOL} status -x ${name0} +expect_fl ${ZPOOL} destroy ${name0} + +expect_ok ${ZPOOL} create ${name0} mirror ${file0} ${file1} +expect_ok ${ZPOOL} status -x ${name0} +expect "pool '${name0}' is healthy" ${ZPOOL} status -x ${name0} +exp=`( + echo " pool: ${name0}" + echo " state: ONLINE" + echo " scrub: none requested" + echo "config:" + echo " NAME STATE READ WRITE CKSUM" + echo " ${name0} ONLINE 0 0 0" + echo " mirror ONLINE 0 0 0" + echo " ${file0} ONLINE 0 0 0" + echo " ${file1} ONLINE 0 0 0" + echo "errors: No known data errors" +)` +expect "${exp}" ${ZPOOL} status ${name0} +expect_ok ${ZPOOL} destroy ${name0} +expect_fl ${ZPOOL} status -x ${name0} +expect_fl ${ZPOOL} destroy ${name0} + +expect_ok ${ZPOOL} create ${name0} raidz1 ${file0} ${file1} ${file2} +expect_ok ${ZPOOL} status -x ${name0} +expect "pool '${name0}' is healthy" ${ZPOOL} status -x ${name0} +exp=`( + echo " pool: ${name0}" + echo " state: ONLINE" + echo " scrub: none requested" + echo "config:" + echo " NAME STATE READ WRITE CKSUM" + echo " ${name0} ONLINE 0 0 0" + echo " raidz1 ONLINE 0 0 0" + echo " ${file0} ONLINE 0 0 0" + echo " ${file1} ONLINE 0 0 0" + echo " ${file2} ONLINE 0 0 0" + echo "errors: No known data errors" +)` +expect "${exp}" ${ZPOOL} status ${name0} +expect_ok ${ZPOOL} destroy ${name0} +expect_fl ${ZPOOL} status -x ${name0} +expect_fl ${ZPOOL} destroy ${name0} + +expect_ok ${ZPOOL} create ${name0} raidz2 ${file0} ${file1} ${file2} ${file3} +expect_ok ${ZPOOL} status -x ${name0} +expect "pool '${name0}' is healthy" ${ZPOOL} status -x ${name0} +exp=`( + echo " pool: ${name0}" + echo " state: ONLINE" + echo " scrub: none requested" + echo "config:" + echo " NAME STATE READ WRITE CKSUM" + echo " ${name0} ONLINE 0 0 0" + echo " raidz2 ONLINE 0 0 0" + echo " ${file0} ONLINE 0 0 0" + echo " ${file1} ONLINE 0 0 0" + echo " ${file2} ONLINE 0 0 0" + echo " ${file3} ONLINE 0 0 0" + echo "errors: No known data errors" +)` +expect "${exp}" ${ZPOOL} status ${name0} +expect_ok ${ZPOOL} destroy ${name0} +expect_fl ${ZPOOL} status -x ${name0} +expect_fl ${ZPOOL} destroy ${name0} + +expect_ok ${ZPOOL} create ${name0} mirror ${file0} ${file1} spare ${file2} ${file3} +expect_ok ${ZPOOL} status -x ${name0} +expect "pool '${name0}' is healthy" ${ZPOOL} status -x ${name0} +exp=`( + echo " pool: ${name0}" + echo " state: ONLINE" + echo " scrub: none requested" + echo "config:" + echo " NAME STATE READ WRITE CKSUM" + echo " ${name0} ONLINE 0 0 0" + echo " mirror ONLINE 0 0 0" + echo " ${file0} ONLINE 0 0 0" + echo " ${file1} ONLINE 0 0 0" + echo " spares" + echo " ${file2} AVAIL " + echo " ${file3} AVAIL " + echo "errors: No known data errors" +)` +expect "${exp}" ${ZPOOL} status ${name0} +expect_ok ${ZPOOL} destroy ${name0} +expect_fl ${ZPOOL} status -x ${name0} +expect_fl ${ZPOOL} destroy ${name0} + +expect_ok ${ZPOOL} create ${name0} mirror ${file0} ${file1} log ${file2} ${file3} +expect_ok ${ZPOOL} status -x ${name0} +expect "pool '${name0}' is healthy" ${ZPOOL} status -x ${name0} +exp=`( + echo " pool: ${name0}" + echo " state: ONLINE" + echo " scrub: none requested" + echo "config:" + echo " NAME STATE READ WRITE CKSUM" + echo " ${name0} ONLINE 0 0 0" + echo " mirror ONLINE 0 0 0" + echo " ${file0} ONLINE 0 0 0" + echo " ${file1} ONLINE 0 0 0" + echo " logs ONLINE 0 0 0" + echo " ${file2} ONLINE 0 0 0" + echo " ${file3} ONLINE 0 0 0" + echo "errors: No known data errors" +)` +expect "${exp}" ${ZPOOL} status ${name0} +expect_ok ${ZPOOL} destroy ${name0} +expect_fl ${ZPOOL} status -x ${name0} +expect_fl ${ZPOOL} destroy ${name0} + +expect_ok ${ZPOOL} create ${name0} mirror ${file0} ${file1} log mirror ${file2} ${file3} +expect_ok ${ZPOOL} status -x ${name0} +expect "pool '${name0}' is healthy" ${ZPOOL} status -x ${name0} +exp=`( + echo " pool: ${name0}" + echo " state: ONLINE" + echo " scrub: none requested" + echo "config:" + echo " NAME STATE READ WRITE CKSUM" + echo " ${name0} ONLINE 0 0 0" + echo " mirror ONLINE 0 0 0" + echo " ${file0} ONLINE 0 0 0" + echo " ${file1} ONLINE 0 0 0" + echo " logs ONLINE 0 0 0" + echo " mirror ONLINE 0 0 0" + echo " ${file2} ONLINE 0 0 0" + echo " ${file3} ONLINE 0 0 0" + echo "errors: No known data errors" +)` +expect "${exp}" ${ZPOOL} status ${name0} +expect_ok ${ZPOOL} destroy ${name0} +expect_fl ${ZPOOL} status -x ${name0} +expect_fl ${ZPOOL} destroy ${name0} + +expect_fl ${ZPOOL} create ${name0} mirror ${file0} ${file1} cache ${file2} ${file3} +expect_fl ${ZPOOL} status -x ${name0} +expect_fl ${ZPOOL} destroy ${name0} + +files_destroy |