本文整理匯總了Python中cherrypy._cpcompat.HTTPSConnection._output方法的典型用法代碼示例。如果您正苦於以下問題:Python HTTPSConnection._output方法的具體用法?Python HTTPSConnection._output怎麽用?Python HTTPSConnection._output使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類cherrypy._cpcompat.HTTPSConnection
的用法示例。
在下文中一共展示了HTTPSConnection._output方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_malformed_header
# 需要導入模塊: from cherrypy._cpcompat import HTTPSConnection [as 別名]
# 或者: from cherrypy._cpcompat.HTTPSConnection import _output [as 別名]
def test_malformed_header(self):
if self.scheme == 'https':
c = HTTPSConnection('%s:%s' % (self.interface(), self.PORT))
else:
c = HTTPConnection('%s:%s' % (self.interface(), self.PORT))
c.putrequest('GET', '/')
c.putheader('Content-Type', 'text/plain')
c._output(ntob('Re, 1.2.3.4#015#012'))
c.endheaders()
response = c.getresponse()
self.status = str(response.status)
self.assertStatus(400)
self.body = response.fp.read(20)
self.assertBody('Illegal header line.')
示例2: test_malformed_header
# 需要導入模塊: from cherrypy._cpcompat import HTTPSConnection [as 別名]
# 或者: from cherrypy._cpcompat.HTTPSConnection import _output [as 別名]
def test_malformed_header(self):
if self.scheme == "https":
c = HTTPSConnection("%s:%s" % (self.interface(), self.PORT))
else:
c = HTTPConnection("%s:%s" % (self.interface(), self.PORT))
c.putrequest("GET", "/")
c.putheader("Content-Type", "text/plain")
# See http://www.cherrypy.org/ticket/941
c._output(ntob("Re, 1.2.3.4#015#012"))
c.endheaders()
response = c.getresponse()
self.status = str(response.status)
self.assertStatus(400)
self.body = response.fp.read(20)
self.assertBody("Illegal header line.")
示例3: test_malformed_request_line
# 需要導入模塊: from cherrypy._cpcompat import HTTPSConnection [as 別名]
# 或者: from cherrypy._cpcompat.HTTPSConnection import _output [as 別名]
def test_malformed_request_line(self):
if getattr(cherrypy.server, 'using_apache', False):
return self.skip('skipped due to known Apache differences...')
if self.scheme == 'https':
c = HTTPSConnection('%s:%s' % (self.interface(), self.PORT))
else:
c = HTTPConnection('%s:%s' % (self.interface(), self.PORT))
c._output(ntob('GET /'))
c._send_output()
if hasattr(c, 'strict'):
response = c.response_class(c.sock, strict=c.strict, method='GET')
else:
response = c.response_class(c.sock, method='GET')
response.begin()
self.assertEqual(response.status, 400)
self.assertEqual(response.fp.read(22), ntob('Malformed Request-Line'))
c.close()
示例4: test_malformed_request_line
# 需要導入模塊: from cherrypy._cpcompat import HTTPSConnection [as 別名]
# 或者: from cherrypy._cpcompat.HTTPSConnection import _output [as 別名]
def test_malformed_request_line(self):
if getattr(cherrypy.server, "using_apache", False):
return self.skip("skipped due to known Apache differences...")
# Test missing version in Request-Line
if self.scheme == 'https':
c = HTTPSConnection('%s:%s' % (self.interface(), self.PORT))
else:
c = HTTPConnection('%s:%s' % (self.interface(), self.PORT))
c._output(ntob('GET /'))
c._send_output()
if hasattr(c, 'strict'):
response = c.response_class(c.sock, strict=c.strict, method='GET')
else:
# Python 3.2 removed the 'strict' feature, saying:
# "http.client now always assumes HTTP/1.x compliant servers."
response = c.response_class(c.sock, method='GET')
response.begin()
self.assertEqual(response.status, 400)
self.assertEqual(response.fp.read(22), ntob("Malformed Request-Line"))
c.close()