zigbee-herdsman
Version:
An open source ZigBee gateway solution with node.js.
33 lines (27 loc) • 1.13 kB
text/typescript
import * as Constants from "../../../src/adapter/z-stack/constants";
describe("zstack-constants", () => {
it("Simple check", () => {
expect(Constants.AF.DEFAULT_RADIUS).toBe(30);
});
describe("utils", () => {
describe("getChannelMask", () => {
it("Get channel mask 11", () => {
expect(Constants.Utils.getChannelMask([11])).toStrictEqual([0, 8, 0, 0]);
});
it("Get channel mask 25", () => {
expect(Constants.Utils.getChannelMask([25])).toStrictEqual([0, 0, 0, 2]);
});
it("Get channel mask 11 and 25", () => {
expect(Constants.Utils.getChannelMask([11, 25])).toStrictEqual([0, 8, 0, 2]);
});
});
describe("statusDescription", () => {
it("formats known status", () => {
expect(Constants.Utils.statusDescription(0x10)).toBe("(0x10: MEM_ERROR)");
});
it("formats unknown status", () => {
expect(Constants.Utils.statusDescription(0x08)).toBe("(0x08: UNKNOWN)");
});
});
});
});