File: t2108-update-index-refresh-racy.sh

package info (click to toggle)
git 1%3A2.50.1-0.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 61,696 kB
  • sloc: ansic: 302,907; sh: 260,696; perl: 27,874; tcl: 22,303; makefile: 4,280; python: 3,442; javascript: 772; csh: 45; lisp: 12
file content (63 lines) | stat: -rwxr-xr-x 1,609 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/bin/sh

test_description='update-index refresh tests related to racy timestamps'

. ./test-lib.sh

reset_files () {
	echo content >file &&
	echo content >other &&
	test_set_magic_mtime file &&
	test_set_magic_mtime other
}

update_assert_changed () {
	test_set_magic_mtime .git/index &&
	test_might_fail git update-index "$1" &&
	! test_is_magic_mtime .git/index
}

test_expect_success 'setup' '
	reset_files &&
	# we are calling reset_files() a couple of times during tests;
	# test-tool chmtime does not change the ctime; to not weaken
	# or even break our tests, disable ctime-checks entirely
	git config core.trustctime false &&
	git add file other &&
	git commit -m "initial import"
'

test_expect_success '--refresh has no racy timestamps to fix' '
	reset_files &&
	# set the index time far enough to the future;
	# it must be at least 3 seconds for VFAT
	test_set_magic_mtime .git/index +60 &&
	git update-index --refresh &&
	test_is_magic_mtime .git/index +60
'

test_expect_success '--refresh should fix racy timestamp' '
	reset_files &&
	update_assert_changed --refresh
'

test_expect_success '--really-refresh should fix racy timestamp' '
	reset_files &&
	update_assert_changed --really-refresh
'

test_expect_success '--refresh should fix racy timestamp if other file needs update' '
	reset_files &&
	echo content2 >other &&
	test_set_magic_mtime other &&
	update_assert_changed --refresh
'

test_expect_success '--refresh should fix racy timestamp if racy file needs update' '
	reset_files &&
	echo content2 >file &&
	test_set_magic_mtime file &&
	update_assert_changed --refresh
'

test_done