#!/bin/sh test_description='Test commit notes organized in subtrees' . ./test-lib.sh number_of_commits=100 start_note_commit () { test_tick && cat < $GIT_COMMITTER_DATE data < output && i=$number_of_commits && while [ $i -gt 0 ]; do echo " commit #$i" && echo " note for commit #$i" && i=$(($i-1)); done > 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 && i=$number_of_commits && while [ $i -gt 0 ]; do echo " commit #$i" && echo " first note for commit #$i" && echo " " && echo " second note for commit #$i" && i=$(($i-1)); done > 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