aboutsummaryrefslogtreecommitdiff
path: root/testcases/commands
diff options
context:
space:
mode:
authorGuangwen Feng <fenggw-fnst@cn.fujitsu.com>2015-11-04 16:12:43 +0800
committerCyril Hrubis <chrubis@suse.cz>2015-11-04 14:17:55 +0100
commit8a95b719259f489bf50e1642498ecbda99662f90 (patch)
tree7c93d6ce22abaabb5e6fee8fd1dd1c9f82b96575 /testcases/commands
parentcb6f3ee470e5dba17c15893064aa8ad8e34f32cf (diff)
commands/mkfs: Added new testcase to test mkfs(8) command.
Test mkfs(8) command with some basic options. Signed-off-by: Guangwen Feng <fenggw-fnst@cn.fujitsu.com>
Diffstat (limited to 'testcases/commands')
-rw-r--r--testcases/commands/mkfs/Makefile24
-rwxr-xr-xtestcases/commands/mkfs/mkfs01.sh236
2 files changed, 260 insertions, 0 deletions
diff --git a/testcases/commands/mkfs/Makefile b/testcases/commands/mkfs/Makefile
new file mode 100644
index 000000000..609901770
--- /dev/null
+++ b/testcases/commands/mkfs/Makefile
@@ -0,0 +1,24 @@
+#
+# commands/mkfs testcases Makefile.
+#
+# Copyright (c) 2015 Fujitsu Ltd.
+# Author:Guangwen Feng <fenggw-fnst@cn.fujitsu.com>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+
+top_srcdir ?= ../../..
+
+include $(top_srcdir)/include/mk/env_pre.mk
+
+INSTALL_TARGETS := mkfs01.sh
+
+include $(top_srcdir)/include/mk/generic_leaf_target.mk
diff --git a/testcases/commands/mkfs/mkfs01.sh b/testcases/commands/mkfs/mkfs01.sh
new file mode 100755
index 000000000..5b62df461
--- /dev/null
+++ b/testcases/commands/mkfs/mkfs01.sh
@@ -0,0 +1,236 @@
+#!/bin/sh
+#
+# Copyright (c) 2015 Fujitsu Ltd.
+# Author: Guangwen Feng <fenggw-fnst@cn.fujitsu.com>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
+# the GNU General Public License for more details.
+#
+# Test mkfs command with some basic options.
+#
+
+TCID=mkfs01
+TST_TOTAL=5
+. test.sh
+
+setup()
+{
+ tst_require_root
+
+ tst_check_cmds blkid df
+
+ if [ -n "$FS_TYPE" ]; then
+ tst_check_cmds mkfs.${FS_TYPE}
+ fi
+
+ tst_tmpdir
+
+ tst_acquire_device
+
+ TST_CLEANUP="cleanup"
+
+ ROD_SILENT mkdir -p mntpoint
+}
+
+cleanup()
+{
+ tst_release_device
+
+ tst_rmdir
+}
+
+mkfs_mount()
+{
+ mount ${TST_DEVICE} mntpoint
+ local ret=$?
+ if [ $ret -eq 32 ]; then
+ tst_brkm TCONF "Cannot mount ${FS_TYPE}, missing driver?"
+ fi
+
+ if [ $ret -ne 0 ]; then
+ tst_brkm TBROK "Failed to mount device: mount exit = $ret"
+ fi
+}
+
+mkfs_umount()
+{
+ grep -q ${TST_DEVICE} /proc/mounts
+ if [ $? -eq 0 ]; then
+ umount ${TST_DEVICE}
+ if [ $? -ne 0 ];then
+ tst_resm TWARN "'umount ${TST_DEVICE}' failed"
+ fi
+ else
+ tst_resm TINFO "${TST_DEVICE} is not mounted"
+ fi
+}
+
+usage()
+{
+ cat << EOF
+ usage: $0 [-f <ext2|ext3|ext4|vfat|...>]
+
+ OPTIONS
+ -f Specify the type of filesystem to be built. If not
+ specified, the default filesystem type (currently ext2)
+ is used.
+ -h Display help text and exit.
+
+EOF
+ tst_brkm TWARN "Display help text or unknown options"
+}
+
+mkfs_verify_type()
+{
+ if [ -z "$1" ]; then
+ blkid $2 -t TYPE="ext2" >/dev/null
+ else
+ if [ "$1" = "msdos" ]; then
+ blkid $2 -t SEC_TYPE="$1" >/dev/null
+ else
+ blkid $2 -t TYPE="$1" >/dev/null
+ fi
+ fi
+}
+
+mkfs_verify_size()
+{
+ mkfs_mount
+ local blocknum=`df -B 1k mntpoint | tail -n1 | awk '{print $2}'`
+ mkfs_umount
+
+ if [ $blocknum -gt "$2" ]; then
+ return 1
+ fi
+
+ # Size argument in mkfs.ntfs denotes number-of-sectors which is 512bytes,
+ # 1k-block size should be devided by this argument for ntfs verification.
+ if [ "$1" = "ntfs" ]; then
+ local rate=1024/512
+ if [ $blocknum -lt "$(($2/rate*9/10))" ]; then
+ return 1
+ fi
+ else
+ if [ $blocknum -lt "$(($2*9/10))" ]; then
+ return 1
+ fi
+ fi
+
+ return 0
+}
+
+mkfs_test()
+{
+ local mkfs_op=$1
+ local fs_type=$2
+ local fs_op=$3
+ local device=$4
+ local size=$5
+
+ if [ -n "$fs_type" ]; then
+ mkfs_op="-t $fs_type"
+ fi
+
+ if [ "$fs_type" = "xfs" ] || [ "$fs_type" = "btrfs" ]; then
+ fs_op="$fs_op -f"
+ fi
+
+ local mkfs_cmd="mkfs $mkfs_op $fs_op $device $size"
+
+ echo ${fs_op} | grep -q "\-c"
+ if [ $? -eq 0 ] && [ "$fs_type" = "ntfs" ]; then
+ tst_resm TCONF "'${mkfs_cmd}' not supported."
+ return
+ fi
+
+ if [ -n "$size" ]; then
+ if [ "$fs_type" = "xfs" ] || [ "$fs_type" = "btrfs" ]; then
+ tst_resm TCONF "'${mkfs_cmd}' not supported."
+ return
+ fi
+ fi
+
+ ${mkfs_cmd} >temp 2>&1
+ if [ $? -ne 0 ]; then
+ grep -q -E "unknown option | invalid option" temp
+ if [ $? -eq 0 ]; then
+ tst_resm TCONF "'${mkfs_cmd}' not supported."
+ return
+ else
+ tst_resm TFAIL "'${mkfs_cmd}' failed."
+ cat temp
+ return
+ fi
+ fi
+
+ if [ -n "$device" ]; then
+ mkfs_verify_type "$fs_type" "$device"
+ if [ $? -ne 0 ]; then
+ tst_resm TFAIL "'${mkfs_cmd}' failed, not expected."
+ return
+ fi
+ fi
+
+ if [ -n "$size" ]; then
+ mkfs_verify_size "$fs_type" "$size"
+ if [ $? -ne 0 ]; then
+ tst_resm TFAIL "'${mkfs_cmd}' failed, not expected."
+ return
+ fi
+ fi
+
+ tst_resm TPASS "'${mkfs_cmd}' passed."
+}
+
+test1()
+{
+ mkfs_test "" "$FS_TYPE" "" "$TST_DEVICE"
+}
+
+test2()
+{
+ mkfs_test "" "$FS_TYPE" "" "$TST_DEVICE" "16000"
+}
+
+test3()
+{
+ mkfs_test "" "$FS_TYPE" "-c" "$TST_DEVICE"
+}
+
+test4()
+{
+ mkfs_test "-V"
+}
+
+test5()
+{
+ mkfs_test "-h"
+}
+
+FS_TYPE=""
+
+while getopts f:h OPTION; do
+ case $OPTION in
+ f)
+ FS_TYPE=$OPTARG;;
+ h)
+ usage;;
+ ?)
+ usage;;
+ esac
+done
+
+setup
+for i in $(seq 1 ${TST_TOTAL})
+do
+ test$i
+done
+
+tst_exit