bzr branch
http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
1185.1.18
by Robert Collins
Lalo Martins remotebranch patch |
1 |
# Copyright (C) 2005 by Canonical Ltd
|
1887.1.1
by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines, |
2 |
#
|
1185.1.18
by Robert Collins
Lalo Martins remotebranch patch |
3 |
# This program is free software; you can redistribute it and/or modify
|
4 |
# it under the terms of the GNU General Public License as published by
|
|
5 |
# the Free Software Foundation; either version 2 of the License, or
|
|
6 |
# (at your option) any later version.
|
|
1887.1.1
by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines, |
7 |
#
|
1185.1.18
by Robert Collins
Lalo Martins remotebranch patch |
8 |
# This program is distributed in the hope that it will be useful,
|
9 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
10 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
11 |
# GNU General Public License for more details.
|
|
1887.1.1
by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines, |
12 |
#
|
1185.1.18
by Robert Collins
Lalo Martins remotebranch patch |
13 |
# You should have received a copy of the GNU General Public License
|
14 |
# along with this program; if not, write to the Free Software
|
|
15 |
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
16 |
||
2004.1.25
by v.ladeuil+lp at free
Shuffle http related test code. Hopefully it ends up at the right place :) |
17 |
import errno |
18 |
import socket |
|
1530.1.14
by Robert Collins
Remove duplicate web server from HTTPTestUtil. |
19 |
|
1534.4.50
by Robert Collins
Got the bzrdir api straightened out, plenty of refactoring to use it pending, but the api is up and running. |
20 |
from bzrlib.tests import TestCaseWithTransport |
2004.1.25
by v.ladeuil+lp at free
Shuffle http related test code. Hopefully it ends up at the right place :) |
21 |
from bzrlib.tests.HttpServer import ( |
22 |
HttpServer, |
|
23 |
TestingHTTPRequestHandler, |
|
24 |
)
|
|
25 |
||
26 |
||
27 |
class WallRequestHandler(TestingHTTPRequestHandler): |
|
28 |
"""Whatever request comes in, close the connection""" |
|
29 |
||
30 |
def handle_one_request(self): |
|
31 |
"""Handle a single HTTP request, by abruptly closing the connection""" |
|
32 |
self.close_connection = 1 |
|
33 |
||
34 |
||
35 |
class BadStatusRequestHandler(TestingHTTPRequestHandler): |
|
36 |
"""Whatever request comes in, returns a bad status""" |
|
37 |
||
38 |
def parse_request(self): |
|
39 |
"""Fakes handling a single HTTP request, returns a bad status""" |
|
40 |
ignored = TestingHTTPRequestHandler.parse_request(self) |
|
41 |
try: |
|
42 |
self.send_response(0, "Bad status") |
|
43 |
self.end_headers() |
|
44 |
except socket.error, e: |
|
45 |
if (len(e.args) > 0) and (e.args[0] == errno.EPIPE): |
|
46 |
# We don't want to pollute the test reuslts with
|
|
47 |
# spurious server errors while test succeed. In
|
|
48 |
# our case, it may occur that the test have
|
|
49 |
# already read the 'Bad Status' and closed the
|
|
50 |
# socket while we are still trying to send some
|
|
51 |
# headers... So the test is ok but if we raise
|
|
52 |
# the exception the output is dirty. So we don't
|
|
53 |
# raise, but we close the connection, just to be
|
|
54 |
# safe :)
|
|
55 |
self.close_connection = 1 |
|
56 |
pass
|
|
57 |
else: |
|
58 |
raise
|
|
59 |
return False |
|
60 |
||
61 |
||
62 |
class InvalidStatusRequestHandler(TestingHTTPRequestHandler): |
|
63 |
"""Whatever request comes in, returns am invalid status""" |
|
64 |
||
65 |
def parse_request(self): |
|
66 |
"""Fakes handling a single HTTP request, returns a bad status""" |
|
67 |
ignored = TestingHTTPRequestHandler.parse_request(self) |
|
68 |
self.wfile.write("Invalid status line\r\n") |
|
69 |
return False |
|
70 |
||
71 |
||
72 |
class BadProtocolRequestHandler(TestingHTTPRequestHandler): |
|
73 |
"""Whatever request comes in, returns a bad protocol version""" |
|
74 |
||
75 |
def parse_request(self): |
|
76 |
"""Fakes handling a single HTTP request, returns a bad status""" |
|
77 |
ignored = TestingHTTPRequestHandler.parse_request(self) |
|
78 |
# Returns an invalid protocol version, but curl just
|
|
79 |
# ignores it and those cannot be tested.
|
|
80 |
self.wfile.write("%s %d %s\r\n" % ('HTTP/0.0', |
|
81 |
404, |
|
82 |
'Look at my protocol version')) |
|
83 |
return False |
|
1534.4.50
by Robert Collins
Got the bzrdir api straightened out, plenty of refactoring to use it pending, but the api is up and running. |
84 |
|
85 |
||
86 |
class TestCaseWithWebserver(TestCaseWithTransport): |
|
87 |
"""A support class that provides readonly urls that are http://. |
|
88 |
||
2004.3.3
by vila
Better (but still incomplete) design for bogus servers. |
89 |
This is done by forcing the readonly server to be an http
|
90 |
one. This will currently fail if the primary transport is not
|
|
91 |
backed by regular disk files.
|
|
1185.1.18
by Robert Collins
Lalo Martins remotebranch patch |
92 |
"""
|
93 |
def setUp(self): |
|
1530.1.14
by Robert Collins
Remove duplicate web server from HTTPTestUtil. |
94 |
super(TestCaseWithWebserver, self).setUp() |
2004.1.25
by v.ladeuil+lp at free
Shuffle http related test code. Hopefully it ends up at the right place :) |
95 |
self.transport_readonly_server = HttpServer |