当前位置: 首页>>代码示例>>Python>>正文


Python Response.from_file方法代码示例

本文整理汇总了Python中webob.response.Response.from_file方法的典型用法代码示例。如果您正苦于以下问题:Python Response.from_file方法的具体用法?Python Response.from_file怎么用?Python Response.from_file使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在webob.response.Response的用法示例。


在下文中一共展示了Response.from_file方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_from_file_w_leading_space_in_header

# 需要导入模块: from webob.response import Response [as 别名]
# 或者: from webob.response.Response import from_file [as 别名]
def test_from_file_w_leading_space_in_header():
    # Make sure the removal of code dealing with leading spaces is safe
    res1 = Response()
    file_w_space = io.BytesIO(
        b'200 OK\n\tContent-Type: text/html; charset=UTF-8')
    res2 = Response.from_file(file_w_space)
    assert res1.headers == res2.headers
开发者ID:doulbekill,项目名称:webob,代码行数:9,代码来源:test_response.py

示例2: test_file_with_http_version_more_status

# 需要导入模块: from webob.response import Response [as 别名]
# 或者: from webob.response.Response import from_file [as 别名]
def test_file_with_http_version_more_status():
    inp = io.BytesIO(b'HTTP/1.1 404 Not Found\r\n\r\nSome data...')

    res = Response.from_file(inp)
    assert res.status_code == 404
    assert res.status == '404 Not Found'
开发者ID:doulbekill,项目名称:webob,代码行数:8,代码来源:test_response.py

示例3: test_file_with_http_version

# 需要导入模块: from webob.response import Response [as 别名]
# 或者: from webob.response.Response import from_file [as 别名]
def test_file_with_http_version():
    inp = io.BytesIO(b'HTTP/1.1 200 OK\r\n\r\nSome data...')

    res = Response.from_file(inp)
    assert res.status_code == 200
    assert res.status == '200 OK'
开发者ID:doulbekill,项目名称:webob,代码行数:8,代码来源:test_response.py

示例4: test_from_file_not_unicode_headers

# 需要导入模块: from webob.response import Response [as 别名]
# 或者: from webob.response.Response import from_file [as 别名]
def test_from_file_not_unicode_headers():
    inp = io.BytesIO(
        b'200 OK\n\tContent-Type: text/html; charset=UTF-8')
    res = Response.from_file(inp)
    assert res.headerlist[0][0].__class__ == str
开发者ID:doulbekill,项目名称:webob,代码行数:7,代码来源:test_response.py

示例5: equal_resp

# 需要导入模块: from webob.response import Response [as 别名]
# 或者: from webob.response.Response import from_file [as 别名]
def equal_resp(res, inp):
    res2 = Response.from_file(inp)
    assert res.body == res2.body
    assert res.headers == res2.headers
开发者ID:doulbekill,项目名称:webob,代码行数:6,代码来源:test_response.py

示例6: equal_resp

# 需要导入模块: from webob.response import Response [as 别名]
# 或者: from webob.response.Response import from_file [as 别名]
def equal_resp(res, inp):
    res2 = Response.from_file(inp)
    eq_(res.body, res2.body)
    eq_(res.headers, res2.headers)
开发者ID:perey,项目名称:webob,代码行数:6,代码来源:test_response.py

示例7: test_file_with_http_version

# 需要导入模块: from webob.response import Response [as 别名]
# 或者: from webob.response.Response import from_file [as 别名]
def test_file_with_http_version():
    inp = io.BytesIO(b"HTTP/1.1 200 OK\r\n\r\nSome data...")

    res = Response.from_file(inp)
    eq_(res.status_code, 200)
    eq_(res.status, "200 OK")
开发者ID:ckey,项目名称:webob,代码行数:8,代码来源:test_response.py

示例8: test_file_bad_header

# 需要导入模块: from webob.response import Response [as 别名]
# 或者: from webob.response.Response import from_file [as 别名]
def test_file_bad_header():
    file_w_bh = io.BytesIO(b'200 OK\nBad Header')
    with pytest.raises(ValueError):
        Response.from_file(file_w_bh)
开发者ID:doulbekill,项目名称:webob,代码行数:6,代码来源:test_response.py


注:本文中的webob.response.Response.from_file方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。