3 test_description='.git file
5 Verify that plumbing commands work when .git is a file
10 echo "$1" | sed -e 's|\(..\)|\1/|'
15 if test ! -f "$REAL/objects/$p"
17 echo "Object not found: $REAL/objects/$p"
22 test_expect_success 'initial setup' '
23 REAL="$(pwd)/.real" &&
27 test_expect_success 'bad setup: invalid .git file format' '
28 echo "gitdir $REAL" >.git &&
29 if git rev-parse 2>.err
31 echo "git rev-parse accepted an invalid .git file"
34 if ! grep "Invalid gitfile format" .err
36 echo "git rev-parse returned wrong error"
41 test_expect_success 'bad setup: invalid .git file path' '
42 echo "gitdir: $REAL.not" >.git &&
43 if git rev-parse 2>.err
45 echo "git rev-parse accepted an invalid .git file path"
48 if ! grep "Not a git repository" .err
50 echo "git rev-parse returned wrong error"
55 test_expect_success 'final setup + check rev-parse --git-dir' '
56 echo "gitdir: $REAL" >.git &&
57 test "$REAL" = "$(git rev-parse --git-dir)"
60 test_expect_success 'check hash-object' '
62 SHA=$(cat bar | git hash-object -w --stdin) &&
66 test_expect_success 'check cat-file' '
67 git cat-file blob $SHA >actual &&
71 test_expect_success 'check update-index' '
72 if test -f "$REAL/index"
74 echo "Hmm, $REAL/index exists?"
77 rm -f "$REAL/objects/$(objpath $SHA)" &&
78 git update-index --add bar &&
79 if ! test -f "$REAL/index"
81 echo "$REAL/index not found"
87 test_expect_success 'check write-tree' '
88 SHA=$(git write-tree) &&
92 test_expect_success 'check commit-tree' '
93 SHA=$(echo "commit bar" | git commit-tree $SHA) &&
97 test_expect_success 'check rev-list' '
98 echo $SHA >"$REAL/HEAD" &&
99 test "$SHA" = "$(git rev-list HEAD)"
102 test_expect_success 'setup_git_dir twice in subdir' '
106 git config alias.lsfi ls-files &&
108 echo "gitdir: .realgit" >.git &&
114 echo foo >expected &&
115 test_cmp expected actual
119 test_expect_success 'enter_repo non-strict mode' '
120 test_create_repo enter_repo &&
126 echo "gitdir: .realgit" >.git
128 git ls-remote enter_repo >actual &&
129 cat >expected <<-\EOF &&
130 946e985ab20de757ca5b872b16d64e92ff3803a9 HEAD
131 946e985ab20de757ca5b872b16d64e92ff3803a9 refs/heads/master
132 946e985ab20de757ca5b872b16d64e92ff3803a9 refs/tags/foo
134 test_cmp expected actual
137 test_expect_success 'enter_repo linked checkout' '
140 git worktree add ../foo refs/tags/foo
142 git ls-remote foo >actual &&
143 cat >expected <<-\EOF &&
144 946e985ab20de757ca5b872b16d64e92ff3803a9 HEAD
145 946e985ab20de757ca5b872b16d64e92ff3803a9 refs/heads/master
146 946e985ab20de757ca5b872b16d64e92ff3803a9 refs/tags/foo
148 test_cmp expected actual
151 test_expect_success 'enter_repo strict mode' '
152 git ls-remote --upload-pack="git upload-pack --strict" foo/.git >actual &&
153 cat >expected <<-\EOF &&
154 946e985ab20de757ca5b872b16d64e92ff3803a9 HEAD
155 946e985ab20de757ca5b872b16d64e92ff3803a9 refs/heads/master
156 946e985ab20de757ca5b872b16d64e92ff3803a9 refs/tags/foo
158 test_cmp expected actual