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


Python body.Body類代碼示例

本文整理匯總了Python中gunicorn.http.body.Body的典型用法代碼示例。如果您正苦於以下問題:Python Body類的具體用法?Python Body怎麽用?Python Body使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Body類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_readline_buffer_loaded_with_size

def test_readline_buffer_loaded_with_size():
    body = Body(StringIO("abc\ndef"))
    body.read(1)  # load internal buffer
    t.eq(body.readline(2), "bc")
    t.eq(body.readline(2), "\n")
    t.eq(body.readline(2), "de")
    t.eq(body.readline(2), "f")
開發者ID:paparent,項目名稱:gunicorn,代碼行數:7,代碼來源:004-test-http-body.py

示例2: test_readline_buffer_loaded_with_size

def test_readline_buffer_loaded_with_size():
    body = Body(BytesIO(b"abc\ndef"))
    body.read(1) # load internal buffer
    t.eq(body.readline(2), b"bc")
    t.eq(body.readline(2), b"\n")
    t.eq(body.readline(2), b"de")
    t.eq(body.readline(2), b"f")
開發者ID:1stvamp,項目名稱:gunicorn,代碼行數:7,代碼來源:test_004-http-body.py

示例3: test_readline_no_new_line

def test_readline_no_new_line():
    body = Body(BytesIO(b"abcdef"))
    assert body.readline() == b"abcdef"
    body = Body(BytesIO(b"abcdef"))
    assert body.readline(2) == b"ab"
    assert body.readline(2) == b"cd"
    assert body.readline(2) == b"ef"
開發者ID:BerlinK,項目名稱:web,代碼行數:7,代碼來源:test_http.py

示例4: test_readline_no_new_line

def test_readline_no_new_line():
    body = Body(BytesIO(b"abcdef"))
    t.eq(body.readline(), b"abcdef")
    body = Body(BytesIO(b"abcdef"))
    t.eq(body.readline(2), b"ab")
    t.eq(body.readline(2), b"cd")
    t.eq(body.readline(2), b"ef")
開發者ID:1stvamp,項目名稱:gunicorn,代碼行數:7,代碼來源:test_004-http-body.py

示例5: test_readline_no_new_line

def test_readline_no_new_line():
    body = Body(StringIO("abcdef"))
    t.eq(body.readline(), "abcdef")
    body = Body(StringIO("abcdef"))
    t.eq(body.readline(2), "ab")
    t.eq(body.readline(2), "cd")
    t.eq(body.readline(2), "ef")
開發者ID:paparent,項目名稱:gunicorn,代碼行數:7,代碼來源:004-test-http-body.py

示例6: test_readline_buffer_loaded_with_size

def test_readline_buffer_loaded_with_size():
    body = Body(BytesIO(b"abc\ndef"))
    body.read(1)  # load internal buffer
    assert body.readline(2) == b"bc"
    assert body.readline(2) == b"\n"
    assert body.readline(2) == b"de"
    assert body.readline(2) == b"f"
開發者ID:BerlinK,項目名稱:web,代碼行數:7,代碼來源:test_http.py

示例7: test_readline_buffer_loaded

def test_readline_buffer_loaded():
    reader = StringIO("abc\ndef")
    body = Body(reader)
    body.read(1)  # load internal buffer
    reader.write("g\nhi")
    reader.seek(7)
    t.eq(body.readline(), "bc\n")
    t.eq(body.readline(), "defg\n")
    t.eq(body.readline(), "hi")
開發者ID:paparent,項目名稱:gunicorn,代碼行數:9,代碼來源:004-test-http-body.py

示例8: test_readline_buffer_loaded

def test_readline_buffer_loaded():
    reader = BytesIO(b"abc\ndef")
    body = Body(reader)
    body.read(1) # load internal buffer
    reader.write(b"g\nhi")
    reader.seek(7)
    assert body.readline() == b"bc\n"
    assert body.readline() == b"defg\n"
    assert body.readline() == b"hi"
開發者ID:BerlinK,項目名稱:web,代碼行數:9,代碼來源:test_http.py

示例9: test_readline_buffer_loaded

def test_readline_buffer_loaded():
    reader = BytesIO(b"abc\ndef")
    body = Body(reader)
    body.read(1) # load internal buffer
    reader.write(b"g\nhi")
    reader.seek(7)
    print(reader.getvalue())
    t.eq(body.readline(), b"bc\n")
    t.eq(body.readline(), b"defg\n")
    t.eq(body.readline(), b"hi")
開發者ID:1stvamp,項目名稱:gunicorn,代碼行數:10,代碼來源:test_004-http-body.py

示例10: test_readline_new_line_before_size

def test_readline_new_line_before_size():
    body = Body(BytesIO(b"abc\ndef"))
    t.eq(body.readline(4), b"abc\n")
    t.eq(body.readline(), b"def")
開發者ID:1stvamp,項目名稱:gunicorn,代碼行數:4,代碼來源:test_004-http-body.py

示例11: test_readline_new_line_before_size

def test_readline_new_line_before_size():
    body = Body(BytesIO(b"abc\ndef"))
    assert body.readline(4) == b"abc\n"
    assert body.readline() == b"def"
開發者ID:BerlinK,項目名稱:web,代碼行數:4,代碼來源:test_http.py

示例12: test_readline_new_line_after_size

def test_readline_new_line_after_size():
    body = Body(BytesIO(b"abc\ndef"))
    assert body.readline(2) == b"ab"
    assert body.readline() == b"c\n"
開發者ID:BerlinK,項目名稱:web,代碼行數:4,代碼來源:test_http.py

示例13: assert_readline

def assert_readline(payload, size, expected):
    body = Body(BytesIO(payload))
    assert body.readline(size) == expected
開發者ID:BerlinK,項目名稱:web,代碼行數:3,代碼來源:test_http.py

示例14: assert_readline

def assert_readline(payload, size, expected):
    body = Body(StringIO(payload))
    t.eq(body.readline(size), expected)
開發者ID:paparent,項目名稱:gunicorn,代碼行數:3,代碼來源:004-test-http-body.py

示例15: test_readline_new_line_before_size

def test_readline_new_line_before_size():
    body = Body(StringIO("abc\ndef"))
    t.eq(body.readline(4), "abc\n")
    t.eq(body.readline(), "def")
開發者ID:paparent,項目名稱:gunicorn,代碼行數:4,代碼來源:004-test-http-body.py


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