aiohomematic-test-support 2025.12.3__tar.gz → 2025.12.8__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {aiohomematic_test_support-2025.12.3/aiohomematic_test_support.egg-info → aiohomematic_test_support-2025.12.8}/PKG-INFO +1 -1
- {aiohomematic_test_support-2025.12.3 → aiohomematic_test_support-2025.12.8}/__init__.py +1 -1
- {aiohomematic_test_support-2025.12.3 → aiohomematic_test_support-2025.12.8/aiohomematic_test_support.egg-info}/PKG-INFO +1 -1
- {aiohomematic_test_support-2025.12.3 → aiohomematic_test_support-2025.12.8}/const.py +13 -13
- {aiohomematic_test_support-2025.12.3 → aiohomematic_test_support-2025.12.8}/MANIFEST.in +0 -0
- {aiohomematic_test_support-2025.12.3 → aiohomematic_test_support-2025.12.8}/README.md +0 -0
- {aiohomematic_test_support-2025.12.3 → aiohomematic_test_support-2025.12.8}/aiohomematic_test_support.egg-info/SOURCES.txt +0 -0
- {aiohomematic_test_support-2025.12.3 → aiohomematic_test_support-2025.12.8}/aiohomematic_test_support.egg-info/dependency_links.txt +0 -0
- {aiohomematic_test_support-2025.12.3 → aiohomematic_test_support-2025.12.8}/aiohomematic_test_support.egg-info/top_level.txt +0 -0
- {aiohomematic_test_support-2025.12.3 → aiohomematic_test_support-2025.12.8}/data/full_session_randomized_ccu.zip +0 -0
- {aiohomematic_test_support-2025.12.3 → aiohomematic_test_support-2025.12.8}/data/full_session_randomized_pydevccu.zip +0 -0
- {aiohomematic_test_support-2025.12.3 → aiohomematic_test_support-2025.12.8}/factory.py +0 -0
- {aiohomematic_test_support-2025.12.3 → aiohomematic_test_support-2025.12.8}/helper.py +0 -0
- {aiohomematic_test_support-2025.12.3 → aiohomematic_test_support-2025.12.8}/mock.py +0 -0
- {aiohomematic_test_support-2025.12.3 → aiohomematic_test_support-2025.12.8}/py.typed +0 -0
- {aiohomematic_test_support-2025.12.3 → aiohomematic_test_support-2025.12.8}/pyproject.toml +0 -0
- {aiohomematic_test_support-2025.12.3 → aiohomematic_test_support-2025.12.8}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aiohomematic-test-support
|
|
3
|
-
Version: 2025.12.
|
|
3
|
+
Version: 2025.12.8
|
|
4
4
|
Summary: Support-only package for AioHomematic (tests/dev). Not part of production builds.
|
|
5
5
|
Author-email: SukramJ <sukramj@icloud.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/SukramJ/aiohomematic
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aiohomematic-test-support
|
|
3
|
-
Version: 2025.12.
|
|
3
|
+
Version: 2025.12.8
|
|
4
4
|
Summary: Support-only package for AioHomematic (tests/dev). Not part of production builds.
|
|
5
5
|
Author-email: SukramJ <sukramj@icloud.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/SukramJ/aiohomematic
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
5
|
from aiohomematic.client.json_rpc import _JsonKey
|
|
6
|
-
from aiohomematic.const import LOCAL_HOST, Interface, ProgramData, SystemVariableData
|
|
6
|
+
from aiohomematic.const import LOCAL_HOST, HubValueType, Interface, ProgramData, SystemVariableData
|
|
7
7
|
|
|
8
8
|
CENTRAL_NAME = "CentralTest"
|
|
9
9
|
CCU_HOST = LOCAL_HOST
|
|
@@ -34,7 +34,7 @@ SYSVAR_DATA: list[SystemVariableData] = [
|
|
|
34
34
|
vid="1",
|
|
35
35
|
legacy_name="alarm",
|
|
36
36
|
description="",
|
|
37
|
-
data_type=
|
|
37
|
+
data_type=HubValueType.ALARM,
|
|
38
38
|
unit=None,
|
|
39
39
|
value=False,
|
|
40
40
|
values=None,
|
|
@@ -46,7 +46,7 @@ SYSVAR_DATA: list[SystemVariableData] = [
|
|
|
46
46
|
vid="2",
|
|
47
47
|
legacy_name="alarm_ext",
|
|
48
48
|
description="HAHM",
|
|
49
|
-
data_type=
|
|
49
|
+
data_type=HubValueType.ALARM,
|
|
50
50
|
unit=None,
|
|
51
51
|
value=False,
|
|
52
52
|
values=None,
|
|
@@ -58,7 +58,7 @@ SYSVAR_DATA: list[SystemVariableData] = [
|
|
|
58
58
|
vid="3",
|
|
59
59
|
legacy_name="logic",
|
|
60
60
|
description="",
|
|
61
|
-
data_type=
|
|
61
|
+
data_type=HubValueType.LOGIC,
|
|
62
62
|
unit=None,
|
|
63
63
|
value=False,
|
|
64
64
|
values=None,
|
|
@@ -70,7 +70,7 @@ SYSVAR_DATA: list[SystemVariableData] = [
|
|
|
70
70
|
vid="4",
|
|
71
71
|
legacy_name="logic_ext",
|
|
72
72
|
description="HAHM",
|
|
73
|
-
data_type=
|
|
73
|
+
data_type=HubValueType.LOGIC,
|
|
74
74
|
unit=None,
|
|
75
75
|
value=False,
|
|
76
76
|
values=None,
|
|
@@ -82,7 +82,7 @@ SYSVAR_DATA: list[SystemVariableData] = [
|
|
|
82
82
|
vid="5",
|
|
83
83
|
legacy_name="list",
|
|
84
84
|
description="",
|
|
85
|
-
data_type=
|
|
85
|
+
data_type=HubValueType.LIST,
|
|
86
86
|
unit=None,
|
|
87
87
|
value=0,
|
|
88
88
|
values=("v1", "v2", "v3"),
|
|
@@ -94,7 +94,7 @@ SYSVAR_DATA: list[SystemVariableData] = [
|
|
|
94
94
|
vid="6",
|
|
95
95
|
legacy_name="list_ext",
|
|
96
96
|
description="HAHM",
|
|
97
|
-
data_type=
|
|
97
|
+
data_type=HubValueType.LIST,
|
|
98
98
|
unit=None,
|
|
99
99
|
value=0,
|
|
100
100
|
values=("v1", "v2", "v3"),
|
|
@@ -106,7 +106,7 @@ SYSVAR_DATA: list[SystemVariableData] = [
|
|
|
106
106
|
vid="7",
|
|
107
107
|
legacy_name="string",
|
|
108
108
|
description="",
|
|
109
|
-
data_type=
|
|
109
|
+
data_type=HubValueType.STRING,
|
|
110
110
|
unit=None,
|
|
111
111
|
value="test1",
|
|
112
112
|
values=None,
|
|
@@ -118,7 +118,7 @@ SYSVAR_DATA: list[SystemVariableData] = [
|
|
|
118
118
|
vid="8",
|
|
119
119
|
legacy_name="string_ext",
|
|
120
120
|
description="HAHM",
|
|
121
|
-
data_type=
|
|
121
|
+
data_type=HubValueType.STRING,
|
|
122
122
|
unit=None,
|
|
123
123
|
value="test1",
|
|
124
124
|
values=None,
|
|
@@ -130,7 +130,7 @@ SYSVAR_DATA: list[SystemVariableData] = [
|
|
|
130
130
|
vid="9",
|
|
131
131
|
legacy_name="float",
|
|
132
132
|
description="",
|
|
133
|
-
data_type=
|
|
133
|
+
data_type=HubValueType.FLOAT,
|
|
134
134
|
unit=None,
|
|
135
135
|
value=23.2,
|
|
136
136
|
values=None,
|
|
@@ -142,7 +142,7 @@ SYSVAR_DATA: list[SystemVariableData] = [
|
|
|
142
142
|
vid="10",
|
|
143
143
|
legacy_name="float_ext",
|
|
144
144
|
description="HAHM",
|
|
145
|
-
data_type=
|
|
145
|
+
data_type=HubValueType.FLOAT,
|
|
146
146
|
unit="°C",
|
|
147
147
|
value=23.2,
|
|
148
148
|
values=None,
|
|
@@ -154,7 +154,7 @@ SYSVAR_DATA: list[SystemVariableData] = [
|
|
|
154
154
|
vid="11",
|
|
155
155
|
legacy_name="integer",
|
|
156
156
|
description="",
|
|
157
|
-
data_type=
|
|
157
|
+
data_type=HubValueType.INTEGER,
|
|
158
158
|
unit=None,
|
|
159
159
|
value=17,
|
|
160
160
|
values=None,
|
|
@@ -166,7 +166,7 @@ SYSVAR_DATA: list[SystemVariableData] = [
|
|
|
166
166
|
vid="12",
|
|
167
167
|
legacy_name="integer_ext",
|
|
168
168
|
description="HAHM",
|
|
169
|
-
data_type=
|
|
169
|
+
data_type=HubValueType.INTEGER,
|
|
170
170
|
unit=None,
|
|
171
171
|
value=17,
|
|
172
172
|
values=None,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|