2026-06-24 f4bd1f3c89d906131495a0aca5aaf82966378510
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
package cn.iocoder.yudao.module.iot.service.rule.scene.matcher.trigger;
 
import cn.hutool.core.map.MapUtil;
import cn.iocoder.yudao.module.iot.core.enums.IotDeviceMessageMethodEnum;
import cn.iocoder.yudao.module.iot.core.mq.message.IotDeviceMessage;
import cn.iocoder.yudao.module.iot.dal.dataobject.rule.IotSceneRuleDO;
import cn.iocoder.yudao.module.iot.enums.rule.IotSceneRuleConditionOperatorEnum;
import cn.iocoder.yudao.module.iot.enums.rule.IotSceneRuleTriggerTypeEnum;
import cn.iocoder.yudao.module.iot.service.rule.scene.matcher.IotBaseConditionMatcherTest;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
 
import java.util.HashMap;
import java.util.Map;
 
import static cn.hutool.core.util.RandomUtil.*;
import static cn.iocoder.yudao.framework.test.core.util.RandomUtils.randomLongId;
import static cn.iocoder.yudao.framework.test.core.util.RandomUtils.randomString;
import static org.junit.jupiter.api.Assertions.*;
 
/**
 * {@link IotDeviceServiceInvokeTriggerMatcher} 的单元测试
 *
 * @author HUIHUI
 */
public class IotDeviceServiceInvokeTriggerMatcherTest extends IotBaseConditionMatcherTest {
 
    private IotDeviceServiceInvokeTriggerMatcher matcher;
 
    @BeforeEach
    public void setUp() {
        matcher = new IotDeviceServiceInvokeTriggerMatcher();
    }
 
    @Test
    public void testGetSupportedTriggerType_success() {
        // 准备参数
        // 无需准备参数
 
        // 调用
        IotSceneRuleTriggerTypeEnum result = matcher.getSupportedTriggerType();
 
        // 断言
        assertEquals(IotSceneRuleTriggerTypeEnum.DEVICE_SERVICE_INVOKE, result);
    }
 
    @Test
    public void testGetPriority_success() {
        // 准备参数
        // 无需准备参数
 
        // 调用
        int result = matcher.getPriority();
 
        // 断言
        assertEquals(40, result);
    }
 
    @Test
    public void testIsEnabled_success() {
        // 准备参数
        // 无需准备参数
 
        // 调用
        boolean result = matcher.isEnabled();
 
        // 断言
        assertTrue(result);
    }
 
    @Test
    public void testMatches_serviceInvokeSuccess() {
        // 准备参数
        String serviceIdentifier = randomString();
        Map<String, Object> serviceParams = MapUtil.builder(new HashMap<String, Object>())
                .put("identifier", serviceIdentifier)
                .put("inputData", MapUtil.builder(new HashMap<String, Object>())
                        .put("mode", randomString())
                        .build())
                .build();
        IotDeviceMessage message = createServiceInvokeMessage(serviceParams);
        IotSceneRuleDO.Trigger trigger = createValidTrigger(serviceIdentifier);
 
        // 调用
        boolean result = matcher.matches(message, trigger);
 
        // 断言
        assertTrue(result);
    }
 
    @Test
    public void testMatches_configServiceSuccess() {
        // 准备参数
        String serviceIdentifier = randomString();
        Map<String, Object> serviceParams = MapUtil.builder(new HashMap<String, Object>())
                .put("identifier", serviceIdentifier)
                .put("inputData", MapUtil.builder(new HashMap<String, Object>())
                        .put("interval", randomInt())
                        .put("enabled", randomBoolean())
                        .put("threshold", randomDouble())
                        .build())
                .build();
        IotDeviceMessage message = createServiceInvokeMessage(serviceParams);
        IotSceneRuleDO.Trigger trigger = createValidTrigger(serviceIdentifier);
 
        // 调用
        boolean result = matcher.matches(message, trigger);
 
        // 断言
        assertTrue(result);
    }
 
