@matterbridge/test-utils 3.10.7-dev-20260823-f911eb8

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.
Files changed (57) hide show
  1. package/dist/buntest/export.d.ts +25 -0
  2. package/dist/buntest/export.d.ts.map +1 -0
  3. package/dist/buntest/export.js +26 -0
  4. package/dist/buntest/export.js.map +1 -0
  5. package/dist/buntest/matterTest.d.ts +351 -0
  6. package/dist/buntest/matterTest.d.ts.map +1 -0
  7. package/dist/buntest/matterTest.js +722 -0
  8. package/dist/buntest/matterTest.js.map +1 -0
  9. package/dist/buntest/setupTest.d.ts +84 -0
  10. package/dist/buntest/setupTest.d.ts.map +1 -0
  11. package/dist/buntest/setupTest.js +153 -0
  12. package/dist/buntest/setupTest.js.map +1 -0
  13. package/dist/export.d.ts +25 -0
  14. package/dist/export.d.ts.map +1 -0
  15. package/dist/export.js +25 -0
  16. package/dist/export.js.map +1 -0
  17. package/dist/flushAsync.d.ts +36 -0
  18. package/dist/flushAsync.d.ts.map +1 -0
  19. package/dist/flushAsync.js +43 -0
  20. package/dist/flushAsync.js.map +1 -0
  21. package/dist/jest/export.d.ts +25 -0
  22. package/dist/jest/export.d.ts.map +1 -0
  23. package/dist/jest/export.js +26 -0
  24. package/dist/jest/export.js.map +1 -0
  25. package/dist/jest/matterTest.d.ts +351 -0
  26. package/dist/jest/matterTest.d.ts.map +1 -0
  27. package/dist/jest/matterTest.js +722 -0
  28. package/dist/jest/matterTest.js.map +1 -0
  29. package/dist/jest/setupTest.d.ts +83 -0
  30. package/dist/jest/setupTest.d.ts.map +1 -0
  31. package/dist/jest/setupTest.js +154 -0
  32. package/dist/jest/setupTest.js.map +1 -0
  33. package/dist/logKeepAlives.d.ts +32 -0
  34. package/dist/logKeepAlives.d.ts.map +1 -0
  35. package/dist/logKeepAlives.js +69 -0
  36. package/dist/logKeepAlives.js.map +1 -0
  37. package/dist/matter/export.d.ts +24 -0
  38. package/dist/matter/export.d.ts.map +1 -0
  39. package/dist/matter/export.js +25 -0
  40. package/dist/matter/export.js.map +1 -0
  41. package/dist/matter/matterRequest.d.ts +257 -0
  42. package/dist/matter/matterRequest.d.ts.map +1 -0
  43. package/dist/matter/matterRequest.js +455 -0
  44. package/dist/matter/matterRequest.js.map +1 -0
  45. package/dist/vitest/export.d.ts +25 -0
  46. package/dist/vitest/export.d.ts.map +1 -0
  47. package/dist/vitest/export.js +26 -0
  48. package/dist/vitest/export.js.map +1 -0
  49. package/dist/vitest/matterTest.d.ts +351 -0
  50. package/dist/vitest/matterTest.d.ts.map +1 -0
  51. package/dist/vitest/matterTest.js +723 -0
  52. package/dist/vitest/matterTest.js.map +1 -0
  53. package/dist/vitest/setupTest.d.ts +62 -0
  54. package/dist/vitest/setupTest.d.ts.map +1 -0
  55. package/dist/vitest/setupTest.js +129 -0
  56. package/dist/vitest/setupTest.js.map +1 -0
  57. package/package.json +97 -0
