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