1# 2# Copyright 2015 EMC Corp. 3# All rights reserved. 4# 5# Redistribution and use in source and binary forms, with or without 6# modification, are permitted provided that the following conditions are 7# met: 8# 9# * Redistributions of source code must retain the above copyright 10# notice, this list of conditions and the following disclaimer. 11# * Redistributions in binary form must reproduce the above copyright 12# notice, this list of conditions and the following disclaimer in the 13# documentation and/or other materials provided with the distribution. 14# 15# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 16# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 17# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 18# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 19# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 20# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 21# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 22# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 23# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26# 27# $FreeBSD$ 28# 29 30MAKEFS="makefs -t ffs" 31MOUNT="mount" 32 33. "$(dirname "$0")/makefs_tests_common.sh" 34 35TEST_TUNEFS_OUTPUT=$TMPDIR/tunefs.output 36 37common_cleanup() 38{ 39 if ! test_md_device=$(cat $TEST_MD_DEVICE_FILE); then 40 echo "$TEST_MD_DEVICE_FILE could not be opened; has an md(4) device been attached?" 41 return 42 fi 43 44 umount -f /dev/$test_md_device || : 45 mdconfig -d -u $test_md_device || : 46} 47 48check_ffs_image_contents() 49{ 50 atf_check -e save:$TEST_TUNEFS_OUTPUT -o empty -s exit:0 \ 51 tunefs -p /dev/$(cat $TEST_MD_DEVICE_FILE) 52 53 check_image_contents "$@" 54} 55 56# With no -M, -m, or -s options, makefs should autocalculate the image size 57atf_test_case autocalculate_image_size cleanup 58autocalculate_image_size_body() 59{ 60 atf_expect_fail "PR 229929 makefs(8) can underestimate image size" 61 create_test_inputs 62 63 atf_check -e empty -o save:$TEST_SPEC_FILE -s exit:0 \ 64 mtree -c -k "$DEFAULT_MTREE_KEYWORDS" -p $TEST_INPUTS_DIR 65 66 cd $TEST_INPUTS_DIR 67 atf_check -e empty -o not-empty -s exit:0 \ 68 $MAKEFS $TEST_IMAGE $TEST_SPEC_FILE 69 cd - 70 71 mount_image 72 check_ffs_image_contents 73} 74autocalculate_image_size_cleanup() 75{ 76 common_cleanup 77} 78 79atf_test_case D_flag cleanup 80D_flag_body() 81{ 82 atf_skip "makefs crashes with SIGBUS with dupe mtree entries; see FreeBSD bug # 192839" 83 84 create_test_inputs 85 86 atf_check -e empty -o save:$TEST_SPEC_FILE -s exit:0 \ 87 mtree -cp $TEST_INPUTS_DIR 88 atf_check -e empty -o not-empty -s exit:0 \ 89 $MAKEFS -F $TEST_SPEC_FILE -M 1m $TEST_IMAGE $TEST_INPUTS_DIR 90 91 atf_check -e empty -o empty -s exit:0 \ 92 cp $TEST_SPEC_FILE spec2.mtree 93 atf_check -e empty -o save:dupe_$TEST_SPEC_FILE -s exit:0 \ 94 cat $TEST_SPEC_FILE spec2.mtree 95 96 atf_check -e empty -o not-empty -s not-exit:0 \ 97 $MAKEFS -F dupe_$TEST_SPEC_FILE -M 1m $TEST_IMAGE $TEST_INPUTS_DIR 98 atf_check -e empty -o not-empty -s exit:0 \ 99 $MAKEFS -D -F dupe_$TEST_SPEC_FILE -M 1m $TEST_IMAGE $TEST_INPUTS_DIR 100} 101D_flag_cleanup() 102{ 103 common_cleanup 104} 105 106atf_test_case F_flag cleanup 107F_flag_body() 108{ 109 create_test_inputs 110 111 atf_check -e empty -o save:$TEST_SPEC_FILE -s exit:0 \ 112 mtree -cp $TEST_INPUTS_DIR 113 114 atf_check -e empty -o not-empty -s exit:0 \ 115 $MAKEFS -F $TEST_SPEC_FILE -M 1m $TEST_IMAGE $TEST_INPUTS_DIR 116 117 mount_image 118 check_ffs_image_contents 119} 120F_flag_cleanup() 121{ 122 common_cleanup 123} 124 125atf_test_case from_mtree_spec_file cleanup 126from_mtree_spec_file_body() 127{ 128 create_test_inputs 129 130 atf_check -e empty -o save:$TEST_SPEC_FILE -s exit:0 \ 131 mtree -c -k "$DEFAULT_MTREE_KEYWORDS" -p $TEST_INPUTS_DIR 132 133 cd $TEST_INPUTS_DIR 134 atf_check -e empty -o not-empty -s exit:0 \ 135 $MAKEFS -M 1m $TEST_IMAGE $TEST_SPEC_FILE 136 cd - 137 138 mount_image 139 check_ffs_image_contents 140} 141from_mtree_spec_file_cleanup() 142{ 143 common_cleanup 144} 145 146atf_test_case from_multiple_dirs cleanup 147from_multiple_dirs_body() 148{ 149 test_inputs_dir2=$TMPDIR/inputs2 150 151 create_test_inputs 152 153 atf_check -e empty -o empty -s exit:0 mkdir -p $test_inputs_dir2 154 atf_check -e empty -o empty -s exit:0 \ 155 touch $test_inputs_dir2/multiple_dirs_test_file 156 157 atf_check -e empty -o not-empty -s exit:0 \ 158 $MAKEFS -M 1m $TEST_IMAGE $TEST_INPUTS_DIR $test_inputs_dir2 159 160 mount_image 161 check_image_contents -d $test_inputs_dir2 162} 163from_multiple_dirs_cleanup() 164{ 165 common_cleanup 166} 167 168atf_test_case from_single_dir cleanup 169from_single_dir_body() 170{ 171 create_test_inputs 172 173 atf_check -e empty -o not-empty -s exit:0 \ 174 $MAKEFS -M 1m $TEST_IMAGE $TEST_INPUTS_DIR 175 176 mount_image 177 check_ffs_image_contents 178} 179from_single_dir_cleanup() 180{ 181 common_cleanup 182} 183 184atf_test_case o_flag_version_1 cleanup 185o_flag_version_1_body() 186{ 187 ffs_version=1 188 189 platform=$(uname) 190 case "$platform" in 191 FreeBSD) 192 ffs_label=UFS${ffs_version} 193 ;; 194 NetBSD) 195 ffs_label=FFSv${ffs_version} 196 ;; 197 *) 198 atf_skip "Unsupported platform" 199 ;; 200 esac 201 202 create_test_inputs 203 204 atf_check -e empty -o not-empty -s exit:0 \ 205 $MAKEFS -M 1m -o version=$ffs_version $TEST_IMAGE $TEST_INPUTS_DIR 206 207 mount_image 208 atf_check -e ignore -o match:"$ffs_label" dumpfs $TEST_MOUNT_DIR 209 check_ffs_image_contents 210} 211o_flag_version_1_cleanup() 212{ 213 common_cleanup 214} 215 216atf_test_case o_flag_version_2 cleanup 217o_flag_version_2_body() 218{ 219 ffs_version=2 220 221 platform=$(uname) 222 case "$platform" in 223 FreeBSD) 224 ffs_label=UFS${ffs_version} 225 ;; 226 NetBSD) 227 ffs_label=FFSv${ffs_version} 228 ;; 229 *) 230 atf_skip "Unsupported platform" 231 ;; 232 esac 233 234 create_test_inputs 235 236 atf_check -e empty -o not-empty -s exit:0 \ 237 $MAKEFS -M 1m -o version=$ffs_version $TEST_IMAGE $TEST_INPUTS_DIR 238 239 mount_image 240 atf_check -e ignore -o match:"$ffs_label" dumpfs $TEST_MOUNT_DIR 241 check_ffs_image_contents 242} 243o_flag_version_2_cleanup() 244{ 245 common_cleanup 246} 247 248atf_init_test_cases() 249{ 250 251 atf_add_test_case autocalculate_image_size 252 253 atf_add_test_case D_flag 254 atf_add_test_case F_flag 255 256 atf_add_test_case from_mtree_spec_file 257 atf_add_test_case from_multiple_dirs 258 atf_add_test_case from_single_dir 259 260 atf_add_test_case o_flag_version_1 261 atf_add_test_case o_flag_version_2 262} 263