hurl/integration/tests/compressed.hurl

27 lines
650 B
Plaintext
Raw Normal View History

# -- COMPRESSED HAS NO EFFECT ON NON-COMPRESSED
GET http://localhost:8000/compressed/none
HTTP/1.0 200
Content-Length: 12
Content-Type: text/html; charset=utf-8
```Hello World!```
2020-10-11 22:13:41 +03:00
GET http://localhost:8000/compressed/gzip
HTTP/1.0 200
Content-Length: 32
Content-Encoding: gzip
Content-Type: text/html; charset=utf-8
```Hello World!```
GET http://localhost:8000/compressed/zlib
2020-10-11 22:13:41 +03:00
HTTP/1.0 200
Content-Length: 20
Content-Encoding: deflate
Content-Type: text/html; charset=utf-8
```Hello World!```
GET http://localhost:8000/compressed/brotli
HTTP/1.0 200
Content-Length: 16
Content-Encoding: br
2020-10-11 22:13:41 +03:00
Content-Type: text/html; charset=utf-8
```Hello World!```