bbf3ee6892195b260424a80800cac26803d396a2
   1# This file isn't used as a test script directly, instead it is
   2# sourced from t8001-annotate.sh and t8002-blame.sh.
   3
   4check_count () {
   5        head= &&
   6        file='file' &&
   7        options= &&
   8        while :
   9        do
  10                case "$1" in
  11                -h) head="$2"; shift; shift ;;
  12                -f) file="$2"; shift; shift ;;
  13                -*) options="$options $1"; shift ;;
  14                *) break ;;
  15                esac
  16        done &&
  17        echo "$PROG $options $file $head" >&4 &&
  18        $PROG $options $file $head >actual &&
  19        perl -e '
  20                my %expect = (@ARGV);
  21                my %count = map { $_ => 0 } keys %expect;
  22                while (<STDIN>) {
  23                        if (/^[0-9a-f]+\t\(([^\t]+)\t/) {
  24                                my $author = $1;
  25                                for ($author) { s/^\s*//; s/\s*$//; }
  26                                $count{$author}++;
  27                        }
  28                }
  29                my $bad = 0;
  30                while (my ($author, $count) = each %count) {
  31                        my $ok;
  32                        my $value = 0;
  33                        $value = $expect{$author} if defined $expect{$author};
  34                        if ($value != $count) {
  35                                $bad = 1;
  36                                $ok = "bad";
  37                        }
  38                        else {
  39                                $ok = "good";
  40                        }
  41                        print STDERR "Author $author (expected $value, attributed $count) $ok\n";
  42                }
  43                exit($bad);
  44        ' "$@" <actual
  45}
  46
  47test_expect_success 'setup A lines' '
  48        echo "1A quick brown fox jumps over the" >file &&
  49        echo "lazy dog" >>file &&
  50        git add file &&
  51        GIT_AUTHOR_NAME="A" GIT_AUTHOR_EMAIL="A@test.git" \
  52        git commit -a -m "Initial."
  53'
  54
  55test_expect_success 'blame 1 author' '
  56        check_count A 2
  57'
  58
  59test_expect_success 'setup B lines' '
  60        echo "2A quick brown fox jumps over the" >>file &&
  61        echo "lazy dog" >>file &&
  62        GIT_AUTHOR_NAME="B" GIT_AUTHOR_EMAIL="B@test.git" \
  63        git commit -a -m "Second."
  64'
  65
  66test_expect_success 'blame 2 authors' '
  67        check_count A 2 B 2
  68'
  69
  70test_expect_success 'setup B1 lines (branch1)' '
  71        git checkout -b branch1 master &&
  72        echo "3A slow green fox jumps into the" >>file &&
  73        echo "well." >>file &&
  74        GIT_AUTHOR_NAME="B1" GIT_AUTHOR_EMAIL="B1@test.git" \
  75        git commit -a -m "Branch1-1"
  76'
  77
  78test_expect_success 'blame 2 authors + 1 branch1 author' '
  79        check_count A 2 B 2 B1 2
  80'
  81
  82test_expect_success 'setup B2 lines (branch2)' '
  83        git checkout -b branch2 master &&
  84        sed -e "s/2A quick brown/4A quick brown lazy dog/" <file >file.new &&
  85        mv file.new file &&
  86        GIT_AUTHOR_NAME="B2" GIT_AUTHOR_EMAIL="B2@test.git" \
  87        git commit -a -m "Branch2-1"
  88'
  89
  90test_expect_success 'blame 2 authors + 1 branch2 author' '
  91        check_count A 2 B 1 B2 1
  92'
  93
  94test_expect_success 'merge branch1 & branch2' '
  95        git pull . branch1
  96'
  97
  98test_expect_success 'blame 2 authors + 2 merged-in authors' '
  99        check_count A 2 B 1 B1 2 B2 1
 100'
 101
 102test_expect_success 'blame ancestor' '
 103        check_count -h master A 2 B 2
 104'
 105
 106test_expect_success 'blame great-ancestor' '
 107        check_count -h master^ A 2
 108'
 109
 110test_expect_success 'setup evil merge' '
 111        echo "evil merge." >>file &&
 112        git commit -a --amend
 113'
 114
 115test_expect_success 'blame evil merge' '
 116        check_count A 2 B 1 B1 2 B2 1 "A U Thor" 1
 117'
 118
 119test_expect_success 'setup incomplete line' '
 120        echo "incomplete" | tr -d "\\012" >>file &&
 121        GIT_AUTHOR_NAME="C" GIT_AUTHOR_EMAIL="C@test.git" \
 122        git commit -a -m "Incomplete"
 123'
 124
 125test_expect_success 'blame incomplete line' '
 126        check_count A 2 B 1 B1 2 B2 1 "A U Thor" 1 C 1
 127'
 128
 129test_expect_success 'setup edits' '
 130        mv file file.orig &&
 131        {
 132                cat file.orig &&
 133                echo
 134        } | sed -e "s/^3A/99/" -e "/^1A/d" -e "/^incomplete/d" >file &&
 135        echo "incomplete" | tr -d "\\012" >>file &&
 136        GIT_AUTHOR_NAME="D" GIT_AUTHOR_EMAIL="D@test.git" \
 137        git commit -a -m "edit"
 138'
 139
 140test_expect_success 'blame edits' '
 141        check_count A 1 B 1 B1 1 B2 1 "A U Thor" 1 C 1 D 1
 142'
 143
 144test_expect_success 'setup obfuscated email' '
 145        echo "No robots allowed" >file.new &&
 146        cat file >>file.new &&
 147        mv file.new file &&
 148        GIT_AUTHOR_NAME="E" GIT_AUTHOR_EMAIL="E at test dot git" \
 149        git commit -a -m "norobots"
 150'
 151
 152test_expect_success 'blame obfuscated email' '
 153        check_count A 1 B 1 B1 1 B2 1 "A U Thor" 1 C 1 D 1 E 1
 154'
 155
 156test_expect_success 'blame -L 1 (all)' '
 157        check_count -L1 A 1 B 1 B1 1 B2 1 "A U Thor" 1 C 1 D 1 E 1
 158'
 159
 160test_expect_success 'blame -L , (all)' '
 161        check_count -L, A 1 B 1 B1 1 B2 1 "A U Thor" 1 C 1 D 1 E 1
 162'
 163
 164test_expect_success 'blame -L X (X to end)' '
 165        check_count -L5 B1 1 C 1 D 1 "A U Thor" 1
 166'
 167
 168test_expect_success 'blame -L X, (X to end)' '
 169        check_count -L5, B1 1 C 1 D 1 "A U Thor" 1
 170'
 171
 172test_expect_success 'blame -L ,Y (up to Y)' '
 173        check_count -L,3 A 1 B2 1 E 1
 174'
 175
 176test_expect_success 'blame -L X,X' '
 177        check_count -L3,3 B2 1
 178'
 179
 180test_expect_success 'blame -L X,Y' '
 181        check_count -L3,6 B 1 B1 1 B2 1 D 1
 182'
 183
 184test_expect_success 'blame -L Y,X (undocumented)' '
 185        check_count -L6,3 B 1 B1 1 B2 1 D 1
 186'
 187
 188test_expect_failure 'blame -L X,+0' '
 189        test_must_fail $PROG -L1,+0 file
 190'
 191
 192test_expect_success 'blame -L X,+1' '
 193        check_count -L3,+1 B2 1
 194'
 195
 196test_expect_success 'blame -L X,+N' '
 197        check_count -L3,+4 B 1 B1 1 B2 1 D 1
 198'
 199
 200test_expect_failure 'blame -L X,-0' '
 201        test_must_fail $PROG -L1,-0 file
 202'
 203
 204test_expect_success 'blame -L X,-1' '
 205        check_count -L3,-1 B2 1
 206'
 207
 208test_expect_success 'blame -L X,-N' '
 209        check_count -L6,-4 B 1 B1 1 B2 1 D 1
 210'
 211
 212test_expect_success 'blame -L /RE/ (RE to end)' '
 213        check_count -L/evil/ C 1 "A U Thor" 1
 214'
 215
 216test_expect_success 'blame -L /RE/,/RE2/' '
 217        check_count -L/robot/,/green/ A 1 B 1 B2 1 D 1 E 1
 218'
 219
 220test_expect_success 'blame -L X,/RE/' '
 221        check_count -L5,/evil/ B1 1 D 1 "A U Thor" 1
 222'
 223
 224test_expect_success 'blame -L /RE/,Y' '
 225        check_count -L/99/,7 B1 1 D 1 "A U Thor" 1
 226'
 227
 228test_expect_success 'blame -L /RE/,+N' '
 229        check_count -L/99/,+3 B1 1 D 1 "A U Thor" 1
 230'
 231
 232test_expect_success 'blame -L /RE/,-N' '
 233        check_count -L/99/,-3 B 1 B2 1 D 1
 234'
 235
 236# 'file' ends with an incomplete line, so 'wc' reports one fewer lines than
 237# git-blame sees, hence the last line is actually $(wc...)+1.
 238test_expect_success 'blame -L X (X == nlines)' '
 239        n=$(expr $(wc -l <file) + 1) &&
 240        check_count -L$n C 1
 241'
 242
 243test_expect_success 'blame -L X (X == nlines + 1)' '
 244        n=$(expr $(wc -l <file) + 2) &&
 245        test_must_fail $PROG -L$n file
 246'
 247
 248test_expect_success 'blame -L X (X > nlines)' '
 249        test_must_fail $PROG -L12345 file
 250'
 251
 252test_expect_success 'blame -L ,Y (Y == nlines)' '
 253        n=$(expr $(wc -l <file) + 1) &&
 254        check_count -L,$n A 1 B 1 B1 1 B2 1 "A U Thor" 1 C 1 D 1 E 1
 255'
 256
 257test_expect_success 'blame -L ,Y (Y == nlines + 1)' '
 258        n=$(expr $(wc -l <file) + 2) &&
 259        test_must_fail $PROG -L,$n file
 260'
 261
 262test_expect_success 'blame -L ,Y (Y > nlines)' '
 263        test_must_fail $PROG -L,12345 file
 264'
 265
 266test_expect_success 'setup -L :regex' '
 267        tr Q "\\t" >hello.c <<-\EOF &&
 268        int main(int argc, const char *argv[])
 269        {
 270        Qputs("hello");
 271        }
 272        EOF
 273        git add hello.c &&
 274        GIT_AUTHOR_NAME="F" GIT_AUTHOR_EMAIL="F@test.git" \
 275        git commit -m "hello" &&
 276
 277        mv hello.c hello.orig &&
 278        sed -e "/}/ {x; s/$/Qputs(\"goodbye\");/; G;}" <hello.orig |
 279        tr Q "\\t" >hello.c &&
 280        GIT_AUTHOR_NAME="G" GIT_AUTHOR_EMAIL="G@test.git" \
 281        git commit -a -m "goodbye" &&
 282
 283        mv hello.c hello.orig &&
 284        echo "#include <stdio.h>" >hello.c &&
 285        cat hello.orig >>hello.c &&
 286        tr Q "\\t" >>hello.c <<-\EOF
 287        void mail()
 288        {
 289        Qputs("mail");
 290        }
 291        EOF
 292        GIT_AUTHOR_NAME="H" GIT_AUTHOR_EMAIL="H@test.git" \
 293        git commit -a -m "mail"
 294'
 295
 296test_expect_success 'blame -L :literal' '
 297        check_count -f hello.c -L:main F 4 G 1
 298'
 299
 300test_expect_success 'blame -L :regex' '
 301        check_count -f hello.c "-L:m[a-z][a-z]l" H 4
 302'
 303
 304test_expect_success 'blame -L :nomatch' '
 305        test_must_fail $PROG -L:nomatch hello.c
 306'
 307
 308test_expect_success 'setup incremental' '
 309        (
 310        GIT_AUTHOR_NAME=I &&
 311        export GIT_AUTHOR_NAME &&
 312        GIT_AUTHOR_EMAIL=I@test.git &&
 313        export GIT_AUTHOR_EMAIL &&
 314        >incremental &&
 315        git add incremental &&
 316        git commit -m "step 0" &&
 317        printf "partial" >>incremental &&
 318        git commit -a -m "step 0.5" &&
 319        echo >>incremental &&
 320        git commit -a -m "step 1"
 321        )
 322'
 323
 324test_expect_success 'blame empty' '
 325        check_count -h HEAD^^ -f incremental
 326'
 327
 328test_expect_success 'blame -L 0 empty (undocumented)' '
 329        check_count -h HEAD^^ -f incremental -L0
 330'
 331
 332test_expect_success 'blame -L 1 empty' '
 333        test_must_fail $PROG -L1 incremental HEAD^^
 334'
 335
 336test_expect_success 'blame -L 2 empty' '
 337        test_must_fail $PROG -L2 incremental HEAD^^
 338'
 339
 340test_expect_success 'blame half' '
 341        check_count -h HEAD^ -f incremental I 1
 342'
 343
 344test_expect_success 'blame -L 0 half (undocumented)' '
 345        check_count -h HEAD^ -f incremental -L0 I 1
 346'
 347
 348test_expect_success 'blame -L 1 half' '
 349        check_count -h HEAD^ -f incremental -L1 I 1
 350'
 351
 352test_expect_success 'blame -L 2 half' '
 353        test_must_fail $PROG -L2 incremental HEAD^
 354'
 355
 356test_expect_success 'blame -L 3 half' '
 357        test_must_fail $PROG -L3 incremental HEAD^
 358'
 359
 360test_expect_success 'blame full' '
 361        check_count -f incremental I 1
 362'
 363
 364test_expect_success 'blame -L 0 full (undocumented)' '
 365        check_count -f incremental -L0 I 1
 366'
 367
 368test_expect_success 'blame -L 1 full' '
 369        check_count -f incremental -L1 I 1
 370'
 371
 372test_expect_success 'blame -L 2 full' '
 373        test_must_fail $PROG -L2 incremental
 374'
 375
 376test_expect_success 'blame -L 3 full' '
 377        test_must_fail $PROG -L3 incremental
 378'
 379
 380test_expect_success 'blame -L' '
 381        test_must_fail $PROG -L file
 382'
 383
 384test_expect_success 'blame -L X,+' '
 385        test_must_fail $PROG -L1,+ file
 386'
 387
 388test_expect_success 'blame -L X,-' '
 389        test_must_fail $PROG -L1,- file
 390'
 391
 392test_expect_success 'blame -L X (non-numeric X)' '
 393        test_must_fail $PROG -LX file
 394'
 395
 396test_expect_success 'blame -L X,Y (non-numeric Y)' '
 397        test_must_fail $PROG -L1,Y file
 398'
 399
 400test_expect_success 'blame -L X,+N (non-numeric N)' '
 401        test_must_fail $PROG -L1,+N file
 402'
 403
 404test_expect_success 'blame -L X,-N (non-numeric N)' '
 405        test_must_fail $PROG -L1,-N file
 406'