mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-23 19:12:06 +03:00
80 lines
1.6 KiB
Plaintext
80 lines
1.6 KiB
Plaintext
GET http://localhost:8000/multilines/plain-text
|
|
|
|
HTTP 200
|
|
[Asserts]
|
|
body == "line1\nline2\nline3\n"
|
|
body == ```
|
|
line1
|
|
line2
|
|
line3
|
|
```
|
|
|
|
|
|
GET http://localhost:8000/multilines/base64
|
|
|
|
HTTP 200
|
|
```base64
|
|
TG9yZW0gaXBzdW0gZG9sb3Igc2l0IGFtZXQsIGNvbnNlY3RldHVyIGFkaXBpc2NpbmcgZWxpdCwg
|
|
c2VkIGRvIGVpdXNtb2QgdGVtcG9yIGluY2lkaWR1bnQgdXQgbGFib3JlIGV0IGRvbG9yZSBtYWdu
|
|
YSBhbGlxdWEuIFV0IGVuaW0gYWQgbWluaW0gdmVuaWFtLCBxdWlzIG5vc3RydWQgZXhlcmNpdGF0
|
|
aW9uIHVsbGFtY28gbGFib3JpcyBuaXNpIHV0IGFsaXF1aXAgZXggZWEgY29tbW9kbyBjb25zZXF1
|
|
YXQuIER1aXMgYXV0ZSBpcnVyZSBkb2xvciBpbiByZXByZWhlbmRlcml0IGluIHZvbHVwdGF0ZSB2
|
|
ZWxpdCBlc3NlIGNpbGx1bSBkb2xvcmUgZXUgZnVnaWF0IG51bGxhIHBhcmlhdHVyLiBFeGNlcHRl
|
|
dXIgc2ludCBvY2NhZWNhdCBjdXBpZGF0YXQgbm9uIHByb2lkZW50LCBzdW50IGluIGN1bHBhIHF1
|
|
aSBvZmZpY2lhIGRlc2VydW50IG1vbGxpdCBhbmltIGlkIGVzdCBsYWJvcnVtLg==
|
|
```
|
|
|
|
|
|
GET http://localhost:8000/multilines/hex
|
|
|
|
HTTP 200
|
|
```hex
|
|
039058c6f2c0cb492c533b0a4d14ef77cc0f78abccced5287d84a1a2011cfb81
|
|
```
|
|
|
|
|
|
GET http://localhost:8000/multilines/json
|
|
|
|
HTTP 200
|
|
```json
|
|
{
|
|
"foo": "bar"
|
|
"baz": 123456
|
|
}
|
|
```
|
|
|
|
|
|
GET http://localhost:8000/multilines/xml
|
|
|
|
HTTP 200
|
|
```xml
|
|
<?xml version="1.0"?>
|
|
<catalog>
|
|
<book id="bk101">
|
|
<author>Gambardella, Matthew</author>
|
|
<title>XML Developer's Guide</title>
|
|
<genre>Computer</genre>
|
|
<price>44.95</price>
|
|
<publish_date>2000-10-01</publish_date>
|
|
<description>An in-depth look at creating applications
|
|
with XML.</description>
|
|
</book>
|
|
</catalog>
|
|
```
|
|
|
|
|
|
GET http://localhost:8000/multilines/graphql
|
|
|
|
HTTP 200
|
|
```graphql
|
|
{
|
|
hero {
|
|
name
|
|
# Queries can have comments!
|
|
friends {
|
|
name
|
|
}
|
|
}
|
|
}
|
|
```
|