123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056 |
- from typing import Any
- from bleak.backends.device import BLEDevice
- from bleak.backends.scanner import AdvertisementData
- from switchbot import SwitchbotModel
- from switchbot.adv_parser import parse_advertisement_data
- from switchbot.models import SwitchBotAdvertisement
- ADVERTISEMENT_DATA_DEFAULTS = {
- "local_name": "",
- "manufacturer_data": {},
- "service_data": {},
- "service_uuids": [],
- "rssi": -127,
- "platform_data": ((),),
- "tx_power": -127,
- }
- def generate_advertisement_data(**kwargs: Any) -> AdvertisementData:
- """Generate advertisement data with defaults."""
- new = kwargs.copy()
- for key, value in ADVERTISEMENT_DATA_DEFAULTS.items():
- new.setdefault(key, value)
- return AdvertisementData(**new)
- def test_parse_advertisement_data_curtain():
- """Test parse_advertisement_data for curtain."""
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- manufacturer_data={2409: b"\xe7\xabF\xac\x8f\x92|\x0f\x00\x11\x04"},
- service_data={"0000fd3d-0000-1000-8000-00805f9b34fb": b"c\xc0X\x00\x11\x04"},
- rssi=-80,
- )
- result = parse_advertisement_data(ble_device, adv_data)
- assert result == SwitchBotAdvertisement(
- address="aa:bb:cc:dd:ee:ff",
- data={
- "rawAdvData": b"c\xc0X\x00\x11\x04",
- "data": {
- "calibration": True,
- "battery": 88,
- "inMotion": False,
- "position": 100,
- "lightLevel": 1,
- "deviceChain": 1,
- },
- "isEncrypted": False,
- "model": "c",
- "modelFriendlyName": "Curtain",
- "modelName": SwitchbotModel.CURTAIN,
- },
- device=ble_device,
- rssi=-80,
- )
- def test_parse_advertisement_data_curtain_position_zero():
- """Test parse_advertisement_data for curtain position zero."""
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- local_name="WoCurtain",
- manufacturer_data={89: b"\xc1\xc7'}U\xab"},
- service_data={"00000d00-0000-1000-8000-00805f9b34fb": b"c\xd0\xced\x11\x04"},
- service_uuids=[
- "00001800-0000-1000-8000-00805f9b34fb",
- "00001801-0000-1000-8000-00805f9b34fb",
- "cba20d00-224d-11e6-9fb8-0002a5d5c51b",
- ],
- rssi=-52,
- )
- result = parse_advertisement_data(ble_device, adv_data)
- assert result == SwitchBotAdvertisement(
- address="aa:bb:cc:dd:ee:ff",
- data={
- "rawAdvData": b"c\xd0\xced\x11\x04",
- "data": {
- "calibration": True,
- "battery": 78,
- "inMotion": False,
- "position": 0,
- "lightLevel": 1,
- "deviceChain": 1,
- },
- "isEncrypted": False,
- "model": "c",
- "modelFriendlyName": "Curtain",
- "modelName": SwitchbotModel.CURTAIN,
- },
- device=ble_device,
- rssi=-52,
- )
- def test_parse_advertisement_data_curtain_firmware_six_position_100():
- """Test parse_advertisement_data with firmware six for curtain position 100."""
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- local_name="WoCurtain",
- manufacturer_data={
- 89: b"\xf5\x98\x94\x08\xa0\xe7",
- 2409: b'\xf5\x98\x94\x08\xa0\xe7\x9b\x0f\x00"\x04',
- },
- service_data={
- "00000d00-0000-1000-8000-00805f9b34fb": b"c\xd0H\x00\x12\x04",
- "0000fd3d-0000-1000-8000-00805f9b34fb": b'c\xc0G\x00"\x04',
- },
- service_uuids=[
- "00001800-0000-1000-8000-00805f9b34fb",
- "00001801-0000-1000-8000-00805f9b34fb",
- "cba20d00-224d-11e6-9fb8-0002a5d5c51b",
- ],
- rssi=-62,
- )
- result = parse_advertisement_data(ble_device, adv_data)
- assert result == SwitchBotAdvertisement(
- address="aa:bb:cc:dd:ee:ff",
- data={
- "rawAdvData": b'c\xc0G\x00"\x04',
- "data": {
- "calibration": True,
- "battery": 71,
- "inMotion": False,
- "position": 100,
- "lightLevel": 2,
- "deviceChain": 2,
- },
- "isEncrypted": False,
- "model": "c",
- "modelFriendlyName": "Curtain",
- "modelName": SwitchbotModel.CURTAIN,
- },
- device=ble_device,
- rssi=-62,
- )
- def test_parse_advertisement_data_curtain_firmware_six_position_100_other_rssi():
- """Test parse_advertisement_data with firmware six for curtain position 100 other rssi."""
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- local_name="WoCurtain",
- manufacturer_data={
- 89: b"\xf5\x98\x94\x08\xa0\xe7",
- 2409: b'\xf5\x98\x94\x08\xa0\xe7\xa5\x0fc"\x04',
- },
- service_data={
- "00000d00-0000-1000-8000-00805f9b34fb": b"c\xd0H\x00\x12\x04",
- "0000fd3d-0000-1000-8000-00805f9b34fb": b'c\xc0Gc"\x04',
- },
- service_uuids=[
- "00001800-0000-1000-8000-00805f9b34fb",
- "00001801-0000-1000-8000-00805f9b34fb",
- "cba20d00-224d-11e6-9fb8-0002a5d5c51b",
- ],
- rssi=-67,
- )
- result = parse_advertisement_data(ble_device, adv_data)
- assert result == SwitchBotAdvertisement(
- address="aa:bb:cc:dd:ee:ff",
- data={
- "rawAdvData": b'c\xc0Gc"\x04',
- "data": {
- "calibration": True,
- "battery": 71,
- "inMotion": False,
- "position": 1,
- "lightLevel": 2,
- "deviceChain": 2,
- },
- "isEncrypted": False,
- "model": "c",
- "modelFriendlyName": "Curtain",
- "modelName": SwitchbotModel.CURTAIN,
- },
- device=ble_device,
- rssi=-67,
- )
- def test_parse_advertisement_data_curtain_fully_closed():
- """Test parse_advertisement_data with firmware six fully closed."""
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- local_name="WoCurtain",
- manufacturer_data={2409: b"\xc1\xc7'}U\xab\"\x0fd\x11\x04"},
- service_data={"0000fd3d-0000-1000-8000-00805f9b34fb": b"c\xc0Sd\x11\x04"},
- service_uuids=[
- "00001800-0000-1000-8000-00805f9b34fb",
- "00001801-0000-1000-8000-00805f9b34fb",
- "cba20d00-224d-11e6-9fb8-0002a5d5c51b",
- ],
- rssi=1,
- )
- result = parse_advertisement_data(ble_device, adv_data)
- assert result == SwitchBotAdvertisement(
- address="aa:bb:cc:dd:ee:ff",
- data={
- "rawAdvData": b"c\xc0Sd\x11\x04",
- "data": {
- "calibration": True,
- "battery": 83,
- "inMotion": False,
- "position": 0,
- "lightLevel": 1,
- "deviceChain": 1,
- },
- "isEncrypted": False,
- "model": "c",
- "modelFriendlyName": "Curtain",
- "modelName": SwitchbotModel.CURTAIN,
- },
- device=ble_device,
- rssi=1,
- )
- def test_parse_advertisement_data_curtain_fully_open():
- """Test parse_advertisement_data with firmware six fully open."""
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- local_name="WoCurtain",
- manufacturer_data={2409: b"\xc1\xc7'}U\xab%\x0f\x00\x11\x04"},
- service_data={"0000fd3d-0000-1000-8000-00805f9b34fb": b"c\xc0S\x00\x11\x04"},
- service_uuids=[
- "00001800-0000-1000-8000-00805f9b34fb",
- "00001801-0000-1000-8000-00805f9b34fb",
- "cba20d00-224d-11e6-9fb8-0002a5d5c51b",
- ],
- rssi=1,
- )
- result = parse_advertisement_data(ble_device, adv_data)
- assert result == SwitchBotAdvertisement(
- address="aa:bb:cc:dd:ee:ff",
- data={
- "rawAdvData": b"c\xc0S\x00\x11\x04",
- "data": {
- "calibration": True,
- "battery": 83,
- "inMotion": False,
- "position": 100,
- "lightLevel": 1,
- "deviceChain": 1,
- },
- "isEncrypted": False,
- "model": "c",
- "modelFriendlyName": "Curtain",
- "modelName": SwitchbotModel.CURTAIN,
- },
- device=ble_device,
- rssi=1,
- )
- def test_parse_advertisement_data_contact():
- """Test parse_advertisement_data for the contact sensor."""
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- manufacturer_data={2409: b"\xe7\xabF\xac\x8f\x92|\x0f\x00\x11\x04"},
- service_data={
- "0000fd3d-0000-1000-8000-00805f9b34fb": b"d@d\x05\x00u\x00\xf8\x12"
- },
- rssi=-80,
- )
- result = parse_advertisement_data(ble_device, adv_data)
- assert result == SwitchBotAdvertisement(
- address="aa:bb:cc:dd:ee:ff",
- data={
- "rawAdvData": b"d@d\x05\x00u\x00\xf8\x12",
- "data": {
- "button_count": 2,
- "contact_open": True,
- "contact_timeout": True,
- "is_light": True,
- "battery": 100,
- "motion_detected": True,
- "tested": False,
- },
- "isEncrypted": False,
- "model": "d",
- "modelFriendlyName": "Contact Sensor",
- "modelName": SwitchbotModel.CONTACT_SENSOR,
- },
- device=ble_device,
- rssi=-80,
- )
- def test_parse_advertisement_data_empty():
- """Test parse_advertisement_data with empty data does not blow up."""
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- manufacturer_data={2403: b"\xe7\xabF\xac\x8f\x92|\x0f\x00\x11\x04"},
- service_data={"0000fd3d-0000-1000-8000-00805f9b34fb": b""},
- )
- result = parse_advertisement_data(ble_device, adv_data)
- assert result is None
- def test_new_bot_firmware():
- """Test parsing adv data from new bot firmware."""
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- manufacturer_data={89: b"\xd8.\xad\xcd\r\x85"},
- service_data={"00000d00-0000-1000-8000-00805f9b34fb": b"H\x10\xe1"},
- service_uuids=["CBA20D00-224D-11E6-9FB8-0002A5D5C51B"],
- rssi=-90,
- )
- result = parse_advertisement_data(ble_device, adv_data)
- assert result == SwitchBotAdvertisement(
- address="aa:bb:cc:dd:ee:ff",
- data={
- "rawAdvData": b"H\x10\xe1",
- "data": {"switchMode": False, "isOn": False, "battery": 97},
- "model": "H",
- "isEncrypted": False,
- "modelFriendlyName": "Bot",
- "modelName": SwitchbotModel.BOT,
- },
- device=ble_device,
- rssi=-90,
- )
- def test_parse_advertisement_data_curtain_firmware_six_fully_closed():
- """Test parse_advertisement_data with firmware six fully closed."""
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- local_name="WoCurtain",
- manufacturer_data={
- 89: b"\xcc\xf4\xc4\xf9\xacl",
- 2409: b"\xcc\xf4\xc4\xf9\xacl\xeb\x0fd\x12\x04",
- },
- service_data={
- "00000d00-0000-1000-8000-00805f9b34fb": b"c\xd0Yd\x11\x04",
- "0000fd3d-0000-1000-8000-00805f9b34fb": b"c\xc0dd\x12\x04",
- },
- service_uuids=[
- "00001800-0000-1000-8000-00805f9b34fb",
- "00001801-0000-1000-8000-00805f9b34fb",
- "cba20d00-224d-11e6-9fb8-0002a5d5c51b",
- ],
- rssi=-2,
- )
- result = parse_advertisement_data(ble_device, adv_data)
- assert result == SwitchBotAdvertisement(
- address="aa:bb:cc:dd:ee:ff",
- data={
- "rawAdvData": b"c\xc0dd\x12\x04",
- "data": {
- "calibration": True,
- "battery": 100,
- "inMotion": False,
- "position": 0,
- "lightLevel": 1,
- "deviceChain": 2,
- },
- "isEncrypted": False,
- "model": "c",
- "modelFriendlyName": "Curtain",
- "modelName": SwitchbotModel.CURTAIN,
- },
- device=ble_device,
- rssi=-2,
- )
- def test_parse_advertisement_data_curtain_firmware_six_fully_open():
- """Test parse_advertisement_data with firmware six fully open."""
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- local_name="WoCurtain",
- manufacturer_data={
- 89: b"\xcc\xf4\xc4\xf9\xacl",
- 2409: b"\xcc\xf4\xc4\xf9\xacl\xe2\x0f\x00\x12\x04",
- },
- service_data={
- "00000d00-0000-1000-8000-00805f9b34fb": b"c\xd0Yd\x11\x04",
- "0000fd3d-0000-1000-8000-00805f9b34fb": b"c\xc0d\x00\x12\x04",
- },
- service_uuids=[
- "00001800-0000-1000-8000-00805f9b34fb",
- "00001801-0000-1000-8000-00805f9b34fb",
- "cba20d00-224d-11e6-9fb8-0002a5d5c51b",
- ],
- rssi=-2,
- )
- result = parse_advertisement_data(ble_device, adv_data)
- assert result == SwitchBotAdvertisement(
- address="aa:bb:cc:dd:ee:ff",
- data={
- "rawAdvData": b"c\xc0d\x00\x12\x04",
- "data": {
- "calibration": True,
- "battery": 100,
- "inMotion": False,
- "position": 100,
- "lightLevel": 1,
- "deviceChain": 2,
- },
- "isEncrypted": False,
- "model": "c",
- "modelFriendlyName": "Curtain",
- "modelName": SwitchbotModel.CURTAIN,
- },
- device=ble_device,
- rssi=-2,
- )
- def test_contact_sensor_mfr():
- """Test parsing adv data from new bot firmware."""
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- manufacturer_data={2409: b"\xcb9\xcd\xc4=FA,\x00F\x01\x8f\xc4"},
- service_data={
- "0000fd3d-0000-1000-8000-00805f9b34fb": b"d\x00\xda\x04\x00F\x01\x8f\xc4"
- },
- tx_power=-127,
- rssi=-70,
- )
- result = parse_advertisement_data(ble_device, adv_data)
- assert result == SwitchBotAdvertisement(
- address="aa:bb:cc:dd:ee:ff",
- data={
- "data": {
- "battery": 90,
- "button_count": 4,
- "contact_open": True,
- "contact_timeout": True,
- "is_light": False,
- "motion_detected": False,
- "tested": False,
- },
- "isEncrypted": False,
- "model": "d",
- "modelFriendlyName": "Contact Sensor",
- "modelName": SwitchbotModel.CONTACT_SENSOR,
- "rawAdvData": b"d\x00\xda\x04\x00F\x01\x8f\xc4",
- },
- device=ble_device,
- rssi=-70,
- )
- def test_contact_sensor_mfr_no_service_data():
- """Test contact sensor with passive data only."""
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- manufacturer_data={2409: b"\xcb9\xcd\xc4=FA,\x00F\x01\x8f\xc4"},
- service_data={},
- tx_power=-127,
- rssi=-70,
- )
- result = parse_advertisement_data(ble_device, adv_data)
- assert result == SwitchBotAdvertisement(
- address="aa:bb:cc:dd:ee:ff",
- data={
- "data": {
- "battery": None,
- "button_count": 4,
- "contact_open": False,
- "contact_timeout": False,
- "is_light": False,
- "motion_detected": False,
- "tested": None,
- },
- "isEncrypted": False,
- "model": "d",
- "modelFriendlyName": "Contact Sensor",
- "modelName": SwitchbotModel.CONTACT_SENSOR,
- "rawAdvData": None,
- },
- device=ble_device,
- rssi=-70,
- )
- def test_contact_sensor_srv():
- """Test parsing adv data from new bot firmware."""
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- service_data={
- "0000fd3d-0000-1000-8000-00805f9b34fb": b"d\x00\xda\x04\x00F\x01\x8f\xc4"
- },
- tx_power=-127,
- rssi=-70,
- )
- result = parse_advertisement_data(ble_device, adv_data)
- assert result == SwitchBotAdvertisement(
- address="aa:bb:cc:dd:ee:ff",
- data={
- "data": {
- "battery": 90,
- "button_count": 4,
- "contact_open": True,
- "contact_timeout": True,
- "is_light": False,
- "motion_detected": False,
- "tested": False,
- },
- "isEncrypted": False,
- "model": "d",
- "modelFriendlyName": "Contact Sensor",
- "modelName": SwitchbotModel.CONTACT_SENSOR,
- "rawAdvData": b"d\x00\xda\x04\x00F\x01\x8f\xc4",
- },
- device=ble_device,
- rssi=-70,
- )
- def test_contact_sensor_open():
- """Test parsing mfr adv data from new bot firmware."""
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- manufacturer_data={2409: b"\xcb9\xcd\xc4=F\x84\x9c\x00\x17\x00QD"},
- service_data={
- "0000fd3d-0000-1000-8000-00805f9b34fb": b"d@\xda\x02\x00\x17\x00QD"
- },
- tx_power=-127,
- rssi=-59,
- )
- result = parse_advertisement_data(ble_device, adv_data)
- assert result == SwitchBotAdvertisement(
- address="aa:bb:cc:dd:ee:ff",
- data={
- "data": {
- "battery": 90,
- "button_count": 4,
- "contact_open": True,
- "contact_timeout": False,
- "is_light": False,
- "motion_detected": True,
- "tested": False,
- },
- "isEncrypted": False,
- "model": "d",
- "modelFriendlyName": "Contact Sensor",
- "modelName": SwitchbotModel.CONTACT_SENSOR,
- "rawAdvData": b"d@\xda\x02\x00\x17\x00QD",
- },
- device=ble_device,
- rssi=-59,
- )
- def test_contact_sensor_closed():
- """Test parsing mfr adv data from new bot firmware."""
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- manufacturer_data={2409: b"\xcb9\xcd\xc4=F\x89\x8c\x00+\x00\x19\x84"},
- service_data={
- "0000fd3d-0000-1000-8000-00805f9b34fb": b"d@\xda\x00\x00+\x00\x19\x84"
- },
- tx_power=-127,
- rssi=-50,
- )
- result = parse_advertisement_data(ble_device, adv_data)
- assert result == SwitchBotAdvertisement(
- address="aa:bb:cc:dd:ee:ff",
- data={
- "data": {
- "battery": 90,
- "button_count": 4,
- "contact_open": False,
- "contact_timeout": False,
- "is_light": False,
- "motion_detected": True,
- "tested": False,
- },
- "isEncrypted": False,
- "model": "d",
- "modelFriendlyName": "Contact Sensor",
- "modelName": SwitchbotModel.CONTACT_SENSOR,
- "rawAdvData": b"d@\xda\x00\x00+\x00\x19\x84",
- },
- device=ble_device,
- rssi=-50,
- )
- def test_switchbot_passive():
- """Test parsing switchbot as passive."""
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- manufacturer_data={89: bytes.fromhex("d51cfb397856")},
- service_data={},
- tx_power=-127,
- rssi=-50,
- )
- result = parse_advertisement_data(ble_device, adv_data, SwitchbotModel.BOT)
- assert result == SwitchBotAdvertisement(
- address="aa:bb:cc:dd:ee:ff",
- data={
- "data": {
- "battery": None,
- "switchMode": None,
- "isOn": None,
- },
- "isEncrypted": False,
- "model": "H",
- "modelFriendlyName": "Bot",
- "modelName": SwitchbotModel.BOT,
- "rawAdvData": None,
- },
- device=ble_device,
- rssi=-50,
- )
- def test_bulb_active():
- """Test parsing bulb as active."""
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- manufacturer_data={2409: b"\x84\xf7\x03\xb4\xcbz\x03\xe4!\x00\x00"},
- service_data={"0000fd3d-0000-1000-8000-00805f9b34fb": b"u\x00d"},
- tx_power=-127,
- rssi=-50,
- )
- result = parse_advertisement_data(ble_device, adv_data)
- assert result == SwitchBotAdvertisement(
- address="aa:bb:cc:dd:ee:ff",
- data={
- "data": {
- "brightness": 100,
- "color_mode": 1,
- "delay": False,
- "isOn": True,
- "loop_index": 0,
- "preset": False,
- "sequence_number": 3,
- "speed": 0,
- },
- "isEncrypted": False,
- "model": "u",
- "modelFriendlyName": "Color Bulb",
- "modelName": SwitchbotModel.COLOR_BULB,
- "rawAdvData": b"u\x00d",
- },
- device=ble_device,
- rssi=-50,
- )
- def test_lightstrip_passive():
- """Test parsing lightstrip as passive."""
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- manufacturer_data={
- 2409: b"`U\xf9(\xe5\x96\x00d\x02\xb0\x00\x00\x00\x00\x00\x00"
- },
- service_data={},
- tx_power=-127,
- rssi=-50,
- )
- result = parse_advertisement_data(ble_device, adv_data)
- assert result == SwitchBotAdvertisement(
- address="aa:bb:cc:dd:ee:ff",
- data={
- "data": {
- "brightness": 100,
- "color_mode": 2,
- "delay": False,
- "isOn": False,
- "loop_index": 0,
- "preset": False,
- "sequence_number": 0,
- "speed": 48,
- },
- "isEncrypted": False,
- "model": "r",
- "modelFriendlyName": "Light Strip",
- "modelName": SwitchbotModel.LIGHT_STRIP,
- "rawAdvData": None,
- },
- device=ble_device,
- rssi=-50,
- )
- def test_wosensor_passive_and_active():
- """Test parsing wosensor as passive with active data as well."""
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- manufacturer_data={2409: b"\xd7\xc1}]\xebC\xde\x03\x06\x985"},
- service_data={"0000fd3d-0000-1000-8000-00805f9b34fb": b"T\x00\xe4\x06\x985"},
- tx_power=-127,
- rssi=-50,
- )
- result = parse_advertisement_data(ble_device, adv_data)
- assert result == SwitchBotAdvertisement(
- address="aa:bb:cc:dd:ee:ff",
- data={
- "data": {
- "battery": 100,
- "fahrenheit": False,
- "humidity": 53,
- "temp": {"c": 24.6, "f": 76.28},
- },
- "isEncrypted": False,
- "model": "T",
- "modelFriendlyName": "Meter",
- "modelName": SwitchbotModel.METER,
- "rawAdvData": b"T\x00\xe4\x06\x985",
- },
- device=ble_device,
- rssi=-50,
- )
- def test_wosensor_active():
- """Test parsing wosensor with active data as well."""
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- manufacturer_data={},
- service_data={"0000fd3d-0000-1000-8000-00805f9b34fb": b"T\x00\xe4\x06\x985"},
- tx_power=-127,
- rssi=-50,
- )
- result = parse_advertisement_data(ble_device, adv_data)
- assert result == SwitchBotAdvertisement(
- address="aa:bb:cc:dd:ee:ff",
- data={
- "data": {
- "battery": 100,
- "fahrenheit": False,
- "humidity": 53,
- "temp": {"c": 24.6, "f": 76.28},
- },
- "isEncrypted": False,
- "model": "T",
- "modelFriendlyName": "Meter",
- "modelName": SwitchbotModel.METER,
- "rawAdvData": b"T\x00\xe4\x06\x985",
- },
- device=ble_device,
- rssi=-50,
- )
- def test_wosensor_passive_only():
- """Test parsing wosensor with only passive data."""
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- manufacturer_data={2409: b"\xd7\xc1}]\xebC\xde\x03\x06\x985"},
- service_data={},
- tx_power=-127,
- rssi=-50,
- )
- result = parse_advertisement_data(ble_device, adv_data, SwitchbotModel.METER)
- assert result == SwitchBotAdvertisement(
- address="aa:bb:cc:dd:ee:ff",
- data={
- "data": {
- "battery": None,
- "fahrenheit": False,
- "humidity": 53,
- "temp": {"c": 24.6, "f": 76.28},
- },
- "isEncrypted": False,
- "model": "T",
- "modelFriendlyName": "Meter",
- "modelName": SwitchbotModel.METER,
- "rawAdvData": None,
- },
- device=ble_device,
- rssi=-50,
- )
- def test_motion_sensor_clear():
- """Test parsing motion sensor with clear data."""
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- manufacturer_data={2409: b"\xc0!\x9a\xe8\xbcIj\x1c\x00f"},
- service_data={"0000fd3d-0000-1000-8000-00805f9b34fb": b"s\x00\xe2\x00f\x01"},
- tx_power=-127,
- rssi=-87,
- )
- result = parse_advertisement_data(
- ble_device, adv_data, SwitchbotModel.MOTION_SENSOR
- )
- assert result == SwitchBotAdvertisement(
- address="aa:bb:cc:dd:ee:ff",
- data={
- "data": {
- "battery": 98,
- "iot": 0,
- "is_light": False,
- "led": 0,
- "light_intensity": 1,
- "motion_detected": False,
- "sense_distance": 0,
- "tested": False,
- },
- "isEncrypted": False,
- "model": "s",
- "modelFriendlyName": "Motion Sensor",
- "modelName": SwitchbotModel.MOTION_SENSOR,
- "rawAdvData": b"s\x00\xe2\x00f\x01",
- },
- device=ble_device,
- rssi=-87,
- )
- def test_motion_sensor_clear_passive():
- """Test parsing motion sensor with clear data."""
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- manufacturer_data={2409: b"\xc0!\x9a\xe8\xbcIj\x1c\x00f"},
- service_data={},
- tx_power=-127,
- rssi=-87,
- )
- result = parse_advertisement_data(
- ble_device, adv_data, SwitchbotModel.MOTION_SENSOR
- )
- assert result == SwitchBotAdvertisement(
- address="aa:bb:cc:dd:ee:ff",
- data={
- "data": {
- "battery": None,
- "iot": None,
- "is_light": False,
- "led": None,
- "light_intensity": None,
- "motion_detected": False,
- "sense_distance": None,
- "tested": None,
- },
- "isEncrypted": False,
- "model": "s",
- "modelFriendlyName": "Motion Sensor",
- "modelName": SwitchbotModel.MOTION_SENSOR,
- "rawAdvData": None,
- },
- device=ble_device,
- rssi=-87,
- )
- def test_motion_sensor_motion():
- """Test parsing motion sensor with motion data."""
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- manufacturer_data={2409: b"\xc0!\x9a\xe8\xbcIi\\\x008"},
- service_data={"0000fd3d-0000-1000-8000-00805f9b34fb": b"s@\xe2\x008\x01"},
- tx_power=-127,
- rssi=-87,
- )
- result = parse_advertisement_data(
- ble_device, adv_data, SwitchbotModel.MOTION_SENSOR
- )
- assert result == SwitchBotAdvertisement(
- address="aa:bb:cc:dd:ee:ff",
- data={
- "data": {
- "battery": 98,
- "iot": 0,
- "is_light": False,
- "led": 0,
- "light_intensity": 1,
- "motion_detected": True,
- "sense_distance": 0,
- "tested": False,
- },
- "isEncrypted": False,
- "model": "s",
- "modelFriendlyName": "Motion Sensor",
- "modelName": SwitchbotModel.MOTION_SENSOR,
- "rawAdvData": b"s@\xe2\x008\x01",
- },
- device=ble_device,
- rssi=-87,
- )
- def test_motion_sensor_motion_passive():
- """Test parsing motion sensor with motion data."""
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- manufacturer_data={2409: b"\xc0!\x9a\xe8\xbcIi\\\x008"},
- service_data={},
- tx_power=-127,
- rssi=-87,
- )
- result = parse_advertisement_data(
- ble_device, adv_data, SwitchbotModel.MOTION_SENSOR
- )
- assert result == SwitchBotAdvertisement(
- address="aa:bb:cc:dd:ee:ff",
- data={
- "data": {
- "battery": None,
- "iot": None,
- "is_light": False,
- "led": None,
- "light_intensity": None,
- "motion_detected": True,
- "sense_distance": None,
- "tested": None,
- },
- "isEncrypted": False,
- "model": "s",
- "modelFriendlyName": "Motion Sensor",
- "modelName": SwitchbotModel.MOTION_SENSOR,
- "rawAdvData": None,
- },
- device=ble_device,
- rssi=-87,
- )
- def test_motion_sensor_is_light_passive():
- """Test parsing motion sensor with motion data."""
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- manufacturer_data={2409: b"\xc0!\x9a\xe8\xbcIs,\x04g"},
- service_data={"0000fd3d-0000-1000-8000-00805f9b34fb": b"s\x00\xe2\x04g\x02"},
- tx_power=-127,
- rssi=-93,
- )
- result = parse_advertisement_data(
- ble_device, adv_data, SwitchbotModel.MOTION_SENSOR
- )
- assert result == SwitchBotAdvertisement(
- address="aa:bb:cc:dd:ee:ff",
- data={
- "data": {
- "battery": 98,
- "iot": 0,
- "is_light": True,
- "led": 0,
- "light_intensity": 2,
- "motion_detected": False,
- "sense_distance": 0,
- "tested": False,
- },
- "isEncrypted": False,
- "model": "s",
- "modelFriendlyName": "Motion Sensor",
- "modelName": SwitchbotModel.MOTION_SENSOR,
- "rawAdvData": b"s\x00\xe2\x04g\x02",
- },
- device=ble_device,
- rssi=-93,
- )
- def test_motion_sensor_is_light_active():
- """Test parsing motion sensor with motion data."""
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- manufacturer_data={},
- service_data={"0000fd3d-0000-1000-8000-00805f9b34fb": b"s\x00\xe2\x04g\x02"},
- tx_power=-127,
- rssi=-93,
- )
- result = parse_advertisement_data(
- ble_device, adv_data, SwitchbotModel.MOTION_SENSOR
- )
- assert result == SwitchBotAdvertisement(
- address="aa:bb:cc:dd:ee:ff",
- data={
- "data": {
- "battery": 98,
- "iot": 0,
- "is_light": True,
- "led": 0,
- "light_intensity": 2,
- "motion_detected": False,
- "sense_distance": 0,
- "tested": False,
- },
- "isEncrypted": False,
- "model": "s",
- "modelFriendlyName": "Motion Sensor",
- "modelName": SwitchbotModel.MOTION_SENSOR,
- "rawAdvData": b"s\x00\xe2\x04g\x02",
- },
- device=ble_device,
- rssi=-93,
- )
- def test_motion_with_light_detected():
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- manufacturer_data={2409: b"\xc0!\x9a\xe8\xbcIvl\x00,"},
- service_data={"0000fd3d-0000-1000-8000-00805f9b34fb": b"s@\xe2\x00,\x02"},
- tx_power=-127,
- rssi=-84,
- )
- result = parse_advertisement_data(
- ble_device, adv_data, SwitchbotModel.MOTION_SENSOR
- )
- assert result == SwitchBotAdvertisement(
- address="aa:bb:cc:dd:ee:ff",
- data={
- "data": {
- "battery": 98,
- "iot": 0,
- "is_light": True,
- "led": 0,
- "light_intensity": 2,
- "motion_detected": True,
- "sense_distance": 0,
- "tested": False,
- },
- "isEncrypted": False,
- "model": "s",
- "modelFriendlyName": "Motion Sensor",
- "modelName": SwitchbotModel.MOTION_SENSOR,
- "rawAdvData": b"s@\xe2\x00,\x02",
- },
- device=ble_device,
- rssi=-84,
- )
- def test_motion_sensor_motion_passive():
- """Test parsing motion sensor with motion data."""
- ble_device = BLEDevice("aa:bb:cc:dd:ee:ff", "any")
- adv_data = generate_advertisement_data(
- manufacturer_data={2409: b"\xc0!\x9a\xe8\xbcIi\\\x008"},
- service_data={},
- tx_power=-127,
- rssi=-87,
- )
- result = parse_advertisement_data(ble_device, adv_data)
- assert result == SwitchBotAdvertisement(
- address="aa:bb:cc:dd:ee:ff",
- data={
- "data": {
- "battery": None,
- "iot": None,
- "is_light": False,
- "led": None,
- "light_intensity": None,
- "motion_detected": True,
- "sense_distance": None,
- "tested": None,
- },
- "isEncrypted": False,
- "model": "s",
- "modelFriendlyName": "Motion Sensor",
- "modelName": SwitchbotModel.MOTION_SENSOR,
- "rawAdvData": None,
- },
- device=ble_device,
- rssi=-87,
- )
|