    @Test
    public void testMatches_updateServiceSuccess() {
        // 准备参数
        String serviceIdentifier = randomString();
        Map<String, Object> serviceParams = MapUtil.builder(new HashMap<String, Object>())
                .put("identifier", serviceIdentifier)
                .put("inputData", MapUtil.builder(new HashMap<String, Object>())
                        .put("version", randomString())
                        .put("url", randomString())
                        .build())
                .build();
        IotDeviceMessage message = createServiceInvokeMessage(serviceParams);
        IotSceneRuleDO.Trigger trigger = createValidTrigger(serviceIdentifier);
 
        // 调用
        boolean result = matcher.matches(message, trigger);
 
        // 断言
        assertTrue(result);
    }
 
    @Test
    public void testMatches_serviceIdentifierMismatch() {
        // 准备参数
        String messageIdentifier = randomString();
        String triggerIdentifier = randomString();
        Map<String, Object> serviceParams = MapUtil.builder(new HashMap<String, Object>())
                .put("identifier", messageIdentifier)
                .put("inputData", MapUtil.builder(new HashMap<String, Object>())
                        .put("mode", randomString())
                        .build())
                .build();
        IotDeviceMessage message = createServiceInvokeMessage(serviceParams);
        IotSceneRuleDO.Trigger trigger = createValidTrigger(triggerIdentifier); // 不匹配的服务标识符
 
        // 调用
        boolean result = matcher.matches(message, trigger);
 
        // 断言
        assertFalse(result);
    }
 
    @Test
    public void testMatches_wrongMessageMethod() {
        // 准备参数
        String serviceIdentifier = randomString();
        Map<String, Object> serviceParams = MapUtil.builder(new HashMap<String, Object>())
                .put("identifier", serviceIdentifier)
                .put("inputData", MapUtil.builder(new HashMap<String, Object>())
                        .put("mode", randomString())
                        .build())
                .build();
        IotDeviceMessage message = new IotDeviceMessage();
        message.setDeviceId(randomLongId());
        message.setMethod(IotDeviceMessageMethodEnum.PROPERTY_POST.getMethod()); // 错误的方法
        message.setParams(serviceParams);
        IotSceneRuleDO.Trigger trigger = createValidTrigger(serviceIdentifier);
 
        // 调用
        boolean result = matcher.matches(message, trigger);
 
        // 断言
        assertFalse(result);
    }
 
    @Test
    public void testMatches_nullTriggerIdentifier() {
        // 准备参数
        String serviceIdentifier = randomString();
        Map<String, Object> serviceParams = MapUtil.builder(new HashMap<String, Object>())
                .put("identifier", serviceIdentifier)
                .put("inputData", MapUtil.builder(new HashMap<String, Object>())
                        .put("mode", randomString())
                        .build())
                .build();
        IotDeviceMessage message = createServiceInvokeMessage(serviceParams);
        IotSceneRuleDO.Trigger trigger = new IotSceneRuleDO.Trigger();
        trigger.setType(IotSceneRuleTriggerTypeEnum.DEVICE_SERVICE_INVOKE.getType());
        trigger.setIdentifier(null); // 缺少标识符
 
        // 调用
        boolean result = matcher.matches(message, trigger);
 
        // 断言
        assertFalse(result);
    }
 
    @Test
    public void testMatches_nullMessageParams() {
        // 准备参数
        String serviceIdentifier = randomString();
        IotDeviceMessage message = new IotDeviceMessage();
        message.setDeviceId(randomLongId());
        message.setMethod(IotDeviceMessageMethodEnum.SERVICE_INVOKE.getMethod());
        message.setParams(null);
        IotSceneRuleDO.Trigger trigger = createValidTrigger(serviceIdentifier);
 
        // 调用
        boolean result = matcher.matches(message, trigger);
 
        // 断言
        assertFalse(result);
    }
 
    @Test
    public void testMatches_invalidMessageParams() {
        // 准备参数
        String serviceIdentifier = randomString();
        IotDeviceMessage message = new IotDeviceMessage();
        message.setDeviceId(randomLongId());
        message.setMethod(IotDeviceMessageMethodEnum.SERVICE_INVOKE.getMethod());
        message.setParams(randomString()); // 不是 Map 类型
        IotSceneRuleDO.Trigger trigger = createValidTrigger(serviceIdentifier);
 
        // 调用
        boolean result = matcher.matches(message, trigger);
 
        // 断言
        assertFalse(result);
    }
 
