From: Johan Herland <johan@herland.net>
To: git@vger.kernel.org
Cc: gitster@pobox.com, mackyle@gmail.com, jhf@trifork.com,
Johan Herland <johan@herland.net>
Subject: [PATCH 1/2] t3312-notes-empty: Test that 'git notes' removes empty notes by default
Date: Wed, 5 Nov 2014 02:32:54 +0100 [thread overview]
Message-ID: <1415151175-1682-1-git-send-email-johan@herland.net> (raw)
Add test cases documenting the current behavior when trying to
add/append/edit empty notes. This is in preparation for adding
--allow-empty; to allow empty notes to be stored.
Signed-off-by: Johan Herland <johan@herland.net>
---
t/t3312-notes-empty.sh | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 58 insertions(+)
create mode 100755 t/t3312-notes-empty.sh
diff --git a/t/t3312-notes-empty.sh b/t/t3312-notes-empty.sh
new file mode 100755
index 0000000..2806d27
--- /dev/null
+++ b/t/t3312-notes-empty.sh
@@ -0,0 +1,58 @@
+#!/bin/sh
+
+test_description='Test adding/editing of empty notes'
+. ./test-lib.sh
+
+cat >fake_editor.sh <<\EOF
+#!/bin/sh
+echo "$MSG" >"$1"
+echo "$MSG" >& 2
+EOF
+chmod a+x fake_editor.sh
+GIT_EDITOR=./fake_editor.sh
+export GIT_EDITOR
+
+test_expect_success 'setup' '
+ test_commit one &&
+ empty_blob=$(git hash-object -w /dev/null)
+'
+
+cleanup_notes() {
+ git update-ref -d refs/notes/commits
+}
+
+cat >expect_missing <<\EOF
+commit d79ce1670bdcb76e6d1da2ae095e890ccb326ae9
+Author: A U Thor <author@example.com>
+Date: Thu Apr 7 15:13:13 2005 -0700
+
+ one
+EOF
+
+verify_missing() {
+ git log -1 > actual &&
+ test_cmp expect_missing actual &&
+ ! git notes list HEAD
+}
+
+for cmd in \
+ 'add' \
+ 'add -F /dev/null' \
+ 'add -m ""' \
+ 'add -c "$empty_blob"' \
+ 'add -C "$empty_blob"' \
+ 'append' \
+ 'append -F /dev/null' \
+ 'append -m ""' \
+ 'append -c "$empty_blob"' \
+ 'append -C "$empty_blob"' \
+ 'edit'
+do
+ test_expect_success "'git notes $cmd' removes empty note" "
+ cleanup_notes &&
+ MSG= git notes $cmd &&
+ verify_missing
+ "
+done
+
+test_done
--
2.0.0.rc4.501.gdaf83ca
next reply other threads:[~2014-11-05 1:33 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-05 1:32 Johan Herland [this message]
2014-11-05 1:32 ` [PATCH 2/2] notes: Add --allow-empty, to allow storing empty notes Johan Herland
2014-11-05 4:10 ` [PATCH 1/2] t3312-notes-empty: Test that 'git notes' removes empty notes by default Eric Sunshine
2014-11-05 8:32 ` Johan Herland
2014-11-05 18:36 ` 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=1415151175-1682-1-git-send-email-johan@herland.net \
--to=johan@herland.net \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=jhf@trifork.com \
--cc=mackyle@gmail.com \
/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).