The simple two-commit test-repository created by 'setup' is no longer needed by any of the tests retrofitted to use check-mailmap. Subsequent, more complex tests of git-shortlog, git-log, and git-blame functionality expand the repository by adding five commits. Consolidate the creation of this seven-commit repository into a single repository-setup function.
Signed-off-by: Eric Sunshine <[email protected]> --- The code near the top of the file which creates two commits, and the code later which creates five commits have been consolidated into a single repository-setup function. The patch is primarily code movement, but the noisy diff makes it look more busy than it actually is. t/t4203-mailmap.sh | 69 ++++++++++++++++++++++++++++++------------------------ 1 file changed, 38 insertions(+), 31 deletions(-) diff --git a/t/t4203-mailmap.sh b/t/t4203-mailmap.sh index 48a000b..7e8b3cc 100755 --- a/t/t4203-mailmap.sh +++ b/t/t4203-mailmap.sh @@ -13,19 +13,10 @@ fuzz_blame () { } test_expect_success setup ' - cat >contacts <<-\EOF && + cat >contacts <<-\EOF A U Thor <[email protected]> nick1 <[email protected]> EOF - - echo one >one && - git add one && - test_tick && - git commit -m initial && - echo two >>one && - git add one && - test_tick && - git commit --author "nick1 <[email protected]>" -m second ' test_expect_success 'check-mailmap no arguments' ' @@ -168,8 +159,10 @@ test_expect_success 'No mailmap files, but configured' ' ' test_expect_success 'setup mailmap blob tests' ' + git checkout --orphan empty && + git commit --allow-empty --allow-empty-message && git checkout -b map && - test_when_finished "git checkout master" && + test_when_finished "git checkout empty" && cat >just-bugs <<-\EOF && Blob Guy <[email protected]> EOF @@ -254,28 +247,19 @@ test_expect_success 'cleanup after mailmap.blob tests' ' rm -f .mailmap ' -# Extended mailmap configurations should give us the following output for shortlog -cat >expect <<\EOF -A U Thor <[email protected]> (1): - initial - -CTO <[email protected]> (1): - seventh +test_expect_success 'setup mailmap test repo' ' + git checkout --orphan master && -Other Author <[email protected]> (2): - third - fourth - -Santa Claus <[email protected]> (2): - fifth - sixth - -Some Dude <[email protected]> (1): - second + echo one >one && + git add one && + test_tick && + git commit -m initial && -EOF + echo two >>one && + git add one && + test_tick && + git commit --author "nick1 <[email protected]>" -m second && -test_expect_success 'Shortlog output (complex mapping)' ' echo three >>one && git add one && test_tick && @@ -299,8 +283,31 @@ test_expect_success 'Shortlog output (complex mapping)' ' echo seven >>one && git add one && test_tick && - git commit --author "CTO <[email protected]>" -m seventh && + git commit --author "CTO <[email protected]>" -m seventh +' + +# Extended mailmap configurations should give us the following output for shortlog +cat >expect <<\EOF +A U Thor <[email protected]> (1): + initial + +CTO <[email protected]> (1): + seventh +Other Author <[email protected]> (2): + third + fourth + +Santa Claus <[email protected]> (2): + fifth + sixth + +Some Dude <[email protected]> (1): + second + +EOF + +test_expect_success 'Shortlog output (complex mapping)' ' mkdir -p internal_mailmap && echo "Committed <[email protected]>" > internal_mailmap/.mailmap && echo "<[email protected]> <[email protected]>" >> internal_mailmap/.mailmap && -- 1.8.3.2 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html

