From: Koosha Khajehmoogahi <koosha@posteo.de>
To: git@vger.kernel.org
Cc: Koosha Khajehmoogahi <koosha@posteo.de>
Subject: [PATCH 4/5] Add tests for git-log --merges=show|hide|only
Date: Sun, 22 Mar 2015 19:28:40 +0100 [thread overview]
Message-ID: <1427048921-28677-4-git-send-email-koosha@posteo.de> (raw)
In-Reply-To: <1427048921-28677-1-git-send-email-koosha@posteo.de>
Signed-off-by: Koosha Khajehmoogahi <koosha@posteo.de>
---
t/t4202-log.sh | 141 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 141 insertions(+)
diff --git a/t/t4202-log.sh b/t/t4202-log.sh
index 5f2b290..ab6f371 100755
--- a/t/t4202-log.sh
+++ b/t/t4202-log.sh
@@ -428,6 +428,147 @@ cat > expect <<\EOF
* initial
EOF
+cat > only_merges <<EOF
+Merge tag 'reach'
+Merge tags 'octopus-a' and 'octopus-b'
+Merge branch 'tangle'
+Merge branch 'side' (early part) into tangle
+Merge branch 'master' (early part) into tangle
+Merge branch 'side'
+EOF
+
+cat > only_commits <<EOF
+seventh
+octopus-b
+octopus-a
+reach
+tangle-a
+side-2
+side-1
+Second
+sixth
+fifth
+fourth
+third
+second
+initial
+EOF
+
+cat > both_commits_merges <<EOF
+Merge tag 'reach'
+Merge tags 'octopus-a' and 'octopus-b'
+seventh
+octopus-b
+octopus-a
+reach
+Merge branch 'tangle'
+Merge branch 'side' (early part) into tangle
+Merge branch 'master' (early part) into tangle
+tangle-a
+Merge branch 'side'
+side-2
+side-1
+Second
+sixth
+fifth
+fourth
+third
+second
+initial
+EOF
+
+test_expect_success 'log with config log.merges=show' '
+ git config log.merges show &&
+ git log --pretty=tformat:%s >actual &&
+ test_cmp both_commits_merges actual &&
+ git config --unset log.merges
+'
+
+test_expect_success 'log with config log.merges=only' '
+ git config log.merges only &&
+ git log --pretty=tformat:%s >actual &&
+ test_cmp only_merges actual &&
+ git config --unset log.merges
+'
+
+test_expect_success 'log with config log.merges=hide' '
+ git config log.merges hide &&
+ git log --pretty=tformat:%s >actual &&
+ test_cmp only_commits actual &&
+ git config --unset log.merges
+'
+
+test_expect_success 'log with config log.merges=show with git log --no-merges' '
+ git config log.merges show &&
+ git log --no-merges --pretty=tformat:%s >actual &&
+ test_cmp only_commits actual &&
+ git config --unset log.merges
+'
+
+test_expect_success 'log with config log.merges=hide with git log ---merges' '
+ git config log.merges hide &&
+ git log --merges --pretty=tformat:%s >actual &&
+ test_cmp only_merges actual &&
+ git config --unset log.merges
+'
+
+test_expect_success 'log --merges=show' '
+ git log --merges=show --pretty=tformat:%s >actual &&
+ test_cmp both_commits_merges actual
+'
+
+test_expect_success 'log --merges=only' '
+ git log --merges=only --pretty=tformat:%s >actual &&
+ test_cmp only_merges actual
+'
+
+test_expect_success 'log --merges=hide' '
+ git log --merges=hide --pretty=tformat:%s >actual &&
+ test_cmp only_commits actual
+'
+
+test_expect_success 'log --merges=show with config log.merges=hide' '
+ git config log.merges hide &&
+ git log --merges=show --pretty=tformat:%s >actual &&
+ test_cmp both_commits_merges actual &&
+ git config --unset log.merges
+'
+
+test_expect_success 'log --merges=show with config log.merges=only' '
+ git config log.merges only &&
+ git log --merges=show --pretty=tformat:%s >actual &&
+ test_cmp both_commits_merges actual &&
+ git config --unset log.merges
+'
+
+test_expect_success 'log --merges=only with config log.merges=show' '
+ git config log.merges show &&
+ git log --merges=only --pretty=tformat:%s >actual &&
+ test_cmp only_merges actual &&
+ git config --unset log.merges
+'
+
+test_expect_success 'log --merges=only with config log.merges=hide' '
+ git config log.merges hide &&
+ git log --merges=only --pretty=tformat:%s >actual &&
+ test_cmp only_merges actual &&
+ git config --unset log.merges
+'
+
+test_expect_success 'log --merges=hide with config log.merges=show' '
+ git config log.merges show &&
+ git log --merges=hide --pretty=tformat:%s >actual &&
+ test_cmp only_commits actual &&
+ git config --unset log.merges
+'
+
+test_expect_success 'log --merges=hide with config log.merges=only' '
+ git config log.merges only &&
+ git log --merges=hide --pretty=tformat:%s >actual &&
+ test_cmp only_commits actual &&
+ git config --unset log.merges
+'
+
test_expect_success 'log --graph with merge' '
git log --graph --date-order --pretty=tformat:%s |
sed "s/ *\$//" >actual &&
--
2.3.3.263.g095251d.dirty
next prev parent reply other threads:[~2015-03-22 18:30 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-22 18:28 [PATCH 1/5] Add a new option 'merges' to revision.c Koosha Khajehmoogahi
2015-03-22 18:28 ` [PATCH 2/5] Make git-log honor log.merges option Koosha Khajehmoogahi
2015-03-22 20:50 ` Eric Sunshine
2015-03-22 18:28 ` [PATCH 3/5] Update documentations for git-log to include the new --merges option and also its corresponding config option Koosha Khajehmoogahi
2015-03-22 21:17 ` Eric Sunshine
2015-03-22 18:28 ` Koosha Khajehmoogahi [this message]
2015-03-22 19:57 ` [PATCH 4/5] Add tests for git-log --merges=show|hide|only Torsten Bögershausen
2015-03-22 20:19 ` Eric Sunshine
2015-03-22 22:07 ` Koosha Khajehmoogahi
2015-03-22 22:40 ` Eric Sunshine
2015-03-22 22:41 ` Koosha Khajehmoogahi
2015-03-23 5:14 ` Torsten Bögershausen
2015-03-22 22:26 ` Eric Sunshine
2015-03-22 18:28 ` [PATCH 5/5] Update Bash completion script to include git log --merges option Koosha Khajehmoogahi
2015-03-22 21:24 ` Eric Sunshine
2015-03-23 1:23 ` SZEDER Gábor
2015-03-22 20:43 ` [PATCH 1/5] Add a new option 'merges' to revision.c Eric Sunshine
2015-03-22 23:31 ` Junio C Hamano
2015-03-23 0:42 ` Koosha Khajehmoogahi
2015-03-23 1:25 ` 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=1427048921-28677-4-git-send-email-koosha@posteo.de \
--to=koosha@posteo.de \
--cc=git@vger.kernel.org \
/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).