    @Test
    public void testMatches_missingServiceIdentifierInParams() {
        // 准备参数
        String serviceIdentifier = randomString();
        Map<String, Object> serviceParams = MapUtil.builder(new HashMap<String, Object>())
                .put("inputData", MapUtil.builder(new HashMap<String, Object>())
                        .put("mode", randomString())
                        .build()) // 缺少 identifier 字段
                .build();
        IotDeviceMessage message = createServiceInvokeMessage(serviceParams);
        IotSceneRuleDO.Trigger trigger = createValidTrigger(serviceIdentifier);
 
        // 调用
        boolean result = matcher.matches(message, trigger);
 
        // 断言
        assertFalse(result);
    }
 
    @Test
    public void testMatches_nullTrigger() {
        // 准备参数
        String serviceIdentifier = randomString();
        Map<String, Object> serviceParams = MapUtil.builder(new HashMap<String, Object>())
                .put("identifier", serviceIdentifier)
                .put("inputData", MapUtil.builder(new HashMap<String, Object>())
                        .put("mode", randomString())
                        .build())
                .build();
        IotDeviceMessage message = createServiceInvokeMessage(serviceParams);
 
        // 调用
        boolean result = matcher.matches(message, null);
 
        // 断言
        assertFalse(result);
    }
 
    @Test
    public void testMatches_nullTriggerType() {
        // 准备参数
        String serviceIdentifier = randomString();
        Map<String, Object> serviceParams = MapUtil.builder(new HashMap<String, Object>())
                .put("identifier", serviceIdentifier)
                .put("inputData", MapUtil.builder(new HashMap<String, Object>())
                        .put("mode", randomString())
                        .build())
                .build();
        IotDeviceMessage message = createServiceInvokeMessage(serviceParams);
        IotSceneRuleDO.Trigger trigger = new IotSceneRuleDO.Trigger();
        trigger.setType(null);
        trigger.setIdentifier(serviceIdentifier);
 
        // 调用
        boolean result = matcher.matches(message, trigger);
 
        // 断言
        assertFalse(result);
    }
 
    @Test
    public void testMatches_emptyInputDataSuccess() {
        // 准备参数
        String serviceIdentifier = randomString();
        Map<String, Object> serviceParams = MapUtil.builder(new HashMap<String, Object>())
                .put("identifier", serviceIdentifier)
                .put("inputData", MapUtil.ofEntries()) // 空的输入数据
                .build();
        IotDeviceMessage message = createServiceInvokeMessage(serviceParams);
        IotSceneRuleDO.Trigger trigger = createValidTrigger(serviceIdentifier);
 
        // 调用
        boolean result = matcher.matches(message, trigger);
 
        // 断言
        assertTrue(result);
    }
 
    @Test
    public void testMatches_noInputDataSuccess() {
        // 准备参数
        String serviceIdentifier = randomString();
        Map<String, Object> serviceParams = MapUtil.builder(new HashMap<String, Object>())
                .put("identifier", serviceIdentifier)
                // 没有 inputData 字段
                .build();
        IotDeviceMessage message = createServiceInvokeMessage(serviceParams);
        IotSceneRuleDO.Trigger trigger = createValidTrigger(serviceIdentifier);
 
        // 调用
        boolean result = matcher.matches(message, trigger);
 
        // 断言
        assertTrue(result);
    }
 
    @Test
    public void testMatches_complexInputDataSuccess() {
        // 准备参数
        String serviceIdentifier = randomString();
        Map<String, Object> serviceParams = MapUtil.builder(new HashMap<String, Object>())
                .put("identifier", serviceIdentifier)
                .put("inputData", MapUtil.builder(new HashMap<String, Object>())
                        .put("sensors", new String[]{randomString(), randomString(), randomString()})
                        .put("precision", randomDouble())
                        .put("duration", randomInt())
                        .put("autoSave", randomBoolean())
                        .put("config", MapUtil.builder(new HashMap<String, Object>())
                                .put("mode", randomString())
                                .put("level", randomString())
                                .build())
                        .build())
                .build();
        IotDeviceMessage message = createServiceInvokeMessage(serviceParams);
        IotSceneRuleDO.Trigger trigger = createValidTrigger(serviceIdentifier);
 
        // 调用
        boolean result = matcher.matches(message, trigger);
 
        // 断言
        assertTrue(result);
    }
 
