mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2024-11-15 01:48:32 -07:00
30227a13ae
* chore: Implement prettier * Run prettier * fix lint * process feedback * process feedback
1112 lines
55 KiB
JavaScript
1112 lines
55 KiB
JavaScript
const data = require('./stub/data');
|
|
const logger = require('./stub/logger');
|
|
const zigbeeHerdsman = require('./stub/zigbeeHerdsman');
|
|
const stringify = require('json-stable-stringify-without-jsonify');
|
|
const zigbeeHerdsmanConverters = require('zigbee-herdsman-converters');
|
|
zigbeeHerdsman.returnDevices.push('0x00124b00120144ae');
|
|
zigbeeHerdsman.returnDevices.push('0x000b57fffec6a5b3');
|
|
zigbeeHerdsman.returnDevices.push('0x000b57fffec6a5b2');
|
|
zigbeeHerdsman.returnDevices.push('0x0017880104e45542');
|
|
zigbeeHerdsman.returnDevices.push('0x000b57fffec6a5b4');
|
|
zigbeeHerdsman.returnDevices.push('0x000b57fffec6a5b7');
|
|
zigbeeHerdsman.returnDevices.push('0x0017880104e45724');
|
|
|
|
const MQTT = require('./stub/mqtt');
|
|
const Controller = require('../lib/controller');
|
|
const flushPromises = require('./lib/flushPromises');
|
|
const settings = require('../lib/util/settings');
|
|
|
|
describe('Groups', () => {
|
|
let controller;
|
|
|
|
let resetExtension = async () => {
|
|
await controller.enableDisableExtension(false, 'Groups');
|
|
await controller.enableDisableExtension(true, 'Groups');
|
|
};
|
|
|
|
beforeAll(async () => {
|
|
jest.useFakeTimers();
|
|
controller = new Controller(jest.fn(), jest.fn());
|
|
await controller.start();
|
|
await flushPromises();
|
|
});
|
|
|
|
afterAll(async () => {
|
|
jest.useRealTimers();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
Object.values(zigbeeHerdsman.groups).forEach((g) => (g.members = []));
|
|
data.writeDefaultConfiguration();
|
|
settings.reRead();
|
|
MQTT.publish.mockClear();
|
|
zigbeeHerdsman.groups.gledopto_group.command.mockClear();
|
|
zigbeeHerdsmanConverters.toZigbee.__clearStore__();
|
|
controller.state.state = {};
|
|
});
|
|
|
|
it('Apply group updates add', async () => {
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false, devices: ['bulb', 'bulb_color']}});
|
|
zigbeeHerdsman.groups.group_1.members.push(zigbeeHerdsman.devices.bulb.getEndpoint(1));
|
|
await resetExtension();
|
|
expect(zigbeeHerdsman.groups.group_1.members).toStrictEqual([
|
|
zigbeeHerdsman.devices.bulb.getEndpoint(1),
|
|
zigbeeHerdsman.devices.bulb_color.getEndpoint(1),
|
|
]);
|
|
});
|
|
|
|
it('Apply group updates remove', async () => {
|
|
const endpoint = zigbeeHerdsman.devices.bulb_color.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint);
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false}});
|
|
await resetExtension();
|
|
expect(zigbeeHerdsman.groups.group_1.members).toStrictEqual([]);
|
|
});
|
|
|
|
it('Apply group updates remove handle fail', async () => {
|
|
const endpoint = zigbeeHerdsman.devices.bulb_color.getEndpoint(1);
|
|
endpoint.removeFromGroup.mockImplementationOnce(() => {
|
|
throw new Error('failed!');
|
|
});
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint);
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false}});
|
|
logger.error.mockClear();
|
|
await resetExtension();
|
|
expect(logger.error).toHaveBeenCalledWith(`Failed to remove 'bulb_color' from 'group_1'`);
|
|
expect(zigbeeHerdsman.groups.group_1.members).toStrictEqual([endpoint]);
|
|
});
|
|
|
|
it('Move to non existing group', async () => {
|
|
const device = zigbeeHerdsman.devices.bulb_color;
|
|
const endpoint = device.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint);
|
|
settings.set(['groups'], {3: {friendly_name: 'group_3', retain: false, devices: [device.ieeeAddr]}});
|
|
await resetExtension();
|
|
expect(zigbeeHerdsman.groups.group_1.members).toStrictEqual([]);
|
|
});
|
|
|
|
it('Add non standard endpoint to group with name', async () => {
|
|
const QBKG03LM = zigbeeHerdsman.devices.QBKG03LM;
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false, devices: ['0x0017880104e45542/right']}});
|
|
await resetExtension();
|
|
expect(zigbeeHerdsman.groups.group_1.members).toStrictEqual([QBKG03LM.getEndpoint(3)]);
|
|
});
|
|
|
|
it('Add non standard endpoint to group with number', async () => {
|
|
const QBKG03LM = zigbeeHerdsman.devices.QBKG03LM;
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false, devices: ['wall_switch_double/2']}});
|
|
await resetExtension();
|
|
expect(zigbeeHerdsman.groups.group_1.members).toStrictEqual([QBKG03LM.getEndpoint(2)]);
|
|
});
|
|
|
|
it('Shouldnt crash on non-existing devices', async () => {
|
|
logger.error.mockClear();
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false, devices: ['not_existing_bla']}});
|
|
await resetExtension();
|
|
expect(zigbeeHerdsman.groups.group_1.members).toStrictEqual([]);
|
|
expect(logger.error).toHaveBeenCalledWith("Cannot find 'not_existing_bla' of group 'group_1'");
|
|
});
|
|
|
|
it('Should resolve device friendly names', async () => {
|
|
settings.set(['devices', zigbeeHerdsman.devices.bulb.ieeeAddr, 'friendly_name'], 'bulb_friendly_name');
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false, devices: ['bulb_friendly_name', 'bulb_color']}});
|
|
await resetExtension();
|
|
expect(zigbeeHerdsman.groups.group_1.members).toStrictEqual([
|
|
zigbeeHerdsman.devices.bulb.getEndpoint(1),
|
|
zigbeeHerdsman.devices.bulb_color.getEndpoint(1),
|
|
]);
|
|
});
|
|
|
|
it('Legacy api: Add to group via MQTT', async () => {
|
|
const device = zigbeeHerdsman.devices.bulb_color;
|
|
const endpoint = device.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false, devices: []}});
|
|
expect(group.members.length).toBe(0);
|
|
await resetExtension();
|
|
MQTT.events.message('zigbee2mqtt/bridge/group/group_1/add', 'bulb_color');
|
|
await flushPromises();
|
|
expect(group.members).toStrictEqual([endpoint]);
|
|
expect(settings.getGroup('group_1').devices).toStrictEqual([`${device.ieeeAddr}/1`]);
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/bridge/log',
|
|
stringify({type: 'device_group_add', message: {friendly_name: 'bulb_color', group: 'group_1'}}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
});
|
|
|
|
it('Legacy api: Add to group with slashes via MQTT', async () => {
|
|
const device = zigbeeHerdsman.devices.bulb_color;
|
|
const endpoint = device.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups['group/with/slashes'];
|
|
settings.set(['groups'], {99: {friendly_name: 'group/with/slashes', retain: false, devices: []}});
|
|
expect(group.members.length).toBe(0);
|
|
await resetExtension();
|
|
MQTT.events.message('zigbee2mqtt/bridge/group/group/with/slashes/add', 'bulb_color');
|
|
await flushPromises();
|
|
expect(group.members).toStrictEqual([endpoint]);
|
|
expect(settings.getGroup('group/with/slashes').devices).toStrictEqual([`${device.ieeeAddr}/1`]);
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/bridge/log',
|
|
stringify({type: 'device_group_add', message: {friendly_name: 'bulb_color', group: 'group/with/slashes'}}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
});
|
|
|
|
it('Legacy api: Add to group via MQTT with postfix', async () => {
|
|
const device = zigbeeHerdsman.devices.QBKG03LM;
|
|
const endpoint = device.getEndpoint(3);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
expect(group.members.length).toBe(0);
|
|
await resetExtension();
|
|
await MQTT.events.message('zigbee2mqtt/bridge/group/group_1/add', 'wall_switch_double/right');
|
|
await flushPromises();
|
|
expect(group.members).toStrictEqual([endpoint]);
|
|
expect(settings.getGroup('group_1').devices).toStrictEqual([`${device.ieeeAddr}/${endpoint.ID}`]);
|
|
});
|
|
|
|
it('Legacy api: Add to group via MQTT with postfix shouldnt add it twice', async () => {
|
|
const device = zigbeeHerdsman.devices.QBKG03LM;
|
|
const endpoint = device.getEndpoint(3);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
expect(group.members.length).toBe(0);
|
|
await resetExtension();
|
|
await MQTT.events.message('zigbee2mqtt/bridge/group/group_1/add', 'wall_switch_double/right');
|
|
await flushPromises();
|
|
await MQTT.events.message('zigbee2mqtt/bridge/group/group_1/add', '0x0017880104e45542/3');
|
|
await flushPromises();
|
|
expect(group.members).toStrictEqual([endpoint]);
|
|
expect(settings.getGroup('group_1').devices).toStrictEqual([`${device.ieeeAddr}/${endpoint.ID}`]);
|
|
});
|
|
|
|
it('Legacy api: Remove from group via MQTT', async () => {
|
|
const device = zigbeeHerdsman.devices.bulb_color;
|
|
const endpoint = device.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint);
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false, devices: [device.ieeeAddr]}});
|
|
await resetExtension();
|
|
await MQTT.events.message('zigbee2mqtt/bridge/group/group_1/remove', 'bulb_color');
|
|
await flushPromises();
|
|
expect(group.members).toStrictEqual([]);
|
|
expect(settings.getGroup('group_1').devices).toStrictEqual([]);
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/bridge/log',
|
|
stringify({type: 'device_group_remove', message: {friendly_name: 'bulb_color', group: 'group_1'}}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
});
|
|
|
|
it('Legacy api: Remove from group via MQTT when in zigbee but not in settings', async () => {
|
|
const device = zigbeeHerdsman.devices.bulb_color;
|
|
const endpoint = device.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint);
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false, devices: ['dummy']}});
|
|
await resetExtension();
|
|
await MQTT.events.message('zigbee2mqtt/bridge/group/group_1/remove', 'bulb_color');
|
|
await flushPromises();
|
|
expect(group.members).toStrictEqual([]);
|
|
expect(settings.getGroup('group_1').devices).toStrictEqual(['dummy']);
|
|
});
|
|
|
|
it('Legacy api: Remove from group via MQTT with postfix variant 1', async () => {
|
|
const device = zigbeeHerdsman.devices.bulb_color;
|
|
const endpoint = device.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint);
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false, devices: [`wall_switch_double/right`]}});
|
|
await resetExtension();
|
|
await MQTT.events.message('zigbee2mqtt/bridge/group/group_1/remove', '0x0017880104e45542/3');
|
|
await flushPromises();
|
|
expect(group.members).toStrictEqual([]);
|
|
expect(settings.getGroup('group_1').devices).toStrictEqual([]);
|
|
});
|
|
|
|
it('Legacy api: Remove from group via MQTT with postfix variant 2', async () => {
|
|
const device = zigbeeHerdsman.devices.bulb_color;
|
|
const endpoint = device.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint);
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false, devices: [`0x0017880104e45542/right`]}});
|
|
await resetExtension();
|
|
await MQTT.events.message('zigbee2mqtt/bridge/group/group_1/remove', 'wall_switch_double/3');
|
|
await flushPromises();
|
|
expect(group.members).toStrictEqual([]);
|
|
expect(settings.getGroup('group_1').devices).toStrictEqual([]);
|
|
});
|
|
|
|
it('Legacy api: Remove from group via MQTT with postfix variant 3', async () => {
|
|
const device = zigbeeHerdsman.devices.bulb_color;
|
|
const endpoint = device.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint);
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false, devices: [`wall_switch_double/3`]}});
|
|
await resetExtension();
|
|
await MQTT.events.message('zigbee2mqtt/bridge/group/group_1/remove', '0x0017880104e45542/right');
|
|
await flushPromises();
|
|
expect(group.members).toStrictEqual([]);
|
|
expect(settings.getGroup('group_1').devices).toStrictEqual([]);
|
|
});
|
|
|
|
it('Legacy api: Remove from group all', async () => {
|
|
const device = zigbeeHerdsman.devices.bulb_color;
|
|
const endpoint = device.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint);
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false, devices: [`wall_switch_double/3`]}});
|
|
await resetExtension();
|
|
await MQTT.events.message('zigbee2mqtt/bridge/group/remove_all', '0x0017880104e45542/right');
|
|
await flushPromises();
|
|
expect(group.members).toStrictEqual([]);
|
|
expect(settings.getGroup('group_1').devices).toStrictEqual([]);
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/bridge/log',
|
|
stringify({type: 'device_group_remove_all', message: {friendly_name: 'wall_switch_double'}}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
});
|
|
|
|
it('Remove from group all deprecated', async () => {
|
|
const device = zigbeeHerdsman.devices.bulb_color;
|
|
const endpoint = device.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint);
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false, devices: [`wall_switch_double/3`]}});
|
|
await resetExtension();
|
|
await MQTT.events.message('zigbee2mqtt/bridge/group/group_1/remove_all', '0x0017880104e45542/right');
|
|
await flushPromises();
|
|
expect(group.members).toStrictEqual([]);
|
|
expect(settings.getGroup('group_1').devices).toStrictEqual([]);
|
|
});
|
|
|
|
it('Legacy api: Log when adding to non-existing group', async () => {
|
|
await resetExtension();
|
|
logger.error.mockClear();
|
|
MQTT.events.message('zigbee2mqtt/bridge/group/group_1_not_existing/add', 'bulb_color');
|
|
await flushPromises();
|
|
expect(logger.error).toHaveBeenCalledWith("Group 'group_1_not_existing' does not exist");
|
|
});
|
|
|
|
it('Legacy api: Log when adding a non-existing device', async () => {
|
|
await resetExtension();
|
|
logger.error.mockClear();
|
|
MQTT.events.message('zigbee2mqtt/bridge/group/group_1/add', 'bulb_color_not_existing');
|
|
await flushPromises();
|
|
expect(logger.error).toHaveBeenCalledWith("Device 'bulb_color_not_existing' does not exist");
|
|
});
|
|
|
|
it('Legacy api: Log when adding a non-existing endpoint', async () => {
|
|
await resetExtension();
|
|
logger.error.mockClear();
|
|
MQTT.events.message('zigbee2mqtt/bridge/group/group_1/add', 'bulb_color/not_existing_endpoint');
|
|
await flushPromises();
|
|
expect(logger.error).toHaveBeenCalledWith("Device 'bulb_color' does not have endpoint 'not_existing_endpoint'");
|
|
});
|
|
|
|
it('Should publish group state change when a device in it changes state', async () => {
|
|
const device = zigbeeHerdsman.devices.bulb_color;
|
|
const endpoint = device.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint);
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false, devices: [device.ieeeAddr]}});
|
|
await resetExtension();
|
|
|
|
MQTT.publish.mockClear();
|
|
const payload = {data: {onOff: 1}, cluster: 'genOnOff', device, endpoint, type: 'attributeReport', linkquality: 10};
|
|
await zigbeeHerdsman.events.message(payload);
|
|
await flushPromises();
|
|
|
|
expect(MQTT.publish).toHaveBeenCalledTimes(2);
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/bulb_color', stringify({state: 'ON'}), {retain: false, qos: 0}, expect.any(Function));
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/group_1', stringify({state: 'ON'}), {retain: false, qos: 0}, expect.any(Function));
|
|
});
|
|
|
|
it('Should not republish identical optimistic group states', async () => {
|
|
const device1 = zigbeeHerdsman.devices.bulb_2;
|
|
const device2 = zigbeeHerdsman.devices.bulb_color_2;
|
|
const group = zigbeeHerdsman.groups.group_tradfri_remote;
|
|
await resetExtension();
|
|
|
|
MQTT.publish.mockClear();
|
|
await zigbeeHerdsman.events.message({
|
|
data: {onOff: 1},
|
|
cluster: 'genOnOff',
|
|
device: device1,
|
|
endpoint: device1.getEndpoint(1),
|
|
type: 'attributeReport',
|
|
linkquality: 10,
|
|
});
|
|
await zigbeeHerdsman.events.message({
|
|
data: {onOff: 1},
|
|
cluster: 'genOnOff',
|
|
device: device2,
|
|
endpoint: device2.getEndpoint(1),
|
|
type: 'attributeReport',
|
|
linkquality: 10,
|
|
});
|
|
await flushPromises();
|
|
expect(MQTT.publish).toHaveBeenCalledTimes(6);
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/group_tradfri_remote',
|
|
stringify({state: 'ON'}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/bulb_2', stringify({state: 'ON'}), {retain: false, qos: 0}, expect.any(Function));
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/bulb_color_2',
|
|
stringify({state: 'ON'}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/group_with_tradfri',
|
|
stringify({state: 'ON'}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/ha_discovery_group',
|
|
stringify({state: 'ON'}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/switch_group',
|
|
stringify({state: 'ON'}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
});
|
|
|
|
it('Should publish state change of all members when a group changes its state', async () => {
|
|
const device = zigbeeHerdsman.devices.bulb_color;
|
|
const endpoint = device.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint);
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false, devices: [device.ieeeAddr]}});
|
|
await resetExtension();
|
|
|
|
MQTT.publish.mockClear();
|
|
await MQTT.events.message('zigbee2mqtt/group_1/set', stringify({state: 'ON'}));
|
|
await flushPromises();
|
|
expect(MQTT.publish).toHaveBeenCalledTimes(2);
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/bulb_color', stringify({state: 'ON'}), {retain: false, qos: 0}, expect.any(Function));
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/group_1', stringify({state: 'ON'}), {retain: false, qos: 0}, expect.any(Function));
|
|
});
|
|
|
|
it('Should not publish state change when group changes state and device is disabled', async () => {
|
|
const device = zigbeeHerdsman.devices.bulb_color;
|
|
const endpoint = device.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint);
|
|
settings.set(['devices', device.ieeeAddr, 'disabled'], true);
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false, devices: [device.ieeeAddr]}});
|
|
await resetExtension();
|
|
|
|
MQTT.publish.mockClear();
|
|
await MQTT.events.message('zigbee2mqtt/group_1/set', stringify({state: 'ON'}));
|
|
await flushPromises();
|
|
expect(MQTT.publish).toHaveBeenCalledTimes(1);
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/group_1', stringify({state: 'ON'}), {retain: false, qos: 0}, expect.any(Function));
|
|
});
|
|
|
|
it('Should publish state change for group when members state change', async () => {
|
|
// Created for https://github.com/Koenkk/zigbee2mqtt/issues/5725
|
|
const device = zigbeeHerdsman.devices.bulb_color;
|
|
const endpoint = device.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint);
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false, devices: [device.ieeeAddr]}});
|
|
await resetExtension();
|
|
|
|
MQTT.publish.mockClear();
|
|
await MQTT.events.message('zigbee2mqtt/bulb_color/set', stringify({state: 'ON'}));
|
|
await flushPromises();
|
|
expect(MQTT.publish).toHaveBeenCalledTimes(2);
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/bulb_color', stringify({state: 'ON'}), {retain: false, qos: 0}, expect.any(Function));
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/group_1', stringify({state: 'ON'}), {retain: false, qos: 0}, expect.any(Function));
|
|
|
|
MQTT.publish.mockClear();
|
|
await MQTT.events.message('zigbee2mqtt/group_1/set', stringify({state: 'OFF'}));
|
|
await flushPromises();
|
|
expect(MQTT.publish).toHaveBeenCalledTimes(2);
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/bulb_color', stringify({state: 'OFF'}), {retain: false, qos: 0}, expect.any(Function));
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/group_1', stringify({state: 'OFF'}), {retain: false, qos: 0}, expect.any(Function));
|
|
|
|
MQTT.publish.mockClear();
|
|
await MQTT.events.message('zigbee2mqtt/bulb_color/set', stringify({state: 'ON'}));
|
|
await flushPromises();
|
|
expect(MQTT.publish).toHaveBeenCalledTimes(2);
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/bulb_color', stringify({state: 'ON'}), {retain: false, qos: 0}, expect.any(Function));
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/group_1', stringify({state: 'ON'}), {retain: false, qos: 0}, expect.any(Function));
|
|
});
|
|
|
|
it('Should publish state of device with endpoint name', async () => {
|
|
const group = zigbeeHerdsman.groups.gledopto_group;
|
|
await resetExtension();
|
|
|
|
MQTT.publish.mockClear();
|
|
await MQTT.events.message('zigbee2mqtt/gledopto_group/set', stringify({state: 'ON'}));
|
|
await flushPromises();
|
|
expect(MQTT.publish).toHaveBeenCalledTimes(2);
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/GLEDOPTO_2ID',
|
|
stringify({state_cct: 'ON'}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/gledopto_group',
|
|
stringify({state: 'ON'}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
expect(group.command).toHaveBeenCalledTimes(1);
|
|
expect(group.command).toHaveBeenCalledWith('genOnOff', 'on', {}, {});
|
|
});
|
|
|
|
it('Should publish state of group when specific state of specific endpoint is changed', async () => {
|
|
const group = zigbeeHerdsman.groups.gledopto_group;
|
|
await resetExtension();
|
|
|
|
MQTT.publish.mockClear();
|
|
await MQTT.events.message('zigbee2mqtt/GLEDOPTO_2ID/set', stringify({state_cct: 'ON'}));
|
|
await flushPromises();
|
|
expect(MQTT.publish).toHaveBeenCalledTimes(2);
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/GLEDOPTO_2ID',
|
|
stringify({state_cct: 'ON'}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/gledopto_group',
|
|
stringify({state: 'ON'}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
expect(group.command).toHaveBeenCalledTimes(0);
|
|
});
|
|
|
|
it('Should publish state change of all members when a group changes its state, filtered', async () => {
|
|
const device = zigbeeHerdsman.devices.bulb_color;
|
|
const endpoint = device.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint);
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false, filtered_attributes: ['brightness'], devices: [device.ieeeAddr]}});
|
|
await resetExtension();
|
|
|
|
MQTT.publish.mockClear();
|
|
await MQTT.events.message('zigbee2mqtt/group_1/set', stringify({state: 'ON', brightness: 100}));
|
|
await flushPromises();
|
|
expect(MQTT.publish).toHaveBeenCalledTimes(2);
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/bulb_color',
|
|
stringify({state: 'ON', brightness: 100}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/group_1', stringify({state: 'ON'}), {retain: false, qos: 0}, expect.any(Function));
|
|
});
|
|
|
|
it('Shouldnt publish group state change when a group is not optimistic', async () => {
|
|
const device = zigbeeHerdsman.devices.bulb_color;
|
|
const endpoint = device.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint);
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', devices: [device.ieeeAddr], optimistic: false, retain: false}});
|
|
await resetExtension();
|
|
|
|
MQTT.publish.mockClear();
|
|
const payload = {data: {onOff: 1}, cluster: 'genOnOff', device, endpoint, type: 'attributeReport', linkquality: 10};
|
|
await zigbeeHerdsman.events.message(payload);
|
|
await flushPromises();
|
|
|
|
expect(MQTT.publish).toHaveBeenCalledTimes(1);
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/bulb_color', stringify({state: 'ON'}), {retain: false, qos: 0}, expect.any(Function));
|
|
});
|
|
|
|
it('Should publish state change of another group with shared device when a group changes its state', async () => {
|
|
const device = zigbeeHerdsman.devices.bulb_color;
|
|
const endpoint = device.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint);
|
|
settings.set(['groups'], {
|
|
1: {friendly_name: 'group_1', retain: false, devices: [device.ieeeAddr]},
|
|
2: {friendly_name: 'group_2', retain: false, devices: [device.ieeeAddr]},
|
|
3: {friendly_name: 'group_3', retain: false, devices: []},
|
|
});
|
|
await resetExtension();
|
|
|
|
MQTT.publish.mockClear();
|
|
await MQTT.events.message('zigbee2mqtt/group_1/set', stringify({state: 'ON'}));
|
|
await flushPromises();
|
|
expect(MQTT.publish).toHaveBeenCalledTimes(3);
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/bulb_color', stringify({state: 'ON'}), {retain: false, qos: 0}, expect.any(Function));
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/group_1', stringify({state: 'ON'}), {retain: false, qos: 0}, expect.any(Function));
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/group_2', stringify({state: 'ON'}), {retain: false, qos: 0}, expect.any(Function));
|
|
});
|
|
|
|
it('Should not publish state change off if any lights within are still on when changed via device', async () => {
|
|
const device_1 = zigbeeHerdsman.devices.bulb_color;
|
|
const device_2 = zigbeeHerdsman.devices.bulb;
|
|
const endpoint_1 = device_1.getEndpoint(1);
|
|
const endpoint_2 = device_2.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint_1);
|
|
group.members.push(endpoint_2);
|
|
settings.set(['groups'], {
|
|
1: {friendly_name: 'group_1', devices: [device_1.ieeeAddr, device_2.ieeeAddr], retain: false},
|
|
});
|
|
await resetExtension();
|
|
|
|
await MQTT.events.message('zigbee2mqtt/group_1/set', stringify({state: 'ON'}));
|
|
await flushPromises();
|
|
MQTT.publish.mockClear();
|
|
|
|
await MQTT.events.message('zigbee2mqtt/bulb_color/set', stringify({state: 'OFF'}));
|
|
await flushPromises();
|
|
expect(MQTT.publish).toHaveBeenCalledTimes(1);
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/bulb_color', stringify({state: 'OFF'}), {retain: false, qos: 0}, expect.any(Function));
|
|
});
|
|
|
|
it('Should publish state change off if any lights within are still on when changed via device when off_state: last_member_state is used', async () => {
|
|
const device_1 = zigbeeHerdsman.devices.bulb_color;
|
|
const device_2 = zigbeeHerdsman.devices.bulb;
|
|
const endpoint_1 = device_1.getEndpoint(1);
|
|
const endpoint_2 = device_2.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint_1);
|
|
group.members.push(endpoint_2);
|
|
settings.set(['groups'], {
|
|
1: {friendly_name: 'group_1', devices: [device_1.ieeeAddr, device_2.ieeeAddr], retain: false, off_state: 'last_member_state'},
|
|
});
|
|
await resetExtension();
|
|
|
|
await MQTT.events.message('zigbee2mqtt/group_1/set', stringify({state: 'ON'}));
|
|
await flushPromises();
|
|
MQTT.publish.mockClear();
|
|
|
|
await MQTT.events.message('zigbee2mqtt/bulb_color/set', stringify({state: 'OFF'}));
|
|
await flushPromises();
|
|
expect(MQTT.publish).toHaveBeenCalledTimes(2);
|
|
expect(MQTT.publish).toHaveBeenNthCalledWith(
|
|
1,
|
|
'zigbee2mqtt/group_1',
|
|
stringify({state: 'OFF'}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
expect(MQTT.publish).toHaveBeenNthCalledWith(
|
|
2,
|
|
'zigbee2mqtt/bulb_color',
|
|
stringify({state: 'OFF'}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
});
|
|
|
|
it('Should not publish state change off if any lights within are still on when changed via shared group', async () => {
|
|
const device_1 = zigbeeHerdsman.devices.bulb_color;
|
|
const device_2 = zigbeeHerdsman.devices.bulb;
|
|
const endpoint_1 = device_1.getEndpoint(1);
|
|
const endpoint_2 = device_2.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint_1);
|
|
group.members.push(endpoint_2);
|
|
settings.set(['groups'], {
|
|
1: {friendly_name: 'group_1', devices: [device_1.ieeeAddr, device_2.ieeeAddr], retain: false},
|
|
2: {friendly_name: 'group_2', retain: false, devices: [device_1.ieeeAddr]},
|
|
});
|
|
await resetExtension();
|
|
|
|
await MQTT.events.message('zigbee2mqtt/group_1/set', stringify({state: 'ON'}));
|
|
await flushPromises();
|
|
MQTT.publish.mockClear();
|
|
|
|
await MQTT.events.message('zigbee2mqtt/group_2/set', stringify({state: 'OFF'}));
|
|
await flushPromises();
|
|
expect(MQTT.publish).toHaveBeenCalledTimes(2);
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/group_2', stringify({state: 'OFF'}), {retain: false, qos: 0}, expect.any(Function));
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/bulb_color', stringify({state: 'OFF'}), {retain: false, qos: 0}, expect.any(Function));
|
|
});
|
|
|
|
it('Should publish state change off if all lights within turn off', async () => {
|
|
const device_1 = zigbeeHerdsman.devices.bulb_color;
|
|
const device_2 = zigbeeHerdsman.devices.bulb;
|
|
const endpoint_1 = device_1.getEndpoint(1);
|
|
const endpoint_2 = device_2.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint_1);
|
|
group.members.push(endpoint_2);
|
|
settings.set(['groups'], {
|
|
1: {friendly_name: 'group_1', devices: [device_1.ieeeAddr, device_2.ieeeAddr], retain: false},
|
|
});
|
|
await resetExtension();
|
|
|
|
await MQTT.events.message('zigbee2mqtt/group_1/set', stringify({state: 'ON'}));
|
|
await flushPromises();
|
|
MQTT.publish.mockClear();
|
|
|
|
await MQTT.events.message('zigbee2mqtt/bulb_color/set', stringify({state: 'OFF'}));
|
|
await MQTT.events.message('zigbee2mqtt/bulb/set', stringify({state: 'OFF'}));
|
|
await flushPromises();
|
|
expect(MQTT.publish).toHaveBeenCalledTimes(3);
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/bulb_color', stringify({state: 'OFF'}), {retain: false, qos: 0}, expect.any(Function));
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/bulb', stringify({state: 'OFF'}), {retain: true, qos: 0}, expect.any(Function));
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/group_1', stringify({state: 'OFF'}), {retain: false, qos: 0}, expect.any(Function));
|
|
});
|
|
|
|
it('Should only update group state with changed properties', async () => {
|
|
const device_1 = zigbeeHerdsman.devices.bulb_color;
|
|
const device_2 = zigbeeHerdsman.devices.bulb;
|
|
const endpoint_1 = device_1.getEndpoint(1);
|
|
const endpoint_2 = device_2.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint_1);
|
|
group.members.push(endpoint_2);
|
|
settings.set(['groups'], {
|
|
1: {friendly_name: 'group_1', devices: [device_1.ieeeAddr, device_2.ieeeAddr], retain: false},
|
|
});
|
|
await resetExtension();
|
|
MQTT.publish.mockClear();
|
|
|
|
await MQTT.events.message('zigbee2mqtt/bulb_color/set', stringify({state: 'OFF', color_temp: 200}));
|
|
await MQTT.events.message('zigbee2mqtt/bulb/set', stringify({state: 'ON', color_temp: 250}));
|
|
await flushPromises();
|
|
MQTT.publish.mockClear();
|
|
|
|
await MQTT.events.message('zigbee2mqtt/group_1/set', stringify({color_temp: 300}));
|
|
await flushPromises();
|
|
expect(MQTT.publish).toHaveBeenCalledTimes(3);
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/bulb_color',
|
|
stringify({color_mode: 'color_temp', color_temp: 300, state: 'OFF'}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/bulb',
|
|
stringify({color_mode: 'color_temp', color_temp: 300, state: 'ON'}),
|
|
{retain: true, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/group_1',
|
|
stringify({color_mode: 'color_temp', color_temp: 300, state: 'ON'}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
});
|
|
|
|
it('Should publish state change off even when missing current state', async () => {
|
|
const device_1 = zigbeeHerdsman.devices.bulb_color;
|
|
const device_2 = zigbeeHerdsman.devices.bulb;
|
|
const endpoint_1 = device_1.getEndpoint(1);
|
|
const endpoint_2 = device_2.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint_1);
|
|
group.members.push(endpoint_2);
|
|
settings.set(['groups'], {
|
|
1: {friendly_name: 'group_1', devices: [device_1.ieeeAddr, device_2.ieeeAddr], retain: false},
|
|
});
|
|
await resetExtension();
|
|
|
|
await MQTT.events.message('zigbee2mqtt/group_1/set', stringify({state: 'ON'}));
|
|
await flushPromises();
|
|
MQTT.publish.mockClear();
|
|
controller.state.state = {};
|
|
|
|
await MQTT.events.message('zigbee2mqtt/bulb_color/set', stringify({state: 'OFF'}));
|
|
await flushPromises();
|
|
|
|
expect(MQTT.publish).toHaveBeenCalledTimes(2);
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/bulb_color', stringify({state: 'OFF'}), {retain: false, qos: 0}, expect.any(Function));
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/group_1', stringify({state: 'OFF'}), {retain: false, qos: 0}, expect.any(Function));
|
|
});
|
|
|
|
it('Add to group via MQTT', async () => {
|
|
const device = zigbeeHerdsman.devices.bulb_color;
|
|
const endpoint = device.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false, devices: []}});
|
|
expect(group.members.length).toBe(0);
|
|
await resetExtension();
|
|
MQTT.publish.mockClear();
|
|
MQTT.events.message('zigbee2mqtt/bridge/request/group/members/add', stringify({transaction: '123', group: 'group_1', device: 'bulb_color'}));
|
|
await flushPromises();
|
|
expect(group.members).toStrictEqual([endpoint]);
|
|
expect(settings.getGroup('group_1').devices).toStrictEqual([`${device.ieeeAddr}/1`]);
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/bridge/groups', expect.any(String), expect.any(Object), expect.any(Function));
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/bridge/response/group/members/add',
|
|
stringify({data: {device: 'bulb_color', group: 'group_1'}, transaction: '123', status: 'ok'}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
});
|
|
|
|
it('Add to group via MQTT fails', async () => {
|
|
const device = zigbeeHerdsman.devices.bulb_color;
|
|
const endpoint = device.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false, devices: []}});
|
|
expect(group.members.length).toBe(0);
|
|
await resetExtension();
|
|
endpoint.addToGroup.mockImplementationOnce(() => {
|
|
throw new Error('timeout');
|
|
});
|
|
await flushPromises();
|
|
MQTT.publish.mockClear();
|
|
MQTT.events.message('zigbee2mqtt/bridge/request/group/members/add', stringify({group: 'group_1', device: 'bulb_color'}));
|
|
await flushPromises();
|
|
expect(group.members).toStrictEqual([]);
|
|
expect(settings.getGroup('group_1').devices).toStrictEqual([]);
|
|
expect(MQTT.publish).not.toHaveBeenCalledWith('zigbee2mqtt/bridge/groups', expect.any(String), expect.any(Object), expect.any(Function));
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/bridge/response/group/members/add',
|
|
stringify({data: {device: 'bulb_color', group: 'group_1'}, status: 'error', error: 'Failed to add from group (timeout)'}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
});
|
|
|
|
it('Add to group with slashes via MQTT', async () => {
|
|
const device = zigbeeHerdsman.devices.bulb_color;
|
|
const endpoint = device.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups['group/with/slashes'];
|
|
settings.set(['groups'], {99: {friendly_name: 'group/with/slashes', retain: false, devices: []}});
|
|
expect(group.members.length).toBe(0);
|
|
await resetExtension();
|
|
MQTT.publish.mockClear();
|
|
MQTT.events.message('zigbee2mqtt/bridge/request/group/members/add', stringify({group: 'group/with/slashes', device: 'bulb_color'}));
|
|
await flushPromises();
|
|
expect(group.members).toStrictEqual([endpoint]);
|
|
expect(settings.getGroup('group/with/slashes').devices).toStrictEqual([`${device.ieeeAddr}/1`]);
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/bridge/groups', expect.any(String), expect.any(Object), expect.any(Function));
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/bridge/response/group/members/add',
|
|
stringify({data: {device: 'bulb_color', group: 'group/with/slashes'}, status: 'ok'}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
});
|
|
|
|
it('Add to group via MQTT with postfix', async () => {
|
|
const device = zigbeeHerdsman.devices.QBKG03LM;
|
|
const endpoint = device.getEndpoint(3);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
expect(group.members.length).toBe(0);
|
|
await resetExtension();
|
|
MQTT.publish.mockClear();
|
|
MQTT.events.message('zigbee2mqtt/bridge/request/group/members/add', stringify({group: 'group_1', device: 'wall_switch_double/right'}));
|
|
await flushPromises();
|
|
expect(group.members).toStrictEqual([endpoint]);
|
|
expect(settings.getGroup('group_1').devices).toStrictEqual([`${device.ieeeAddr}/${endpoint.ID}`]);
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/bridge/groups', expect.any(String), expect.any(Object), expect.any(Function));
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/bridge/response/group/members/add',
|
|
stringify({data: {device: 'wall_switch_double/right', group: 'group_1'}, status: 'ok'}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
});
|
|
|
|
it('Add to group via MQTT with postfix shouldnt add it twice', async () => {
|
|
const device = zigbeeHerdsman.devices.QBKG03LM;
|
|
const endpoint = device.getEndpoint(3);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
expect(group.members.length).toBe(0);
|
|
await resetExtension();
|
|
MQTT.publish.mockClear();
|
|
MQTT.events.message('zigbee2mqtt/bridge/request/group/members/add', stringify({group: 'group_1', device: 'wall_switch_double/right'}));
|
|
await flushPromises();
|
|
MQTT.events.message('zigbee2mqtt/bridge/request/group/members/add', stringify({group: 'group_1', device: '0x0017880104e45542/3'}));
|
|
await flushPromises();
|
|
expect(group.members).toStrictEqual([endpoint]);
|
|
expect(settings.getGroup('group_1').devices).toStrictEqual([`${device.ieeeAddr}/${endpoint.ID}`]);
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/bridge/groups', expect.any(String), expect.any(Object), expect.any(Function));
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/bridge/response/group/members/add',
|
|
stringify({data: {device: 'wall_switch_double/right', group: 'group_1'}, status: 'ok'}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
});
|
|
|
|
it('Remove from group via MQTT', async () => {
|
|
const device = zigbeeHerdsman.devices.bulb_color;
|
|
const endpoint = device.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint);
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false, devices: [device.ieeeAddr]}});
|
|
await resetExtension();
|
|
MQTT.publish.mockClear();
|
|
MQTT.events.message('zigbee2mqtt/bridge/request/group/members/remove', stringify({group: 'group_1', device: 'bulb_color'}));
|
|
await flushPromises();
|
|
expect(group.members).toStrictEqual([]);
|
|
expect(settings.getGroup('group_1').devices).toStrictEqual([]);
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/bridge/groups', expect.any(String), expect.any(Object), expect.any(Function));
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/bridge/response/group/members/remove',
|
|
stringify({data: {device: 'bulb_color', group: 'group_1'}, status: 'ok'}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
});
|
|
|
|
it('Remove from group via MQTT keeping device reporting', async () => {
|
|
const device = zigbeeHerdsman.devices.bulb_color;
|
|
const endpoint = device.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint);
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false, devices: [device.ieeeAddr]}});
|
|
await resetExtension();
|
|
MQTT.publish.mockClear();
|
|
MQTT.events.message(
|
|
'zigbee2mqtt/bridge/request/group/members/remove',
|
|
stringify({group: 'group_1', device: 'bulb_color', skip_disable_reporting: true}),
|
|
);
|
|
await flushPromises();
|
|
expect(group.members).toStrictEqual([]);
|
|
expect(settings.getGroup('group_1').devices).toStrictEqual([]);
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/bridge/groups', expect.any(String), expect.any(Object), expect.any(Function));
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/bridge/response/group/members/remove',
|
|
stringify({data: {device: 'bulb_color', group: 'group_1'}, status: 'ok'}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
});
|
|
|
|
it('Remove from group via MQTT when in zigbee but not in settings', async () => {
|
|
const device = zigbeeHerdsman.devices.bulb_color;
|
|
const endpoint = device.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint);
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false, devices: ['dummy']}});
|
|
await resetExtension();
|
|
MQTT.publish.mockClear();
|
|
MQTT.events.message('zigbee2mqtt/bridge/request/group/members/remove', stringify({group: 'group_1', device: 'bulb_color'}));
|
|
await flushPromises();
|
|
expect(group.members).toStrictEqual([]);
|
|
expect(settings.getGroup('group_1').devices).toStrictEqual(['dummy']);
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/bridge/groups', expect.any(String), expect.any(Object), expect.any(Function));
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/bridge/response/group/members/remove',
|
|
stringify({data: {device: 'bulb_color', group: 'group_1'}, status: 'ok'}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
});
|
|
|
|
it('Remove from group via MQTT with postfix variant 1', async () => {
|
|
const device = zigbeeHerdsman.devices.bulb_color;
|
|
const endpoint = device.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint);
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false, devices: [`wall_switch_double/right`]}});
|
|
await resetExtension();
|
|
MQTT.publish.mockClear();
|
|
MQTT.events.message('zigbee2mqtt/bridge/request/group/members/remove', stringify({group: 'group_1', device: '0x0017880104e45542/3'}));
|
|
await flushPromises();
|
|
expect(group.members).toStrictEqual([]);
|
|
expect(settings.getGroup('group_1').devices).toStrictEqual([]);
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/bridge/groups', expect.any(String), expect.any(Object), expect.any(Function));
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/bridge/response/group/members/remove',
|
|
stringify({data: {device: '0x0017880104e45542/3', group: 'group_1'}, status: 'ok'}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
});
|
|
|
|
it('Remove from group via MQTT with postfix variant 2', async () => {
|
|
const device = zigbeeHerdsman.devices.bulb_color;
|
|
const endpoint = device.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint);
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false, devices: [`0x0017880104e45542/right`]}});
|
|
await resetExtension();
|
|
MQTT.publish.mockClear();
|
|
MQTT.events.message('zigbee2mqtt/bridge/request/group/members/remove', stringify({group: 'group_1', device: 'wall_switch_double/3'}));
|
|
await flushPromises();
|
|
expect(group.members).toStrictEqual([]);
|
|
expect(settings.getGroup('group_1').devices).toStrictEqual([]);
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/bridge/groups', expect.any(String), expect.any(Object), expect.any(Function));
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/bridge/response/group/members/remove',
|
|
stringify({data: {device: 'wall_switch_double/3', group: 'group_1'}, status: 'ok'}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
});
|
|
|
|
it('Remove from group via MQTT with postfix variant 3', async () => {
|
|
const device = zigbeeHerdsman.devices.bulb_color;
|
|
const endpoint = device.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint);
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false, devices: [`wall_switch_double/3`]}});
|
|
await resetExtension();
|
|
MQTT.publish.mockClear();
|
|
MQTT.events.message('zigbee2mqtt/bridge/request/group/members/remove', stringify({group: 'group_1', device: '0x0017880104e45542/right'}));
|
|
await flushPromises();
|
|
expect(group.members).toStrictEqual([]);
|
|
expect(settings.getGroup('group_1').devices).toStrictEqual([]);
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/bridge/groups', expect.any(String), expect.any(Object), expect.any(Function));
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/bridge/response/group/members/remove',
|
|
stringify({data: {device: '0x0017880104e45542/right', group: 'group_1'}, status: 'ok'}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
});
|
|
|
|
it('Remove from group all', async () => {
|
|
const device = zigbeeHerdsman.devices.bulb_color;
|
|
const endpoint = device.getEndpoint(1);
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(endpoint);
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false, devices: [`wall_switch_double/3`]}});
|
|
await resetExtension();
|
|
MQTT.publish.mockClear();
|
|
MQTT.events.message('zigbee2mqtt/bridge/request/group/members/remove_all', stringify({device: '0x0017880104e45542/right'}));
|
|
await flushPromises();
|
|
expect(group.members).toStrictEqual([]);
|
|
expect(settings.getGroup('group_1').devices).toStrictEqual([]);
|
|
expect(MQTT.publish).toHaveBeenCalledWith('zigbee2mqtt/bridge/groups', expect.any(String), expect.any(Object), expect.any(Function));
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/bridge/response/group/members/remove_all',
|
|
stringify({data: {device: '0x0017880104e45542/right'}, status: 'ok'}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
});
|
|
|
|
it('Error when adding to non-existing group', async () => {
|
|
await resetExtension();
|
|
logger.error.mockClear();
|
|
MQTT.publish.mockClear();
|
|
MQTT.events.message('zigbee2mqtt/bridge/request/group/members/remove', stringify({group: 'group_1_not_existing', device: 'bulb_color'}));
|
|
await flushPromises();
|
|
expect(MQTT.publish).not.toHaveBeenCalledWith('zigbee2mqtt/bridge/groups', expect.any(String), expect.any(Object), expect.any(Function));
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/bridge/response/group/members/remove',
|
|
stringify({
|
|
data: {device: 'bulb_color', group: 'group_1_not_existing'},
|
|
status: 'error',
|
|
error: "Group 'group_1_not_existing' does not exist",
|
|
}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
});
|
|
|
|
it('Error when adding a non-existing device', async () => {
|
|
await resetExtension();
|
|
logger.error.mockClear();
|
|
MQTT.publish.mockClear();
|
|
MQTT.events.message('zigbee2mqtt/bridge/request/group/members/add', stringify({group: 'group_1', device: 'bulb_color_not_existing'}));
|
|
await flushPromises();
|
|
expect(MQTT.publish).not.toHaveBeenCalledWith('zigbee2mqtt/bridge/groups', expect.any(String), expect.any(Object), expect.any(Function));
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/bridge/response/group/members/add',
|
|
stringify({
|
|
data: {device: 'bulb_color_not_existing', group: 'group_1'},
|
|
status: 'error',
|
|
error: "Device 'bulb_color_not_existing' does not exist",
|
|
}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
});
|
|
|
|
it('Error when adding a non-existing endpoint', async () => {
|
|
await resetExtension();
|
|
logger.error.mockClear();
|
|
MQTT.publish.mockClear();
|
|
MQTT.events.message(
|
|
'zigbee2mqtt/bridge/request/group/members/add',
|
|
stringify({group: 'group_1', device: 'bulb_color/not_existing_endpoint'}),
|
|
);
|
|
await flushPromises();
|
|
expect(MQTT.publish).not.toHaveBeenCalledWith('zigbee2mqtt/bridge/groups', expect.any(String), expect.any(Object), expect.any(Function));
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/bridge/response/group/members/add',
|
|
stringify({
|
|
data: {device: 'bulb_color/not_existing_endpoint', group: 'group_1'},
|
|
status: 'error',
|
|
error: "Device 'bulb_color' does not have endpoint 'not_existing_endpoint'",
|
|
}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
});
|
|
|
|
it('Should only include relevant properties when publishing member states', async () => {
|
|
const bulbColor = zigbeeHerdsman.devices.bulb_color;
|
|
const bulbColorTemp = zigbeeHerdsman.devices.bulb;
|
|
const group = zigbeeHerdsman.groups.group_1;
|
|
group.members.push(bulbColor.getEndpoint(1));
|
|
group.members.push(bulbColorTemp.getEndpoint(1));
|
|
settings.set(['groups'], {1: {friendly_name: 'group_1', retain: false, devices: [bulbColor.ieeeAddr, bulbColorTemp.ieeeAddr]}});
|
|
await resetExtension();
|
|
|
|
MQTT.publish.mockClear();
|
|
await MQTT.events.message('zigbee2mqtt/group_1/set', stringify({color_temp: 50}));
|
|
await flushPromises();
|
|
expect(MQTT.publish).toHaveBeenCalledTimes(3);
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/bulb_color',
|
|
stringify({color_mode: 'color_temp', color_temp: 50}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/group_1',
|
|
stringify({color_mode: 'color_temp', color_temp: 50}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/bulb',
|
|
stringify({color_mode: 'color_temp', color_temp: 50}),
|
|
{retain: true, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
|
|
MQTT.publish.mockClear();
|
|
await MQTT.events.message('zigbee2mqtt/group_1/set', stringify({color: {x: 0.5, y: 0.3}}));
|
|
await flushPromises();
|
|
expect(MQTT.publish).toHaveBeenCalledTimes(3);
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/bulb_color',
|
|
stringify({color: {x: 0.5, y: 0.3}, color_mode: 'xy', color_temp: 548}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/group_1',
|
|
stringify({color: {x: 0.5, y: 0.3}, color_mode: 'xy', color_temp: 548}),
|
|
{retain: false, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
expect(MQTT.publish).toHaveBeenCalledWith(
|
|
'zigbee2mqtt/bulb',
|
|
stringify({color_mode: 'color_temp', color_temp: 548}),
|
|
{retain: true, qos: 0},
|
|
expect.any(Function),
|
|
);
|
|
});
|
|
});
|