mirror of https://github.com/Hypfer/Valetudo.git
45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
const DoNotDisturbCapability = require("../../../core/capabilities/DoNotDisturbCapability");
|
|
const ValetudoDNDConfiguration = require("../../../entities/core/ValetudoDNDConfiguration");
|
|
|
|
/**
|
|
* @extends DoNotDisturbCapability<import("../MockRobot")>
|
|
*/
|
|
class MockDoNotDisturbCapability extends DoNotDisturbCapability {
|
|
/**
|
|
* @param {object} options
|
|
* @param {import("../MockRobot")} options.robot
|
|
*/
|
|
constructor(options) {
|
|
super(options);
|
|
|
|
this.dndConfig = new ValetudoDNDConfiguration({
|
|
enabled: true,
|
|
start: {
|
|
hour: 22,
|
|
minute: 0
|
|
},
|
|
end: {
|
|
hour: 8,
|
|
minute: 0
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @returns {Promise<import("../../../entities/core/ValetudoDNDConfiguration")>}
|
|
*/
|
|
async getDndConfiguration() {
|
|
return new ValetudoDNDConfiguration(this.dndConfig);
|
|
}
|
|
|
|
/**
|
|
* @param {import("../../../entities/core/ValetudoDNDConfiguration")} dndConfig
|
|
* @returns {Promise<void>}
|
|
*/
|
|
async setDndConfiguration(dndConfig) {
|
|
this.dndConfig = dndConfig;
|
|
}
|
|
}
|
|
|
|
module.exports = MockDoNotDisturbCapability;
|