mirror of https://github.com/home-assistant/core
34 lines
761 B
Python
34 lines
761 B
Python
"""Test function in gateway.py."""
|
|
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.components.mysensors.gateway import is_serial_port
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("port", "expect_valid"),
|
|
[
|
|
("COM5", True),
|
|
("asdf", False),
|
|
("COM17", True),
|
|
("COM", False),
|
|
("/dev/ttyACM0", False),
|
|
],
|
|
)
|
|
def test_is_serial_port_windows(
|
|
hass: HomeAssistant, port: str, expect_valid: bool
|
|
) -> None:
|
|
"""Test windows serial port."""
|
|
|
|
with patch("sys.platform", "win32"):
|
|
try:
|
|
is_serial_port(port)
|
|
except vol.Invalid:
|
|
assert not expect_valid
|
|
else:
|
|
assert expect_valid
|