當前位置: 首頁>>代碼示例>>Python>>正文


Python HTTPSConnection._output方法代碼示例

本文整理匯總了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.')
開發者ID:connoryang,項目名稱:dec-eve-serenity,代碼行數:16,代碼來源:test_http.py

示例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.")
開發者ID:429eagle,項目名稱:BitTorrent.bundle,代碼行數:18,代碼來源:test_http.py

示例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()
開發者ID:connoryang,項目名稱:dec-eve-serenity,代碼行數:19,代碼來源:test_http.py

示例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()
開發者ID:Vungle,項目名稱:cherrypy-3.2.4,代碼行數:23,代碼來源:test_http.py


注:本文中的cherrypy._cpcompat.HTTPSConnection._output方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。