forked from home-assistant/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add coverage for calling doorbird webhook with the wrong token (home-…
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
"""Test DoorBird view.""" | ||
|
||
from http import HTTPStatus | ||
|
||
from homeassistant.components.doorbird.const import API_URL | ||
|
||
from .conftest import DoorbirdMockerType | ||
|
||
from tests.typing import ClientSessionGenerator | ||
|
||
|
||
async def test_non_webhook_with_wrong_token( | ||
hass_client: ClientSessionGenerator, | ||
doorbird_mocker: DoorbirdMockerType, | ||
) -> None: | ||
"""Test calling the webhook with the wrong token.""" | ||
await doorbird_mocker() | ||
client = await hass_client() | ||
|
||
response = await client.get(f"{API_URL}/doorbell?token=wrong") | ||
assert response.status == HTTPStatus.UNAUTHORIZED |