1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-07-04 02:35:29 +00:00
elinks/test/cgi/chunked_deflate.py

19 lines
608 B
Python
Raw Normal View History

#!/usr/bin/env python3
2008-07-20 11:30:18 +00:00
import os, time, zlib
data1 = b'<html><body>Two lines should be visible.<br/>The second line.</body></html>'
2008-07-20 11:30:18 +00:00
cd1 = zlib.compress(data1)
length = len(cd1)
next_chunk = hex(length - 10)[2:]
os.write(1, b"Date: Sun, 20 Jan 2008 15:24:00 GMT\r\nServer: ddd\r\nTransfer-Encoding: chunked\r\nContent-Encoding: deflate\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\n")
os.write(1, b"\r\na\r\n")
os.write(1, cd1[:10])
time.sleep(2)
os.write(1, b"\r\n")
os.write(1, bytes(next_chunk, 'iso8859-1'))
os.write(1, b"\r\n")
os.write(1, cd1[10:])
os.write(1, b"\r\n0\r\n")