Merge branch 'master' into feat/gestion-utilisateur
All checks were successful
Build Docker Image Front / run (pull_request) Successful in 23s
Build Docker Image Back / run (pull_request) Successful in 21s
JsDocs / coverage (pull_request) Successful in 22s
Test and coverage / coverage (pull_request) Successful in 1m21s

This commit is contained in:
2024-05-20 12:25:10 +02:00
30 changed files with 13752 additions and 6 deletions

View File

@ -1,4 +1,8 @@
vars {
TRIPMAP_URL: https://api.opentripmap.com/0.1
}
vars:secret [
app_key,
OTM_KEY,
GOOGLE_API_KEY
]

View File

@ -0,0 +1,11 @@
meta {
name: express Drink OTM
type: http
seq: 4
}
get {
url: http://localhost:3000
body: none
auth: none
}

View File

@ -0,0 +1,20 @@
meta {
name: otm_ex_box
type: http
seq: 4
}
get {
url: http://localhost:3001/otm/box?lon1=-1.435199&lon2=-1.43519&lat1=46.668460&lat2=46.668461&apikey={{OTM_KEY}}&kinds=bars,cafes,pubs,biergartens
body: none
auth: none
}
query {
lon1: -1.435199
lon2: -1.43519
lat1: 46.668460
lat2: 46.668461
apikey: {{OTM_KEY}}
kinds: bars,cafes,pubs,biergartens
}

View File

@ -0,0 +1,16 @@
meta {
name: otm_ex_city
type: http
seq: 1
}
get {
url: http://localhost:3001/otm/city?name=La roche sur yon&radius=300
body: none
auth: none
}
query {
name: La roche sur yon
radius: 300
}

View File

@ -0,0 +1,15 @@
meta {
name: otm_ex_drink_id
type: http
seq: 2
}
get {
url: https://api.opentripmap.com/0.1/en/places/xid/562635?apikey={{OTM_KEY}}
body: none
auth: none
}
query {
apikey: {{OTM_KEY}}
}

View File

@ -0,0 +1,16 @@
meta {
name: otm_ex_radius
type: http
seq: 3
}
get {
url: http://localhost:3001/otm/city?name=La roche sur yon&radius=300
body: none
auth: none
}
query {
name: La roche sur yon
radius: 300
}

View File

@ -0,0 +1,19 @@
meta {
name: otm_drink
type: http
seq: 1
}
get {
url: {{TRIPMAP_URL}}/en/places/radius?radius=10&lon=-1.4344594&lat=46.6686478&apikey={{OTM_KEY}}&kinds=bars,cafes,pubs,biergartens
body: none
auth: none
}
query {
radius: 10
lon: -1.4344594
lat: 46.6686478
apikey: {{OTM_KEY}}
kinds: bars,cafes,pubs,biergartens
}

View File

@ -0,0 +1,19 @@
meta {
name: otm_drink_bbox
type: http
seq: 4
}
get {
url: {{TRIPMAP_URL}}/en/places/radius?radius=10&lon=-1.4344594&lat=46.6686478&apikey={{OTM_KEY}}&kinds=bars,cafes,pubs,biergartens
body: none
auth: none
}
query {
radius: 10
lon: -1.4344594
lat: 46.6686478
apikey: {{OTM_KEY}}
kinds: bars,cafes,pubs,biergartens
}

View File

@ -0,0 +1,15 @@
meta {
name: otm_drink_id
type: http
seq: 3
}
get {
url: https://api.opentripmap.com/0.1/en/places/xid/562635?apikey={{OTM_KEY}}
body: none
auth: none
}
query {
apikey: {{OTM_KEY}}
}

View File

@ -0,0 +1,20 @@
meta {
name: otm_location
type: http
seq: 2
}
get {
url: https://api.opentripmap.com/0.1/en/places/bbox?lon_min=-1.435199&lon_max=-1.43519&lat_min=46.668460&lat_max=46.668461&apikey={{OTM_KEY}}&kinds=bars,cafes,pubs,biergartens
body: none
auth: none
}
query {
lon_min: -1.435199
lon_max: -1.43519
lat_min: 46.668460
lat_max: 46.668461
apikey: {{OTM_KEY}}
kinds: bars,cafes,pubs,biergartens
}

View File

@ -0,0 +1,22 @@
meta {
name: test graphQL
type: graphql
seq: 3
}
post {
url: https://datatour-tweb.cb85.fr
body: graphql
auth: none
}
body:graphql {
{
poi {
total
results {
_uri
}
}
}
}