tests for hg serve prefix option
authorMichele Cella <michele.cella@gmail.com>
Tue, 22 Jan 2008 23:06:37 +0100
changeset 5971 6d5ecf824a65
parent 5970 f25070ecf334
child 5972 d83020d0466f
tests for hg serve prefix option
tests/test-serve
tests/test-serve.out
--- a/tests/test-serve	Tue Jan 22 22:13:29 2008 +0100
+++ b/tests/test-serve	Tue Jan 22 23:06:37 2008 +0100
@@ -16,3 +16,27 @@
 echo % With -v
 hg serve -a localhost -p $HGPORT1 -d --pid-file=hg.pid -v | sed -e 's,:[0-9][0-9]*/,/,'
 cat hg.pid >> "$DAEMON_PIDS"
+kill `cat hg.pid`
+sleep 1
+
+echo % With --prefix foo
+hg serve -a localhost -p $HGPORT1 -d --pid-file=hg.pid -v --prefix foo | sed -e 's,:[0-9][0-9]*/,/,'
+cat hg.pid >> "$DAEMON_PIDS"
+kill `cat hg.pid`
+sleep 1
+
+echo % With --prefix /foo
+hg serve -a localhost -p $HGPORT1 -d --pid-file=hg.pid -v --prefix /foo | sed -e 's,:[0-9][0-9]*/,/,'
+cat hg.pid >> "$DAEMON_PIDS"
+kill `cat hg.pid`
+sleep 1
+
+echo % With --prefix foo/
+hg serve -a localhost -p $HGPORT1 -d --pid-file=hg.pid -v --prefix foo/ | sed -e 's,:[0-9][0-9]*/,/,'
+cat hg.pid >> "$DAEMON_PIDS"
+kill `cat hg.pid`
+sleep 1
+
+echo % With --prefix /foo/
+hg serve -a localhost -p $HGPORT1 -d --pid-file=hg.pid -v --prefix /foo/ | sed -e 's,:[0-9][0-9]*/,/,'
+cat hg.pid >> "$DAEMON_PIDS"
--- a/tests/test-serve.out	Tue Jan 22 22:13:29 2008 +0100
+++ b/tests/test-serve.out	Tue Jan 22 23:06:37 2008 +0100
@@ -2,3 +2,15 @@
 access log created - .hg/hgrc respected
 % With -v
 listening at http://localhost/
+killed!
+% With --prefix foo
+listening at http://localhost/foo/
+killed!
+% With --prefix /foo
+listening at http://localhost/foo/
+killed!
+% With --prefix foo/
+listening at http://localhost/foo/
+killed!
+% With --prefix /foo/
+listening at http://localhost/foo/