Signed-off-by: Johan Herland <johan@xxxxxxxxxxx> --- t/t3303-notes-subtrees.sh | 64 +++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 64 insertions(+), 0 deletions(-) diff --git a/t/t3303-notes-subtrees.sh b/t/t3303-notes-subtrees.sh index d24203e..d3cbf6d 100755 --- a/t/t3303-notes-subtrees.sh +++ b/t/t3303-notes-subtrees.sh @@ -134,4 +134,68 @@ test_expect_success 'verify notes in 4/36-fanout overriding 2/38-fanout' 'verify test_expect_success 'test notes in 2/38-fanout overriding 2/2/36-fanout' 'test_preferred "s|^..|&/|" "s|^\(..\)\(..\)|\1/\2/|"' test_expect_success 'verify notes in 2/38-fanout overriding 2/2/36-fanout' 'verify_notes' +test_date_based () { + ( + start_note_commit && + nr=$number_of_commits && + git log --format="%H %ct" refs/heads/master | + while read sha1 date_t; do + date=$(date -u -d "@$date_t" +"$1") + note_path="$date/$(echo "$sha1" | sed "$2")" + cat <<INPUT_END && +M 100644 inline $note_path +data <<EOF +note for commit #$nr +EOF + +INPUT_END + + nr=$(($nr-1)) + done + ) | + git fast-import --quiet +} + +test_expect_success 'test notes in y/40-fanout' 'test_date_based "y%Y" ""' +test_expect_success 'verify notes in y/40-fanout' 'verify_notes' + +test_expect_success 'test notes in y/2/38-fanout' 'test_date_based "y%Y" "s|^..|&/|"' +test_expect_success 'verify notes in y/2/38-fanout' 'verify_notes' + +test_expect_success 'test notes in ym/40-fanout' 'test_date_based "y%Ym%m" ""' +test_expect_success 'verify notes in ym/40-fanout' 'verify_notes' + +test_expect_success 'test notes in ym/2/38-fanout' 'test_date_based "y%Ym%m" "s|^..|&/|"' +test_expect_success 'verify notes in ym/2/38-fanout' 'verify_notes' + +test_expect_success 'test notes in ymd/40-fanout' 'test_date_based "y%Ym%md%d" ""' +test_expect_success 'verify notes in ymd/40-fanout' 'verify_notes' + +test_expect_success 'test notes in ymd/2/38-fanout' 'test_date_based "y%Ym%md%d" "s|^..|&/|"' +test_expect_success 'verify notes in ymd/2/38-fanout' 'verify_notes' + +test_expect_success 'test notes in y/m/40-fanout' 'test_date_based "y%Y/m%m" ""' +test_expect_success 'verify notes in y/m/40-fanout' 'verify_notes' + +test_expect_success 'test notes in y/m/2/38-fanout' 'test_date_based "y%Y/m%m" "s|^..|&/|"' +test_expect_success 'verify notes in y/m/2/38-fanout' 'verify_notes' + +test_expect_success 'test notes in y/md/40-fanout' 'test_date_based "y%Y/m%md%d" ""' +test_expect_success 'verify notes in y/md/40-fanout' 'verify_notes' + +test_expect_success 'test notes in y/md/2/38-fanout' 'test_date_based "y%Y/m%md%d" "s|^..|&/|"' +test_expect_success 'verify notes in y/md/2/38-fanout' 'verify_notes' + +test_expect_success 'test notes in ym/d/40-fanout' 'test_date_based "y%Ym%m/d%d" ""' +test_expect_success 'verify notes in ym/d/40-fanout' 'verify_notes' + +test_expect_success 'test notes in ym/d/2/38-fanout' 'test_date_based "y%Ym%m/d%d" "s|^..|&/|"' +test_expect_success 'verify notes in ym/d/2/38-fanout' 'verify_notes' + +test_expect_success 'test notes in y/m/d/40-fanout' 'test_date_based "y%Y/m%m/d%d" ""' +test_expect_success 'verify notes in y/m/d/40-fanout' 'verify_notes' + +test_expect_success 'test notes in y/m/d/2/38-fanout' 'test_date_based "y%Y/m%m/d%d" "s|^..|&/|"' +test_expect_success 'verify notes in y/m/d/2/38-fanout' 'verify_notes' + test_done -- 1.6.4.304.g1365c.dirty -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html