@@ -0,0 +1,257 @@
1
+ /**
2
+ * @file packages/jest-utils/src/matterRequest.ts
3
+ * @description This file contains the Matter Request utilities.
4
+ * @author Luca Liguori
5
+ * @created 2026-04-19
6
+ * @version 1.0.1
7
+ * @license Apache-2.0
8
+ *
9
+ * Copyright 2025, 2026, 2027 Luca Liguori.
10
+ *
11
+ * Licensed under the Apache License, Version 2.0 (the "License");
12
+ * you may not use this file except in compliance with the License.
13
+ * You may obtain a copy of the License at
14
+ *
15
+ * http://www.apache.org/licenses/LICENSE-2.0
16
+ *
17
+ * Unless required by applicable law or agreed to in writing, software
18
+ * distributed under the License is distributed on an "AS IS" BASIS,
19
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20
+ * See the License for the specific language governing permissions and
21
+ * limitations under the License.
22
+ */
23
+ import { ColorControl } from '@matter/types/clusters/color-control';
24
+ import type { LevelControl } from '@matter/types/clusters/level-control';
25
+ import type { OnOff } from '@matter/types/clusters/on-off';
26
+ /**
27
+ * Build a Matter OnOff `OffWithEffectRequest` payload.
28
+ *
29
+ * @param {OnOff.EffectIdentifier} effectIdentifier Effect to use when turning the device off.
30
+ * @param {number} effectVariant Variant of the effect.
31
+ * @returns {OnOff.OffWithEffectRequest} The request payload.
32
+ */
33
+ export declare function getOffWithEffectRequest(effectIdentifier: OnOff.EffectIdentifier, effectVariant: number): OnOff.OffWithEffectRequest;
34
+ /**
35
+ * Build a Matter OnOff `OnWithTimedOffRequest` payload.
36
+ *
37
+ * @param {boolean} acceptOnlyWhenOn Whether the command should be accepted only when the device is on.
38
+ * @param {number} onTime Length of time (in 1/10ths second) that the device is to remain on.
39
+ * @param {number} offWaitTime Length of time (in 1/10ths second) that the device is guarded from being turned back on.
40
+ * @returns {OnOff.OnWithTimedOffRequest} The request payload.
41
+ */
42
+ export declare function getOnWithTimedOffRequest(acceptOnlyWhenOn: boolean, onTime: number, offWaitTime: number): OnOff.OnWithTimedOffRequest;
43
+ /**
44
+ * Build a Matter LevelControl `MoveToLevelRequest` payload.
45
+ *
46
+ * Helper used in tests to create a correctly shaped request object, including
47
+ * `optionsMask` and `optionsOverride`.
48
+ *
49
+ * @param {number} level Target level (Matter `uint8`; commonly 0–254).
50
+ * @param {number} transitionTime Transition time (Matter `uint16`; commonly in 1/10s units).
51
+ * @param {boolean} executeIfOff Whether the command should be executed even when the device is off.
52
+ * @returns {LevelControl.MoveToLevelRequest} The request payload.
53
+ */
54
+ export declare function getMoveToLevelRequest(level: number, transitionTime: number, executeIfOff: boolean): LevelControl.MoveToLevelRequest;
55
+ /**
56
+ * Build a Matter LevelControl `MoveRequest` payload.
57
+ *
58
+ * @param {LevelControl.MoveMode} moveMode Direction of movement.
59
+ * @param {number | null} rate Rate of movement in units per second.
60
+ * @param {boolean} executeIfOff Whether the command should be executed even when the device is off.
61
+ * @returns {LevelControl.MoveRequest} The request payload.
62
+ */
63
+ export declare function getMoveRequest(moveMode: LevelControl.MoveMode, rate: number | null, executeIfOff: boolean): LevelControl.MoveRequest;
64
+ /**
65
+ * Build a Matter LevelControl `StepRequest` payload.
66
+ *
67
+ * @param {LevelControl.StepMode} stepMode Direction of the step change.
68
+ * @param {number} stepSize Change to CurrentLevel.
69
+ * @param {number} transitionTime Transition time (Matter `uint16`; commonly in 1/10s units).
70
+ * @param {boolean} executeIfOff Whether the command should be executed even when the device is off.
71
+ * @returns {LevelControl.StepRequest} The request payload.
72
+ */
73
+ export declare function getStepRequest(stepMode: LevelControl.StepMode, stepSize: number, transitionTime: number | null, executeIfOff: boolean): LevelControl.StepRequest;
74
+ /**
75
+ * Build a Matter LevelControl `StopRequest` payload.
76
+ *
77
+ * @param {boolean} executeIfOff Whether the command should be executed even when the device is off.
78
+ * @returns {LevelControl.StopRequest} The request payload.
79
+ */
80
+ export declare function getStopRequest(executeIfOff: boolean): LevelControl.StopRequest;
81
+ /**
82
+ * Build a Matter ColorControl `MoveToColorTemperatureRequest` payload.
83
+ *
84
+ * @param {number} colorTemperatureMireds Target color temperature in mireds (micro reciprocal degrees).
85
+ * @param {number} transitionTime Transition time (Matter `uint16`; commonly in 1/10s units).
86
+ * @param {boolean} executeIfOff Whether the command should be executed even when the device is off.
87
+ * @returns {ColorControl.MoveToColorTemperatureRequest} The request payload.
88
+ */
89
+ export declare function getMoveToColorTemperatureRequest(colorTemperatureMireds: number, transitionTime: number, executeIfOff: boolean): ColorControl.MoveToColorTemperatureRequest;
90
+ /**
91
+ * Build a Matter ColorControl `MoveHueRequest` payload.
92
+ *
93
+ * @param {ColorControl.MoveMode} moveMode Direction of movement.
94
+ * @param {number} rate Rate of movement in steps per second.
95
+ * @param {boolean} executeIfOff Whether the command should be executed even when the device is off.
96
+ * @returns {ColorControl.MoveHueRequest} The request payload.
97
+ */
98
+ export declare function getMoveHueRequest(moveMode: ColorControl.MoveMode, rate: number, executeIfOff: boolean): ColorControl.MoveHueRequest;
99
+ /**
100
+ * Build a Matter ColorControl `StepHueRequest` payload.
101
+ *
102
+ * @param {ColorControl.StepMode} stepMode Direction of the step change.
103
+ * @param {number} stepSize Change to the device's hue.
104
+ * @param {number} transitionTime Transition time (Matter `uint16`; commonly in 1/10s units).
105
+ * @param {boolean} executeIfOff Whether the command should be executed even when the device is off.
106
+ * @returns {ColorControl.StepHueRequest} The request payload.
107
+ */
108
+ export declare function getStepHueRequest(stepMode: ColorControl.StepMode, stepSize: number, transitionTime: number, executeIfOff: boolean): ColorControl.StepHueRequest;
109
+ /**
110
+ * Build a Matter ColorControl `MoveToHueRequest` payload.
111
+ *
112
+ * Uses `ColorControl.Direction.Shortest` by default.
113
+ *
114
+ * @param {number} hue Target hue (Matter `uint8`; commonly 0–254).
115
+ * @param {number} transitionTime Transition time (Matter `uint16`; commonly in 1/10s units).
116
+ * @param {boolean} executeIfOff Whether the command should be executed even when the device is off.
117
+ * @returns {ColorControl.MoveToHueRequest} The request payload.
118
+ */
119
+ export declare function getMoveToHueRequest(hue: number, transitionTime: number, executeIfOff: boolean): ColorControl.MoveToHueRequest;
120
+ /**
121
+ * Build a Matter ColorControl `EnhancedMoveToHueRequest` payload.
122
+ *
123
+ * Uses `ColorControl.Direction.Shortest` by default.
124
+ *
125
+ * @param {number} enhancedHue Target enhanced hue (Matter `uint16`; commonly 0–65535).
126
+ * @param {number} transitionTime Transition time (Matter `uint16`; commonly in 1/10s units).
127
+ * @param {boolean} executeIfOff Whether the command should be executed even when the device is off.
128
+ * @returns {ColorControl.EnhancedMoveToHueRequest} The request payload.
129
+ */
130
+ export declare function getEnhancedMoveToHueRequest(enhancedHue: number, transitionTime: number, executeIfOff: boolean): ColorControl.EnhancedMoveToHueRequest;
131
+ /**
132
+ * Build a Matter ColorControl `EnhancedMoveHueRequest` payload.
133
+ *
134
+ * @param {ColorControl.MoveMode} moveMode Direction of movement.
135
+ * @param {number} rate Rate of movement in steps per second.
136
+ * @param {boolean} executeIfOff Whether the command should be executed even when the device is off.
137
+ * @returns {ColorControl.EnhancedMoveHueRequest} The request payload.
138
+ */
139
+ export declare function getEnhancedMoveHueRequest(moveMode: ColorControl.MoveMode, rate: number, executeIfOff: boolean): ColorControl.EnhancedMoveHueRequest;
140
+ /**
141
+ * Build a Matter ColorControl `EnhancedStepHueRequest` payload.
142
+ *
143
+ * @param {ColorControl.StepMode} stepMode Direction of the step change.
144
+ * @param {number} stepSize Change to the device's enhanced hue.
145
+ * @param {number} transitionTime Transition time (Matter `uint16`; commonly in 1/10s units).
146
+ * @param {boolean} executeIfOff Whether the command should be executed even when the device is off.
147
+ * @returns {ColorControl.EnhancedStepHueRequest} The request payload.
148
+ */
149
+ export declare function getEnhancedStepHueRequest(stepMode: ColorControl.StepMode, stepSize: number, transitionTime: number, executeIfOff: boolean): ColorControl.EnhancedStepHueRequest;
150
+ /**
151
+ * Build a Matter ColorControl `MoveToSaturationRequest` payload.
152
+ *
153
+ * @param {number} saturation Target saturation (Matter `uint8`; commonly 0–254).
154
+ * @param {number} transitionTime Transition time (Matter `uint16`; commonly in 1/10s units).
155
+ * @param {boolean} executeIfOff Whether the command should be executed even when the device is off.
156
+ * @returns {ColorControl.MoveToSaturationRequest} The request payload.
157
+ */
158
+ export declare function getMoveToSaturationRequest(saturation: number, transitionTime: number, executeIfOff: boolean): ColorControl.MoveToSaturationRequest;
159
+ /**
160
+ * Build a Matter ColorControl `MoveSaturationRequest` payload.
161
+ *
162
+ * @param {ColorControl.MoveMode} moveMode Direction of movement.
163
+ * @param {number} rate Rate of movement in steps per second.
164
+ * @param {boolean} executeIfOff Whether the command should be executed even when the device is off.
165
+ * @returns {ColorControl.MoveSaturationRequest} The request payload.
166
+ */
167
+ export declare function getMoveSaturationRequest(moveMode: ColorControl.MoveMode, rate: number, executeIfOff: boolean): ColorControl.MoveSaturationRequest;
168
+ /**
169
+ * Build a Matter ColorControl `StepSaturationRequest` payload.
170
+ *
171
+ * @param {ColorControl.StepMode} stepMode Direction of the step change.
172
+ * @param {number} stepSize Change to the device's saturation.
173
+ * @param {number} transitionTime Transition time (Matter `uint16`; commonly in 1/10s units).
174
+ * @param {boolean} executeIfOff Whether the command should be executed even when the device is off.
175
+ * @returns {ColorControl.StepSaturationRequest} The request payload.
176
+ */
177
+ export declare function getStepSaturationRequest(stepMode: ColorControl.StepMode, stepSize: number, transitionTime: number, executeIfOff: boolean): ColorControl.StepSaturationRequest;
178
+ /**
179
+ * Build a Matter ColorControl `MoveToHueAndSaturationRequest` payload.
180
+ *
181
+ * @param {number} hue Target hue (Matter `uint8`; commonly 0–254).
182
+ * @param {number} saturation Target saturation (Matter `uint8`; commonly 0–254).
183
+ * @param {number} transitionTime Transition time (Matter `uint16`; commonly in 1/10s units).
184
+ * @param {boolean} executeIfOff Whether the command should be executed even when the device is off.
185
+ * @returns {ColorControl.MoveToHueAndSaturationRequest} The request payload.
186
+ */
187
+ export declare function getMoveToHueAndSaturationRequest(hue: number, saturation: number, transitionTime: number, executeIfOff: boolean): ColorControl.MoveToHueAndSaturationRequest;
188
+ /**
189
+ * Build a Matter ColorControl `EnhancedMoveToHueAndSaturationRequest` payload.
190
+ *
191
+ * @param {number} enhancedHue Target enhanced hue (Matter `uint16`; commonly 0–65535).
192
+ * @param {number} saturation Target saturation (Matter `uint8`; commonly 0–254).
193
+ * @param {number} transitionTime Transition time (Matter `uint16`; commonly in 1/10s units).
194
+ * @param {boolean} executeIfOff Whether the command should be executed even when the device is off.
195
+ * @returns {ColorControl.EnhancedMoveToHueAndSaturationRequest} The request payload.
196
+ */
197
+ export declare function getEnhancedMoveToHueAndSaturationRequest(enhancedHue: number, saturation: number, transitionTime: number, executeIfOff: boolean): ColorControl.EnhancedMoveToHueAndSaturationRequest;
198
+ /**
199
+ * Build a Matter ColorControl `MoveToColorRequest` payload.
200
+ *
201
+ * @param {number} colorX Target X coordinate in CIE 1931 XY color space (Matter `uint16`).
202
+ * @param {number} colorY Target Y coordinate in CIE 1931 XY color space (Matter `uint16`).
203
+ * @param {number} transitionTime Transition time (Matter `uint16`; commonly in 1/10s units).
204
+ * @param {boolean} executeIfOff Whether the command should be executed even when the device is off.
205
+ * @returns {ColorControl.MoveToColorRequest} The request payload.
206
+ */
207
+ export declare function getMoveToColorRequest(colorX: number, colorY: number, transitionTime: number, executeIfOff: boolean): ColorControl.MoveToColorRequest;
208
+ /**
209
+ * Build a Matter ColorControl `MoveColorRequest` payload.
210
+ *
211
+ * @param {number} rateX Rate of movement in steps per second for the device's CurrentX attribute.
212
+ * @param {number} rateY Rate of movement in steps per second for the device's CurrentY attribute.
213
+ * @param {boolean} executeIfOff Whether the command should be executed even when the device is off.
214
+ * @returns {ColorControl.MoveColorRequest} The request payload.
215
+ */
216
+ export declare function getMoveColorRequest(rateX: number, rateY: number, executeIfOff: boolean): ColorControl.MoveColorRequest;
217
+ /**
218
+ * Build a Matter ColorControl `StepColorRequest` payload.
219
+ *
220
+ * @param {number} stepX Change to the device's CurrentX attribute.
221
+ * @param {number} stepY Change to the device's CurrentY attribute.
222
+ * @param {number} transitionTime Transition time (Matter `uint16`; commonly in 1/10s units).
223
+ * @param {boolean} executeIfOff Whether the command should be executed even when the device is off.
224
+ * @returns {ColorControl.StepColorRequest} The request payload.
225
+ */
226
+ export declare function getStepColorRequest(stepX: number, stepY: number, transitionTime: number, executeIfOff: boolean): ColorControl.StepColorRequest;
227
+ /**
228
+ * Build a Matter ColorControl `MoveColorTemperatureRequest` payload.
229
+ *
230
+ * @param {ColorControl.MoveMode} moveMode Direction of movement.
231
+ * @param {number} rate Rate of movement in steps per second.
232
+ * @param {number} colorTemperatureMinimumMireds Lower bound on the ColorTemperatureMireds attribute for the move operation.
233
+ * @param {number} colorTemperatureMaximumMireds Upper bound on the ColorTemperatureMireds attribute for the move operation.
234
+ * @param {boolean} executeIfOff Whether the command should be executed even when the device is off.
235
+ * @returns {ColorControl.MoveColorTemperatureRequest} The request payload.
236
+ */
237
+ export declare function getMoveColorTemperatureRequest(moveMode: ColorControl.MoveMode, rate: number, colorTemperatureMinimumMireds: number, colorTemperatureMaximumMireds: number, executeIfOff: boolean): ColorControl.MoveColorTemperatureRequest;
238
+ /**
239
+ * Build a Matter ColorControl `StepColorTemperatureRequest` payload.
240
+ *
241
+ * @param {ColorControl.StepMode} stepMode Direction of the step change.
242
+ * @param {number} stepSize Change to the device's color temperature.
243
+ * @param {number} transitionTime Transition time (Matter `uint16`; commonly in 1/10s units).
244
+ * @param {number} colorTemperatureMinimumMireds Lower bound on the ColorTemperatureMireds attribute for the step operation.
245
+ * @param {number} colorTemperatureMaximumMireds Upper bound on the ColorTemperatureMireds attribute for the step operation.
246
+ * @param {boolean} executeIfOff Whether the command should be executed even when the device is off.
247
+ * @returns {ColorControl.StepColorTemperatureRequest} The request payload.
248
+ */
249
+ export declare function getStepColorTemperatureRequest(stepMode: ColorControl.StepMode, stepSize: number, transitionTime: number, colorTemperatureMinimumMireds: number, colorTemperatureMaximumMireds: number, executeIfOff: boolean): ColorControl.StepColorTemperatureRequest;
250
+ /**
251
+ * Build a Matter ColorControl `StopMoveStepRequest` payload.
252
+ *
253
+ * @param {boolean} executeIfOff Whether the command should be executed even when the device is off.
254
+ * @returns {ColorControl.StopMoveStepRequest} The request payload.
255
+ */
256
+ export declare function getStopMoveStepRequest(executeIfOff: boolean): ColorControl.StopMoveStepRequest;
257
+ //# sourceMappingURL=matterRequest.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"matterRequest.d.ts","sourceRoot":"","sources":["../../src/matter/matterRequest.ts"],"names":[],"mappings":"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"}