mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2024-11-16 02:18:31 -07:00
905 lines
50 KiB
JavaScript
905 lines
50 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 = () => new Promise(setImmediate);
|
|
const settings = require('../lib/util/settings');
|
|
|
|
describe('Groups', () => {
|
|
let controller;
|
|
|
|
beforeEach(() => {
|
|
data.writeEmptyState();
|
|
controller = new Controller(jest.fn(), jest.fn());
|
|
Object.values(zigbeeHerdsman.groups).forEach((g) => g.members = []);
|
|
data.writeDefaultConfiguration();
|
|
settings.reRead();
|
|
MQTT.publish.mockClear();
|
|
zigbeeHerdsman.groups.gledopto_group.command.mockClear();
|
|
zigbeeHerdsmanConverters.toZigbeeConverters.__clearStore__();
|
|
})
|
|
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 to non-existing device', async () => {
|
|
await controller.start();
|
|
await flushPromises();
|
|
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('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 controller.start();
|
|
await flushPromises();
|
|
|
|
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 controller.start();
|
|
await flushPromises();
|
|
|
|
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(5);
|
|
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));
|
|
});
|
|
|
|
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 controller.start();
|
|
await flushPromises();
|
|
|
|
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 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 controller.start();
|
|
await flushPromises();
|
|
|
|
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 controller.start();
|
|
await flushPromises();
|
|
|
|
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 controller.start();
|
|
await flushPromises();
|
|
|
|
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 controller.start();
|
|
await flushPromises();
|
|
|
|
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 controller.start();
|
|
await flushPromises();
|
|
|
|
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 controller.start();
|
|
await flushPromises();
|
|
|
|
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 controller.start();
|
|
await flushPromises();
|
|
|
|
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 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 controller.start();
|
|
await flushPromises();
|
|
|
|
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 controller.start();
|
|
await flushPromises();
|
|
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 controller.start();
|
|
await flushPromises();
|
|
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 to non-existing device', async () => {
|
|
await controller.start();
|
|
await flushPromises();
|
|
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('onlythis 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 controller.start();
|
|
await flushPromises();
|
|
|
|
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));
|
|
});
|
|
});
|