]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/makefs/tests/makefs_cd9660_tests.sh
Add two missing eventhandler.h headers
[FreeBSD/FreeBSD.git] / usr.sbin / makefs / tests / makefs_cd9660_tests.sh
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
30 # A note on specs:
31 # - A copy of the ISO-9660 spec can be found here:
32 #   https://www.ecma-international.org/publications/files/ECMA-ST/Ecma-119.pdf
33 # - Any references to `rockridge` are referring to the `Rock Ridge` extensions
34 #   of the ISO-9660 spec. A copy of the draft `IEEE-P1282` spec can be found
35 #   here:
36 #   http://www.ymi.com/ymi/sites/default/files/pdf/Rockridge.pdf
37
38 MAKEFS="makefs -t cd9660"
39 MOUNT="mount_cd9660"
40
41 . "$(dirname "$0")/makefs_tests_common.sh"
42
43 common_cleanup()
44 {
45         if ! test_md_device=$(cat $TEST_MD_DEVICE_FILE); then
46                 echo "$TEST_MD_DEVICE_FILE could not be opened; has an md(4) device been attached?"
47                 return
48         fi
49
50         umount -f /dev/$test_md_device || :
51         mdconfig -d -u $test_md_device || :
52 }
53
54 check_base_iso9660_image_contents()
55 {
56         # Symlinks are treated like files when rockridge support isn't
57         # specified
58         check_image_contents "$@" -X c
59
60         atf_check -e empty -o empty -s exit:0 test -L $TEST_INPUTS_DIR/c
61         atf_check -e empty -o empty -s exit:0 test -f $TEST_MOUNT_DIR/c
62 }
63
64 check_cd9660_support() {
65         kldstat -m cd9660 || \
66                 atf_skip "Requires cd9660 filesystem support to be present in the kernel"
67 }
68
69 atf_test_case D_flag cleanup
70 D_flag_body()
71 {
72         atf_skip "makefs crashes with SIGBUS with dupe mtree entries; see FreeBSD bug # 192839"
73
74         create_test_inputs
75
76         atf_check -e empty -o save:$TEST_SPEC_FILE -s exit:0 \
77             mtree -cp $TEST_INPUTS_DIR
78         atf_check -e empty -o not-empty -s exit:0 \
79             $MAKEFS -F $TEST_SPEC_FILE -M 1m $TEST_IMAGE $TEST_INPUTS_DIR
80
81         atf_check -e empty -o empty -s exit:0 \
82             cp $TEST_SPEC_FILE spec2.mtree
83         atf_check -e empty -o save:dupe_$TEST_SPEC_FILE -s exit:0 \
84             cat $TEST_SPEC_FILE spec2.mtree
85
86         atf_check -e empty -o not-empty -s not-exit:0 \
87             $MAKEFS -F dupe_$TEST_SPEC_FILE -M 1m $TEST_IMAGE $TEST_INPUTS_DIR
88         atf_check -e empty -o not-empty -s exit:0 \
89             $MAKEFS -D -F dupe_$TEST_SPEC_FILE -M 1m $TEST_IMAGE $TEST_INPUTS_DIR
90 }
91 D_flag_cleanup()
92 {
93         common_cleanup
94 }
95
96 atf_test_case F_flag cleanup
97 F_flag_body()
98 {
99         create_test_inputs
100
101         atf_check -e empty -o save:$TEST_SPEC_FILE -s exit:0 \
102             mtree -cp $TEST_INPUTS_DIR
103
104         atf_check -e empty -o empty -s exit:0 \
105             $MAKEFS -F $TEST_SPEC_FILE -M 1m $TEST_IMAGE $TEST_INPUTS_DIR
106
107         check_cd9660_support
108         mount_image
109         check_base_iso9660_image_contents
110 }
111 F_flag_cleanup()
112 {
113         common_cleanup
114 }
115
116 atf_test_case from_mtree_spec_file cleanup
117 from_mtree_spec_file_body()
118 {
119         create_test_inputs
120
121         atf_check -e empty -o save:$TEST_SPEC_FILE -s exit:0 \
122             mtree -c -k "$DEFAULT_MTREE_KEYWORDS" -p $TEST_INPUTS_DIR
123         cd $TEST_INPUTS_DIR
124         atf_check -e empty -o empty -s exit:0 \
125             $MAKEFS $TEST_IMAGE $TEST_SPEC_FILE
126         cd -
127
128         check_cd9660_support
129         mount_image
130         check_base_iso9660_image_contents
131 }
132 from_mtree_spec_file_cleanup()
133 {
134         common_cleanup
135 }
136
137 atf_test_case from_multiple_dirs cleanup
138 from_multiple_dirs_body()
139 {
140         test_inputs_dir2=$TMPDIR/inputs2
141
142         create_test_inputs
143
144         atf_check -e empty -o empty -s exit:0 mkdir -p $test_inputs_dir2
145         atf_check -e empty -o empty -s exit:0 \
146             touch $test_inputs_dir2/multiple_dirs_test_file
147
148         atf_check -e empty -o empty -s exit:0 \
149             $MAKEFS $TEST_IMAGE $TEST_INPUTS_DIR $test_inputs_dir2
150
151         check_cd9660_support
152         mount_image
153         check_base_iso9660_image_contents -d $test_inputs_dir2
154 }
155 from_multiple_dirs_cleanup()
156 {
157         common_cleanup
158 }
159
160 atf_test_case from_single_dir cleanup
161 from_single_dir_body()
162 {
163         create_test_inputs
164
165         atf_check -e empty -o empty -s exit:0 \
166             $MAKEFS $TEST_IMAGE $TEST_INPUTS_DIR
167
168         check_cd9660_support
169         mount_image
170         check_base_iso9660_image_contents
171 }
172 from_single_dir_cleanup()
173 {
174         common_cleanup
175 }
176
177 atf_test_case o_flag_allow_deep_trees cleanup
178 o_flag_allow_deep_trees_body()
179 {
180         create_test_inputs
181
182         # Make sure the "more than 8 levels deep" requirement is met.
183         atf_check -e empty -o empty -s exit:0 \
184             mkdir -p $TEST_INPUTS_DIR/a/b/c/d/e/f/g/h/i/j
185
186         atf_check -e empty -o empty -s exit:0 \
187             $MAKEFS -o allow-deep-trees $TEST_IMAGE $TEST_INPUTS_DIR
188
189         check_cd9660_support
190         mount_image
191         check_base_iso9660_image_contents
192 }
193 o_flag_allow_deep_trees_cleanup()
194 {
195         common_cleanup
196 }
197
198 atf_test_case o_flag_allow_max_name cleanup
199 o_flag_allow_max_name_body()
200 {
201         atf_expect_fail "-o allow-max-name doesn't appear to be implemented on FreeBSD's copy of makefs [yet]"
202
203         create_test_inputs
204
205         long_path=$TEST_INPUTS_DIR/$(jot -s '' -b 0 37)
206
207         # Make sure the "37 char name" limit requirement is met.
208         atf_check -e empty -o empty -s exit:0 touch $long_path
209
210         atf_check -e empty -o empty -s exit:0 \
211             $MAKEFS -o allow-max-name $TEST_IMAGE $TEST_INPUTS_DIR
212
213         check_cd9660_support
214         mount_image
215         check_base_iso9660_image_contents
216 }
217 o_flag_allow_max_name_cleanup()
218 {
219         common_cleanup
220 }
221
222 atf_test_case o_flag_isolevel_1 cleanup
223 o_flag_isolevel_1_body()
224 {
225         atf_expect_fail "this testcase needs work; the filenames generated seem incorrect/corrupt"
226
227         create_test_inputs
228
229         atf_check -e empty -o empty -s exit:0 \
230             $MAKEFS -o isolevel=1 $TEST_IMAGE $TEST_INPUTS_DIR
231
232         check_cd9660_support
233         mount_image
234         check_base_iso9660_image_contents
235 }
236 o_flag_isolevel_1_cleanup()
237 {
238         common_cleanup
239 }
240
241 atf_test_case o_flag_isolevel_2 cleanup
242 o_flag_isolevel_2_body()
243 {
244         create_test_inputs
245
246         atf_check -e empty -o empty -s exit:0 \
247             $MAKEFS -o isolevel=2 $TEST_IMAGE $TEST_INPUTS_DIR
248
249         check_cd9660_support
250         mount_image
251         check_base_iso9660_image_contents
252 }
253 o_flag_isolevel_2_cleanup()
254 {
255         common_cleanup
256 }
257
258 atf_test_case o_flag_isolevel_3 cleanup
259 o_flag_isolevel_3_body()
260 {
261         create_test_inputs
262
263         # XXX: isolevel=3 isn't implemented yet. See FreeBSD bug # 203645
264         if true; then
265         atf_check -e match:'makefs: ISO Level 3 is greater than 2\.' -o empty -s not-exit:0 \
266             $MAKEFS -o isolevel=3 $TEST_IMAGE $TEST_INPUTS_DIR
267         else
268         atf_check -e empty -o empty -s exit:0 \
269             $MAKEFS -o isolevel=3 $TEST_IMAGE $TEST_INPUTS_DIR
270
271         check_cd9660_support
272         mount_image
273         check_base_iso9660_image_contents
274         fi
275 }
276 o_flag_isolevel_3_cleanup()
277 {
278         common_cleanup
279 }
280
281 atf_test_case o_flag_preparer
282 o_flag_preparer_head()
283 {
284         atf_set "require.progs" "strings"
285 }
286 o_flag_preparer_body()
287 {
288         create_test_dirs
289
290         preparer='My Very First ISO'
291         preparer_uppercase="$(echo $preparer | tr '[[:lower:]]' '[[:upper:]]')"
292
293         atf_check -e empty -o empty -s exit:0 touch $TEST_INPUTS_DIR/dummy_file
294         atf_check -e empty -o empty -s exit:0 \
295             $MAKEFS -o preparer="$preparer" $TEST_IMAGE $TEST_INPUTS_DIR
296         atf_check -e empty -o match:"$preparer_uppercase" -s exit:0 \
297             strings $TEST_IMAGE
298 }
299
300 atf_test_case o_flag_publisher
301 o_flag_publisher_head()
302 {
303         atf_set "require.progs" "strings"
304 }
305 o_flag_publisher_body()
306 {
307         create_test_dirs
308
309         publisher='My Super Awesome Publishing Company LTD'
310         publisher_uppercase="$(echo $publisher | tr '[[:lower:]]' '[[:upper:]]')"
311
312         atf_check -e empty -o empty -s exit:0 touch $TEST_INPUTS_DIR/dummy_file
313         atf_check -e empty -o empty -s exit:0 \
314             $MAKEFS -o publisher="$publisher" $TEST_IMAGE $TEST_INPUTS_DIR
315         atf_check -e empty -o match:"$publisher_uppercase" -s exit:0 \
316             strings $TEST_IMAGE
317 }
318
319 atf_test_case o_flag_rockridge cleanup
320 o_flag_rockridge_body()
321 {
322         create_test_dirs
323
324         # Make sure the "more than 8 levels deep" requirement is met.
325         atf_check -e empty -o empty -s exit:0 \
326             mkdir -p $TEST_INPUTS_DIR/a/b/c/d/e/f/g/h/i/j
327
328         # Make sure the "pathname larger than 255 chars" requirement is met.
329         #
330         # $long_path's needs to be nested in a directory, as creating it
331         # outright as a 256 char filename via touch will fail with ENAMETOOLONG
332         long_path=$TEST_INPUTS_DIR/$(jot -s '/' -b "$(jot -s '' -b 0 64)" 4)
333         atf_check -e empty -o empty -s exit:0 mkdir -p "$(dirname $long_path)"
334         atf_check -e empty -o empty -s exit:0 touch "$long_path"
335
336         atf_check -e empty -o empty -s exit:0 \
337             $MAKEFS -o rockridge $TEST_IMAGE $TEST_INPUTS_DIR
338
339         check_cd9660_support
340         mount_image
341         check_image_contents -X .rr_moved
342
343         # .rr_moved is a special directory created when you have deep directory
344         # trees with rock ridge extensions on
345         atf_check -e empty -o empty -s exit:0 \
346             test -d $TEST_MOUNT_DIR/.rr_moved
347 }
348 o_flag_rockridge_cleanup()
349 {
350         common_cleanup
351 }
352
353 atf_test_case o_flag_rockridge_dev_nodes cleanup
354 o_flag_rockridge_dev_nodes_head()
355 {
356         atf_set "descr" "Functional tests to ensure that dev nodes are handled properly with rockridge extensions (NetBSD kern/48852; FreeBSD bug 203648)"
357 }
358 o_flag_rockridge_dev_nodes_body()
359 {
360         create_test_dirs
361
362         (tar -cvf - -C /dev null && touch .tar_ok) | \
363         atf_check -e not-empty -o empty -s exit:0 tar -xvf - -C "$TEST_INPUTS_DIR"
364
365         atf_check -e empty -o empty -s exit:0 test -c $TEST_INPUTS_DIR/null
366         atf_check -e empty -o empty -s exit:0 test -f .tar_ok
367
368         atf_check -e empty -o empty -s exit:0 \
369             $MAKEFS -o rockridge $TEST_IMAGE $TEST_INPUTS_DIR
370
371         check_cd9660_support
372         mount_image
373         check_image_contents
374 }
375 o_flag_rockridge_dev_nodes_cleanup()
376 {
377         common_cleanup
378 }
379
380 atf_init_test_cases()
381 {
382         atf_add_test_case D_flag
383         atf_add_test_case F_flag
384
385         atf_add_test_case from_mtree_spec_file
386         atf_add_test_case from_multiple_dirs
387         atf_add_test_case from_single_dir
388
389         atf_add_test_case o_flag_allow_deep_trees
390         atf_add_test_case o_flag_allow_max_name
391         atf_add_test_case o_flag_isolevel_1
392         atf_add_test_case o_flag_isolevel_2
393         atf_add_test_case o_flag_isolevel_3
394         atf_add_test_case o_flag_preparer
395         atf_add_test_case o_flag_publisher
396         atf_add_test_case o_flag_rockridge
397         atf_add_test_case o_flag_rockridge_dev_nodes
398 }