xref: /freebsd/usr.sbin/makefs/tests/makefs_cd9660_tests.sh (revision 5944f899a2519c6321bac3c17cc076418643a088)
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#   http://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
38MAKEFS="makefs -t cd9660"
39MOUNT="mount_cd9660"
40
41. "$(dirname "$0")/makefs_tests_common.sh"
42
43common_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
54check_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
64check_cd9660_support() {
65	kldstat -m cd9660 || \
66		atf_skip "Requires cd9660 filesystem support to be present in the kernel"
67}
68
69atf_test_case D_flag cleanup
70D_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}
91D_flag_cleanup()
92{
93	common_cleanup
94}
95
96atf_test_case F_flag cleanup
97F_flag_body()
98{
99	check_cd9660_support
100
101	create_test_inputs
102
103	atf_check -e empty -o save:$TEST_SPEC_FILE -s exit:0 \
104	    mtree -cp $TEST_INPUTS_DIR
105
106	atf_check -e empty -o empty -s exit:0 \
107	    $MAKEFS -F $TEST_SPEC_FILE -M 1m $TEST_IMAGE $TEST_INPUTS_DIR
108
109	mount_image
110	check_base_iso9660_image_contents
111}
112F_flag_cleanup()
113{
114	common_cleanup
115}
116
117atf_test_case from_mtree_spec_file cleanup
118from_mtree_spec_file_body()
119{
120	check_cd9660_support
121
122	create_test_inputs
123
124	atf_check -e empty -o save:$TEST_SPEC_FILE -s exit:0 \
125	    mtree -c -k "$DEFAULT_MTREE_KEYWORDS" -p $TEST_INPUTS_DIR
126	cd $TEST_INPUTS_DIR
127	atf_check -e empty -o empty -s exit:0 \
128	    $MAKEFS $TEST_IMAGE $TEST_SPEC_FILE
129	cd -
130
131	mount_image
132	check_base_iso9660_image_contents
133}
134from_mtree_spec_file_cleanup()
135{
136	common_cleanup
137}
138
139atf_test_case from_multiple_dirs cleanup
140from_multiple_dirs_body()
141{
142	check_cd9660_support
143
144	test_inputs_dir2=$TMPDIR/inputs2
145
146	create_test_inputs
147
148	atf_check -e empty -o empty -s exit:0 mkdir -p $test_inputs_dir2
149	atf_check -e empty -o empty -s exit:0 \
150	    touch $test_inputs_dir2/multiple_dirs_test_file
151
152	atf_check -e empty -o empty -s exit:0 \
153	    $MAKEFS $TEST_IMAGE $TEST_INPUTS_DIR $test_inputs_dir2
154
155	mount_image
156	check_base_iso9660_image_contents -d $test_inputs_dir2
157}
158from_multiple_dirs_cleanup()
159{
160	common_cleanup
161}
162
163atf_test_case from_single_dir cleanup
164from_single_dir_body()
165{
166	check_cd9660_support
167
168	create_test_inputs
169
170	atf_check -e empty -o empty -s exit:0 \
171	    $MAKEFS $TEST_IMAGE $TEST_INPUTS_DIR
172
173	mount_image
174	check_base_iso9660_image_contents
175}
176from_single_dir_cleanup()
177{
178	common_cleanup
179}
180
181atf_test_case o_flag_allow_deep_trees cleanup
182o_flag_allow_deep_trees_body()
183{
184	create_test_inputs
185
186	# Make sure the "more than 8 levels deep" requirement is met.
187	atf_check -e empty -o empty -s exit:0 \
188	    mkdir -p $TEST_INPUTS_DIR/a/b/c/d/e/f/g/h/i/j
189
190	atf_check -e empty -o empty -s exit:0 \
191	    $MAKEFS -o allow-deep-trees $TEST_IMAGE $TEST_INPUTS_DIR
192
193	mount_image
194	check_base_iso9660_image_contents
195}
196o_flag_allow_deep_trees_cleanup()
197{
198	common_cleanup
199}
200
201atf_test_case o_flag_allow_max_name cleanup
202o_flag_allow_max_name_body()
203{
204	atf_expect_fail "-o allow-max-name doesn't appear to be implemented on FreeBSD's copy of makefs [yet]"
205
206	create_test_inputs
207
208	long_path=$TEST_INPUTS_DIR/$(jot -s '' -b 0 37)
209
210	# Make sure the "37 char name" limit requirement is met.
211	atf_check -e empty -o empty -s exit:0 touch $long_path
212
213	atf_check -e empty -o empty -s exit:0 \
214	    $MAKEFS -o allow-max-name $TEST_IMAGE $TEST_INPUTS_DIR
215
216	mount_image
217	check_base_iso9660_image_contents
218}
219o_flag_allow_max_name_cleanup()
220{
221	common_cleanup
222}
223
224atf_test_case o_flag_isolevel_1 cleanup
225o_flag_isolevel_1_body()
226{
227	atf_expect_fail "this testcase needs work; the filenames generated seem incorrect/corrupt"
228
229	create_test_inputs
230
231	atf_check -e empty -o empty -s exit:0 \
232	    $MAKEFS -o isolevel=1 $TEST_IMAGE $TEST_INPUTS_DIR
233
234	mount_image
235	check_base_iso9660_image_contents
236}
237o_flag_isolevel_1_cleanup()
238{
239	common_cleanup
240}
241
242atf_test_case o_flag_isolevel_2 cleanup
243o_flag_isolevel_2_body()
244{
245	create_test_inputs
246
247	atf_check -e empty -o empty -s exit:0 \
248	    $MAKEFS -o isolevel=2 $TEST_IMAGE $TEST_INPUTS_DIR
249
250	mount_image
251	check_base_iso9660_image_contents
252}
253o_flag_isolevel_2_cleanup()
254{
255	common_cleanup
256}
257
258atf_test_case o_flag_isolevel_3 cleanup
259o_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	mount_image
271	check_base_iso9660_image_contents
272	fi
273}
274o_flag_isolevel_3_cleanup()
275{
276	common_cleanup
277}
278
279atf_test_case o_flag_preparer
280o_flag_preparer_body()
281{
282	create_test_dirs
283
284	preparer='My Very First ISO'
285	preparer_uppercase="$(echo $preparer | tr '[[:lower:]]' '[[:upper:]]')"
286
287	atf_check -e empty -o empty -s exit:0 touch $TEST_INPUTS_DIR/dummy_file
288	atf_check -e empty -o empty -s exit:0 \
289	    $MAKEFS -o preparer="$preparer" $TEST_IMAGE $TEST_INPUTS_DIR
290	atf_check -e empty -o match:"$preparer_uppercase" -s exit:0 \
291	    strings $TEST_IMAGE
292}
293
294atf_test_case o_flag_publisher
295o_flag_publisher_body()
296{
297	create_test_dirs
298
299	publisher='My Super Awesome Publishing Company LTD'
300	publisher_uppercase="$(echo $publisher | tr '[[:lower:]]' '[[:upper:]]')"
301
302	atf_check -e empty -o empty -s exit:0 touch $TEST_INPUTS_DIR/dummy_file
303	atf_check -e empty -o empty -s exit:0 \
304	    $MAKEFS -o publisher="$publisher" $TEST_IMAGE $TEST_INPUTS_DIR
305	atf_check -e empty -o match:"$publisher_uppercase" -s exit:0 \
306	    strings $TEST_IMAGE
307}
308
309atf_test_case o_flag_rockridge cleanup
310o_flag_rockridge_body()
311{
312	create_test_dirs
313
314	# Make sure the "more than 8 levels deep" requirement is met.
315	atf_check -e empty -o empty -s exit:0 \
316	    mkdir -p $TEST_INPUTS_DIR/a/b/c/d/e/f/g/h/i/j
317
318	# Make sure the "pathname larger than 255 chars" requirement is met.
319	#
320	# $long_path's needs to be nested in a directory, as creating it
321	# outright as a 256 char filename via touch will fail with ENAMETOOLONG
322	long_path=$TEST_INPUTS_DIR/$(jot -s '/' -b "$(jot -s '' -b 0 64)" 4)
323	atf_check -e empty -o empty -s exit:0 mkdir -p "$(dirname $long_path)"
324	atf_check -e empty -o empty -s exit:0 touch "$long_path"
325
326	atf_check -e empty -o empty -s exit:0 \
327	    $MAKEFS -o rockridge $TEST_IMAGE $TEST_INPUTS_DIR
328
329	mount_image
330	check_image_contents -X .rr_moved
331
332	# .rr_moved is a special directory created when you have deep directory
333	# trees with rock ridge extensions on
334	atf_check -e empty -o empty -s exit:0 \
335	    test -d $TEST_MOUNT_DIR/.rr_moved
336}
337o_flag_rockridge_cleanup()
338{
339	common_cleanup
340}
341
342atf_test_case o_flag_rockridge_dev_nodes cleanup
343o_flag_rockridge_dev_nodes_head()
344{
345	atf_set "descr" "Functional tests to ensure that dev nodes are handled properly with rockridge extensions (NetBSD kern/48852; FreeBSD bug 203648)"
346}
347o_flag_rockridge_dev_nodes_body()
348{
349	create_test_dirs
350
351	(tar -cvf - -C /dev null && touch .tar_ok) | \
352	atf_check -e not-empty -o empty -s exit:0 tar -xvf - -C "$TEST_INPUTS_DIR"
353
354	atf_check -e empty -o empty -s exit:0 test -c $TEST_INPUTS_DIR/null
355	atf_check -e empty -o empty -s exit:0 test -f .tar_ok
356
357	atf_check -e empty -o empty -s exit:0 \
358	    $MAKEFS -o rockridge $TEST_IMAGE $TEST_INPUTS_DIR
359
360	mount_image
361	check_image_contents
362}
363o_flag_rockridge_dev_nodes_cleanup()
364{
365	common_cleanup
366}
367
368atf_init_test_cases()
369{
370	atf_add_test_case D_flag
371	atf_add_test_case F_flag
372
373	atf_add_test_case from_mtree_spec_file
374	atf_add_test_case from_multiple_dirs
375	atf_add_test_case from_single_dir
376
377	atf_add_test_case o_flag_allow_deep_trees
378	atf_add_test_case o_flag_allow_max_name
379	atf_add_test_case o_flag_isolevel_1
380	atf_add_test_case o_flag_isolevel_2
381	atf_add_test_case o_flag_isolevel_3
382	atf_add_test_case o_flag_preparer
383	atf_add_test_case o_flag_publisher
384	atf_add_test_case o_flag_rockridge
385	atf_add_test_case o_flag_rockridge_dev_nodes
386}
387