-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsncf-rer.failling.json
83 lines (83 loc) · 2.21 KB
/
sncf-rer.failling.json
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
{
"name": "Sncf rer scenario",
"description": "A sample scenario thtat ensure sncf API is listing RER in it's commercial transportation modes.",
"author": "Jean-Baptiste WATENBERG",
"tenantId": "1",
"scenario": [
{
"type": "authentication",
"authenticationType": "basic",
"username": "TBD",
"password": ""
},
{
"type": "path",
"url": "https://api.sncf.com/v1",
"operation": {
"path": "/coverage/sncf/commercial_modes",
"method": "get",
"operationId": "getCommercialModes",
"summary": "List commercial modes",
"description": "List all commercial modes available"
},
"accept": "application/json",
"asserts": [
{
"in": "header",
"field": "status",
"type": "equals",
"expect": "200"
},
{
"in": "body",
"type": "contains",
"expect": "RET"
}
],
"extracts": [
{
"in": "body",
"field": "$.commercial_modes[?(@.name == 'RER')].id",
"as": "rerId"
}
]
},
{
"type": "path",
"url": "https://api.sncf.com/v1",
"operation": {
"path": "/coverage/sncf/commercial_modes/{modeId}",
"method": "get",
"operationId": "getCommercialMode",
"summary": "List a specific commercial mode",
"parameters": [
{
"name": "modeId",
"in": "path",
"required": true,
"description": "The id of the pet to retrieve",
"schema": {
"type": "string",
"x-value": "${rerId}"
}
}
]
},
"accept": "application/json",
"asserts": [
{
"in": "header",
"field": "status",
"type": "equals",
"expect": "500"
},
{
"in": "body",
"field": "$.commercial_modes[?(@.name == 'RER')].id",
"type": "equals",
"expect": "${rerId}"
}
]
}
]
}