-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtests.hurl
86 lines (69 loc) · 1015 Bytes
/
tests.hurl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
POST {{host}}/v1/no-accent?indent=true
content-type: application/json
[
{ "value": "à l'école" },
{ "value": "où" }
]
HTTP 200
[{
"value": "a l'ecole"
},
{
"value": "ou"
}]
POST {{host}}/v1/no-accent2?indent=true
content-type: application/json
[
{ "value": "à l'école" },
{ "value": "où" }
]
HTTP 200
[{
"value": "a l'ecole"
},
{
"value": "ou"
}]
POST {{host}}/v1/echo/json?indent=true
content-type: application/json
[
{ "value": "à l'école" },
{ "value": "où" }
]
HTTP 200
[{
"value": "à l'école"
},
{
"value": "où"
}]
POST {{host}}/v1/echo/csv
content-type: application/csv
```
a,b
```
HTTP 200
POST {{host}}/v1/echo/raw
content-type: text/plain
```
Ceci est le texte envoyé.
```
HTTP 200
```
Ceci est le texte envoyé.
```
POST {{host}}/v1/true/csv
content-type: text/csv
```
a,value
1,2
```
HTTP 200
POST {{host}}/v1/true/json
content-type: application/json
[
{ "value": "à l'école" },
{ "value": "où" }
]
HTTP 200
[{"value":true},{"value":true}]