mirror of
https://github.com/wahyd4/gitolite.git
synced 2026-08-09 04:55:55 +10:00
$ENV{GL_REPO_BASE_ABS} is meant to point to the same directory as
$REPO_BASE, except it is meant to be passed to hooks, ADCs and other
child programs. And since you can't be sure where the child program
starts in, this became an absolute path.
Gradually, however, I started using it wherever I needed an absolute
path (mostly in code that jumps around various directories to do stuff).
Which is silly, because there's no reason $REPO_BASE cannot also be made
an absolute, even if the rc file has a relative path.
So that's what I did now: made $REPO_BASE absolute very early on, and
then systematically changed all uses of the longer form to the shorter
form when appropriate. And so the only thing we now use the longer one
for is to pass to child programs.
(Implementation note: The actual change is not very big, but while I was
about it I decided to make the test suite able to test with an absolute
REPO_BASE also, which is why the commit seems so large.)
----
This all started with a complaint from Damien Regad. He had an
extremely odd setup where his bashrc changed PWD to something other than
$HOME before anything else ran. This caused those two variables to
beceom inconsistent, and he had a 1-line fix he wanted me to apply.
I generally don't like making special fixes for for non-standard setups,
and anyway all he had to do was set the full path to REPO_BASE in the rc
file to get around this. Which is what I told him and he very politely
left it at that.
However, this did get me thinking, and I soon realised I was needlessly
conflating "relative versus absolute" with "able to be passed to child
programs". Fixing that solved his problem also, as a side-effect.
So I guess this is all thanks to Damien!
96 lines
2.2 KiB
Plaintext
96 lines
2.2 KiB
Plaintext
# vim: syn=sh:
|
|
for bc in 0 1
|
|
do
|
|
cd $TESTDIR
|
|
$TESTDIR/rollback || die "rollback failed"
|
|
editrc GL_WILDREPOS 1
|
|
editrc GL_BIG_CONFIG $bc
|
|
|
|
# ----------
|
|
|
|
name "INTERNAL"
|
|
echo "
|
|
@staff = u1 u2 u3
|
|
@gfoo = foo/CREATOR/.+
|
|
repo @gfoo
|
|
C = u1
|
|
RW+ = CREATOR
|
|
RW = WRITERS
|
|
- = @staff
|
|
" | ugc
|
|
|
|
cd ~/td
|
|
runlocal git clone u1:foo/u1/bar
|
|
expect "Initialized empty Git repository in $TEST_BASE_FULL/foo/u1/bar.git/"
|
|
|
|
cd bar
|
|
mdc u1file1
|
|
runlocal git push origin master
|
|
expect "To u1:foo/u1/bar"
|
|
expect "\[new branch\] master -> master"
|
|
echo RW u2 | runlocal ssh u1 setperms foo/u1/bar
|
|
runlocal ssh u1 getperms foo/u1/bar
|
|
expect "WRITERS u2"
|
|
name "expand"
|
|
runlocal ssh u2 expand
|
|
expect "R W .(u1).foo/u1/bar"
|
|
|
|
name "push"
|
|
cd ~/td
|
|
runlocal git clone u2:foo/u1/bar u2bar
|
|
expect "Cloning into u2bar..."
|
|
cd u2bar
|
|
mdc u2file1
|
|
runlocal git push
|
|
expect "master -> master"
|
|
notexpect "DENIED"
|
|
notexpect "failed to push"
|
|
|
|
name "INTERNAL"
|
|
|
|
cd $TESTDIR
|
|
$TESTDIR/rollback || die "rollback failed"
|
|
editrc GL_WILDREPOS 1
|
|
editrc GL_BIG_CONFIG $bc
|
|
|
|
# ----------
|
|
|
|
name "INTERNAL"
|
|
echo "
|
|
@staff = u1 u2 u3
|
|
@gfoo = foo/CREATOR/.+
|
|
repo @gfoo
|
|
C = u1
|
|
RW+ = CREATOR
|
|
- = @staff
|
|
RW = WRITERS
|
|
" | ugc -r
|
|
|
|
cd ~/td
|
|
runlocal git clone u1:foo/u1/bar
|
|
expect "Cloning into bar..."
|
|
|
|
cd bar
|
|
mdc u1file1
|
|
runlocal git push origin master
|
|
expect "To u1:foo/u1/bar"
|
|
expect "\[new branch\] master -> master"
|
|
echo RW u2 | runlocal ssh u1 setperms foo/u1/bar
|
|
runlocal ssh u1 getperms foo/u1/bar
|
|
expect "WRITERS u2"
|
|
name "expand"
|
|
runlocal ssh u2 expand
|
|
expect " R W .(u1).foo/u1/bar"
|
|
|
|
name "push"
|
|
cd ~/td
|
|
runlocal git clone u2:foo/u1/bar u2bar
|
|
expect "Cloning into u2bar..."
|
|
cd u2bar
|
|
mdc u2file1
|
|
runlocal git push
|
|
expect "remote: W refs/heads/master u2 DENIED by refs/.\*"
|
|
|
|
name INTERNAL
|
|
done
|