1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-08-21 21:04:38 -04:00
elinks/test/cgi/chunked_gzip.py

26 lines
671 B
Python
Raw Normal View History

#!/usr/bin/env python
import gzip, os, time
data1 = '<html><body>Two lines should be visible.<br/>The second line.</body></html>'
f1 = gzip.GzipFile("/tmp/1.gz", mode = "wb")
f1.write(data1)
f1.close()
f = open("/tmp/1.gz")
cd1 = f.read()
f.close()
os.unlink("/tmp/1.gz")
length = len(cd1)
next_chunk = hex(length - 10)[2:]
os.write(1, "Date: Sun, 20 Jan 2008 15:24:00 GMT\r\nServer: ddd\r\nTransfer-Encoding: chunked\r\nContent-Encoding: gzip\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\n")
os.write(1, "\r\na\r\n")
os.write(1, cd1[:10])
time.sleep(2)
os.write(1, "\r\n%s\r\n" % next_chunk)
os.write(1, cd1[10:])
os.write(1, "\r\n0\r\n")