From: Ben Peart <peartben@gmail.com>
To: Junio C Hamano <gitster@pobox.com>
Cc: git@vger.kernel.org, benpeart@microsoft.com, pclouds@gmail.com,
johannes.schindelin@gmx.de, David.Turner@twosigma.com,
peff@peff.net
Subject: Re: [PATCH v1 3/5] fsmonitor: add test cases for fsmonitor extension
Date: Tue, 16 May 2017 10:28:12 -0400 [thread overview]
Message-ID: <db527b7e-350a-751a-89e8-5e3312bf3610@gmail.com> (raw)
In-Reply-To: <xmqq60h12y94.fsf@gitster.mtv.corp.google.com>
On 5/16/2017 12:59 AM, Junio C Hamano wrote:
> Ben Peart <peartben@gmail.com> writes:
>
>> Add test cases that ensure status results are correct when using the new
>> fsmonitor extension. Test untracked, modified, and new files by
>> ensuring the results are identical to when not using the extension.
>>
>> Add a test to ensure updates to the index properly mark corresponding
>> entries in the index extension as dirty so that the status is correct
>> after commands that modify the index but don't trigger changes in the
>> working directory.
>>
>> Add a test that verifies that if the fsmonitor extension doesn't tell
>> git about a change, it doesn't discover it on its own. This ensures
>> git is honoring the extension and that we get the performance benefits
>> desired.
>>
>> Signed-off-by: Ben Peart <benpeart@microsoft.com>
>> ---
>> t/t7519-status-fsmonitor.sh | 134 ++++++++++++++++++++++++++++++++++++++++++++
>> 1 file changed, 134 insertions(+)
>> create mode 100644 t/t7519-status-fsmonitor.sh
>
> Please make this executable.
>
Sorry, long time Windows developer so I forgot this extra step. Fixed
for next roll.
>> diff --git a/t/t7519-status-fsmonitor.sh b/t/t7519-status-fsmonitor.sh
>> new file mode 100644
>> index 0000000000..2d63efc27b
>> --- /dev/null
>> +++ b/t/t7519-status-fsmonitor.sh
>> @@ -0,0 +1,134 @@
>> ...
>> +# Ensure commands that call refresh_index() to move the index back in time
>> +# properly invalidate the fsmonitor cache
>> +...
>> + git status >output &&
>> + git -c core.fsmonitor=false status >expect &&
>> + test_i18ncmp expect output
>> +'
>
> Hmm. I wonder if we can somehow detect the case where we got the
> correct and expected result only because fsmonitor was not in
> effect, even though the test requested it to be used? Not limited
> to this particular test piece, but applies to all of them in this
> file.
>
I have tested this manually by editing the test hook proc to output
invalid results and ensured that the test failed as a result but adding
that to the test script was kind of ugly (all tests end up getting
duplicated - one ensuring success, one ensuring failure).
On further reflection, a better idea is to have the test hook proc
output a marker file that can be tested for existence. If it exists,
the hook was used to update the results, if it doesn't exist, then the
hook proc wasn't used. A much cleaner solution that doesn't require
duplicating the tests.
next prev parent reply other threads:[~2017-05-16 14:28 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-05-15 19:13 [PATCH v1 0/5] Fast git status via a file system watcher Ben Peart
2017-05-15 19:13 ` [PATCH v1 1/5] dir: make lookup_untracked() available outside of dir.c Ben Peart
2017-05-16 5:01 ` Junio C Hamano
2017-05-15 19:13 ` [PATCH v1 2/5] Teach git to optionally utilize a file system monitor to speed up detecting new or changed files Ben Peart
2017-05-15 21:21 ` David Turner
2017-05-16 1:15 ` Ben Peart
2017-05-16 0:22 ` brian m. carlson
2017-05-16 0:34 ` Jeff King
2017-05-16 1:55 ` Ben Peart
2017-05-16 2:51 ` Jeff King
2017-05-16 17:17 ` Ben Peart
2017-05-16 17:49 ` Jeff King
2017-05-16 19:13 ` Johannes Sixt
2017-05-17 14:26 ` Ben Peart
2017-05-17 18:15 ` Johannes Sixt
2017-05-18 4:52 ` Jeff King
2017-05-16 21:41 ` Jonathan Tan
2017-05-17 3:35 ` Ben Peart
2017-05-15 19:13 ` [PATCH v1 3/5] fsmonitor: add test cases for fsmonitor extension Ben Peart
2017-05-16 4:59 ` Junio C Hamano
2017-05-16 14:28 ` Ben Peart [this message]
2017-05-15 19:13 ` [PATCH v1 4/5] Add documentation for the fsmonitor extension. This includes the core.fsmonitor setting, the query-fsmonitor hook, and the fsmonitor index extension Ben Peart
2017-05-15 19:13 ` [PATCH v1 5/5] Add a sample query-fsmonitor hook script that integrates with the cross platform Watchman file watching service Ben Peart
2017-05-15 19:50 ` David Turner
2017-05-15 20:10 ` Ben Peart
2017-05-16 5:00 ` [PATCH v1 0/5] Fast git status via a file system watcher Junio C Hamano
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=db527b7e-350a-751a-89e8-5e3312bf3610@gmail.com \
--to=peartben@gmail.com \
--cc=David.Turner@twosigma.com \
--cc=benpeart@microsoft.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=johannes.schindelin@gmx.de \
--cc=pclouds@gmail.com \
--cc=peff@peff.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).