Mercurial > hg
annotate tests/test-hgweb-no-request-uri.t @ 12684:8348599c68d7
keyword: fix weeding of expansion candidates when recording
Rearrange tests to check this, i.e. that there are changes
in other files, not only the recorded one.
author | Christian Ebert <blacktrash@gmx.net> |
---|---|
date | Sun, 10 Oct 2010 00:30:09 +0100 |
parents | d08bb64888bc |
children | 4c4aeaab2339 |
rev | line source |
---|---|
12439
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
1 This tests if hgweb and hgwebdir still work if the REQUEST_URI variable is |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
2 no longer passed with the request. Instead, SCRIPT_NAME and PATH_INFO |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
3 should be used from d74fc8dec2b4 onward to route the request. |
5579
e15f7db0f0ee
Use SCRIPT_NAME and PATH_INFO instead of REQUEST_URI. This is required by WSGI (fixes issue846).
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
diff
changeset
|
4 |
12439
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
5 $ mkdir repo |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
6 $ cd repo |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
7 $ hg init |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
8 $ echo foo > bar |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
9 $ hg add bar |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
10 $ hg commit -m "test" |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
11 $ hg tip |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
12 changeset: 0:61c9426e69fe |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
13 tag: tip |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
14 user: test |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
15 date: Thu Jan 01 00:00:00 1970 +0000 |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
16 summary: test |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
17 |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
18 $ cat > request.py <<EOF |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
19 > from mercurial.hgweb import hgweb, hgwebdir |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
20 > from StringIO import StringIO |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
21 > import os, sys |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
22 > |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
23 > errors = StringIO() |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
24 > input = StringIO() |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
25 > |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
26 > def startrsp(status, headers): |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
27 > print '---- STATUS' |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
28 > print status |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
29 > print '---- HEADERS' |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
30 > print [i for i in headers if i[0] != 'ETag'] |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
31 > print '---- DATA' |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
32 > return output.write |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
33 > |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
34 > env = { |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
35 > 'wsgi.version': (1, 0), |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
36 > 'wsgi.url_scheme': 'http', |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
37 > 'wsgi.errors': errors, |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
38 > 'wsgi.input': input, |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
39 > 'wsgi.multithread': False, |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
40 > 'wsgi.multiprocess': False, |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
41 > 'wsgi.run_once': False, |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
42 > 'REQUEST_METHOD': 'GET', |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
43 > 'SCRIPT_NAME': '', |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
44 > 'SERVER_NAME': '127.0.0.1', |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
45 > 'SERVER_PORT': os.environ['HGPORT'], |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
46 > 'SERVER_PROTOCOL': 'HTTP/1.0' |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
47 > } |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
48 > |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
49 > def process(app): |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
50 > content = app(env, startrsp) |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
51 > sys.stdout.write(output.getvalue()) |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
52 > sys.stdout.write(''.join(content)) |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
53 > print '---- ERRORS' |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
54 > print errors.getvalue() |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
55 > |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
56 > |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
57 > output = StringIO() |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
58 > env['PATH_INFO'] = '/' |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
59 > env['QUERY_STRING'] = 'style=atom' |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
60 > process(hgweb('.', name = 'repo')) |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
61 > |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
62 > output = StringIO() |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
63 > env['PATH_INFO'] = '/file/tip/' |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
64 > env['QUERY_STRING'] = 'style=raw' |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
65 > process(hgweb('.', name = 'repo')) |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
66 > |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
67 > output = StringIO() |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
68 > env['PATH_INFO'] = '/' |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
69 > env['QUERY_STRING'] = 'style=raw' |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
70 > process(hgwebdir({'repo': '.'})) |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
71 > |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
72 > output = StringIO() |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
73 > env['PATH_INFO'] = '/repo/file/tip/' |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
74 > env['QUERY_STRING'] = 'style=raw' |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
75 > process(hgwebdir({'repo': '.'})) |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
76 > EOF |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
77 $ python request.py |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
78 ---- STATUS |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
79 200 Script output follows |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
80 ---- HEADERS |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
81 [('Content-Type', 'application/atom+xml; charset=ascii')] |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
82 ---- DATA |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
83 <?xml version="1.0" encoding="ascii"?> |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
84 <feed xmlns="http://www.w3.org/2005/Atom"> |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
85 <!-- Changelog --> |
12643
d08bb64888bc
tests: reintroduce ":$HGPORT" in test output
Mads Kiilerich <mads@kiilerich.com>
parents:
12439
diff
changeset
|
86 <id>http://127.0.0.1:$HGPORT/</id> |
d08bb64888bc
tests: reintroduce ":$HGPORT" in test output
Mads Kiilerich <mads@kiilerich.com>
parents:
12439
diff
changeset
|
87 <link rel="self" href="http://127.0.0.1:$HGPORT/atom-log"/> |
d08bb64888bc
tests: reintroduce ":$HGPORT" in test output
Mads Kiilerich <mads@kiilerich.com>
parents:
12439
diff
changeset
|
88 <link rel="alternate" href="http://127.0.0.1:$HGPORT/"/> |
12439
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
89 <title>repo Changelog</title> |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
90 <updated>1970-01-01T00:00:00+00:00</updated> |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
91 |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
92 <entry> |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
93 <title>test</title> |
12643
d08bb64888bc
tests: reintroduce ":$HGPORT" in test output
Mads Kiilerich <mads@kiilerich.com>
parents:
12439
diff
changeset
|
94 <id>http://127.0.0.1:$HGPORT/#changeset-61c9426e69fef294feed5e2bbfc97d39944a5b1c</id> |
d08bb64888bc
tests: reintroduce ":$HGPORT" in test output
Mads Kiilerich <mads@kiilerich.com>
parents:
12439
diff
changeset
|
95 <link href="http://127.0.0.1:$HGPORT/rev/61c9426e69fe"/> |
12439
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
96 <author> |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
97 <name>test</name> |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
98 <email>test</email> |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
99 </author> |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
100 <updated>1970-01-01T00:00:00+00:00</updated> |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
101 <published>1970-01-01T00:00:00+00:00</published> |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
102 <content type="xhtml"> |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
103 <div xmlns="http://www.w3.org/1999/xhtml"> |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
104 <pre xml:space="preserve">test</pre> |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
105 </div> |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
106 </content> |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
107 </entry> |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
108 |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
109 </feed> |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
110 ---- ERRORS |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
111 |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
112 ---- STATUS |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
113 200 Script output follows |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
114 ---- HEADERS |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
115 [('Content-Type', 'text/plain; charset=ascii')] |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
116 ---- DATA |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
117 |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
118 -rw-r--r-- 4 bar |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
119 |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
120 |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
121 ---- ERRORS |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
122 |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
123 ---- STATUS |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
124 200 Script output follows |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
125 ---- HEADERS |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
126 [('Content-Type', 'text/plain; charset=ascii')] |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
127 ---- DATA |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
128 |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
129 /repo/ |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
130 |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
131 ---- ERRORS |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
132 |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
133 ---- STATUS |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
134 200 Script output follows |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
135 ---- HEADERS |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
136 [('Content-Type', 'text/plain; charset=ascii')] |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
137 ---- DATA |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
138 |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
139 -rw-r--r-- 4 bar |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
140 |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
141 |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
142 ---- ERRORS |
31ea3ce83a92
tests: unify test-hgweb-no-request-uri
Matt Mackall <mpm@selenic.com>
parents:
12183
diff
changeset
|
143 |