我有一些使用HTML Drag interface的React组件。
尤其是,我在一个组件上侦听dragover
事件,并使用DataTransfer对象设置x和y位置。然后,我在另一个组件上监听dragleave
事件,并从DataTransfer中检索x和y位置。
我正在使用Jest和酶来测试我的组件。
如果我运行测试,则会出现此错误:
Test suite failed to run
ReferenceError: DataTransfer is not defined
据我了解,Jest中不提供Drag接口,因此我需要对其进行模拟,并(也许?)通过Jest globals使它可用。
目前,我在DataTransfer
中定义了jest.config.js
并将其设置为全局变量,但是我不确定这是否是最佳解决方案。
class DataTransfer {
constructor() {
this.data = { dragX: "", dragY: "" };
this.dropEffect = "none";
this.effectAllowed = "all";
this.files = [];
this.img = "";
this.items = [];
this.types = [];
this.xOffset = 0;
this.yOffset = 0;
}
clearData() {
this.data = {};
}
getData(format) {
return this.data[format];
}
setData(format, data) {
this.data[format] = data;
}
setDragImage(img, xOffset, yOffset) {
this.img = img;
this.xOffset = xOffset;
this.yOffset = yOffset;
}
}
const baseConfig = {
globals: {
DataTransfer: DataTransfer,
},
// other config...
};
module.exports = baseConfig;
在Jest中模拟Drag接口的最佳方法是什么?
答案 0 :(得分:0)
我正在使用以下自定义模型:
// Arrange
// Map as storage place
const testStorage = new Map();
// Mock of the drop Event
const testEvent = {
dataTransfer: {
setData: (key, value) => testStorage.set(key, value),
getData: (key) => testStorage.get(key)
}
};
// remmeber to have 'and.callTrough()' to allow go trough the method
spyOn(testEvent.dataTransfer, 'getData').and.callThrough();
// Act
// Add your code here
// Assert
expect(testEvent.dataTransfer.getData('YOUR_CHECKED_KEY')).toEqual('EXCPECTED_VALUE');