    @Test
    public void testMatches_caseSensitiveIdentifierMismatch() {
        // 准备参数
        String serviceIdentifier = randomString().toUpperCase(); // 大写
        String triggerIdentifier = serviceIdentifier.toLowerCase(); // 小写
        Map<String, Object> serviceParams = MapUtil.builder(new HashMap<String, Object>())
                .put("identifier", serviceIdentifier)
                .put("inputData", MapUtil.builder(new HashMap<String, Object>())
                        .put("mode", randomString())
                        .build())
                .build();
        IotDeviceMessage message = createServiceInvokeMessage(serviceParams);
        IotSceneRuleDO.Trigger trigger = createValidTrigger(triggerIdentifier);
 
        // 调用
        boolean result = matcher.matches(message, trigger);
 
        // 断言
        // 根据实际实现,这里可能需要调整期望结果
        // 如果实现是大小写敏感的,则应该为 false
        assertFalse(result);
    }
 
 
    // ========== 参数条件匹配测试 ==========
 
    /**
     * 测试无参数条件时的匹配逻辑 - 只要标识符匹配就返回 true
     * **Property 4: 服务调用触发器参数匹配逻辑**
     * **Validates: Requirements 5.2**
     */
    @Test
    public void testMatches_noParameterCondition_success() {
        // 准备参数
        String serviceIdentifier = "testService";
        Map<String, Object> serviceParams = MapUtil.builder(new HashMap<String, Object>())
                .put("identifier", serviceIdentifier)
                .put("inputData", MapUtil.builder(new HashMap<String, Object>())
                        .put("level", 5)
                        .build())
                .build();
        IotDeviceMessage message = createServiceInvokeMessage(serviceParams);
        IotSceneRuleDO.Trigger trigger = new IotSceneRuleDO.Trigger();
        trigger.setType(IotSceneRuleTriggerTypeEnum.DEVICE_SERVICE_INVOKE.getType());
        trigger.setIdentifier(serviceIdentifier);
        trigger.setOperator(null); // 无参数条件
        trigger.setValue(null);
 
        // 调用
        boolean result = matcher.matches(message, trigger);
 
        // 断言
        assertTrue(result);
    }
 
    /**
     * 测试有参数条件时的匹配逻辑 - 参数条件匹配成功
     * **Property 4: 服务调用触发器参数匹配逻辑**
     * **Validates: Requirements 5.1**
     */
    @Test
    public void testMatches_withParameterCondition_greaterThan_success() {
        // 准备参数
        String serviceIdentifier = "level";
        Map<String, Object> serviceParams = MapUtil.builder(new HashMap<String, Object>())
                .put("identifier", serviceIdentifier)
                .put("inputData", MapUtil.builder(new HashMap<String, Object>())
                        .put("level", 5)
                        .build())
                .build();
        IotDeviceMessage message = createServiceInvokeMessage(serviceParams);
        IotSceneRuleDO.Trigger trigger = new IotSceneRuleDO.Trigger();
        trigger.setType(IotSceneRuleTriggerTypeEnum.DEVICE_SERVICE_INVOKE.getType());
        trigger.setIdentifier(serviceIdentifier);
        trigger.setOperator(">"); // 大于操作符
        trigger.setValue("3");
 
        // 调用
        boolean result = matcher.matches(message, trigger);
 
        // 断言
        assertTrue(result);
    }
 
    /**
     * 测试有参数条件时的匹配逻辑 - 参数条件匹配失败
     * **Property 4: 服务调用触发器参数匹配逻辑**
     * **Validates: Requirements 5.1**
     */
    @Test
    public void testMatches_withParameterCondition_greaterThan_failure() {
        // 准备参数
        String serviceIdentifier = "level";
        Map<String, Object> serviceParams = MapUtil.builder(new HashMap<String, Object>())
                .put("identifier", serviceIdentifier)
                .put("inputData", MapUtil.builder(new HashMap<String, Object>())
                        .put("level", 2)
                        .build())
                .build();
        IotDeviceMessage message = createServiceInvokeMessage(serviceParams);
        IotSceneRuleDO.Trigger trigger = new IotSceneRuleDO.Trigger();
        trigger.setType(IotSceneRuleTriggerTypeEnum.DEVICE_SERVICE_INVOKE.getType());
        trigger.setIdentifier(serviceIdentifier);
        trigger.setOperator(">"); // 大于操作符
        trigger.setValue("3");
 
        // 调用
        boolean result = matcher.matches(message, trigger);
 
        // 断言
        assertFalse(result);
    }
 
