test-push-http
57 lines
| 1.4 KiB
| text/plain
|
TextLexer
/ tests / test-push-http
Vadim Gelfer
|
r2481 | #!/bin/sh | ||
hg init test | ||||
cd test | ||||
echo a > a | ||||
hg ci -Ama | ||||
cd .. | ||||
hg clone test test2 | ||||
cd test2 | ||||
echo a >> a | ||||
hg ci -mb | ||||
cd ../test | ||||
echo % expect ssl error | ||||
hg serve -p 20059 -d --pid-file=hg.pid | ||||
Vadim Gelfer
|
r2571 | cat hg.pid >> $DAEMON_PIDS | ||
Vadim Gelfer
|
r2481 | hg --cwd ../test2 push http://localhost:20059/ | ||
kill `cat hg.pid` | ||||
echo % expect authorization error | ||||
echo '[web]' > .hg/hgrc | ||||
echo 'push_ssl = false' >> .hg/hgrc | ||||
hg serve -p 20059 -d --pid-file=hg.pid | ||||
Vadim Gelfer
|
r2571 | cat hg.pid >> $DAEMON_PIDS | ||
Vadim Gelfer
|
r2481 | hg --cwd ../test2 push http://localhost:20059/ | ||
kill `cat hg.pid` | ||||
echo % expect authorization error: must have authorized user | ||||
echo 'allow_push = unperson' >> .hg/hgrc | ||||
hg serve -p 20059 -d --pid-file=hg.pid | ||||
Vadim Gelfer
|
r2571 | cat hg.pid >> $DAEMON_PIDS | ||
Vadim Gelfer
|
r2481 | hg --cwd ../test2 push http://localhost:20059/ | ||
kill `cat hg.pid` | ||||
echo % expect success | ||||
echo 'allow_push = *' >> .hg/hgrc | ||||
hg serve -p 20059 -d --pid-file=hg.pid | ||||
Vadim Gelfer
|
r2571 | cat hg.pid >> $DAEMON_PIDS | ||
Vadim Gelfer
|
r2481 | hg --cwd ../test2 push http://localhost:20059/ | ||
kill `cat hg.pid` | ||||
hg rollback | ||||
echo % expect authorization error: all users denied | ||||
echo 'deny_push = *' >> .hg/hgrc | ||||
hg serve -p 20059 -d --pid-file=hg.pid | ||||
Vadim Gelfer
|
r2571 | cat hg.pid >> $DAEMON_PIDS | ||
Vadim Gelfer
|
r2481 | hg --cwd ../test2 push http://localhost:20059/ | ||
kill `cat hg.pid` | ||||
echo % expect authorization error: some users denied, users must be authenticated | ||||
echo 'deny_push = unperson' >> .hg/hgrc | ||||
hg serve -p 20059 -d --pid-file=hg.pid | ||||
Vadim Gelfer
|
r2571 | cat hg.pid >> $DAEMON_PIDS | ||
Vadim Gelfer
|
r2481 | hg --cwd ../test2 push http://localhost:20059/ | ||
kill `cat hg.pid` | ||||