24 lines
483 B
YAML
24 lines
483 B
YAML
|
id: api-openweather
|
||
|
|
||
|
info:
|
||
|
name: OpenWeather API Test
|
||
|
author: zzeitlin
|
||
|
severity: info
|
||
|
reference: https://openweathermap.org/current
|
||
|
tags: token-spray,weather,openweather
|
||
|
|
||
|
self-contained: true
|
||
|
requests:
|
||
|
- method: GET
|
||
|
path:
|
||
|
- "https://api.openweathermap.org/data/2.5/weather?q=Chicago&appid={{token}}"
|
||
|
|
||
|
matchers:
|
||
|
- type: word
|
||
|
part: body
|
||
|
words:
|
||
|
- '"coord":'
|
||
|
- '"weather":'
|
||
|
- '"base":'
|
||
|
condition: and
|