annotate tests/test-static-http @ 2328:f789602ba840

hgweb.manifest: revno of manifest and changelog aren't always the same In the v4l-dvb repo, the manifest revno and the changelog revno are not in sync. This happened because the same patch was applied to the same revision in two different branches, resulting in the same manifest text, with the same parents and so the first revision was reused. Since hgweb.manifest was assuming the revnos of the manifest and of the changelog were always the same, clicking on manifest -> bz2 in the v4l-dvb site would download the wrong revision. Use the linkrev to go from manifest revision to changelog revision. This still won't be perfect since the page will still talk about "manifest for changeset XYZ", where XYZ was the first changeset to have this manifest, which is not necessarily the same changeset that the user clicked to get to this page - but at least the contents will be the same.
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
date Sat, 20 May 2006 15:34:19 -0300
parents 2a676ad52c22
children d90a9d7c7d4d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1111
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
1 #!/bin/sh
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
2
1935
d32c442571f2 Removed obsolete workaround for error message in tests/test-static-http.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1933
diff changeset
3 http_proxy= hg clone old-http://localhost:20059/ copy
1111
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
4 echo $?
1962
2a676ad52c22 tests: more portability fix for the old systems
TK Soh <teekaysoh@yahoo.com>
parents: 1935
diff changeset
5 ls copy 2>/dev/null || echo copy: No such file or directory
1111
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
6
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
7 # This server doesn't do range requests so it's basically only good for
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
8 # one pull
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
9 cat > dumb.py <<EOF
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
10 import BaseHTTPServer, SimpleHTTPServer, signal
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
11
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
12 def run(server_class=BaseHTTPServer.HTTPServer,
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
13 handler_class=SimpleHTTPServer.SimpleHTTPRequestHandler):
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
14 server_address = ('localhost', 20059)
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
15 httpd = server_class(server_address, handler_class)
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
16 httpd.serve_forever()
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
17
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
18 signal.signal(signal.SIGTERM, lambda x: sys.exit(0))
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
19 run()
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
20 EOF
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
21
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
22 python dumb.py 2>/dev/null &
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
23
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
24 mkdir remote
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
25 cd remote
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
26 hg init
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
27 echo foo > bar
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
28 hg add bar
1933
7544700fd931 Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1923
diff changeset
29 hg commit -m"test" -d "1000000 0"
1111
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
30 hg tip
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
31
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
32 cd ..
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
33
1128
8bf19f96b97a Fixed test-static-http with http_proxy variable set.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1111
diff changeset
34 http_proxy= hg clone old-http://localhost:20059/remote local
1111
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
35
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
36 cd local
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
37 hg verify
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
38 cat bar
1502
1170fef58071 Fixed test-static-http with http_proxy variable set again.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1128
diff changeset
39 http_proxy= hg pull
1111
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
40
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
41 kill $!