mirror of https://github.com/Hypfer/Valetudo.git
49 lines
1.5 KiB
JavaScript
49 lines
1.5 KiB
JavaScript
const MapSegmentationCapability = require("../../../core/capabilities/MapSegmentationCapability");
|
|
const ValetudoMapSegment = require("../../../entities/core/ValetudoMapSegment");
|
|
|
|
/**
|
|
* @extends MapSegmentationCapability<import("../MockRobot")>
|
|
*/
|
|
class MockMapSegmentationCapability extends MapSegmentationCapability {
|
|
/**
|
|
* @returns {Promise<Array<import("../../../entities/core/ValetudoMapSegment")>>}
|
|
*/
|
|
async getSegments() {
|
|
return [
|
|
new ValetudoMapSegment({ id: "foo_id", name: "Foo"}),
|
|
new ValetudoMapSegment({ id: "bar_id", name: "Bar"}),
|
|
new ValetudoMapSegment({ id: "b774401e-4227-43bb-8fde-c166cfa7a028" })
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @returns {import("../../../core/capabilities/MapSegmentationCapability").MapSegmentationCapabilityProperties}
|
|
*/
|
|
getProperties() {
|
|
return {
|
|
iterationCount: {
|
|
min: 1,
|
|
max: 2
|
|
},
|
|
customOrderSupport: true
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Could be phrased as "cleanSegments" for vacuums or "mowSegments" for lawnmowers
|
|
*
|
|
*
|
|
* @param {Array<import("../../../entities/core/ValetudoMapSegment")>} segments
|
|
* @param {object} [options]
|
|
* @param {number} [options.iterations]
|
|
* @param {boolean} [options.customOrder]
|
|
* @returns {Promise<void>}
|
|
*/
|
|
async executeSegmentAction(segments, options) {
|
|
await this.robot.capabilities.BasicControlCapability.start();
|
|
}
|
|
}
|
|
|
|
module.exports = MockMapSegmentationCapability;
|
|
|