Esempio n. 1
0
def test_header_frame_data():

    frame = HeaderFrame(id=0x0201)

    frame.method = "GET"

    frame.scheme = 'https'

    frame.path = '/'

    frame.add('host', 'localhost')

    frame.add('accept', 'text/html')

    assert frame.type == FrameType.HEADERS

    read_frame = Frame.load(frame.get_frame_bin())

    assert read_frame.method == "GET"

    assert read_frame.scheme == "https"

    assert read_frame.path == "/"

    assert read_frame.get('host') == "localhost"

    assert read_frame.get('accept') == "text/html"
Esempio n. 2
0
def test_multiple_header_frame_data():

    encoded_frames = []

    frame = HeaderFrame(id=0x0201, end_header=False)

    frame.method = "GET"

    frame.scheme = 'https'

    frame.path = '/'

    assert frame.type == FrameType.HEADERS

    encoded_frames.append(Frame.load(frame.get_frame_bin()))

    assert encoded_frames[0].is_encoded

    second_frame = HeaderFrame(id=0x0201, end_header=False)

    second_frame.add('host', 'localhost')

    second_frame.add('accept', 'text/html')

    encoded_frames.append(Frame.load(second_frame.get_frame_bin()))

    last_frame = HeaderFrame(id=0x0201, end_header=True)

    last_frame.add('accept-language', 'ko')

    read_frame = Frame.load(last_frame.get_frame_bin(), None, encoded_frames)

    assert read_frame.method == "GET"

    assert read_frame.scheme == "https"

    assert read_frame.path == "/"

    assert read_frame.get('host') == "localhost"

    assert read_frame.get('accept') == "text/html"

    assert read_frame.get('accept-language') == "ko"