From: Koosha Khajehmoogahi <koosha@posteo.de>
To: git@vger.kernel.org
Cc: sunshine@sunshineco.com
Subject: [PATCH v2 4/5] t4202-log: add tests for --merges=
Date: Sat, 4 Apr 2015 03:22:00 +0200 [thread overview]
Message-ID: <1428110521-31028-4-git-send-email-koosha@posteo.de> (raw)
In-Reply-To: <1428110521-31028-1-git-send-email-koosha@posteo.de>
Helped-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Koosha Khajehmoogahi <koosha@posteo.de>
---
t/t4202-log.sh | 84 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 84 insertions(+)
diff --git a/t/t4202-log.sh b/t/t4202-log.sh
index 1b2e981..ceaaf4e 100755
--- a/t/t4202-log.sh
+++ b/t/t4202-log.sh
@@ -270,6 +270,90 @@ cat > expect <<\EOF
* initial
EOF
+test_expect_success 'setup --merges=' '
+ git log --min-parents=2 --pretty=tformat:%s >expect_only &&
+ git log --max-parents=1 --pretty=tformat:%s >expect_hide &&
+ git log --min-parents=-1 --pretty=tformat:%s >expect_show
+'
+
+test_expect_success 'log with config log.merges=show' '
+ test_config log.merges show &&
+ git log --pretty=tformat:%s >actual &&
+ test_cmp expect_show actual
+'
+
+test_expect_success 'log with config log.merges=only' '
+ test_config log.merges only &&
+ git log --pretty=tformat:%s >actual &&
+ test_cmp expect_only actual
+'
+
+test_expect_success 'log with config log.merges=hide' '
+ test_config log.merges hide &&
+ git log --pretty=tformat:%s >actual &&
+ test_cmp expect_hide actual
+'
+
+test_expect_success 'log with config log.merges=show with git log --no-merges' '
+ test_config log.merges show &&
+ git log --no-merges --pretty=tformat:%s >actual &&
+ test_cmp expect_hide actual
+'
+
+test_expect_success 'log with config log.merges=hide with git log ---merges' '
+ test_config log.merges hide &&
+ git log --merges --pretty=tformat:%s >actual &&
+ test ! -s actual
+'
+
+test_expect_success 'log --merges=show' '
+ test_unconfig log.merges &&
+ git log --merges=show --pretty=tformat:%s >actual &&
+ test_cmp expect_show actual
+'
+
+test_expect_success 'log --merges=only' '
+ test_unconfig log.merges &&
+ git log --merges=only --pretty=tformat:%s >actual &&
+ test_cmp expect_only actual
+'
+
+test_expect_success 'log --merges=hide' '
+ test_unconfig log.merges &&
+ git log --merges=hide --pretty=tformat:%s >actual &&
+ test_cmp expect_hide actual
+'
+
+test_log_merges() {
+ test_config log.merges $2 &&
+ git log --merges=$1 --pretty=tformat:%s >actual &&
+ test_cmp $3 actual
+}
+
+test_expect_success 'log --merges=show with config log.merges=hide' '
+ test_log_merges show hide expect_show
+'
+
+test_expect_success 'log --merges=show with config log.merges=only' '
+ test_log_merges show only expect_show
+'
+
+test_expect_success 'log --merges=only with config log.merges=show' '
+ test_log_merges only show expect_only
+'
+
+test_expect_success 'log --merges=only with config log.merges=hide' '
+ test_log_merges only hide expect_only
+'
+
+test_expect_success 'log --merges=hide with config log.merges=show' '
+ test_log_merges hide show expect_hide
+'
+
+test_expect_success 'log --merges=hide with config log.merges=only' '
+ test_log_merges hide only expect_hide
+'
+
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-04-04 1:23 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <266077>
2015-04-04 1:21 ` [PATCH v2 1/5] revision: add --merges={show|only|hide} option Koosha Khajehmoogahi
2015-04-04 1:21 ` [PATCH v2 2/5] log: honor log.merges= option Koosha Khajehmoogahi
2015-04-04 20:00 ` Junio C Hamano
2015-04-07 22:15 ` Koosha Khajehmoogahi
2015-04-08 2:28 ` Junio C Hamano
2015-04-08 10:42 ` Koosha Khajehmoogahi
2015-04-13 4:56 ` Junio C Hamano
2015-04-07 5:18 ` Eric Sunshine
2015-04-04 1:21 ` [PATCH v2 3/5] Documentation: add git-log --merges= option and log.merges config. var Koosha Khajehmoogahi
2015-04-05 21:41 ` Junio C Hamano
2015-04-04 1:22 ` Koosha Khajehmoogahi [this message]
2015-04-07 7:32 ` [PATCH v2 4/5] t4202-log: add tests for --merges= Eric Sunshine
2015-04-04 1:22 ` [PATCH v2 5/5] bash-completion: add support for git-log --merges= and log.merges Koosha Khajehmoogahi
2015-04-07 5:16 ` [PATCH v2 1/5] revision: add --merges={show|only|hide} option Eric Sunshine
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=1428110521-31028-4-git-send-email-koosha@posteo.de \
--to=koosha@posteo.de \
--cc=git@vger.kernel.org \
--cc=sunshine@sunshineco.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).