#!/bin/sh setglobal test_description = ''Test commit notes organized in subtrees'' source ./test-lib.sh setglobal number_of_commits = '100' proc start_note_commit { test_tick && cat < $GIT_COMMITTER_DATE data < output && setglobal i = $number_of_commits && while test $i -gt 0 { echo " commit #$i" && echo " note for commit #$i" && setglobal i = $shExpr('$i-1'); } > expect && test_cmp expect output } test_expect_success "setup: create $number_of_commits commits" ' ( nr=0 && while [ $nr -lt $number_of_commits ]; do nr=$(($nr+1)) && test_tick && cat < $GIT_COMMITTER_DATE data < $GIT_COMMITTER_DATE data < output && setglobal i = $number_of_commits && while test $i -gt 0 { echo " commit #$i" && echo " first note for commit #$i" && echo " " && echo " second note for commit #$i" && setglobal i = $shExpr('$i-1'); } > expect && test_cmp expect output } test_expect_success 'test notes in no fanout concatenated with 2/38-fanout' 'test_concatenated_notes "s|^..|&/|" ""' test_expect_success 'verify notes in no fanout concatenated with 2/38-fanout' 'verify_concatenated_notes' test_expect_success 'test notes in no fanout concatenated with 2/2/36-fanout' 'test_concatenated_notes "s|^\(..\)\(..\)|\1/\2/|" ""' test_expect_success 'verify notes in no fanout concatenated with 2/2/36-fanout' 'verify_concatenated_notes' test_expect_success 'test notes in 2/38-fanout concatenated with 2/2/36-fanout' 'test_concatenated_notes "s|^\(..\)\(..\)|\1/\2/|" "s|^..|&/|"' test_expect_success 'verify notes in 2/38-fanout concatenated with 2/2/36-fanout' 'verify_concatenated_notes' test_expect_success 'test notes in 2/2/36-fanout concatenated with 2/2/2/34-fanout' 'test_concatenated_notes "s|^\(..\)\(..\)\(..\)|\1/\2/\3/|" "s|^\(..\)\(..\)|\1/\2/|"' test_expect_success 'verify notes in 2/2/36-fanout concatenated with 2/2/2/34-fanout' 'verify_concatenated_notes' test_done