3 test_description
="Test core.fsmonitor"
8 # Performance test for the fsmonitor feature which enables git to talk to a
9 # file system change monitor and avoid having to scan the working directory
10 # for new or modified files.
12 # By default, the performance test will utilize the Watchman file system
13 # monitor if it is installed. If Watchman is not installed, it will use a
14 # dummy integration script that does not report any new or modified files.
15 # The dummy script has very little overhead which provides optimistic results.
17 # The performance test will also use the untracked cache feature if it is
18 # available as fsmonitor uses it to speed up scanning for untracked files.
20 # There are 3 environment variables that can be used to alter the default
21 # behavior of the performance test:
23 # GIT_PERF_7519_UNTRACKED_CACHE: used to configure core.untrackedCache
24 # GIT_PERF_7519_SPLIT_INDEX: used to configure core.splitIndex
25 # GIT_PERF_7519_FSMONITOR: used to configure core.fsMonitor. May be an
26 # absolute path to an integration. May be a space delimited list of
27 # absolute paths to integrations.
29 # The big win for using fsmonitor is the elimination of the need to scan the
30 # working directory looking for changed and untracked files. If the file
31 # information is all cached in RAM, the benefits are reduced.
33 # GIT_PERF_7519_DROP_CACHE: if set, the OS caches are dropped between tests
35 # GIT_PERF_7519_TRACE: if set, enable trace logging during the test.
36 # Trace logs will be grouped by fsmonitor provider.
39 test_checkout_worktree
41 test_lazy_prereq UNTRACKED_CACHE
'
42 { git update-index --test-untracked-cache; ret=$?; } &&
46 test_lazy_prereq WATCHMAN
'
50 if test_have_prereq WATCHMAN
52 # Convert unix style paths to escaped Windows style paths for Watchman
55 GIT_WORK_TREE
="$(cygpath -aw "$PWD" | sed 's,\\,/,g')"
64 if test -n "$GIT_PERF_7519_TRACE"
67 TEST_TRACE_DIR
="$TEST_OUTPUT_DIRECTORY/test-trace/p7519/"
68 echo "Writing trace logging to $TEST_TRACE_DIR"
70 mkdir
-p "$TEST_TRACE_DIR"
72 # Start Trace2 logging and any other GIT_TRACE_* logs that you
73 # want for this named test case.
75 GIT_TRACE2_PERF
="$TEST_TRACE_DIR/$name.trace2perf"
76 export GIT_TRACE2_PERF
83 if test -n "$GIT_PERF_7519_TRACE"
93 (cd $d && test_seq
1 $n |
xargs touch )
96 test_expect_success
"one time repo setup" '
97 # set untrackedCache depending on the environment
98 if test -n "$GIT_PERF_7519_UNTRACKED_CACHE"
100 git config core.untrackedCache "$GIT_PERF_7519_UNTRACKED_CACHE"
102 if test_have_prereq UNTRACKED_CACHE
104 git config core.untrackedCache true
106 git config core.untrackedCache false
110 # set core.splitindex depending on the environment
111 if test -n "$GIT_PERF_7519_SPLIT_INDEX"
113 git config core.splitIndex "$GIT_PERF_7519_SPLIT_INDEX"
116 mkdir 1_file 10_files 100_files 1000_files 10000_files &&
117 : 1_file directory should be left empty &&
122 git add 1_file 10_files 100_files 1000_files 10000_files &&
123 git commit -qm "Add files" &&
125 # If Watchman exists, watch the work tree and attempt a query.
126 if test_have_prereq WATCHMAN; then
127 watchman watch "$GIT_WORK_TREE" &&
128 watchman watch-list | grep -q -F "p7519-fsmonitor"
132 setup_for_fsmonitor_hook
() {
133 # set INTEGRATION_SCRIPT depending on the environment
134 if test -n "$INTEGRATION_PATH"
136 INTEGRATION_SCRIPT
="$INTEGRATION_PATH"
139 # Choose integration script based on existence of Watchman.
140 # Fall back to an empty integration script.
143 if test_have_prereq WATCHMAN
145 INTEGRATION_SCRIPT
=".git/hooks/fsmonitor-watchman" &&
146 cp "$TEST_DIRECTORY/../templates/hooks--fsmonitor-watchman.sample" "$INTEGRATION_SCRIPT"
148 INTEGRATION_SCRIPT
=".git/hooks/fsmonitor-empty" &&
149 write_script
"$INTEGRATION_SCRIPT"<<-\EOF
154 git config core.fsmonitor "$INTEGRATION_SCRIPT" &&
155 git update-index --fsmonitor 2>error &&
156 if test_have_prereq WATCHMAN
158 test_must_be_empty error # ensure no silent error
160 grep "Empty last update token" error
164 test_perf_w_drop_caches () {
165 if test -n "$GIT_PERF_7519_DROP_CACHE"; then
166 test_perf "$1" --setup "test-tool drop-caches" "$2"
172 test_fsmonitor_suite () {
173 if test -n "$USE_FSMONITOR_DAEMON"
175 DESC="builtin fsmonitor--daemon"
176 elif test -n "$INTEGRATION_SCRIPT"
178 DESC="fsmonitor=$(basename $INTEGRATION_SCRIPT)"
180 DESC="fsmonitor=disabled"
183 test_expect_success "test_initialization" '
185 git status # Warm caches
188 test_perf_w_drop_caches "status ($DESC)" '
192 test_perf_w_drop_caches "status -uno ($DESC)" '
196 test_perf_w_drop_caches "status -uall ($DESC)" '
200 # Update the mtimes on upto 100k files to make status think
201 # that they are dirty. For simplicity, omit any files with
202 # LFs (i.e. anything that ls-files thinks it needs to dquote)
203 # and any files with whitespace so that they pass thru xargs
206 test_perf_w_drop_caches "status (dirty) ($DESC)" '
211 xargs test-tool chmtime -300 &&
215 test_perf_w_drop_caches "diff ($DESC)" '
219 test_perf_w_drop_caches "diff HEAD ($DESC)" '
223 test_perf_w_drop_caches "diff -- 0_files ($DESC)" '
227 test_perf_w_drop_caches "diff -- 10_files ($DESC)" '
231 test_perf_w_drop_caches "diff -- 100_files ($DESC)" '
232 git diff -- 100_files
235 test_perf_w_drop_caches "diff -- 1000_files ($DESC)" '
236 git diff -- 1000_files
239 test_perf_w_drop_caches "diff -- 10000_files ($DESC)" '
240 git diff -- 10000_files
243 test_perf_w_drop_caches "add ($DESC)" '
249 # Run a full set of perf tests using each Hook-based fsmonitor provider,
253 trace_start fsmonitor-watchman
254 if test -n "$GIT_PERF_7519_FSMONITOR"; then
255 for INTEGRATION_PATH in $GIT_PERF_7519_FSMONITOR; do
256 test_expect_success "setup for fsmonitor $INTEGRATION_PATH" 'setup_for_fsmonitor_hook'
260 test_expect_success "setup for fsmonitor hook" 'setup_for_fsmonitor_hook'
264 if test_have_prereq WATCHMAN
266 watchman watch-del "$GIT_WORK_TREE" >/dev/null 2>&1 &&
268 # Work around Watchman bug on Windows where it holds on to handles
269 # preventing the removal of the trash directory
270 watchman shutdown-server >/dev/null 2>&1
275 # Run a full set of perf tests with the fsmonitor feature disabled.
278 trace_start fsmonitor-disabled
279 test_expect_success "setup without fsmonitor" '
280 unset INTEGRATION_SCRIPT &&
281 git config --unset core.fsmonitor &&
282 git update-index --no-fsmonitor
289 # Run a full set of perf tests using the built-in fsmonitor--daemon.
290 # It does not use the Hook API, so it has a different setup.
291 # Explicitly start the daemon here and before we start client commands
292 # so that we can later add custom tracing.
294 if test_have_prereq FSMONITOR_DAEMON
296 USE_FSMONITOR_DAEMON=t
298 test_expect_success "setup for builtin fsmonitor" '
299 trace_start fsmonitor--daemon--server &&
300 git fsmonitor--daemon start &&
302 trace_start fsmonitor--daemon--client &&
304 git config core.fsmonitor true &&
305 git update-index --fsmonitor
310 git fsmonitor--daemon stop