Page MenuHomeFreeBSD

makefs: Add tests for the -T flag
Needs ReviewPublic

Authored by bnovkov on Tue, Mar 25, 1:57 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Apr 3, 6:41 AM
Unknown Object (File)
Tue, Apr 1, 9:38 AM
Unknown Object (File)
Fri, Mar 28, 1:47 PM
Unknown Object (File)
Thu, Mar 27, 4:40 AM
Unknown Object (File)
Thu, Mar 27, 4:03 AM
Unknown Object (File)
Thu, Mar 27, 3:29 AM
Unknown Object (File)
Wed, Mar 26, 7:52 PM
Unknown Object (File)
Wed, Mar 26, 7:50 PM
Subscribers

Details

Reviewers
emaste
kevans
markj
Group Reviewers
Klara
Summary

Add tests for the -T flag to each makefs backend. This includes tests
for both mtree and directory scan options.

PR: 285630
Sponsored by: Klara, Inc.
Sponsored by: The FreeBSD Foundation

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

usr.sbin/makefs/tests/makefs_cd9660_tests.sh
380

IMO the description should be the current / expected behaviour, not the now-fixed bug - i.e. cd9660 RockRidge extensions honor timestamp provided by -T

This revision is now accepted and ready to land.Tue, Mar 25, 3:49 PM
bnovkov retitled this revision from makefs: Add test for RockRidge TF records and -T timestamps to makefs: Add tests for the -T flag.
bnovkov edited the summary of this revision. (Show Details)

Add -T tests for every makefs backend.

This revision now requires review to proceed.Tue, Apr 1, 11:51 AM

I've reworked this diff and added tests for all backends, including msdos which didn't have any tests previously.
Please let me know how you'd like the copyright statement to look like for the new msdos test script.

There's one additional thing I'd like to point out here - the msdos backend does not pass these tests ATM, it's atime is completely different while mtime and ctime get set to timestamp - 1. I'll look into this separately.

Update copyright statement for makefs_msdos_tests.sh.

These are all good (at catching the current failures).
My only concern however, is that we should also check that makefs takes into consideration the timestamp in the mtree file, so the priorities (at this point of the revision stack) are:

  1. -T flag .
  2. Time in mtree file.

This guarantees (or not) documentation on the behavior regarding the priorities when the SOURCE_DATE_EPOCH environment variable is introduced later on (D49602).
For example (very crude) just for FFS, but should be the similar for all cases:

# This helper function can live in makefs_tests_common.sh
change_mtree_timestamp()
{
	filename="$1"
	timestamp="$2"

	sed -i "" "s/time=.*$/time=${timestamp}/g" "$filename"
}
...
atf_test_case T_flag_mtree cleanup
T_flag_mtree_body()
{
	timestamp_m=1742574909
	timestamp_T=1742574910
	create_test_dirs
	mkdir -p $TEST_INPUTS_DIR/dir1

	atf_check -e empty -o save:$TEST_SPEC_FILE -s exit:0 \
	    mtree -c -k "type,time" -p $TEST_INPUTS_DIR
	change_mtree_timestamp $TEST_SPEC_FILE $timestamp_m
	atf_check -e empty -o not-empty -s exit:0 \
	    $MAKEFS -M 1m $TEST_IMAGE $TEST_SPEC_FILE

	mount_image
	eval $(stat -s  $TEST_MOUNT_DIR/dir1)
	atf_check_equal $st_atime $timestamp_m
	atf_check_equal $st_mtime $timestamp_m
	atf_check_equal $st_ctime $timestamp_m

	common_cleanup

	atf_check -e empty -o not-empty -s exit:0 \
	    $MAKEFS -M 1m -T $timestamp_T $TEST_IMAGE $TEST_SPEC_FILE

	mount_image
	eval $(stat -s  $TEST_MOUNT_DIR/dir1)
	atf_check_equal $st_atime $timestamp_T
	atf_check_equal $st_mtime $timestamp_T
	atf_check_equal $st_ctime $timestamp_T
}
...

I'm just trying to be very cautious about documenting (testing) this functionality.
Thank you.