gitolite/t/t00-initial

73 lines
1.5 KiB
Plaintext
Raw Normal View History

# vim: syn=sh:
$TESTDIR/rollback || die "rollback failed"
# ----------
name "basic push admin repo"
echo "
repo aa
RW+ = u1
RW = u2 u3
" | ugc
expect "To gitolite:gitolite-admin"
expect "master -> master"
name "basic create repo"
make REPO_BASE absolute early $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!
2011-03-18 06:29:52 +01:00
expect "remote: Initialized empty Git repository in $TEST_BASE_FULL/aa.git/"
# ----------
name "basic clone"
cd ~/td
runlocal git clone u1:aa u1aa
expect "Cloning into u1aa..."
expect "warning: You appear to have cloned an empty repository"
runlocal ls -ald --time-style=long-iso u1aa
expect "drwxr-xr-x 3 $USER $USER 4096 201.-..-.. ..:.. u1aa"
# ----------
name "basic clone deny"
cd ~/td
runlocal git clone u4:aa u4aa
expect "R access for aa DENIED to u4"
runlocal ls -ald u4aa
expect "ls: cannot access u4aa: No such file or directory"
# ----------
name "basic push"
cd ~/td/u1aa
mdc
runlocal git push origin HEAD
expect "To u1:aa"
expect "\[new branch\] *HEAD -> master"
# ----------
name "basic rewind"
cd ~/td/u1aa
mdc
mdc
mdc
runlocal git push origin HEAD
runlocal git reset --hard HEAD^
mdc
runlocal git push -f origin HEAD
expect "+ .* HEAD -> master (forced update)"
name "basic rewind log"
taillog
expect " u1 .* + .* aa refs/heads/master refs/.\*"
# ----------
name "basic rewind deny"
cd ~/td
runlocal git clone u2:aa u2aa
cd ~/td/u2aa
mdc
mdc
mdc
runlocal git push origin HEAD
runlocal git reset --hard HEAD^
mdc
runlocal git push -f origin HEAD
expect "remote: + refs/heads/master aa u2 DENIED by fallthru"
name INTERNAL