Shawn O. Pearce | f0a24aa | 2008-03-03 22:27:20 -0500 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
Nanako Shiraishi | 3604e7c | 2008-09-03 17:59:29 +0900 | [diff] [blame] | 3 | test_description='git pack-object --include-tag' |
Shawn O. Pearce | f0a24aa | 2008-03-03 22:27:20 -0500 | [diff] [blame] | 4 | . ./test-lib.sh |
| 5 | |
Elia Pinto | 0469cb9 | 2015-12-23 14:45:51 +0100 | [diff] [blame] | 6 | TRASH=$(pwd) |
Shawn O. Pearce | f0a24aa | 2008-03-03 22:27:20 -0500 | [diff] [blame] | 7 | |
| 8 | test_expect_success setup ' |
| 9 | echo c >d && |
| 10 | git update-index --add d && |
Elia Pinto | 0469cb9 | 2015-12-23 14:45:51 +0100 | [diff] [blame] | 11 | tree=$(git write-tree) && |
| 12 | commit=$(git commit-tree $tree </dev/null) && |
Shawn O. Pearce | f0a24aa | 2008-03-03 22:27:20 -0500 | [diff] [blame] | 13 | echo "object $commit" >sig && |
| 14 | echo "type commit" >>sig && |
| 15 | echo "tag mytag" >>sig && |
| 16 | echo "tagger $(git var GIT_COMMITTER_IDENT)" >>sig && |
| 17 | echo >>sig && |
| 18 | echo "our test tag" >>sig && |
Elia Pinto | 0469cb9 | 2015-12-23 14:45:51 +0100 | [diff] [blame] | 19 | tag=$(git mktag <sig) && |
Shawn O. Pearce | f0a24aa | 2008-03-03 22:27:20 -0500 | [diff] [blame] | 20 | rm d sig && |
| 21 | git update-ref refs/tags/mytag $tag && { |
| 22 | echo $tree && |
| 23 | echo $commit && |
| 24 | git ls-tree $tree | sed -e "s/.* \\([0-9a-f]*\\) .*/\\1/" |
| 25 | } >obj-list |
| 26 | ' |
| 27 | |
Shawn O. Pearce | f0a24aa | 2008-03-03 22:27:20 -0500 | [diff] [blame] | 28 | test_expect_success 'pack without --include-tag' ' |
Jeff King | ab51783 | 2016-09-05 17:52:22 -0400 | [diff] [blame] | 29 | packname=$(git pack-objects \ |
Shawn O. Pearce | f0a24aa | 2008-03-03 22:27:20 -0500 | [diff] [blame] | 30 | --window=0 \ |
Jeff King | ab51783 | 2016-09-05 17:52:22 -0400 | [diff] [blame] | 31 | test-no-include <obj-list) |
Shawn O. Pearce | f0a24aa | 2008-03-03 22:27:20 -0500 | [diff] [blame] | 32 | ' |
| 33 | |
| 34 | test_expect_success 'unpack objects' ' |
Jeff King | 1962d9f | 2016-09-05 17:52:10 -0400 | [diff] [blame] | 35 | rm -rf clone.git && |
Jeff King | 948a7fd | 2016-09-05 17:52:17 -0400 | [diff] [blame] | 36 | git init clone.git && |
Jeff King | ab51783 | 2016-09-05 17:52:22 -0400 | [diff] [blame] | 37 | git -C clone.git unpack-objects <test-no-include-${packname}.pack |
Shawn O. Pearce | f0a24aa | 2008-03-03 22:27:20 -0500 | [diff] [blame] | 38 | ' |
| 39 | |
| 40 | test_expect_success 'check unpacked result (have commit, no tag)' ' |
| 41 | git rev-list --objects $commit >list.expect && |
Jeff King | 948a7fd | 2016-09-05 17:52:17 -0400 | [diff] [blame] | 42 | test_must_fail git -C clone.git cat-file -e $tag && |
| 43 | git -C clone.git rev-list --objects $commit >list.actual && |
Junio C Hamano | 3af8286 | 2008-05-23 22:28:56 -0700 | [diff] [blame] | 44 | test_cmp list.expect list.actual |
Shawn O. Pearce | f0a24aa | 2008-03-03 22:27:20 -0500 | [diff] [blame] | 45 | ' |
| 46 | |
Shawn O. Pearce | f0a24aa | 2008-03-03 22:27:20 -0500 | [diff] [blame] | 47 | test_expect_success 'pack with --include-tag' ' |
Jeff King | ab51783 | 2016-09-05 17:52:22 -0400 | [diff] [blame] | 48 | packname=$(git pack-objects \ |
Shawn O. Pearce | f0a24aa | 2008-03-03 22:27:20 -0500 | [diff] [blame] | 49 | --window=0 \ |
| 50 | --include-tag \ |
Jeff King | ab51783 | 2016-09-05 17:52:22 -0400 | [diff] [blame] | 51 | test-include <obj-list) |
Shawn O. Pearce | f0a24aa | 2008-03-03 22:27:20 -0500 | [diff] [blame] | 52 | ' |
| 53 | |
| 54 | test_expect_success 'unpack objects' ' |
Jeff King | 1962d9f | 2016-09-05 17:52:10 -0400 | [diff] [blame] | 55 | rm -rf clone.git && |
Jeff King | 948a7fd | 2016-09-05 17:52:17 -0400 | [diff] [blame] | 56 | git init clone.git && |
Jeff King | ab51783 | 2016-09-05 17:52:22 -0400 | [diff] [blame] | 57 | git -C clone.git unpack-objects <test-include-${packname}.pack |
Shawn O. Pearce | f0a24aa | 2008-03-03 22:27:20 -0500 | [diff] [blame] | 58 | ' |
| 59 | |
| 60 | test_expect_success 'check unpacked result (have commit, have tag)' ' |
| 61 | git rev-list --objects mytag >list.expect && |
Jeff King | 948a7fd | 2016-09-05 17:52:17 -0400 | [diff] [blame] | 62 | git -C clone.git rev-list --objects $tag >list.actual && |
Junio C Hamano | 3af8286 | 2008-05-23 22:28:56 -0700 | [diff] [blame] | 63 | test_cmp list.expect list.actual |
Shawn O. Pearce | f0a24aa | 2008-03-03 22:27:20 -0500 | [diff] [blame] | 64 | ' |
| 65 | |
Jeff King | b773dde | 2016-09-05 17:52:26 -0400 | [diff] [blame] | 66 | # A tag of a tag, where the "inner" tag is not otherwise |
| 67 | # reachable, and a full peel points to a commit reachable from HEAD. |
| 68 | test_expect_success 'create hidden inner tag' ' |
| 69 | test_commit commit && |
| 70 | git tag -m inner inner HEAD && |
| 71 | git tag -m outer outer inner && |
| 72 | git tag -d inner |
| 73 | ' |
| 74 | |
| 75 | test_expect_success 'pack explicit outer tag' ' |
| 76 | packname=$( |
| 77 | { |
| 78 | echo HEAD && |
| 79 | echo outer |
| 80 | } | |
| 81 | git pack-objects --revs test-hidden-explicit |
| 82 | ) |
| 83 | ' |
| 84 | |
| 85 | test_expect_success 'unpack objects' ' |
| 86 | rm -rf clone.git && |
| 87 | git init clone.git && |
| 88 | git -C clone.git unpack-objects <test-hidden-explicit-${packname}.pack |
| 89 | ' |
| 90 | |
| 91 | test_expect_success 'check unpacked result (have all objects)' ' |
| 92 | git -C clone.git rev-list --objects $(git rev-parse outer HEAD) |
| 93 | ' |
| 94 | |
| 95 | test_expect_success 'pack implied outer tag' ' |
| 96 | packname=$( |
| 97 | echo HEAD | |
| 98 | git pack-objects --revs --include-tag test-hidden-implied |
| 99 | ) |
| 100 | ' |
| 101 | |
| 102 | test_expect_success 'unpack objects' ' |
| 103 | rm -rf clone.git && |
| 104 | git init clone.git && |
| 105 | git -C clone.git unpack-objects <test-hidden-implied-${packname}.pack |
| 106 | ' |
| 107 | |
| 108 | test_expect_success 'check unpacked result (have all objects)' ' |
| 109 | git -C clone.git rev-list --objects $(git rev-parse outer HEAD) |
| 110 | ' |
| 111 | |
| 112 | test_expect_success 'single-branch clone can transfer tag' ' |
| 113 | rm -rf clone.git && |
| 114 | git clone --no-local --single-branch -b master . clone.git && |
| 115 | git -C clone.git fsck |
| 116 | ' |
| 117 | |
Shawn O. Pearce | f0a24aa | 2008-03-03 22:27:20 -0500 | [diff] [blame] | 118 | test_done |