2021-09-24 21:25:43 +00:00
|
|
|
import asyncio
|
2020-06-30 00:29:52 +00:00
|
|
|
|
|
|
|
import xdoctest
|
2021-03-18 18:22:10 +00:00
|
|
|
|
2020-06-30 00:29:52 +00:00
|
|
|
from kasa.tests.conftest import get_device_for_file
|
|
|
|
|
|
|
|
|
|
|
|
def test_bulb_examples(mocker):
|
|
|
|
"""Use KL130 (bulb with all features) to test the doctests."""
|
2023-12-04 18:50:05 +00:00
|
|
|
p = asyncio.run(get_device_for_file("KL130(US)_1.0_1.8.11.json", "IOT"))
|
2024-02-04 15:20:08 +00:00
|
|
|
mocker.patch("kasa.iot.iotbulb.IotBulb", return_value=p)
|
|
|
|
mocker.patch("kasa.iot.iotbulb.IotBulb.update")
|
|
|
|
res = xdoctest.doctest_module("kasa.iot.iotbulb", "all")
|
2020-06-30 00:29:52 +00:00
|
|
|
assert not res["failed"]
|
|
|
|
|
|
|
|
|
|
|
|
def test_smartdevice_examples(mocker):
|
|
|
|
"""Use HS110 for emeter examples."""
|
2023-12-04 18:50:05 +00:00
|
|
|
p = asyncio.run(get_device_for_file("HS110(EU)_1.0_1.2.5.json", "IOT"))
|
2024-02-04 15:20:08 +00:00
|
|
|
mocker.patch("kasa.iot.iotdevice.IotDevice", return_value=p)
|
|
|
|
mocker.patch("kasa.iot.iotdevice.IotDevice.update")
|
|
|
|
res = xdoctest.doctest_module("kasa.iot.iotdevice", "all")
|
2020-06-30 00:29:52 +00:00
|
|
|
assert not res["failed"]
|
|
|
|
|
|
|
|
|
|
|
|
def test_plug_examples(mocker):
|
|
|
|
"""Test plug examples."""
|
2023-12-04 18:50:05 +00:00
|
|
|
p = asyncio.run(get_device_for_file("HS110(EU)_1.0_1.2.5.json", "IOT"))
|
2024-02-04 15:20:08 +00:00
|
|
|
mocker.patch("kasa.iot.iotplug.IotPlug", return_value=p)
|
|
|
|
mocker.patch("kasa.iot.iotplug.IotPlug.update")
|
|
|
|
res = xdoctest.doctest_module("kasa.iot.iotplug", "all")
|
2020-06-30 00:29:52 +00:00
|
|
|
assert not res["failed"]
|
|
|
|
|
|
|
|
|
|
|
|
def test_strip_examples(mocker):
|
|
|
|
"""Test strip examples."""
|
2023-12-04 18:50:05 +00:00
|
|
|
p = asyncio.run(get_device_for_file("KP303(UK)_1.0_1.0.3.json", "IOT"))
|
2024-02-04 15:20:08 +00:00
|
|
|
mocker.patch("kasa.iot.iotstrip.IotStrip", return_value=p)
|
|
|
|
mocker.patch("kasa.iot.iotstrip.IotStrip.update")
|
|
|
|
res = xdoctest.doctest_module("kasa.iot.iotstrip", "all")
|
2020-06-30 00:29:52 +00:00
|
|
|
assert not res["failed"]
|
|
|
|
|
|
|
|
|
|
|
|
def test_dimmer_examples(mocker):
|
|
|
|
"""Test dimmer examples."""
|
2023-12-04 18:50:05 +00:00
|
|
|
p = asyncio.run(get_device_for_file("HS220(US)_1.0_1.5.7.json", "IOT"))
|
2024-02-04 15:20:08 +00:00
|
|
|
mocker.patch("kasa.iot.iotdimmer.IotDimmer", return_value=p)
|
|
|
|
mocker.patch("kasa.iot.iotdimmer.IotDimmer.update")
|
|
|
|
res = xdoctest.doctest_module("kasa.iot.iotdimmer", "all")
|
2020-06-30 00:29:52 +00:00
|
|
|
assert not res["failed"]
|
|
|
|
|
|
|
|
|
2020-07-19 20:32:17 +00:00
|
|
|
def test_lightstrip_examples(mocker):
|
|
|
|
"""Test lightstrip examples."""
|
2023-12-04 18:50:05 +00:00
|
|
|
p = asyncio.run(get_device_for_file("KL430(US)_1.0_1.0.10.json", "IOT"))
|
2024-02-04 15:20:08 +00:00
|
|
|
mocker.patch("kasa.iot.iotlightstrip.IotLightStrip", return_value=p)
|
|
|
|
mocker.patch("kasa.iot.iotlightstrip.IotLightStrip.update")
|
|
|
|
res = xdoctest.doctest_module("kasa.iot.iotlightstrip", "all")
|
2020-07-19 20:32:17 +00:00
|
|
|
assert not res["failed"]
|
|
|
|
|
|
|
|
|
2020-06-30 00:29:52 +00:00
|
|
|
def test_discovery_examples(mocker):
|
|
|
|
"""Test discovery examples."""
|
2023-12-04 18:50:05 +00:00
|
|
|
p = asyncio.run(get_device_for_file("KP303(UK)_1.0_1.0.3.json", "IOT"))
|
2020-06-30 00:29:52 +00:00
|
|
|
|
|
|
|
mocker.patch("kasa.discover.Discover.discover", return_value=[p])
|
|
|
|
res = xdoctest.doctest_module("kasa.discover", "all")
|
|
|
|
assert not res["failed"]
|