mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-19 17:01:36 +03:00
c6347a6828
- explicitly for the output if --compressed has been set - implicitly for textual queries
27 lines
650 B
Plaintext
27 lines
650 B
Plaintext
# -- 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!```
|
|
|
|
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
|
|
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
|
|
Content-Type: text/html; charset=utf-8
|
|
```Hello World!``` |