    /**
     * 测试有参数条件时的匹配逻辑 - 等于操作符
     * **Property 4: 服务调用触发器参数匹配逻辑**
     * **Validates: Requirements 5.1**
     */
    @Test
    public void testMatches_withParameterCondition_equals_success() {
        // 准备参数
        String serviceIdentifier = "mode";
        Map<String, Object> serviceParams = MapUtil.builder(new HashMap<String, Object>())
                .put("identifier", serviceIdentifier)
                .put("inputData", MapUtil.builder(new HashMap<String, Object>())
                        .put("mode", "auto")
                        .build())
                .build();
        IotDeviceMessage message = createServiceInvokeMessage(serviceParams);
        IotSceneRuleDO.Trigger trigger = new IotSceneRuleDO.Trigger();
        trigger.setType(IotSceneRuleTriggerTypeEnum.DEVICE_SERVICE_INVOKE.getType());
        trigger.setIdentifier(serviceIdentifier);
        trigger.setOperator(IotSceneRuleConditionOperatorEnum.EQUALS.getOperator()); // 等于操作符
        trigger.setValue("auto");
 
        // 调用
        boolean result = matcher.matches(message, trigger);
 
        // 断言
        assertTrue(result);
    }
 
    /**
     * 测试参数缺失时的处理 - 消息中缺少 inputData
     * **Property 4: 服务调用触发器参数匹配逻辑**
     * **Validates: Requirements 5.3**
     */
    @Test
    public void testMatches_withParameterCondition_missingInputData() {
        // 准备参数
        String serviceIdentifier = "testService";
        Map<String, Object> serviceParams = MapUtil.builder(new HashMap<String, Object>())
                .put("identifier", serviceIdentifier)
                // 缺少 inputData 字段
                .build();
        IotDeviceMessage message = createServiceInvokeMessage(serviceParams);
        IotSceneRuleDO.Trigger trigger = new IotSceneRuleDO.Trigger();
        trigger.setType(IotSceneRuleTriggerTypeEnum.DEVICE_SERVICE_INVOKE.getType());
        trigger.setIdentifier(serviceIdentifier);
        trigger.setOperator(">"); // 配置了参数条件
        trigger.setValue("3");
 
        // 调用
        boolean result = matcher.matches(message, trigger);
 
        // 断言
        assertFalse(result);
    }
 
    /**
     * 测试参数缺失时的处理 - inputData 中缺少指定参数
     * **Property 4: 服务调用触发器参数匹配逻辑**
     * **Validates: Requirements 5.3**
     */
    @Test
    public void testMatches_withParameterCondition_missingParam() {
        // 准备参数
        String serviceIdentifier = "level";
        Map<String, Object> serviceParams = MapUtil.builder(new HashMap<String, Object>())
                .put("identifier", serviceIdentifier)
                .put("inputData", MapUtil.builder(new HashMap<String, Object>())
                        .put("otherParam", 5) // 不是 level 参数
                        .build())
                .build();
        IotDeviceMessage message = createServiceInvokeMessage(serviceParams);
        IotSceneRuleDO.Trigger trigger = new IotSceneRuleDO.Trigger();
        trigger.setType(IotSceneRuleTriggerTypeEnum.DEVICE_SERVICE_INVOKE.getType());
        trigger.setIdentifier(serviceIdentifier);
        trigger.setOperator(">"); // 配置了参数条件
        trigger.setValue("3");
 
        // 调用
        boolean result = matcher.matches(message, trigger);
 
        // 断言
        assertFalse(result);
    }
 
