diff --git a/homeassistant/components/matter/diagnostics.py b/homeassistant/components/matter/diagnostics.py index c951e91e82c..77234ab48b5 100644 --- a/homeassistant/components/matter/diagnostics.py +++ b/homeassistant/components/matter/diagnostics.py @@ -14,7 +14,7 @@ from homeassistant.helpers import device_registry as dr from .const import DOMAIN, ID_TYPE_DEVICE_ID from .helpers import get_device_id, get_matter -ATTRIBUTES_TO_REDACT = {"chip.clusters.Objects.Basic.Attributes.Location"} +ATTRIBUTES_TO_REDACT = {"chip.clusters.Objects.BasicInformation.Attributes.Location"} def redact_matter_attributes(node_data: dict[str, Any]) -> dict[str, Any]: diff --git a/homeassistant/components/matter/manifest.json b/homeassistant/components/matter/manifest.json index 4260cd82074..2e07ccf2531 100644 --- a/homeassistant/components/matter/manifest.json +++ b/homeassistant/components/matter/manifest.json @@ -3,7 +3,7 @@ "name": "Matter (BETA)", "config_flow": true, "documentation": "https://www.home-assistant.io/integrations/matter", - "requirements": ["python-matter-server==1.1.0"], + "requirements": ["python-matter-server==2.0.0"], "dependencies": ["websocket_api"], "codeowners": ["@home-assistant/matter"], "iot_class": "local_push" diff --git a/requirements_all.txt b/requirements_all.txt index 280d7f043b0..df3dc92c5be 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -2066,7 +2066,7 @@ python-kasa==0.5.0 # python-lirc==1.2.3 # homeassistant.components.matter -python-matter-server==1.1.0 +python-matter-server==2.0.0 # homeassistant.components.xiaomi_miio python-miio==0.5.12 diff --git a/requirements_test_all.txt b/requirements_test_all.txt index 8fc204d3651..8823db4d27e 100644 --- a/requirements_test_all.txt +++ b/requirements_test_all.txt @@ -1462,7 +1462,7 @@ python-juicenet==1.1.0 python-kasa==0.5.0 # homeassistant.components.matter -python-matter-server==1.1.0 +python-matter-server==2.0.0 # homeassistant.components.xiaomi_miio python-miio==0.5.12 diff --git a/tests/components/matter/conftest.py b/tests/components/matter/conftest.py index 486e2fd26ac..ad66bb7f6a9 100644 --- a/tests/components/matter/conftest.py +++ b/tests/components/matter/conftest.py @@ -27,7 +27,6 @@ async def matter_client_fixture() -> AsyncGenerator[MagicMock, None]: async def connect() -> None: """Mock connect.""" await asyncio.sleep(0) - client.connected = True async def listen(init_ready: asyncio.Event | None) -> None: """Mock listen.""" diff --git a/tests/components/matter/fixtures/config_entry_diagnostics.json b/tests/components/matter/fixtures/config_entry_diagnostics.json index b013a79d41b..13a4e7d26a5 100644 --- a/tests/components/matter/fixtures/config_entry_diagnostics.json +++ b/tests/components/matter/fixtures/config_entry_diagnostics.json @@ -309,10 +309,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.DataModelRevision", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.DataModelRevision", "attribute_name": "DataModelRevision", "value": 1 }, @@ -320,10 +320,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.VendorName", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorName", "attribute_name": "VendorName", "value": "Nabu Casa" }, @@ -331,10 +331,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.VendorID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorID", "attribute_name": "VendorID", "value": 65521 }, @@ -342,10 +342,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductName", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductName", "attribute_name": "ProductName", "value": "M5STAMP Lighting App" }, @@ -353,10 +353,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductID", "attribute_name": "ProductID", "value": 32768 }, @@ -364,10 +364,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.NodeLabel", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.NodeLabel", "attribute_name": "NodeLabel", "value": "" }, @@ -375,10 +375,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.Location", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Location", "attribute_name": "Location", "value": "XX" }, @@ -386,10 +386,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.HardwareVersion", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersion", "attribute_name": "HardwareVersion", "value": 0 }, @@ -397,10 +397,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.HardwareVersionString", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersionString", "attribute_name": "HardwareVersionString", "value": "v1.0" }, @@ -408,10 +408,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 9, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SoftwareVersion", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersion", "attribute_name": "SoftwareVersion", "value": 1 }, @@ -419,10 +419,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 10, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SoftwareVersionString", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersionString", "attribute_name": "SoftwareVersionString", "value": "v1.0" }, @@ -430,10 +430,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 11, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ManufacturingDate", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ManufacturingDate", "attribute_name": "ManufacturingDate", "value": "20200101" }, @@ -441,10 +441,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 12, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.PartNumber", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.PartNumber", "attribute_name": "PartNumber", "value": "" }, @@ -452,10 +452,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 13, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductURL", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductURL", "attribute_name": "ProductURL", "value": "" }, @@ -463,10 +463,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 14, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductLabel", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductLabel", "attribute_name": "ProductLabel", "value": "" }, @@ -474,10 +474,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SerialNumber", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SerialNumber", "attribute_name": "SerialNumber", "value": "TEST_SN" }, @@ -485,10 +485,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 16, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.LocalConfigDisabled", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.LocalConfigDisabled", "attribute_name": "LocalConfigDisabled", "value": false }, @@ -496,10 +496,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 17, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.Reachable", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Reachable", "attribute_name": "Reachable", "value": true }, @@ -507,10 +507,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 18, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.UniqueID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.UniqueID", "attribute_name": "UniqueID", "value": "869D5F986B588B29" }, @@ -518,10 +518,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 19, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.CapabilityMinima", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.CapabilityMinima", "attribute_name": "CapabilityMinima", "value": { "caseSessionsPerFabric": 3, @@ -532,10 +532,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.FeatureMap", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.FeatureMap", "attribute_name": "FeatureMap", "value": 0 }, @@ -543,10 +543,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ClusterRevision", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ClusterRevision", "attribute_name": "ClusterRevision", "value": 1 }, @@ -554,10 +554,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.GeneratedCommandList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.GeneratedCommandList", "attribute_name": "GeneratedCommandList", "value": [] }, @@ -565,10 +565,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.AcceptedCommandList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AcceptedCommandList", "attribute_name": "AcceptedCommandList", "value": [] }, @@ -576,10 +576,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.AttributeList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AttributeList", "attribute_name": "AttributeList", "value": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, diff --git a/tests/components/matter/fixtures/config_entry_diagnostics_redacted.json b/tests/components/matter/fixtures/config_entry_diagnostics_redacted.json index b0623deca22..8f798a50467 100644 --- a/tests/components/matter/fixtures/config_entry_diagnostics_redacted.json +++ b/tests/components/matter/fixtures/config_entry_diagnostics_redacted.json @@ -310,10 +310,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.DataModelRevision", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.DataModelRevision", "attribute_name": "DataModelRevision", "value": 1 }, @@ -321,10 +321,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.VendorName", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorName", "attribute_name": "VendorName", "value": "Nabu Casa" }, @@ -332,10 +332,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.VendorID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorID", "attribute_name": "VendorID", "value": 65521 }, @@ -343,10 +343,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductName", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductName", "attribute_name": "ProductName", "value": "M5STAMP Lighting App" }, @@ -354,10 +354,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductID", "attribute_name": "ProductID", "value": 32768 }, @@ -365,10 +365,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.NodeLabel", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.NodeLabel", "attribute_name": "NodeLabel", "value": "" }, @@ -376,10 +376,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.Location", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Location", "attribute_name": "Location", "value": "**REDACTED**" }, @@ -387,10 +387,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.HardwareVersion", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersion", "attribute_name": "HardwareVersion", "value": 0 }, @@ -398,10 +398,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.HardwareVersionString", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersionString", "attribute_name": "HardwareVersionString", "value": "v1.0" }, @@ -409,10 +409,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 9, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SoftwareVersion", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersion", "attribute_name": "SoftwareVersion", "value": 1 }, @@ -420,10 +420,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 10, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SoftwareVersionString", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersionString", "attribute_name": "SoftwareVersionString", "value": "v1.0" }, @@ -431,10 +431,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 11, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ManufacturingDate", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ManufacturingDate", "attribute_name": "ManufacturingDate", "value": "20200101" }, @@ -442,10 +442,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 12, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.PartNumber", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.PartNumber", "attribute_name": "PartNumber", "value": "" }, @@ -453,10 +453,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 13, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductURL", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductURL", "attribute_name": "ProductURL", "value": "" }, @@ -464,10 +464,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 14, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductLabel", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductLabel", "attribute_name": "ProductLabel", "value": "" }, @@ -475,10 +475,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SerialNumber", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SerialNumber", "attribute_name": "SerialNumber", "value": "TEST_SN" }, @@ -486,10 +486,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 16, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.LocalConfigDisabled", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.LocalConfigDisabled", "attribute_name": "LocalConfigDisabled", "value": false }, @@ -497,10 +497,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 17, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.Reachable", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Reachable", "attribute_name": "Reachable", "value": true }, @@ -508,10 +508,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 18, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.UniqueID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.UniqueID", "attribute_name": "UniqueID", "value": "869D5F986B588B29" }, @@ -519,10 +519,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 19, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.CapabilityMinima", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.CapabilityMinima", "attribute_name": "CapabilityMinima", "value": { "caseSessionsPerFabric": 3, @@ -533,10 +533,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.FeatureMap", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.FeatureMap", "attribute_name": "FeatureMap", "value": 0 }, @@ -544,10 +544,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ClusterRevision", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ClusterRevision", "attribute_name": "ClusterRevision", "value": 1 }, @@ -555,10 +555,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.GeneratedCommandList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.GeneratedCommandList", "attribute_name": "GeneratedCommandList", "value": [] }, @@ -566,10 +566,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.AcceptedCommandList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AcceptedCommandList", "attribute_name": "AcceptedCommandList", "value": [] }, @@ -577,10 +577,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.AttributeList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AttributeList", "attribute_name": "AttributeList", "value": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, diff --git a/tests/components/matter/fixtures/nodes/contact-sensor.json b/tests/components/matter/fixtures/nodes/contact-sensor.json index 2aec6a32516..5e2ca4e937c 100644 --- a/tests/components/matter/fixtures/nodes/contact-sensor.json +++ b/tests/components/matter/fixtures/nodes/contact-sensor.json @@ -115,10 +115,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.DataModelRevision", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.DataModelRevision", "attribute_name": "DataModelRevision", "value": 1 }, @@ -126,10 +126,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.VendorName", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorName", "attribute_name": "VendorName", "value": "Nabu Casa" }, @@ -137,10 +137,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.VendorID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorID", "attribute_name": "VendorID", "value": 65521 }, @@ -148,10 +148,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductName", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductName", "attribute_name": "ProductName", "value": "Mock ContactSensor" }, @@ -159,10 +159,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductID", "attribute_name": "ProductID", "value": 32768 }, @@ -170,10 +170,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.NodeLabel", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.NodeLabel", "attribute_name": "NodeLabel", "value": "Mock Contact sensor" }, @@ -181,10 +181,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.Location", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Location", "attribute_name": "Location", "value": "XX" }, @@ -192,10 +192,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.HardwareVersion", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersion", "attribute_name": "HardwareVersion", "value": 0 }, @@ -203,10 +203,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.HardwareVersionString", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersionString", "attribute_name": "HardwareVersionString", "value": "v1.0" }, @@ -214,10 +214,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 9, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SoftwareVersion", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersion", "attribute_name": "SoftwareVersion", "value": 1 }, @@ -225,10 +225,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 10, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SoftwareVersionString", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersionString", "attribute_name": "SoftwareVersionString", "value": "v1.0" }, @@ -236,10 +236,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 11, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ManufacturingDate", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ManufacturingDate", "attribute_name": "ManufacturingDate", "value": "20221206" }, @@ -247,10 +247,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 12, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.PartNumber", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.PartNumber", "attribute_name": "PartNumber", "value": "" }, @@ -258,10 +258,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 13, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductURL", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductURL", "attribute_name": "ProductURL", "value": "" }, @@ -269,10 +269,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 14, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductLabel", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductLabel", "attribute_name": "ProductLabel", "value": "" }, @@ -280,10 +280,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SerialNumber", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SerialNumber", "attribute_name": "SerialNumber", "value": "TEST_SN" }, @@ -291,10 +291,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 16, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.LocalConfigDisabled", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.LocalConfigDisabled", "attribute_name": "LocalConfigDisabled", "value": false }, @@ -302,10 +302,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 17, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.Reachable", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Reachable", "attribute_name": "Reachable", "value": true }, @@ -313,10 +313,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 18, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.UniqueID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.UniqueID", "attribute_name": "UniqueID", "value": "mock-contact-sensor" }, @@ -324,10 +324,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 19, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.CapabilityMinima", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.CapabilityMinima", "attribute_name": "CapabilityMinima", "value": { "caseSessionsPerFabric": 3, @@ -338,10 +338,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.FeatureMap", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.FeatureMap", "attribute_name": "FeatureMap", "value": 0 }, @@ -349,10 +349,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ClusterRevision", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ClusterRevision", "attribute_name": "ClusterRevision", "value": 1 }, @@ -360,10 +360,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.GeneratedCommandList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.GeneratedCommandList", "attribute_name": "GeneratedCommandList", "value": [] }, @@ -371,10 +371,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.AcceptedCommandList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AcceptedCommandList", "attribute_name": "AcceptedCommandList", "value": [] }, @@ -382,10 +382,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.AttributeList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AttributeList", "attribute_name": "AttributeList", "value": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, diff --git a/tests/components/matter/fixtures/nodes/device_diagnostics.json b/tests/components/matter/fixtures/nodes/device_diagnostics.json index 4b597e71eaf..377d72c7352 100644 --- a/tests/components/matter/fixtures/nodes/device_diagnostics.json +++ b/tests/components/matter/fixtures/nodes/device_diagnostics.json @@ -299,10 +299,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.DataModelRevision", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.DataModelRevision", "attribute_name": "DataModelRevision", "value": 1 }, @@ -310,10 +310,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.VendorName", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorName", "attribute_name": "VendorName", "value": "Nabu Casa" }, @@ -321,10 +321,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.VendorID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorID", "attribute_name": "VendorID", "value": 65521 }, @@ -332,10 +332,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductName", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductName", "attribute_name": "ProductName", "value": "M5STAMP Lighting App" }, @@ -343,10 +343,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductID", "attribute_name": "ProductID", "value": 32768 }, @@ -354,10 +354,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.NodeLabel", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.NodeLabel", "attribute_name": "NodeLabel", "value": "" }, @@ -365,10 +365,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.Location", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Location", "attribute_name": "Location", "value": "XX" }, @@ -376,10 +376,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.HardwareVersion", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersion", "attribute_name": "HardwareVersion", "value": 0 }, @@ -387,10 +387,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.HardwareVersionString", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersionString", "attribute_name": "HardwareVersionString", "value": "v1.0" }, @@ -398,10 +398,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 9, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SoftwareVersion", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersion", "attribute_name": "SoftwareVersion", "value": 1 }, @@ -409,10 +409,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 10, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SoftwareVersionString", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersionString", "attribute_name": "SoftwareVersionString", "value": "v1.0" }, @@ -420,10 +420,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 11, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ManufacturingDate", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ManufacturingDate", "attribute_name": "ManufacturingDate", "value": "20200101" }, @@ -431,10 +431,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 12, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.PartNumber", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.PartNumber", "attribute_name": "PartNumber", "value": "" }, @@ -442,10 +442,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 13, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductURL", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductURL", "attribute_name": "ProductURL", "value": "" }, @@ -453,10 +453,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 14, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductLabel", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductLabel", "attribute_name": "ProductLabel", "value": "" }, @@ -464,10 +464,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SerialNumber", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SerialNumber", "attribute_name": "SerialNumber", "value": "TEST_SN" }, @@ -475,10 +475,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 16, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.LocalConfigDisabled", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.LocalConfigDisabled", "attribute_name": "LocalConfigDisabled", "value": false }, @@ -486,10 +486,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 17, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.Reachable", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Reachable", "attribute_name": "Reachable", "value": true }, @@ -497,10 +497,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 18, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.UniqueID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.UniqueID", "attribute_name": "UniqueID", "value": "869D5F986B588B29" }, @@ -508,10 +508,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 19, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.CapabilityMinima", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.CapabilityMinima", "attribute_name": "CapabilityMinima", "value": { "caseSessionsPerFabric": 3, @@ -522,10 +522,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.FeatureMap", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.FeatureMap", "attribute_name": "FeatureMap", "value": 0 }, @@ -533,10 +533,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ClusterRevision", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ClusterRevision", "attribute_name": "ClusterRevision", "value": 1 }, @@ -544,10 +544,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.GeneratedCommandList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.GeneratedCommandList", "attribute_name": "GeneratedCommandList", "value": [] }, @@ -555,10 +555,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.AcceptedCommandList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AcceptedCommandList", "attribute_name": "AcceptedCommandList", "value": [] }, @@ -566,10 +566,10 @@ "node_id": 5, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.AttributeList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AttributeList", "attribute_name": "AttributeList", "value": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, diff --git a/tests/components/matter/fixtures/nodes/dimmable-light.json b/tests/components/matter/fixtures/nodes/dimmable-light.json index 03067468f24..7449c600b3c 100644 --- a/tests/components/matter/fixtures/nodes/dimmable-light.json +++ b/tests/components/matter/fixtures/nodes/dimmable-light.json @@ -299,10 +299,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.DataModelRevision", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.DataModelRevision", "attribute_name": "DataModelRevision", "value": 1 }, @@ -310,10 +310,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.VendorName", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorName", "attribute_name": "VendorName", "value": "Nabu Casa" }, @@ -321,10 +321,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.VendorID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorID", "attribute_name": "VendorID", "value": 65521 }, @@ -332,10 +332,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductName", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductName", "attribute_name": "ProductName", "value": "Mock Dimmable Light" }, @@ -343,10 +343,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductID", "attribute_name": "ProductID", "value": 32768 }, @@ -354,10 +354,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.NodeLabel", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.NodeLabel", "attribute_name": "NodeLabel", "value": "Mock Dimmable Light" }, @@ -365,10 +365,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.Location", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Location", "attribute_name": "Location", "value": "XX" }, @@ -376,10 +376,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.HardwareVersion", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersion", "attribute_name": "HardwareVersion", "value": 0 }, @@ -387,10 +387,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.HardwareVersionString", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersionString", "attribute_name": "HardwareVersionString", "value": "v1.0" }, @@ -398,10 +398,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 9, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SoftwareVersion", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersion", "attribute_name": "SoftwareVersion", "value": 1 }, @@ -409,10 +409,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 10, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SoftwareVersionString", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersionString", "attribute_name": "SoftwareVersionString", "value": "v1.0" }, @@ -420,10 +420,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 11, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ManufacturingDate", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ManufacturingDate", "attribute_name": "ManufacturingDate", "value": "20200101" }, @@ -431,10 +431,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 12, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.PartNumber", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.PartNumber", "attribute_name": "PartNumber", "value": "" }, @@ -442,10 +442,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 13, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductURL", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductURL", "attribute_name": "ProductURL", "value": "" }, @@ -453,10 +453,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 14, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductLabel", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductLabel", "attribute_name": "ProductLabel", "value": "" }, @@ -464,10 +464,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SerialNumber", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SerialNumber", "attribute_name": "SerialNumber", "value": "TEST_SN" }, @@ -475,10 +475,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 16, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.LocalConfigDisabled", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.LocalConfigDisabled", "attribute_name": "LocalConfigDisabled", "value": false }, @@ -486,10 +486,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 17, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.Reachable", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Reachable", "attribute_name": "Reachable", "value": true }, @@ -497,10 +497,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 18, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.UniqueID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.UniqueID", "attribute_name": "UniqueID", "value": "mock-dimmable-light" }, @@ -508,10 +508,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 19, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.CapabilityMinima", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.CapabilityMinima", "attribute_name": "CapabilityMinima", "value": { "caseSessionsPerFabric": 3, @@ -522,10 +522,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.FeatureMap", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.FeatureMap", "attribute_name": "FeatureMap", "value": 0 }, @@ -533,10 +533,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ClusterRevision", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ClusterRevision", "attribute_name": "ClusterRevision", "value": 1 }, @@ -544,10 +544,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.GeneratedCommandList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.GeneratedCommandList", "attribute_name": "GeneratedCommandList", "value": [] }, @@ -555,10 +555,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.AcceptedCommandList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AcceptedCommandList", "attribute_name": "AcceptedCommandList", "value": [] }, @@ -566,10 +566,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.AttributeList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AttributeList", "attribute_name": "AttributeList", "value": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, diff --git a/tests/components/matter/fixtures/nodes/flow-sensor.json b/tests/components/matter/fixtures/nodes/flow-sensor.json index 92f4c5b73b2..fbc39412245 100644 --- a/tests/components/matter/fixtures/nodes/flow-sensor.json +++ b/tests/components/matter/fixtures/nodes/flow-sensor.json @@ -115,10 +115,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.DataModelRevision", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.DataModelRevision", "attribute_name": "DataModelRevision", "value": 1 }, @@ -126,10 +126,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.VendorName", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorName", "attribute_name": "VendorName", "value": "Nabu Casa" }, @@ -137,10 +137,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.VendorID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorID", "attribute_name": "VendorID", "value": 65521 }, @@ -148,10 +148,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductName", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductName", "attribute_name": "ProductName", "value": "Mock FlowSensor" }, @@ -159,10 +159,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductID", "attribute_name": "ProductID", "value": 32768 }, @@ -170,10 +170,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.NodeLabel", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.NodeLabel", "attribute_name": "NodeLabel", "value": "Mock Flow Sensor" }, @@ -181,10 +181,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.Location", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Location", "attribute_name": "Location", "value": "XX" }, @@ -192,10 +192,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.HardwareVersion", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersion", "attribute_name": "HardwareVersion", "value": 0 }, @@ -203,10 +203,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.HardwareVersionString", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersionString", "attribute_name": "HardwareVersionString", "value": "v1.0" }, @@ -214,10 +214,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 9, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SoftwareVersion", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersion", "attribute_name": "SoftwareVersion", "value": 1 }, @@ -225,10 +225,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 10, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SoftwareVersionString", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersionString", "attribute_name": "SoftwareVersionString", "value": "v1.0" }, @@ -236,10 +236,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 11, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ManufacturingDate", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ManufacturingDate", "attribute_name": "ManufacturingDate", "value": "20221206" }, @@ -247,10 +247,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 12, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.PartNumber", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.PartNumber", "attribute_name": "PartNumber", "value": "" }, @@ -258,10 +258,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 13, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductURL", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductURL", "attribute_name": "ProductURL", "value": "" }, @@ -269,10 +269,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 14, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductLabel", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductLabel", "attribute_name": "ProductLabel", "value": "" }, @@ -280,10 +280,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SerialNumber", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SerialNumber", "attribute_name": "SerialNumber", "value": "TEST_SN" }, @@ -291,10 +291,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 16, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.LocalConfigDisabled", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.LocalConfigDisabled", "attribute_name": "LocalConfigDisabled", "value": false }, @@ -302,10 +302,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 17, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.Reachable", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Reachable", "attribute_name": "Reachable", "value": true }, @@ -313,10 +313,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 18, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.UniqueID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.UniqueID", "attribute_name": "UniqueID", "value": "mock-flow-sensor" }, @@ -324,10 +324,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 19, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.CapabilityMinima", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.CapabilityMinima", "attribute_name": "CapabilityMinima", "value": { "caseSessionsPerFabric": 3, @@ -338,10 +338,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.FeatureMap", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.FeatureMap", "attribute_name": "FeatureMap", "value": 0 }, @@ -349,10 +349,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ClusterRevision", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ClusterRevision", "attribute_name": "ClusterRevision", "value": 1 }, @@ -360,10 +360,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.GeneratedCommandList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.GeneratedCommandList", "attribute_name": "GeneratedCommandList", "value": [] }, @@ -371,10 +371,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.AcceptedCommandList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AcceptedCommandList", "attribute_name": "AcceptedCommandList", "value": [] }, @@ -382,10 +382,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.AttributeList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AttributeList", "attribute_name": "AttributeList", "value": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, diff --git a/tests/components/matter/fixtures/nodes/humidity-sensor.json b/tests/components/matter/fixtures/nodes/humidity-sensor.json index 34b95263de5..0782d7cacfa 100644 --- a/tests/components/matter/fixtures/nodes/humidity-sensor.json +++ b/tests/components/matter/fixtures/nodes/humidity-sensor.json @@ -115,10 +115,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.DataModelRevision", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.DataModelRevision", "attribute_name": "DataModelRevision", "value": 1 }, @@ -126,10 +126,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.VendorName", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorName", "attribute_name": "VendorName", "value": "Nabu Casa" }, @@ -137,10 +137,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.VendorID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorID", "attribute_name": "VendorID", "value": 65521 }, @@ -148,10 +148,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductName", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductName", "attribute_name": "ProductName", "value": "Mock HumiditySensor" }, @@ -159,10 +159,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductID", "attribute_name": "ProductID", "value": 32768 }, @@ -170,10 +170,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.NodeLabel", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.NodeLabel", "attribute_name": "NodeLabel", "value": "Mock Humidity Sensor" }, @@ -181,10 +181,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.Location", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Location", "attribute_name": "Location", "value": "XX" }, @@ -192,10 +192,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.HardwareVersion", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersion", "attribute_name": "HardwareVersion", "value": 0 }, @@ -203,10 +203,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.HardwareVersionString", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersionString", "attribute_name": "HardwareVersionString", "value": "v1.0" }, @@ -214,10 +214,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 9, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SoftwareVersion", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersion", "attribute_name": "SoftwareVersion", "value": 1 }, @@ -225,10 +225,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 10, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SoftwareVersionString", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersionString", "attribute_name": "SoftwareVersionString", "value": "v1.0" }, @@ -236,10 +236,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 11, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ManufacturingDate", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ManufacturingDate", "attribute_name": "ManufacturingDate", "value": "20221206" }, @@ -247,10 +247,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 12, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.PartNumber", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.PartNumber", "attribute_name": "PartNumber", "value": "" }, @@ -258,10 +258,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 13, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductURL", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductURL", "attribute_name": "ProductURL", "value": "" }, @@ -269,10 +269,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 14, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductLabel", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductLabel", "attribute_name": "ProductLabel", "value": "" }, @@ -280,10 +280,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SerialNumber", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SerialNumber", "attribute_name": "SerialNumber", "value": "TEST_SN" }, @@ -291,10 +291,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 16, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.LocalConfigDisabled", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.LocalConfigDisabled", "attribute_name": "LocalConfigDisabled", "value": false }, @@ -302,10 +302,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 17, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.Reachable", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Reachable", "attribute_name": "Reachable", "value": true }, @@ -313,10 +313,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 18, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.UniqueID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.UniqueID", "attribute_name": "UniqueID", "value": "mock-humidity-sensor" }, @@ -324,10 +324,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 19, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.CapabilityMinima", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.CapabilityMinima", "attribute_name": "CapabilityMinima", "value": { "caseSessionsPerFabric": 3, @@ -338,10 +338,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.FeatureMap", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.FeatureMap", "attribute_name": "FeatureMap", "value": 0 }, @@ -349,10 +349,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ClusterRevision", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ClusterRevision", "attribute_name": "ClusterRevision", "value": 1 }, @@ -360,10 +360,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.GeneratedCommandList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.GeneratedCommandList", "attribute_name": "GeneratedCommandList", "value": [] }, @@ -371,10 +371,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.AcceptedCommandList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AcceptedCommandList", "attribute_name": "AcceptedCommandList", "value": [] }, @@ -382,10 +382,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.AttributeList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AttributeList", "attribute_name": "AttributeList", "value": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, diff --git a/tests/components/matter/fixtures/nodes/light-sensor.json b/tests/components/matter/fixtures/nodes/light-sensor.json index 152292d4589..07dc8be2a8e 100644 --- a/tests/components/matter/fixtures/nodes/light-sensor.json +++ b/tests/components/matter/fixtures/nodes/light-sensor.json @@ -115,10 +115,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.DataModelRevision", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.DataModelRevision", "attribute_name": "DataModelRevision", "value": 1 }, @@ -126,10 +126,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.VendorName", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorName", "attribute_name": "VendorName", "value": "Nabu Casa" }, @@ -137,10 +137,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.VendorID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorID", "attribute_name": "VendorID", "value": 65521 }, @@ -148,10 +148,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductName", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductName", "attribute_name": "ProductName", "value": "Mock LightSensor" }, @@ -159,10 +159,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductID", "attribute_name": "ProductID", "value": 32768 }, @@ -170,10 +170,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.NodeLabel", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.NodeLabel", "attribute_name": "NodeLabel", "value": "Mock Light Sensor" }, @@ -181,10 +181,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.Location", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Location", "attribute_name": "Location", "value": "XX" }, @@ -192,10 +192,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.HardwareVersion", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersion", "attribute_name": "HardwareVersion", "value": 0 }, @@ -203,10 +203,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.HardwareVersionString", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersionString", "attribute_name": "HardwareVersionString", "value": "v1.0" }, @@ -214,10 +214,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 9, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SoftwareVersion", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersion", "attribute_name": "SoftwareVersion", "value": 1 }, @@ -225,10 +225,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 10, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SoftwareVersionString", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersionString", "attribute_name": "SoftwareVersionString", "value": "v1.0" }, @@ -236,10 +236,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 11, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ManufacturingDate", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ManufacturingDate", "attribute_name": "ManufacturingDate", "value": "20221206" }, @@ -247,10 +247,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 12, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.PartNumber", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.PartNumber", "attribute_name": "PartNumber", "value": "" }, @@ -258,10 +258,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 13, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductURL", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductURL", "attribute_name": "ProductURL", "value": "" }, @@ -269,10 +269,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 14, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductLabel", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductLabel", "attribute_name": "ProductLabel", "value": "" }, @@ -280,10 +280,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SerialNumber", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SerialNumber", "attribute_name": "SerialNumber", "value": "TEST_SN" }, @@ -291,10 +291,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 16, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.LocalConfigDisabled", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.LocalConfigDisabled", "attribute_name": "LocalConfigDisabled", "value": false }, @@ -302,10 +302,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 17, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.Reachable", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Reachable", "attribute_name": "Reachable", "value": true }, @@ -313,10 +313,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 18, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.UniqueID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.UniqueID", "attribute_name": "UniqueID", "value": "mock-light-sensor" }, @@ -324,10 +324,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 19, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.CapabilityMinima", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.CapabilityMinima", "attribute_name": "CapabilityMinima", "value": { "caseSessionsPerFabric": 3, @@ -338,10 +338,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.FeatureMap", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.FeatureMap", "attribute_name": "FeatureMap", "value": 0 }, @@ -349,10 +349,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ClusterRevision", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ClusterRevision", "attribute_name": "ClusterRevision", "value": 1 }, @@ -360,10 +360,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.GeneratedCommandList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.GeneratedCommandList", "attribute_name": "GeneratedCommandList", "value": [] }, @@ -371,10 +371,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.AcceptedCommandList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AcceptedCommandList", "attribute_name": "AcceptedCommandList", "value": [] }, @@ -382,10 +382,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.AttributeList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AttributeList", "attribute_name": "AttributeList", "value": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, diff --git a/tests/components/matter/fixtures/nodes/occupancy-sensor.json b/tests/components/matter/fixtures/nodes/occupancy-sensor.json index 3e16b92f261..4d8a05a9c1b 100644 --- a/tests/components/matter/fixtures/nodes/occupancy-sensor.json +++ b/tests/components/matter/fixtures/nodes/occupancy-sensor.json @@ -115,10 +115,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.DataModelRevision", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.DataModelRevision", "attribute_name": "DataModelRevision", "value": 1 }, @@ -126,10 +126,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.VendorName", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorName", "attribute_name": "VendorName", "value": "Nabu Casa" }, @@ -137,10 +137,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.VendorID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorID", "attribute_name": "VendorID", "value": 65521 }, @@ -148,10 +148,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductName", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductName", "attribute_name": "ProductName", "value": "Mock OccupancySensor" }, @@ -159,10 +159,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductID", "attribute_name": "ProductID", "value": 32768 }, @@ -170,10 +170,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.NodeLabel", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.NodeLabel", "attribute_name": "NodeLabel", "value": "Mock Occupancy Sensor" }, @@ -181,10 +181,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.Location", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Location", "attribute_name": "Location", "value": "XX" }, @@ -192,10 +192,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.HardwareVersion", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersion", "attribute_name": "HardwareVersion", "value": 0 }, @@ -203,10 +203,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.HardwareVersionString", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersionString", "attribute_name": "HardwareVersionString", "value": "v1.0" }, @@ -214,10 +214,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 9, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SoftwareVersion", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersion", "attribute_name": "SoftwareVersion", "value": 1 }, @@ -225,10 +225,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 10, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SoftwareVersionString", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersionString", "attribute_name": "SoftwareVersionString", "value": "v1.0" }, @@ -236,10 +236,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 11, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ManufacturingDate", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ManufacturingDate", "attribute_name": "ManufacturingDate", "value": "20221206" }, @@ -247,10 +247,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 12, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.PartNumber", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.PartNumber", "attribute_name": "PartNumber", "value": "" }, @@ -258,10 +258,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 13, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductURL", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductURL", "attribute_name": "ProductURL", "value": "" }, @@ -269,10 +269,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 14, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductLabel", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductLabel", "attribute_name": "ProductLabel", "value": "" }, @@ -280,10 +280,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SerialNumber", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SerialNumber", "attribute_name": "SerialNumber", "value": "TEST_SN" }, @@ -291,10 +291,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 16, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.LocalConfigDisabled", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.LocalConfigDisabled", "attribute_name": "LocalConfigDisabled", "value": false }, @@ -302,10 +302,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 17, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.Reachable", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Reachable", "attribute_name": "Reachable", "value": true }, @@ -313,10 +313,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 18, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.UniqueID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.UniqueID", "attribute_name": "UniqueID", "value": "mock-temperature-sensor" }, @@ -324,10 +324,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 19, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.CapabilityMinima", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.CapabilityMinima", "attribute_name": "CapabilityMinima", "value": { "caseSessionsPerFabric": 3, @@ -338,10 +338,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.FeatureMap", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.FeatureMap", "attribute_name": "FeatureMap", "value": 0 }, @@ -349,10 +349,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ClusterRevision", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ClusterRevision", "attribute_name": "ClusterRevision", "value": 1 }, @@ -360,10 +360,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.GeneratedCommandList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.GeneratedCommandList", "attribute_name": "GeneratedCommandList", "value": [] }, @@ -371,10 +371,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.AcceptedCommandList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AcceptedCommandList", "attribute_name": "AcceptedCommandList", "value": [] }, @@ -382,10 +382,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.AttributeList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AttributeList", "attribute_name": "AttributeList", "value": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, diff --git a/tests/components/matter/fixtures/nodes/on-off-plugin-unit.json b/tests/components/matter/fixtures/nodes/on-off-plugin-unit.json index e26450a9a28..60037588f67 100644 --- a/tests/components/matter/fixtures/nodes/on-off-plugin-unit.json +++ b/tests/components/matter/fixtures/nodes/on-off-plugin-unit.json @@ -115,10 +115,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.DataModelRevision", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.DataModelRevision", "attribute_name": "DataModelRevision", "value": 1 }, @@ -126,10 +126,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.VendorName", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorName", "attribute_name": "VendorName", "value": "Nabu Casa" }, @@ -137,10 +137,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.VendorID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorID", "attribute_name": "VendorID", "value": 65521 }, @@ -148,10 +148,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductName", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductName", "attribute_name": "ProductName", "value": "Mock OnOffPluginUnit (powerplug/switch)" }, @@ -159,10 +159,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductID", "attribute_name": "ProductID", "value": 32768 }, @@ -170,10 +170,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.NodeLabel", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.NodeLabel", "attribute_name": "NodeLabel", "value": "" }, @@ -181,10 +181,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.Location", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Location", "attribute_name": "Location", "value": "XX" }, @@ -192,10 +192,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.HardwareVersion", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersion", "attribute_name": "HardwareVersion", "value": 0 }, @@ -203,10 +203,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.HardwareVersionString", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersionString", "attribute_name": "HardwareVersionString", "value": "v1.0" }, @@ -214,10 +214,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 9, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SoftwareVersion", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersion", "attribute_name": "SoftwareVersion", "value": 1 }, @@ -225,10 +225,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 10, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SoftwareVersionString", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersionString", "attribute_name": "SoftwareVersionString", "value": "v1.0" }, @@ -236,10 +236,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 11, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ManufacturingDate", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ManufacturingDate", "attribute_name": "ManufacturingDate", "value": "20221206" }, @@ -247,10 +247,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 12, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.PartNumber", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.PartNumber", "attribute_name": "PartNumber", "value": "" }, @@ -258,10 +258,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 13, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductURL", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductURL", "attribute_name": "ProductURL", "value": "" }, @@ -269,10 +269,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 14, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductLabel", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductLabel", "attribute_name": "ProductLabel", "value": "" }, @@ -280,10 +280,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SerialNumber", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SerialNumber", "attribute_name": "SerialNumber", "value": "TEST_SN" }, @@ -291,10 +291,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 16, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.LocalConfigDisabled", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.LocalConfigDisabled", "attribute_name": "LocalConfigDisabled", "value": false }, @@ -302,10 +302,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 17, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.Reachable", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Reachable", "attribute_name": "Reachable", "value": true }, @@ -313,10 +313,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 18, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.UniqueID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.UniqueID", "attribute_name": "UniqueID", "value": "mock-onoff-plugin-unit" }, @@ -324,10 +324,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 19, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.CapabilityMinima", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.CapabilityMinima", "attribute_name": "CapabilityMinima", "value": { "caseSessionsPerFabric": 3, @@ -338,10 +338,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.FeatureMap", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.FeatureMap", "attribute_name": "FeatureMap", "value": 0 }, @@ -349,10 +349,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ClusterRevision", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ClusterRevision", "attribute_name": "ClusterRevision", "value": 1 }, @@ -360,10 +360,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.GeneratedCommandList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.GeneratedCommandList", "attribute_name": "GeneratedCommandList", "value": [] }, @@ -371,10 +371,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.AcceptedCommandList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AcceptedCommandList", "attribute_name": "AcceptedCommandList", "value": [] }, @@ -382,10 +382,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.AttributeList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AttributeList", "attribute_name": "AttributeList", "value": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, diff --git a/tests/components/matter/fixtures/nodes/onoff-light.json b/tests/components/matter/fixtures/nodes/onoff-light.json index 340d7cb71c9..86f294e0255 100644 --- a/tests/components/matter/fixtures/nodes/onoff-light.json +++ b/tests/components/matter/fixtures/nodes/onoff-light.json @@ -299,10 +299,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.DataModelRevision", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.DataModelRevision", "attribute_name": "DataModelRevision", "value": 1 }, @@ -310,10 +310,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.VendorName", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorName", "attribute_name": "VendorName", "value": "Nabu Casa" }, @@ -321,10 +321,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.VendorID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorID", "attribute_name": "VendorID", "value": 65521 }, @@ -332,10 +332,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductName", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductName", "attribute_name": "ProductName", "value": "Mock Light" }, @@ -343,10 +343,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductID", "attribute_name": "ProductID", "value": 32768 }, @@ -354,10 +354,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.NodeLabel", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.NodeLabel", "attribute_name": "NodeLabel", "value": "Mock OnOff Light" }, @@ -365,10 +365,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.Location", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Location", "attribute_name": "Location", "value": "XX" }, @@ -376,10 +376,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.HardwareVersion", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersion", "attribute_name": "HardwareVersion", "value": 0 }, @@ -387,10 +387,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.HardwareVersionString", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersionString", "attribute_name": "HardwareVersionString", "value": "v1.0" }, @@ -398,10 +398,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 9, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SoftwareVersion", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersion", "attribute_name": "SoftwareVersion", "value": 1 }, @@ -409,10 +409,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 10, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SoftwareVersionString", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersionString", "attribute_name": "SoftwareVersionString", "value": "v1.0" }, @@ -420,10 +420,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 11, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ManufacturingDate", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ManufacturingDate", "attribute_name": "ManufacturingDate", "value": "20200101" }, @@ -431,10 +431,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 12, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.PartNumber", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.PartNumber", "attribute_name": "PartNumber", "value": "" }, @@ -442,10 +442,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 13, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductURL", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductURL", "attribute_name": "ProductURL", "value": "" }, @@ -453,10 +453,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 14, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductLabel", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductLabel", "attribute_name": "ProductLabel", "value": "" }, @@ -464,10 +464,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SerialNumber", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SerialNumber", "attribute_name": "SerialNumber", "value": "12345678" }, @@ -475,10 +475,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 16, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.LocalConfigDisabled", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.LocalConfigDisabled", "attribute_name": "LocalConfigDisabled", "value": false }, @@ -486,10 +486,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 17, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.Reachable", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Reachable", "attribute_name": "Reachable", "value": true }, @@ -497,10 +497,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 18, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.UniqueID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.UniqueID", "attribute_name": "UniqueID", "value": "mock-onoff-light" }, @@ -508,10 +508,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 19, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.CapabilityMinima", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.CapabilityMinima", "attribute_name": "CapabilityMinima", "value": { "caseSessionsPerFabric": 3, @@ -522,10 +522,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.FeatureMap", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.FeatureMap", "attribute_name": "FeatureMap", "value": 0 }, @@ -533,10 +533,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ClusterRevision", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ClusterRevision", "attribute_name": "ClusterRevision", "value": 1 }, @@ -544,10 +544,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.GeneratedCommandList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.GeneratedCommandList", "attribute_name": "GeneratedCommandList", "value": [] }, @@ -555,10 +555,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.AcceptedCommandList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AcceptedCommandList", "attribute_name": "AcceptedCommandList", "value": [] }, @@ -566,10 +566,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.AttributeList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AttributeList", "attribute_name": "AttributeList", "value": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, diff --git a/tests/components/matter/fixtures/nodes/pressure-sensor.json b/tests/components/matter/fixtures/nodes/pressure-sensor.json index e338933fbc8..b2dd9964de6 100644 --- a/tests/components/matter/fixtures/nodes/pressure-sensor.json +++ b/tests/components/matter/fixtures/nodes/pressure-sensor.json @@ -115,10 +115,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.DataModelRevision", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.DataModelRevision", "attribute_name": "DataModelRevision", "value": 1 }, @@ -126,10 +126,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.VendorName", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorName", "attribute_name": "VendorName", "value": "Nabu Casa" }, @@ -137,10 +137,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.VendorID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorID", "attribute_name": "VendorID", "value": 65521 }, @@ -148,10 +148,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductName", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductName", "attribute_name": "ProductName", "value": "Mock PressureSensor" }, @@ -159,10 +159,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductID", "attribute_name": "ProductID", "value": 32768 }, @@ -170,10 +170,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.NodeLabel", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.NodeLabel", "attribute_name": "NodeLabel", "value": "Mock Pressure Sensor" }, @@ -181,10 +181,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.Location", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Location", "attribute_name": "Location", "value": "XX" }, @@ -192,10 +192,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.HardwareVersion", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersion", "attribute_name": "HardwareVersion", "value": 0 }, @@ -203,10 +203,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.HardwareVersionString", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersionString", "attribute_name": "HardwareVersionString", "value": "v1.0" }, @@ -214,10 +214,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 9, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SoftwareVersion", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersion", "attribute_name": "SoftwareVersion", "value": 1 }, @@ -225,10 +225,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 10, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SoftwareVersionString", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersionString", "attribute_name": "SoftwareVersionString", "value": "v1.0" }, @@ -236,10 +236,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 11, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ManufacturingDate", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ManufacturingDate", "attribute_name": "ManufacturingDate", "value": "20221206" }, @@ -247,10 +247,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 12, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.PartNumber", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.PartNumber", "attribute_name": "PartNumber", "value": "" }, @@ -258,10 +258,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 13, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductURL", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductURL", "attribute_name": "ProductURL", "value": "" }, @@ -269,10 +269,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 14, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductLabel", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductLabel", "attribute_name": "ProductLabel", "value": "" }, @@ -280,10 +280,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SerialNumber", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SerialNumber", "attribute_name": "SerialNumber", "value": "TEST_SN" }, @@ -291,10 +291,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 16, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.LocalConfigDisabled", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.LocalConfigDisabled", "attribute_name": "LocalConfigDisabled", "value": false }, @@ -302,10 +302,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 17, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.Reachable", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Reachable", "attribute_name": "Reachable", "value": true }, @@ -313,10 +313,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 18, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.UniqueID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.UniqueID", "attribute_name": "UniqueID", "value": "mock-pressure-sensor" }, @@ -324,10 +324,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 19, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.CapabilityMinima", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.CapabilityMinima", "attribute_name": "CapabilityMinima", "value": { "caseSessionsPerFabric": 3, @@ -338,10 +338,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.FeatureMap", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.FeatureMap", "attribute_name": "FeatureMap", "value": 0 }, @@ -349,10 +349,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ClusterRevision", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ClusterRevision", "attribute_name": "ClusterRevision", "value": 1 }, @@ -360,10 +360,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.GeneratedCommandList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.GeneratedCommandList", "attribute_name": "GeneratedCommandList", "value": [] }, @@ -371,10 +371,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.AcceptedCommandList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AcceptedCommandList", "attribute_name": "AcceptedCommandList", "value": [] }, @@ -382,10 +382,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.AttributeList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AttributeList", "attribute_name": "AttributeList", "value": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, diff --git a/tests/components/matter/fixtures/nodes/temperature-sensor.json b/tests/components/matter/fixtures/nodes/temperature-sensor.json index 5e451f31fd2..cd288ea14f9 100644 --- a/tests/components/matter/fixtures/nodes/temperature-sensor.json +++ b/tests/components/matter/fixtures/nodes/temperature-sensor.json @@ -115,10 +115,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.DataModelRevision", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.DataModelRevision", "attribute_name": "DataModelRevision", "value": 1 }, @@ -126,10 +126,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.VendorName", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorName", "attribute_name": "VendorName", "value": "Nabu Casa" }, @@ -137,10 +137,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.VendorID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorID", "attribute_name": "VendorID", "value": 65521 }, @@ -148,10 +148,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductName", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductName", "attribute_name": "ProductName", "value": "Mock PressureSensor" }, @@ -159,10 +159,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductID", "attribute_name": "ProductID", "value": 32768 }, @@ -170,10 +170,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.NodeLabel", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.NodeLabel", "attribute_name": "NodeLabel", "value": "Mock Temperature Sensor" }, @@ -181,10 +181,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.Location", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Location", "attribute_name": "Location", "value": "XX" }, @@ -192,10 +192,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.HardwareVersion", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersion", "attribute_name": "HardwareVersion", "value": 0 }, @@ -203,10 +203,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.HardwareVersionString", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersionString", "attribute_name": "HardwareVersionString", "value": "v1.0" }, @@ -214,10 +214,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 9, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SoftwareVersion", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersion", "attribute_name": "SoftwareVersion", "value": 1 }, @@ -225,10 +225,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 10, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SoftwareVersionString", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersionString", "attribute_name": "SoftwareVersionString", "value": "v1.0" }, @@ -236,10 +236,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 11, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ManufacturingDate", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ManufacturingDate", "attribute_name": "ManufacturingDate", "value": "20221206" }, @@ -247,10 +247,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 12, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.PartNumber", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.PartNumber", "attribute_name": "PartNumber", "value": "" }, @@ -258,10 +258,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 13, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductURL", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductURL", "attribute_name": "ProductURL", "value": "" }, @@ -269,10 +269,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 14, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ProductLabel", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductLabel", "attribute_name": "ProductLabel", "value": "" }, @@ -280,10 +280,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.SerialNumber", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SerialNumber", "attribute_name": "SerialNumber", "value": "TEST_SN" }, @@ -291,10 +291,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 16, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.LocalConfigDisabled", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.LocalConfigDisabled", "attribute_name": "LocalConfigDisabled", "value": false }, @@ -302,10 +302,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 17, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.Reachable", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Reachable", "attribute_name": "Reachable", "value": true }, @@ -313,10 +313,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 18, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.UniqueID", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.UniqueID", "attribute_name": "UniqueID", "value": "mock-temperature-sensor" }, @@ -324,10 +324,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 19, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.CapabilityMinima", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.CapabilityMinima", "attribute_name": "CapabilityMinima", "value": { "caseSessionsPerFabric": 3, @@ -338,10 +338,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.FeatureMap", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.FeatureMap", "attribute_name": "FeatureMap", "value": 0 }, @@ -349,10 +349,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.ClusterRevision", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ClusterRevision", "attribute_name": "ClusterRevision", "value": 1 }, @@ -360,10 +360,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.GeneratedCommandList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.GeneratedCommandList", "attribute_name": "GeneratedCommandList", "value": [] }, @@ -371,10 +371,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.AcceptedCommandList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AcceptedCommandList", "attribute_name": "AcceptedCommandList", "value": [] }, @@ -382,10 +382,10 @@ "node_id": 1, "endpoint": 0, "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.Basic", + "cluster_type": "chip.clusters.Objects.BasicInformation", "cluster_name": "Basic", "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Basic.Attributes.AttributeList", + "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AttributeList", "attribute_name": "AttributeList", "value": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,