add http request tests (#1448)

* add http request tests

* add to test3 for esp8266

* move test action to another trigger
This commit is contained in:
Guillermo Ruffino
2021-01-23 19:44:20 -03:00
committed by GitHub
parent f084ab339b
commit 52c67d715b
2 changed files with 48 additions and 4 deletions

View File

@@ -886,6 +886,25 @@ rf_bridge:
code: 'ABC123'
- rf_bridge.send_raw:
raw: 'AAA5070008001000ABC12355'
- http_request.get:
url: https://esphome.io
headers:
Content-Type: application/json
verify_ssl: false
- http_request.post:
url: https://esphome.io
verify_ssl: false
json:
key: !lambda |-
return id(version_sensor).state;
greeting: 'Hello World'
- http_request.send:
method: PUT
url: https://esphome.io
headers:
Content-Type: application/json
body: 'Some data'
verify_ssl: false
display:
- platform: max7219digit
@@ -897,3 +916,7 @@ display:
id: my_matrix
lambda: |-
it.printdigit("hello");
http_request:
useragent: esphome/device
timeout: 10s