summaryrefslogtreecommitdiff
path: root/tests/test_gzipper.py
blob: 0832700dd59574f262327f73ff6ba579d10f99df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from paste.fixture import TestApp
from paste.gzipper import middleware
import gzip, cStringIO

def simple_app(environ, start_response):
    start_response('200 OK', [('content-type', 'text/plain')])
    return 'this is a test'

wsgi_app = middleware(simple_app)
app = TestApp(wsgi_app)

def test_gzip():
    res = app.get(
        '/', extra_environ=dict(HTTP_ACCEPT_ENCODING='gzip'))
    assert int(res.header('content-length')) == len(res.body)
    assert res.body != 'this is a test'
    actual = gzip.GzipFile(fileobj=cStringIO.StringIO(res.body)).read()
    assert actual == 'this is a test'