--- a/tests/test-hgwebdir Sun Sep 26 13:41:32 2010 -0500
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,181 +0,0 @@
-#!/bin/sh
-# Tests some basic hgwebdir functionality. Tests setting up paths and
-# collection, different forms of 404s and the subdirectory support.
-
-mkdir webdir
-cd webdir
-
-hg init a
-echo a > a/a
-hg --cwd a ci -Ama -d'1 0'
-# create a mercurial queue repository
-hg --cwd a qinit --config extensions.hgext.mq= -c
-
-hg init b
-echo b > b/b
-hg --cwd b ci -Amb -d'2 0'
-
-# create a nested repository
-cd b
-hg init d
-echo d > d/d
-hg --cwd d ci -Amd -d'3 0'
-cd ..
-
-hg init c
-echo c > c/c
-hg --cwd c ci -Amc -d'3 0'
-
-# create repository without .hg/store
-hg init nostore
-rm -R nostore/.hg/store
-
-root=`pwd`
-cd ..
-
-
-cat > paths.conf <<EOF
-[paths]
-a=$root/a
-b=$root/b
-EOF
-
-hg serve -p $HGPORT -d --pid-file=hg.pid --webdir-conf paths.conf \
- -A access-paths.log -E error-paths-1.log
-cat hg.pid >> $DAEMON_PIDS
-
-echo % should give a 404 - file does not exist
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT '/a/file/tip/bork?style=raw'
-
-echo % should succeed
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT '/?style=raw'
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT '/a/file/tip/a?style=raw'
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT '/b/file/tip/b?style=raw'
-
-echo % should give a 404 - repo is not published
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT '/c/file/tip/c?style=raw'
-
-echo % atom-log without basedir
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT '/a/atom-log' \
- | grep '<link' | sed 's|//[.a-zA-Z0-9_-]*:[0-9][0-9]*/|//example.com:8080/|'
-
-echo % rss-log without basedir
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT '/a/rss-log' \
- | grep '<guid' | sed 's|//[.a-zA-Z0-9_-]*:[0-9][0-9]*/|//example.com:8080/|'
-
-cat > paths.conf <<EOF
-[paths]
-t/a/=$root/a
-b=$root/b
-coll=$root/*
-rcoll=$root/**
-star=*
-starstar=**
-EOF
-
-hg serve -p $HGPORT1 -d --pid-file=hg.pid --webdir-conf paths.conf \
- -A access-paths.log -E error-paths-2.log
-cat hg.pid >> $DAEMON_PIDS
-
-echo % should succeed, slashy names
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/?style=raw'
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/?style=paper' \
- | sed "s/[0-9]\{1,\} seconds\{0,1\} ago/seconds ago/"
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/t?style=raw'
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/t/?style=raw'
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/t/?style=paper' \
- | sed "s/[0-9]\{1,\} seconds\{0,1\} ago/seconds ago/"
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/t/a?style=atom' \
- | sed "s/http:\/\/[^/]*\//http:\/\/127.0.0.1\//"
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/t/a/?style=atom' \
- | sed "s/http:\/\/[^/]*\//http:\/\/127.0.0.1\//"
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/t/a/file/tip/a?style=raw'
-# Test [paths] '*' extension
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/coll/?style=raw'
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/coll/a/file/tip/a?style=raw'
-#test [paths] '**' extension
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/rcoll/?style=raw'
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/rcoll/b/d/file/tip/d?style=raw'
-
-
-"$TESTDIR/killdaemons.py"
-cat > paths.conf <<EOF
-[paths]
-t/a = $root/a
-t/b = $root/b
-c = $root/c
-[web]
-descend=false
-EOF
-
-hg serve -p $HGPORT1 -d --pid-file=hg.pid --webdir-conf paths.conf \
- -A access-paths.log -E error-paths-3.log
-cat hg.pid >> $DAEMON_PIDS
-echo % test descend = False
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/?style=raw'
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/t/?style=raw'
-
-
-"$TESTDIR/killdaemons.py"
-cat > paths.conf <<EOF
-[paths]
-nostore = $root/nostore
-inexistent = $root/inexistent
-EOF
-
-hg serve -p $HGPORT1 -d --pid-file=hg.pid --webdir-conf paths.conf \
- -A access-paths.log -E error-paths-4.log
-cat hg.pid >> $DAEMON_PIDS
-echo % test inexistent and inaccessible repo should be ignored silently
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/'
-
-
-cat > collections.conf <<EOF
-[collections]
-$root=$root
-EOF
-
-hg serve --config web.baseurl=http://hg.example.com:8080/ -p $HGPORT2 -d \
- --pid-file=hg.pid --webdir-conf collections.conf \
- -A access-collections.log -E error-collections.log
-cat hg.pid >> $DAEMON_PIDS
-
-echo % collections: should succeed
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT2 '/?style=raw'
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT2 '/a/file/tip/a?style=raw'
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT2 '/b/file/tip/b?style=raw'
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT2 '/c/file/tip/c?style=raw'
-
-echo % atom-log with basedir /
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT2 '/a/atom-log' \
- | grep '<link' | sed 's|//[.a-zA-Z0-9_-]*:[0-9][0-9]*/|//example.com:8080/|'
-
-echo % rss-log with basedir /
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT2 '/a/rss-log' \
- | grep '<guid' | sed 's|//[.a-zA-Z0-9_-]*:[0-9][0-9]*/|//example.com:8080/|'
-
-"$TESTDIR/killdaemons.py"
-
-hg serve --config web.baseurl=http://hg.example.com:8080/foo/ -p $HGPORT2 -d \
- --pid-file=hg.pid --webdir-conf collections.conf \
- -A access-collections-2.log -E error-collections-2.log
-cat hg.pid >> $DAEMON_PIDS
-
-echo % atom-log with basedir /foo/
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT2 '/a/atom-log' \
- | grep '<link' | sed 's|//[.a-zA-Z0-9_-]*:[0-9][0-9]*/|//example.com:8080/|'
-
-echo % rss-log with basedir /foo/
-"$TESTDIR/get-with-headers.py" localhost:$HGPORT2 '/a/rss-log' \
- | grep '<guid' | sed 's|//[.a-zA-Z0-9_-]*:[0-9][0-9]*/|//example.com:8080/|'
-
-echo % paths errors 1
-cat error-paths-1.log
-echo % paths errors 2
-cat error-paths-2.log
-echo % paths errors 3
-cat error-paths-3.log
-echo % collections errors
-cat error-collections.log
-echo % collections errors 2
-cat error-collections-2.log
--- a/tests/test-hgwebdir.out Sun Sep 26 13:41:32 2010 -0500
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,482 +0,0 @@
-adding a
-adding b
-adding d
-adding c
-% should give a 404 - file does not exist
-404 Not Found
-
-
-error: bork@8580ff50825a: not found in manifest
-% should succeed
-200 Script output follows
-
-
-/a/
-/b/
-
-200 Script output follows
-
-a
-200 Script output follows
-
-b
-% should give a 404 - repo is not published
-404 Not Found
-
-
-error: repository c not found
-% atom-log without basedir
- <link rel="self" href="http://example.com:8080/a/atom-log"/>
- <link rel="alternate" href="http://example.com:8080/a/"/>
- <link href="http://example.com:8080/a/rev/8580ff50825a"/>
-% rss-log without basedir
- <guid isPermaLink="true">http://example.com:8080/a/rev/8580ff50825a</guid>
-% should succeed, slashy names
-200 Script output follows
-
-
-/t/a/
-/b/
-/coll/a/
-/coll/a/.hg/patches/
-/coll/b/
-/coll/c/
-/rcoll/a/
-/rcoll/a/.hg/patches/
-/rcoll/b/
-/rcoll/b/d/
-/rcoll/c/
-/star/webdir/a/
-/star/webdir/a/.hg/patches/
-/star/webdir/b/
-/star/webdir/c/
-/starstar/webdir/a/
-/starstar/webdir/a/.hg/patches/
-/starstar/webdir/b/
-/starstar/webdir/b/d/
-/starstar/webdir/c/
-
-200 Script output follows
-
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
-<head>
-<link rel="icon" href="/static/hgicon.png" type="image/png" />
-<meta name="robots" content="index, nofollow" />
-<link rel="stylesheet" href="/static/style-paper.css" type="text/css" />
-
-<title>Mercurial repositories index</title>
-</head>
-<body>
-
-<div class="container">
-<div class="menu">
-<a href="http://mercurial.selenic.com/">
-<img src="/static/hglogo.png" width=75 height=90 border=0 alt="mercurial" /></a>
-</div>
-<div class="main">
-<h2>Mercurial Repositories</h2>
-
-<table class="bigtable">
- <tr>
- <th><a href="?sort=name">Name</a></th>
- <th><a href="?sort=description">Description</a></th>
- <th><a href="?sort=contact">Contact</a></th>
- <th><a href="?sort=lastchange">Last modified</a></th>
- <th> </th>
- </tr>
-
-<tr class="parity0">
-<td><a href="/t/a/?style=paper">t/a</a></td>
-<td>unknown</td>
-<td>Foo Bar <foo.bar@example.com></td>
-<td class="age">seconds ago</td>
-<td class="indexlinks"></td>
-</tr>
-
-<tr class="parity1">
-<td><a href="/b/?style=paper">b</a></td>
-<td>unknown</td>
-<td>Foo Bar <foo.bar@example.com></td>
-<td class="age">seconds ago</td>
-<td class="indexlinks"></td>
-</tr>
-
-<tr class="parity0">
-<td><a href="/coll/a/?style=paper">coll/a</a></td>
-<td>unknown</td>
-<td>Foo Bar <foo.bar@example.com></td>
-<td class="age">seconds ago</td>
-<td class="indexlinks"></td>
-</tr>
-
-<tr class="parity1">
-<td><a href="/coll/a/.hg/patches/?style=paper">coll/a/.hg/patches</a></td>
-<td>unknown</td>
-<td>Foo Bar <foo.bar@example.com></td>
-<td class="age">seconds ago</td>
-<td class="indexlinks"></td>
-</tr>
-
-<tr class="parity0">
-<td><a href="/coll/b/?style=paper">coll/b</a></td>
-<td>unknown</td>
-<td>Foo Bar <foo.bar@example.com></td>
-<td class="age">seconds ago</td>
-<td class="indexlinks"></td>
-</tr>
-
-<tr class="parity1">
-<td><a href="/coll/c/?style=paper">coll/c</a></td>
-<td>unknown</td>
-<td>Foo Bar <foo.bar@example.com></td>
-<td class="age">seconds ago</td>
-<td class="indexlinks"></td>
-</tr>
-
-<tr class="parity0">
-<td><a href="/rcoll/a/?style=paper">rcoll/a</a></td>
-<td>unknown</td>
-<td>Foo Bar <foo.bar@example.com></td>
-<td class="age">seconds ago</td>
-<td class="indexlinks"></td>
-</tr>
-
-<tr class="parity1">
-<td><a href="/rcoll/a/.hg/patches/?style=paper">rcoll/a/.hg/patches</a></td>
-<td>unknown</td>
-<td>Foo Bar <foo.bar@example.com></td>
-<td class="age">seconds ago</td>
-<td class="indexlinks"></td>
-</tr>
-
-<tr class="parity0">
-<td><a href="/rcoll/b/?style=paper">rcoll/b</a></td>
-<td>unknown</td>
-<td>Foo Bar <foo.bar@example.com></td>
-<td class="age">seconds ago</td>
-<td class="indexlinks"></td>
-</tr>
-
-<tr class="parity1">
-<td><a href="/rcoll/b/d/?style=paper">rcoll/b/d</a></td>
-<td>unknown</td>
-<td>Foo Bar <foo.bar@example.com></td>
-<td class="age">seconds ago</td>
-<td class="indexlinks"></td>
-</tr>
-
-<tr class="parity0">
-<td><a href="/rcoll/c/?style=paper">rcoll/c</a></td>
-<td>unknown</td>
-<td>Foo Bar <foo.bar@example.com></td>
-<td class="age">seconds ago</td>
-<td class="indexlinks"></td>
-</tr>
-
-<tr class="parity1">
-<td><a href="/star/webdir/a/?style=paper">star/webdir/a</a></td>
-<td>unknown</td>
-<td>Foo Bar <foo.bar@example.com></td>
-<td class="age">seconds ago</td>
-<td class="indexlinks"></td>
-</tr>
-
-<tr class="parity0">
-<td><a href="/star/webdir/a/.hg/patches/?style=paper">star/webdir/a/.hg/patches</a></td>
-<td>unknown</td>
-<td>Foo Bar <foo.bar@example.com></td>
-<td class="age">seconds ago</td>
-<td class="indexlinks"></td>
-</tr>
-
-<tr class="parity1">
-<td><a href="/star/webdir/b/?style=paper">star/webdir/b</a></td>
-<td>unknown</td>
-<td>Foo Bar <foo.bar@example.com></td>
-<td class="age">seconds ago</td>
-<td class="indexlinks"></td>
-</tr>
-
-<tr class="parity0">
-<td><a href="/star/webdir/c/?style=paper">star/webdir/c</a></td>
-<td>unknown</td>
-<td>Foo Bar <foo.bar@example.com></td>
-<td class="age">seconds ago</td>
-<td class="indexlinks"></td>
-</tr>
-
-<tr class="parity1">
-<td><a href="/starstar/webdir/a/?style=paper">starstar/webdir/a</a></td>
-<td>unknown</td>
-<td>Foo Bar <foo.bar@example.com></td>
-<td class="age">seconds ago</td>
-<td class="indexlinks"></td>
-</tr>
-
-<tr class="parity0">
-<td><a href="/starstar/webdir/a/.hg/patches/?style=paper">starstar/webdir/a/.hg/patches</a></td>
-<td>unknown</td>
-<td>Foo Bar <foo.bar@example.com></td>
-<td class="age">seconds ago</td>
-<td class="indexlinks"></td>
-</tr>
-
-<tr class="parity1">
-<td><a href="/starstar/webdir/b/?style=paper">starstar/webdir/b</a></td>
-<td>unknown</td>
-<td>Foo Bar <foo.bar@example.com></td>
-<td class="age">seconds ago</td>
-<td class="indexlinks"></td>
-</tr>
-
-<tr class="parity0">
-<td><a href="/starstar/webdir/b/d/?style=paper">starstar/webdir/b/d</a></td>
-<td>unknown</td>
-<td>Foo Bar <foo.bar@example.com></td>
-<td class="age">seconds ago</td>
-<td class="indexlinks"></td>
-</tr>
-
-<tr class="parity1">
-<td><a href="/starstar/webdir/c/?style=paper">starstar/webdir/c</a></td>
-<td>unknown</td>
-<td>Foo Bar <foo.bar@example.com></td>
-<td class="age">seconds ago</td>
-<td class="indexlinks"></td>
-</tr>
-
-</table>
-</div>
-</div>
-
-
-</body>
-</html>
-
-200 Script output follows
-
-
-/t/a/
-
-200 Script output follows
-
-
-/t/a/
-
-200 Script output follows
-
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
-<head>
-<link rel="icon" href="/static/hgicon.png" type="image/png" />
-<meta name="robots" content="index, nofollow" />
-<link rel="stylesheet" href="/static/style-paper.css" type="text/css" />
-
-<title>Mercurial repositories index</title>
-</head>
-<body>
-
-<div class="container">
-<div class="menu">
-<a href="http://mercurial.selenic.com/">
-<img src="/static/hglogo.png" width=75 height=90 border=0 alt="mercurial" /></a>
-</div>
-<div class="main">
-<h2>Mercurial Repositories</h2>
-
-<table class="bigtable">
- <tr>
- <th><a href="?sort=name">Name</a></th>
- <th><a href="?sort=description">Description</a></th>
- <th><a href="?sort=contact">Contact</a></th>
- <th><a href="?sort=lastchange">Last modified</a></th>
- <th> </th>
- </tr>
-
-<tr class="parity0">
-<td><a href="/t/a/?style=paper">a</a></td>
-<td>unknown</td>
-<td>Foo Bar <foo.bar@example.com></td>
-<td class="age">seconds ago</td>
-<td class="indexlinks"></td>
-</tr>
-
-</table>
-</div>
-</div>
-
-
-</body>
-</html>
-
-200 Script output follows
-
-<?xml version="1.0" encoding="ascii"?>
-<feed xmlns="http://127.0.0.1/2005/Atom">
- <!-- Changelog -->
- <id>http://127.0.0.1/t/a/</id>
- <link rel="self" href="http://127.0.0.1/t/a/atom-log"/>
- <link rel="alternate" href="http://127.0.0.1/t/a/"/>
- <title>t/a Changelog</title>
- <updated>1970-01-01T00:00:01+00:00</updated>
-
- <entry>
- <title>a</title>
- <id>http://127.0.0.1/t/a/#changeset-8580ff50825a50c8f716709acdf8de0deddcd6ab</id>
- <link href="http://127.0.0.1/t/a/rev/8580ff50825a"/>
- <author>
- <name>test</name>
- <email>test</email>
- </author>
- <updated>1970-01-01T00:00:01+00:00</updated>
- <published>1970-01-01T00:00:01+00:00</published>
- <content type="xhtml">
- <div xmlns="http://127.0.0.1/1999/xhtml">
- <pre xml:space="preserve">a</pre>
- </div>
- </content>
- </entry>
-
-</feed>
-200 Script output follows
-
-<?xml version="1.0" encoding="ascii"?>
-<feed xmlns="http://127.0.0.1/2005/Atom">
- <!-- Changelog -->
- <id>http://127.0.0.1/t/a/</id>
- <link rel="self" href="http://127.0.0.1/t/a/atom-log"/>
- <link rel="alternate" href="http://127.0.0.1/t/a/"/>
- <title>t/a Changelog</title>
- <updated>1970-01-01T00:00:01+00:00</updated>
-
- <entry>
- <title>a</title>
- <id>http://127.0.0.1/t/a/#changeset-8580ff50825a50c8f716709acdf8de0deddcd6ab</id>
- <link href="http://127.0.0.1/t/a/rev/8580ff50825a"/>
- <author>
- <name>test</name>
- <email>test</email>
- </author>
- <updated>1970-01-01T00:00:01+00:00</updated>
- <published>1970-01-01T00:00:01+00:00</published>
- <content type="xhtml">
- <div xmlns="http://127.0.0.1/1999/xhtml">
- <pre xml:space="preserve">a</pre>
- </div>
- </content>
- </entry>
-
-</feed>
-200 Script output follows
-
-a
-200 Script output follows
-
-
-/coll/a/
-/coll/a/.hg/patches/
-/coll/b/
-/coll/c/
-
-200 Script output follows
-
-a
-200 Script output follows
-
-
-/rcoll/a/
-/rcoll/a/.hg/patches/
-/rcoll/b/
-/rcoll/b/d/
-/rcoll/c/
-
-200 Script output follows
-
-d
-% test descend = False
-200 Script output follows
-
-
-/c/
-
-200 Script output follows
-
-
-/t/a/
-/t/b/
-
-% test inexistent and inaccessible repo should be ignored silently
-200 Script output follows
-
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
-<head>
-<link rel="icon" href="/static/hgicon.png" type="image/png" />
-<meta name="robots" content="index, nofollow" />
-<link rel="stylesheet" href="/static/style-paper.css" type="text/css" />
-
-<title>Mercurial repositories index</title>
-</head>
-<body>
-
-<div class="container">
-<div class="menu">
-<a href="http://mercurial.selenic.com/">
-<img src="/static/hglogo.png" width=75 height=90 border=0 alt="mercurial" /></a>
-</div>
-<div class="main">
-<h2>Mercurial Repositories</h2>
-
-<table class="bigtable">
- <tr>
- <th><a href="?sort=name">Name</a></th>
- <th><a href="?sort=description">Description</a></th>
- <th><a href="?sort=contact">Contact</a></th>
- <th><a href="?sort=lastchange">Last modified</a></th>
- <th> </th>
- </tr>
-
-</table>
-</div>
-</div>
-
-
-</body>
-</html>
-
-% collections: should succeed
-200 Script output follows
-
-
-/a/
-/a/.hg/patches/
-/b/
-/c/
-
-200 Script output follows
-
-a
-200 Script output follows
-
-b
-200 Script output follows
-
-c
-% atom-log with basedir /
- <link rel="self" href="http://example.com:8080/a/atom-log"/>
- <link rel="alternate" href="http://example.com:8080/a/"/>
- <link href="http://example.com:8080/a/rev/8580ff50825a"/>
-% rss-log with basedir /
- <guid isPermaLink="true">http://example.com:8080/a/rev/8580ff50825a</guid>
-% atom-log with basedir /foo/
- <link rel="self" href="http://example.com:8080/foo/a/atom-log"/>
- <link rel="alternate" href="http://example.com:8080/foo/a/"/>
- <link href="http://example.com:8080/foo/a/rev/8580ff50825a"/>
-% rss-log with basedir /foo/
- <guid isPermaLink="true">http://example.com:8080/foo/a/rev/8580ff50825a</guid>
-% paths errors 1
-% paths errors 2
-% paths errors 3
-% collections errors
-% collections errors 2
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/test-hgwebdir.t Sun Sep 26 13:41:32 2010 -0500
@@ -0,0 +1,648 @@
+Tests some basic hgwebdir functionality. Tests setting up paths and
+collection, different forms of 404s and the subdirectory support.
+
+ $ mkdir webdir
+ $ cd webdir
+ $ hg init a
+ $ echo a > a/a
+ $ hg --cwd a ci -Ama -d'1 0'
+ adding a
+
+create a mercurial queue repository
+
+ $ hg --cwd a qinit --config extensions.hgext.mq= -c
+ $ hg init b
+ $ echo b > b/b
+ $ hg --cwd b ci -Amb -d'2 0'
+ adding b
+
+create a nested repository
+
+ $ cd b
+ $ hg init d
+ $ echo d > d/d
+ $ hg --cwd d ci -Amd -d'3 0'
+ adding d
+ $ cd ..
+ $ hg init c
+ $ echo c > c/c
+ $ hg --cwd c ci -Amc -d'3 0'
+ adding c
+
+create repository without .hg/store
+
+ $ hg init nostore
+ $ rm -R nostore/.hg/store
+ $ root=`pwd`
+ $ cd ..
+ $ cat > paths.conf <<EOF
+ > [paths]
+ > a=$root/a
+ > b=$root/b
+ > EOF
+ $ hg serve -p $HGPORT -d --pid-file=hg.pid --webdir-conf paths.conf \
+ > -A access-paths.log -E error-paths-1.log
+ $ cat hg.pid >> $DAEMON_PIDS
+
+should give a 404 - file does not exist
+
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT '/a/file/tip/bork?style=raw'
+ 404 Not Found
+
+
+ error: bork@8580ff50825a: not found in manifest
+ [1]
+
+should succeed
+
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT '/?style=raw'
+ 200 Script output follows
+
+
+ /a/
+ /b/
+
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT '/a/file/tip/a?style=raw'
+ 200 Script output follows
+
+ a
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT '/b/file/tip/b?style=raw'
+ 200 Script output follows
+
+ b
+
+should give a 404 - repo is not published
+
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT '/c/file/tip/c?style=raw'
+ 404 Not Found
+
+
+ error: repository c not found
+ [1]
+
+atom-log without basedir
+
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT '/a/atom-log' | grep '<link'
+ <link rel="self" href="http://*/a/atom-log"/> (glob)
+ <link rel="alternate" href="http://*/a/"/> (glob)
+ <link href="http://*/a/rev/8580ff50825a"/> (glob)
+
+rss-log without basedir
+
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT '/a/rss-log' | grep '<guid'
+ <guid isPermaLink="true">http://*/a/rev/8580ff50825a</guid> (glob)
+ $ cat > paths.conf <<EOF
+ > [paths]
+ > t/a/=$root/a
+ > b=$root/b
+ > coll=$root/*
+ > rcoll=$root/**
+ > star=*
+ > starstar=**
+ > EOF
+ $ hg serve -p $HGPORT1 -d --pid-file=hg.pid --webdir-conf paths.conf \
+ > -A access-paths.log -E error-paths-2.log
+ $ cat hg.pid >> $DAEMON_PIDS
+
+should succeed, slashy names
+
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/?style=raw'
+ 200 Script output follows
+
+
+ /t/a/
+ /b/
+ /coll/a/
+ /coll/a/.hg/patches/
+ /coll/b/
+ /coll/c/
+ /rcoll/a/
+ /rcoll/a/.hg/patches/
+ /rcoll/b/
+ /rcoll/b/d/
+ /rcoll/c/
+ /star/webdir/a/
+ /star/webdir/a/.hg/patches/
+ /star/webdir/b/
+ /star/webdir/c/
+ /starstar/webdir/a/
+ /starstar/webdir/a/.hg/patches/
+ /starstar/webdir/b/
+ /starstar/webdir/b/d/
+ /starstar/webdir/c/
+
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/?style=paper'
+ 200 Script output follows
+
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
+ <head>
+ <link rel="icon" href="/static/hgicon.png" type="image/png" />
+ <meta name="robots" content="index, nofollow" />
+ <link rel="stylesheet" href="/static/style-paper.css" type="text/css" />
+
+ <title>Mercurial repositories index</title>
+ </head>
+ <body>
+
+ <div class="container">
+ <div class="menu">
+ <a href="http://mercurial.selenic.com/">
+ <img src="/static/hglogo.png" width=75 height=90 border=0 alt="mercurial" /></a>
+ </div>
+ <div class="main">
+ <h2>Mercurial Repositories</h2>
+
+ <table class="bigtable">
+ <tr>
+ <th><a href="?sort=name">Name</a></th>
+ <th><a href="?sort=description">Description</a></th>
+ <th><a href="?sort=contact">Contact</a></th>
+ <th><a href="?sort=lastchange">Last modified</a></th>
+ <th> </th>
+ </tr>
+
+ <tr class="parity0">
+ <td><a href="/t/a/?style=paper">t/a</a></td>
+ <td>unknown</td>
+ <td>Foo Bar <foo.bar@example.com></td>
+ <td class="age">* ago</td> (glob)
+ <td class="indexlinks"></td>
+ </tr>
+
+ <tr class="parity1">
+ <td><a href="/b/?style=paper">b</a></td>
+ <td>unknown</td>
+ <td>Foo Bar <foo.bar@example.com></td>
+ <td class="age">* ago</td> (glob)
+ <td class="indexlinks"></td>
+ </tr>
+
+ <tr class="parity0">
+ <td><a href="/coll/a/?style=paper">coll/a</a></td>
+ <td>unknown</td>
+ <td>Foo Bar <foo.bar@example.com></td>
+ <td class="age">* ago</td> (glob)
+ <td class="indexlinks"></td>
+ </tr>
+
+ <tr class="parity1">
+ <td><a href="/coll/a/.hg/patches/?style=paper">coll/a/.hg/patches</a></td>
+ <td>unknown</td>
+ <td>Foo Bar <foo.bar@example.com></td>
+ <td class="age">* ago</td> (glob)
+ <td class="indexlinks"></td>
+ </tr>
+
+ <tr class="parity0">
+ <td><a href="/coll/b/?style=paper">coll/b</a></td>
+ <td>unknown</td>
+ <td>Foo Bar <foo.bar@example.com></td>
+ <td class="age">* ago</td> (glob)
+ <td class="indexlinks"></td>
+ </tr>
+
+ <tr class="parity1">
+ <td><a href="/coll/c/?style=paper">coll/c</a></td>
+ <td>unknown</td>
+ <td>Foo Bar <foo.bar@example.com></td>
+ <td class="age">* ago</td> (glob)
+ <td class="indexlinks"></td>
+ </tr>
+
+ <tr class="parity0">
+ <td><a href="/rcoll/a/?style=paper">rcoll/a</a></td>
+ <td>unknown</td>
+ <td>Foo Bar <foo.bar@example.com></td>
+ <td class="age">* ago</td> (glob)
+ <td class="indexlinks"></td>
+ </tr>
+
+ <tr class="parity1">
+ <td><a href="/rcoll/a/.hg/patches/?style=paper">rcoll/a/.hg/patches</a></td>
+ <td>unknown</td>
+ <td>Foo Bar <foo.bar@example.com></td>
+ <td class="age">* ago</td> (glob)
+ <td class="indexlinks"></td>
+ </tr>
+
+ <tr class="parity0">
+ <td><a href="/rcoll/b/?style=paper">rcoll/b</a></td>
+ <td>unknown</td>
+ <td>Foo Bar <foo.bar@example.com></td>
+ <td class="age">* ago</td> (glob)
+ <td class="indexlinks"></td>
+ </tr>
+
+ <tr class="parity1">
+ <td><a href="/rcoll/b/d/?style=paper">rcoll/b/d</a></td>
+ <td>unknown</td>
+ <td>Foo Bar <foo.bar@example.com></td>
+ <td class="age">* ago</td> (glob)
+ <td class="indexlinks"></td>
+ </tr>
+
+ <tr class="parity0">
+ <td><a href="/rcoll/c/?style=paper">rcoll/c</a></td>
+ <td>unknown</td>
+ <td>Foo Bar <foo.bar@example.com></td>
+ <td class="age">* ago</td> (glob)
+ <td class="indexlinks"></td>
+ </tr>
+
+ <tr class="parity1">
+ <td><a href="/star/webdir/a/?style=paper">star/webdir/a</a></td>
+ <td>unknown</td>
+ <td>Foo Bar <foo.bar@example.com></td>
+ <td class="age">* ago</td> (glob)
+ <td class="indexlinks"></td>
+ </tr>
+
+ <tr class="parity0">
+ <td><a href="/star/webdir/a/.hg/patches/?style=paper">star/webdir/a/.hg/patches</a></td>
+ <td>unknown</td>
+ <td>Foo Bar <foo.bar@example.com></td>
+ <td class="age">* ago</td> (glob)
+ <td class="indexlinks"></td>
+ </tr>
+
+ <tr class="parity1">
+ <td><a href="/star/webdir/b/?style=paper">star/webdir/b</a></td>
+ <td>unknown</td>
+ <td>Foo Bar <foo.bar@example.com></td>
+ <td class="age">* ago</td> (glob)
+ <td class="indexlinks"></td>
+ </tr>
+
+ <tr class="parity0">
+ <td><a href="/star/webdir/c/?style=paper">star/webdir/c</a></td>
+ <td>unknown</td>
+ <td>Foo Bar <foo.bar@example.com></td>
+ <td class="age">* ago</td> (glob)
+ <td class="indexlinks"></td>
+ </tr>
+
+ <tr class="parity1">
+ <td><a href="/starstar/webdir/a/?style=paper">starstar/webdir/a</a></td>
+ <td>unknown</td>
+ <td>Foo Bar <foo.bar@example.com></td>
+ <td class="age">* ago</td> (glob)
+ <td class="indexlinks"></td>
+ </tr>
+
+ <tr class="parity0">
+ <td><a href="/starstar/webdir/a/.hg/patches/?style=paper">starstar/webdir/a/.hg/patches</a></td>
+ <td>unknown</td>
+ <td>Foo Bar <foo.bar@example.com></td>
+ <td class="age">* ago</td> (glob)
+ <td class="indexlinks"></td>
+ </tr>
+
+ <tr class="parity1">
+ <td><a href="/starstar/webdir/b/?style=paper">starstar/webdir/b</a></td>
+ <td>unknown</td>
+ <td>Foo Bar <foo.bar@example.com></td>
+ <td class="age">* ago</td> (glob)
+ <td class="indexlinks"></td>
+ </tr>
+
+ <tr class="parity0">
+ <td><a href="/starstar/webdir/b/d/?style=paper">starstar/webdir/b/d</a></td>
+ <td>unknown</td>
+ <td>Foo Bar <foo.bar@example.com></td>
+ <td class="age">* ago</td> (glob)
+ <td class="indexlinks"></td>
+ </tr>
+
+ <tr class="parity1">
+ <td><a href="/starstar/webdir/c/?style=paper">starstar/webdir/c</a></td>
+ <td>unknown</td>
+ <td>Foo Bar <foo.bar@example.com></td>
+ <td class="age">* ago</td> (glob)
+ <td class="indexlinks"></td>
+ </tr>
+
+ </table>
+ </div>
+ </div>
+
+
+ </body>
+ </html>
+
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/t?style=raw'
+ 200 Script output follows
+
+
+ /t/a/
+
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/t/?style=raw'
+ 200 Script output follows
+
+
+ /t/a/
+
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/t/?style=paper'
+ 200 Script output follows
+
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
+ <head>
+ <link rel="icon" href="/static/hgicon.png" type="image/png" />
+ <meta name="robots" content="index, nofollow" />
+ <link rel="stylesheet" href="/static/style-paper.css" type="text/css" />
+
+ <title>Mercurial repositories index</title>
+ </head>
+ <body>
+
+ <div class="container">
+ <div class="menu">
+ <a href="http://mercurial.selenic.com/">
+ <img src="/static/hglogo.png" width=75 height=90 border=0 alt="mercurial" /></a>
+ </div>
+ <div class="main">
+ <h2>Mercurial Repositories</h2>
+
+ <table class="bigtable">
+ <tr>
+ <th><a href="?sort=name">Name</a></th>
+ <th><a href="?sort=description">Description</a></th>
+ <th><a href="?sort=contact">Contact</a></th>
+ <th><a href="?sort=lastchange">Last modified</a></th>
+ <th> </th>
+ </tr>
+
+ <tr class="parity0">
+ <td><a href="/t/a/?style=paper">a</a></td>
+ <td>unknown</td>
+ <td>Foo Bar <foo.bar@example.com></td>
+ <td class="age">* ago</td> (glob)
+ <td class="indexlinks"></td>
+ </tr>
+
+ </table>
+ </div>
+ </div>
+
+
+ </body>
+ </html>
+
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/t/a?style=atom'
+ 200 Script output follows
+
+ <?xml version="1.0" encoding="ascii"?>
+ <feed xmlns="http://www.w3.org/2005/Atom">
+ <!-- Changelog -->
+ <id>http://*/t/a/</id> (glob)
+ <link rel="self" href="http://*/t/a/atom-log"/> (glob)
+ <link rel="alternate" href="http://*/t/a/"/> (glob)
+ <title>t/a Changelog</title>
+ <updated>1970-01-01T00:00:01+00:00</updated>
+
+ <entry>
+ <title>a</title>
+ <id>http://*/t/a/#changeset-8580ff50825a50c8f716709acdf8de0deddcd6ab</id> (glob)
+ <link href="http://*/t/a/rev/8580ff50825a"/> (glob)
+ <author>
+ <name>test</name>
+ <email>test</email>
+ </author>
+ <updated>1970-01-01T00:00:01+00:00</updated>
+ <published>1970-01-01T00:00:01+00:00</published>
+ <content type="xhtml">
+ <div xmlns="http://www.w3.org/1999/xhtml">
+ <pre xml:space="preserve">a</pre>
+ </div>
+ </content>
+ </entry>
+
+ </feed>
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/t/a/?style=atom'
+ 200 Script output follows
+
+ <?xml version="1.0" encoding="ascii"?>
+ <feed xmlns="http://www.w3.org/2005/Atom">
+ <!-- Changelog -->
+ <id>http://*/t/a/</id> (glob)
+ <link rel="self" href="http://*/t/a/atom-log"/> (glob)
+ <link rel="alternate" href="http://*/t/a/"/> (glob)
+ <title>t/a Changelog</title>
+ <updated>1970-01-01T00:00:01+00:00</updated>
+
+ <entry>
+ <title>a</title>
+ <id>http://*/t/a/#changeset-8580ff50825a50c8f716709acdf8de0deddcd6ab</id> (glob)
+ <link href="http://*/t/a/rev/8580ff50825a"/> (glob)
+ <author>
+ <name>test</name>
+ <email>test</email>
+ </author>
+ <updated>1970-01-01T00:00:01+00:00</updated>
+ <published>1970-01-01T00:00:01+00:00</published>
+ <content type="xhtml">
+ <div xmlns="http://www.w3.org/1999/xhtml">
+ <pre xml:space="preserve">a</pre>
+ </div>
+ </content>
+ </entry>
+
+ </feed>
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/t/a/file/tip/a?style=raw'
+ 200 Script output follows
+
+ a
+
+Test [paths] '*' extension
+
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/coll/?style=raw'
+ 200 Script output follows
+
+
+ /coll/a/
+ /coll/a/.hg/patches/
+ /coll/b/
+ /coll/c/
+
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/coll/a/file/tip/a?style=raw'
+ 200 Script output follows
+
+ a
+
+est [paths] '**' extension
+
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/rcoll/?style=raw'
+ 200 Script output follows
+
+
+ /rcoll/a/
+ /rcoll/a/.hg/patches/
+ /rcoll/b/
+ /rcoll/b/d/
+ /rcoll/c/
+
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/rcoll/b/d/file/tip/d?style=raw'
+ 200 Script output follows
+
+ d
+ $ "$TESTDIR/killdaemons.py"
+ $ cat > paths.conf <<EOF
+ > [paths]
+ > t/a = $root/a
+ > t/b = $root/b
+ > c = $root/c
+ > [web]
+ > descend=false
+ > EOF
+ $ hg serve -p $HGPORT1 -d --pid-file=hg.pid --webdir-conf paths.conf \
+ > -A access-paths.log -E error-paths-3.log
+ $ cat hg.pid >> $DAEMON_PIDS
+
+test descend = False
+
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/?style=raw'
+ 200 Script output follows
+
+
+ /c/
+
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/t/?style=raw'
+ 200 Script output follows
+
+
+ /t/a/
+ /t/b/
+
+ $ "$TESTDIR/killdaemons.py"
+ $ cat > paths.conf <<EOF
+ > [paths]
+ > nostore = $root/nostore
+ > inexistent = $root/inexistent
+ > EOF
+ $ hg serve -p $HGPORT1 -d --pid-file=hg.pid --webdir-conf paths.conf \
+ > -A access-paths.log -E error-paths-4.log
+ $ cat hg.pid >> $DAEMON_PIDS
+
+test inexistent and inaccessible repo should be ignored silently
+
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT1 '/'
+ 200 Script output follows
+
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
+ <head>
+ <link rel="icon" href="/static/hgicon.png" type="image/png" />
+ <meta name="robots" content="index, nofollow" />
+ <link rel="stylesheet" href="/static/style-paper.css" type="text/css" />
+
+ <title>Mercurial repositories index</title>
+ </head>
+ <body>
+
+ <div class="container">
+ <div class="menu">
+ <a href="http://mercurial.selenic.com/">
+ <img src="/static/hglogo.png" width=75 height=90 border=0 alt="mercurial" /></a>
+ </div>
+ <div class="main">
+ <h2>Mercurial Repositories</h2>
+
+ <table class="bigtable">
+ <tr>
+ <th><a href="?sort=name">Name</a></th>
+ <th><a href="?sort=description">Description</a></th>
+ <th><a href="?sort=contact">Contact</a></th>
+ <th><a href="?sort=lastchange">Last modified</a></th>
+ <th> </th>
+ </tr>
+
+ </table>
+ </div>
+ </div>
+
+
+ </body>
+ </html>
+
+ $ cat > collections.conf <<EOF
+ > [collections]
+ > $root=$root
+ > EOF
+ $ hg serve --config web.baseurl=http://hg.example.com:8080/ -p $HGPORT2 -d \
+ > --pid-file=hg.pid --webdir-conf collections.conf \
+ > -A access-collections.log -E error-collections.log
+ $ cat hg.pid >> $DAEMON_PIDS
+
+collections: should succeed
+
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT2 '/?style=raw'
+ 200 Script output follows
+
+
+ /a/
+ /a/.hg/patches/
+ /b/
+ /c/
+
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT2 '/a/file/tip/a?style=raw'
+ 200 Script output follows
+
+ a
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT2 '/b/file/tip/b?style=raw'
+ 200 Script output follows
+
+ b
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT2 '/c/file/tip/c?style=raw'
+ 200 Script output follows
+
+ c
+
+atom-log with basedir /
+
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT2 '/a/atom-log' | grep '<link'
+ <link rel="self" href="http://hg.example.com:8080/a/atom-log"/>
+ <link rel="alternate" href="http://hg.example.com:8080/a/"/>
+ <link href="http://hg.example.com:8080/a/rev/8580ff50825a"/>
+
+rss-log with basedir /
+
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT2 '/a/rss-log' | grep '<guid'
+ <guid isPermaLink="true">http://hg.example.com:8080/a/rev/8580ff50825a</guid>
+ $ "$TESTDIR/killdaemons.py"
+ $ hg serve --config web.baseurl=http://hg.example.com:8080/foo/ -p $HGPORT2 -d \
+ > --pid-file=hg.pid --webdir-conf collections.conf \
+ > -A access-collections-2.log -E error-collections-2.log
+ $ cat hg.pid >> $DAEMON_PIDS
+
+atom-log with basedir /foo/
+
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT2 '/a/atom-log' | grep '<link'
+ <link rel="self" href="http://hg.example.com:8080/foo/a/atom-log"/>
+ <link rel="alternate" href="http://hg.example.com:8080/foo/a/"/>
+ <link href="http://hg.example.com:8080/foo/a/rev/8580ff50825a"/>
+
+rss-log with basedir /foo/
+
+ $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT2 '/a/rss-log' | grep '<guid'
+ <guid isPermaLink="true">http://hg.example.com:8080/foo/a/rev/8580ff50825a</guid>
+
+paths errors 1
+
+ $ cat error-paths-1.log
+
+paths errors 2
+
+ $ cat error-paths-2.log
+
+paths errors 3
+
+ $ cat error-paths-3.log
+
+collections errors
+
+ $ cat error-collections.log
+
+collections errors 2
+
+ $ cat error-collections-2.log