t / t6000-rev-list-misc.shon commit rebase-interactive.c: remove the_repository references (36e7ed6)
   1#!/bin/sh
   2
   3test_description='miscellaneous rev-list tests'
   4
   5. ./test-lib.sh
   6
   7test_expect_success setup '
   8        echo content1 >wanted_file &&
   9        echo content2 >unwanted_file &&
  10        git add wanted_file unwanted_file &&
  11        git commit -m one
  12'
  13
  14test_expect_success 'rev-list --objects heeds pathspecs' '
  15        git rev-list --objects HEAD -- wanted_file >output &&
  16        grep wanted_file output &&
  17        ! grep unwanted_file output
  18'
  19
  20test_expect_success 'rev-list --objects with pathspecs and deeper paths' '
  21        mkdir foo &&
  22        >foo/file &&
  23        git add foo/file &&
  24        git commit -m two &&
  25
  26        git rev-list --objects HEAD -- foo >output &&
  27        grep foo/file output &&
  28
  29        git rev-list --objects HEAD -- foo/file >output &&
  30        grep foo/file output &&
  31        ! grep unwanted_file output
  32'
  33
  34test_expect_success 'rev-list --objects with pathspecs and copied files' '
  35        git checkout --orphan junio-testcase &&
  36        git rm -rf . &&
  37
  38        mkdir two &&
  39        echo frotz >one &&
  40        cp one two/three &&
  41        git add one two/three &&
  42        test_tick &&
  43        git commit -m that &&
  44
  45        ONE=$(git rev-parse HEAD:one) &&
  46        git rev-list --objects HEAD two >output &&
  47        grep "$ONE two/three" output &&
  48        ! grep one output
  49'
  50
  51test_expect_success 'rev-list A..B and rev-list ^A B are the same' '
  52        git commit --allow-empty -m another &&
  53        git tag -a -m "annotated" v1.0 &&
  54        git rev-list --objects ^v1.0^ v1.0 >expect &&
  55        git rev-list --objects v1.0^..v1.0 >actual &&
  56        test_cmp expect actual
  57'
  58
  59test_expect_success 'propagate uninteresting flag down correctly' '
  60        git rev-list --objects ^HEAD^{tree} HEAD^{tree} >actual &&
  61        test_must_be_empty actual
  62'
  63
  64test_expect_success 'symleft flag bit is propagated down from tag' '
  65        git log --format="%m %s" --left-right v1.0...master >actual &&
  66        cat >expect <<-\EOF &&
  67        > two
  68        > one
  69        < another
  70        < that
  71        EOF
  72        test_cmp expect actual
  73'
  74
  75test_expect_success 'rev-list can show index objects' '
  76        # Of the blobs and trees in the index, note:
  77        #
  78        #   - we do not show two/three, because it is the
  79        #     same blob as "one", and we show objects only once
  80        #
  81        #   - we do show the tree "two", because it has a valid cache tree
  82        #     from the last commit
  83        #
  84        #   - we do not show the root tree; since we updated the index, it
  85        #     does not have a valid cache tree
  86        #
  87        cat >expect <<-\EOF &&
  88        8e4020bb5a8d8c873b25de15933e75cc0fc275df one
  89        d9d3a7417b9605cfd88ee6306b28dadc29e6ab08 only-in-index
  90        9200b628cf9dc883a85a7abc8d6e6730baee589c two
  91        EOF
  92        echo only-in-index >only-in-index &&
  93        git add only-in-index &&
  94        git rev-list --objects --indexed-objects >actual &&
  95        test_cmp expect actual
  96'
  97
  98test_expect_success '--bisect and --first-parent can not be combined' '
  99        test_must_fail git rev-list --bisect --first-parent HEAD
 100'
 101
 102test_expect_success '--header shows a NUL after each commit' '
 103        # We know that there is no Q in the true payload; names and
 104        # addresses of the authors and the committers do not have
 105        # any, and object names or header names do not, either.
 106        git rev-list --header --max-count=2 HEAD |
 107        nul_to_q |
 108        grep "^Q" >actual &&
 109        cat >expect <<-EOF &&
 110        Q$(git rev-parse HEAD~1)
 111        Q
 112        EOF
 113        test_cmp expect actual
 114'
 115
 116test_done