Mercurial > hg-stable
changeset 10473:634b0e7561ec stable
test-interhg: test the extension
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Sun, 14 Feb 2010 20:28:49 +0100 |
parents | 9126d13bad7a |
children | 601a9d67825a |
files | tests/test-interhg tests/test-interhg.out |
diffstat | 2 files changed, 31 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test-interhg Sun Feb 14 20:28:49 2010 +0100 @@ -0,0 +1,28 @@ +#!/bin/sh + +hg init test +cd test + +cat > .hg/hgrc <<EOF +[extensions] +interhg = + +[interhg] +issues = s|Issue(\d+)|<a href="http://bts.example.org/issue\1">Issue\1</a>| + +# yes, 'x' is a weird delimiter... +markbugs = sxbugx<i class="\x">bug</i>x +EOF + +touch foo +hg add foo +hg commit -d '1 0' -m 'Issue123: fixed the bug!' + +hg serve -n test -p $HGPORT -d --pid-file=hg.pid -A access.log -E errors.log +cat hg.pid >> $DAEMON_PIDS + +echo % log +"$TESTDIR/get-with-headers.py" localhost:$HGPORT '/' | grep bts + +echo % errors +cat errors.log
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test-interhg.out Sun Feb 14 20:28:49 2010 +0100 @@ -0,0 +1,3 @@ +% log + <td class="description"><a href="/rev/1b0e7ece6bd6"><a href="http://bts.example.org/issue123">Issue123</a>: fixed the <i class="x">bug</i>!</a><span class="branchhead">default</span> <span class="tag">tip</span> </td> +% errors