    /**
     * 测试只有 operator 没有 value 时不触发参数条件匹配
     * **Property 4: 服务调用触发器参数匹配逻辑**
     * **Validates: Requirements 5.2**
     */
    @Test
    public void testMatches_onlyOperator_noValue() {
        // 准备参数
        String serviceIdentifier = "testService";
        Map<String, Object> serviceParams = MapUtil.builder(new HashMap<String, Object>())
                .put("identifier", serviceIdentifier)
                .put("inputData", MapUtil.builder(new HashMap<String, Object>())
                        .put("level", 5)
                        .build())
                .build();
        IotDeviceMessage message = createServiceInvokeMessage(serviceParams);
        IotSceneRuleDO.Trigger trigger = new IotSceneRuleDO.Trigger();
        trigger.setType(IotSceneRuleTriggerTypeEnum.DEVICE_SERVICE_INVOKE.getType());
        trigger.setIdentifier(serviceIdentifier);
        trigger.setOperator(">"); // 只有 operator
        trigger.setValue(null); // 没有 value
 
        // 调用
        boolean result = matcher.matches(message, trigger);
 
        // 断言:只有 operator 没有 value 时,不触发参数条件匹配,标识符匹配即成功
        assertTrue(result);
    }
 
    /**
     * 测试只有 value 没有 operator 时不触发参数条件匹配
     * **Property 4: 服务调用触发器参数匹配逻辑**
     * **Validates: Requirements 5.2**
     */
    @Test
    public void testMatches_onlyValue_noOperator() {
        // 准备参数
        String serviceIdentifier = "testService";
        Map<String, Object> serviceParams = MapUtil.builder(new HashMap<String, Object>())
                .put("identifier", serviceIdentifier)
                .put("inputData", MapUtil.builder(new HashMap<String, Object>())
                        .put("level", 5)
                        .build())
                .build();
        IotDeviceMessage message = createServiceInvokeMessage(serviceParams);
        IotSceneRuleDO.Trigger trigger = new IotSceneRuleDO.Trigger();
        trigger.setType(IotSceneRuleTriggerTypeEnum.DEVICE_SERVICE_INVOKE.getType());
        trigger.setIdentifier(serviceIdentifier);
        trigger.setOperator(null); // 没有 operator
        trigger.setValue("3"); // 只有 value
 
        // 调用
        boolean result = matcher.matches(message, trigger);
 
        // 断言:只有 value 没有 operator 时,不触发参数条件匹配,标识符匹配即成功
        assertTrue(result);
    }
 
    /**
     * 测试使用 inputParams 字段(替代 inputData)
     * **Property 4: 服务调用触发器参数匹配逻辑**
     * **Validates: Requirements 5.1**
     */
    @Test
    public void testMatches_withInputParams_success() {
        // 准备参数
        String serviceIdentifier = "level";
        Map<String, Object> serviceParams = MapUtil.builder(new HashMap<String, Object>())
                .put("identifier", serviceIdentifier)
                .put("inputParams", MapUtil.builder(new HashMap<String, Object>()) // 使用 inputParams 而不是 inputData
                        .put("level", 5)
                        .build())
                .build();
        IotDeviceMessage message = createServiceInvokeMessage(serviceParams);
        IotSceneRuleDO.Trigger trigger = new IotSceneRuleDO.Trigger();
        trigger.setType(IotSceneRuleTriggerTypeEnum.DEVICE_SERVICE_INVOKE.getType());
        trigger.setIdentifier(serviceIdentifier);
        trigger.setOperator(">"); // 大于操作符
        trigger.setValue("3");
 
        // 调用
        boolean result = matcher.matches(message, trigger);
 
        // 断言
        assertTrue(result);
    }
 
    // ========== 辅助方法 ==========
 
    /**
     * 创建服务调用消息
     */
    private IotDeviceMessage createServiceInvokeMessage(Map<String, Object> serviceParams) {
        IotDeviceMessage message = new IotDeviceMessage();
        message.setDeviceId(randomLongId());
        message.setMethod(IotDeviceMessageMethodEnum.SERVICE_INVOKE.getMethod());
        message.setParams(serviceParams);
        return message;
    }
 
    /**
     * 创建有效的触发器
     */
    private IotSceneRuleDO.Trigger createValidTrigger(String identifier) {
        IotSceneRuleDO.Trigger trigger = new IotSceneRuleDO.Trigger();
        trigger.setType(IotSceneRuleTriggerTypeEnum.DEVICE_SERVICE_INVOKE.getType());
        trigger.setIdentifier(identifier);
        return trigger;
    }
 
}