mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-24 04:31:37 +03:00
34 lines
825 B
Plaintext
34 lines
825 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: 17
|
|
Content-Encoding: br
|
|
Content-Type: text/html; charset=utf-8
|
|
```Hello World!```
|
|
|
|
GET http://localhost:8000/compressed/brotli_identity
|
|
HTTP/1.0 200
|
|
Content-Length: 17
|
|
Content-Encoding: br, identity
|
|
Content-Type: text/html; charset=utf-8
|
|
```Hello World!``` |