feat: Trigger cameras on HA bus events (#2512)

This commit is contained in:
Dermot Duffy
2026-06-30 17:45:13 -07:00
committed by dermotduffy
parent 406176eebc
commit 0a36358394
49 changed files with 1376 additions and 269 deletions
+75
View File
@@ -0,0 +1,75 @@
import { describe, expect, it } from 'vitest';
import { matchesEventData } from '../../src/ha/event-data-match';
describe('matchesEventData', () => {
describe('non-object data', () => {
it.each([['string'], [42], [true], [null], [undefined]])(
'rejects non-object data (%s) with a non-empty filter',
(data) => {
expect(matchesEventData({ a: 1 }, data)).toBe(false);
},
);
});
it('matches when every filter key matches', () => {
expect(matchesEventData({ command: 'press' }, { command: 'press', extra: 1 })).toBe(
true,
);
});
it('rejects when a filter value differs', () => {
expect(matchesEventData({ command: 'press' }, { command: 'release' })).toBe(false);
});
it('rejects when a filter key is missing from data', () => {
expect(matchesEventData({ command: 'press' }, { other: 'press' })).toBe(false);
});
it('ignores extra keys in data', () => {
expect(matchesEventData({ a: 1 }, { a: 1, b: 2, c: 3 })).toBe(true);
});
it('matches nested objects as a subset', () => {
expect(
matchesEventData(
{ device: { id: 'abc' } },
{ device: { id: 'abc', name: 'Front Door' } },
),
).toBe(true);
});
it('rejects nested objects when a nested key differs', () => {
expect(matchesEventData({ device: { id: 'abc' } }, { device: { id: 'xyz' } })).toBe(
false,
);
});
it('matches arrays element-wise', () => {
expect(matchesEventData({ tags: ['a', 'b'] }, { tags: ['a', 'b'] })).toBe(true);
});
it('matches arrays as a subset by index (filter shorter than data)', () => {
// Same partial-match semantics lodash uses for objects: a shorter filter
// array matches if every index it specifies matches in data. Useful when
// the user only cares about the first N values.
expect(matchesEventData({ tags: ['a'] }, { tags: ['a', 'b'] })).toBe(true);
});
it('rejects arrays with mismatched elements at the same index', () => {
expect(matchesEventData({ tags: ['a', 'c'] }, { tags: ['a', 'b'] })).toBe(false);
});
it('rejects when filter array is longer than data array', () => {
expect(matchesEventData({ tags: ['a', 'b'] }, { tags: ['a'] })).toBe(false);
});
it('distinguishes null from undefined', () => {
expect(matchesEventData({ a: null }, { a: null })).toBe(true);
expect(matchesEventData({ a: null }, { a: 0 })).toBe(false);
});
it('accepts an empty filter against any object', () => {
expect(matchesEventData({}, {})).toBe(true);
expect(matchesEventData({}, { anything: 1, nested: { x: 2 } })).toBe(true);
});
});
+4 -4
View File
@@ -36,14 +36,14 @@ describe('getTriggerEventType', () => {
});
describe('for event entities', () => {
it('returns "signal" for a transition between two real timestamps', () => {
it('returns "momentary" for a transition between two real timestamps', () => {
expect(
getTriggerEventType({
entityID: 'event.front_door_doorbell',
oldState: createStateEntity({ state: '2026-05-24T12:00:00.000+00:00' }),
newState: createStateEntity({ state: '2026-05-24T12:00:05.123+00:00' }),
}),
).toBe('signal');
).toBe('momentary');
});
it('returns null when there is no old state', () => {
@@ -65,14 +65,14 @@ describe('getTriggerEventType', () => {
).toBeNull();
});
it('returns "signal" when the old state is unknown (first fire after startup)', () => {
it('returns "momentary" when the old state is unknown (first fire after startup)', () => {
expect(
getTriggerEventType({
entityID: 'event.front_door_doorbell',
oldState: createStateEntity({ state: 'unknown' }),
newState: createStateEntity({ state: '2026-05-24T12:00:05.123+00:00' }),
}),
).toBe('signal');
).toBe('momentary');
});
it.each([['unavailable'], ['unknown']])(