- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 material-ui dropzone 组件,它附加了一个 onChange 处理程序。处理程序从主要组件传递 - 作为 Prop 向上两层。
所以主要 - 第二个组件 - dropzone。主要组件包含处理程序方法,而第二个组件只是一个包装器。然后最终 dropzone 组件附加了 onChange。这三个都是功能组件。
Dropzone 模块 --> https://github.com/Yuvaleros/material-ui-dropzone
问题
我不确定我是否要进入此处测试实现细节区域,但我想模拟此 onChange 处理程序运行并将虚拟 csv 文件传递给它。当我尝试 simulate("change) 并期望处理程序被调用时,我一直收到 0,预期为 1。
const DropzoneAreaExample = (props) => {
const classes = useStyles();
console.log(props);
return (
<Fragment>
<DropzoneArea
onChange={props.handleDropzoneChange}
filesLimit={1}
dropzoneText="Drop your csv file here"
dropzoneClass={classes.dropzone}
acceptedFiles={["text/csv", ".csv"]}
initialFiles={[props.filename]}
onDelete={props.handleDropzoneDelete}
showAlerts={true}
alertSnackbarProps={{
anchorOrigin: { horizontal: "center", vertical: "bottom" },
autoHideDuration: 6000,
}}
clearOnUnmount={true}
previewGridClasses={{ container: classes.borderWidth }}
data-test="component-dropzone"
/>
</Fragment>
);
};
在主要组件中,这是将作为 Prop 传递给 dropzone 的 onChange 处理程序
const handleDropzoneChange = (files) => {
if (files.length > 0) {
if (props.originalFileObj) {
setState({
files: props.originalFileObj,
filename: props.originalFileObj[0].name,
});
} else {
setState({
files: files,
filename: files[0].name,
});
}
}
};
测试信息如下:
it("should fire onChange handler", () => {
const handleDropzoneChange = jest.fn();
const dzwrapper = shallow(
<DropZone handleDropzoneChange={handleDropzoneChange} />
);
console.log(dzwrapper.props().children.props);
dzwrapper.simulate("change", {
target: {
files: ["dummyValue.something"],
},
});
console.log(dzwrapper.debug())
});
这里你在测试中看到的控制台日志是输出:
console.log(dzwrapper.debug()):
<WithStyles(DropzoneArea) onChange={[Function: mockConstructor]} filesLimit={1} dropzoneText="Drop your csv file here" dropzoneClass={[undefined]} acceptedFiles={{...}} initialFiles={{...}} onDelete={[undefined]} showAlerts={true} alertSnackbarProps={{...}} clearOnUnmount={true} previewGridClasses={{...}} data-test="component-dropzone" maxFileSize={3000000} previewText="Preview:" disableRejectionFeedback={false} showPreviews={false} showPreviewsInDropzone={true} showFileNames={false} showFileNamesInPreview={false} useChipsForPreview={false} previewChipProps={{...}} previewGridProps={{...}} getFileLimitExceedMessage={[Function: getFileLimitExceedMessage]} getFileAddedMessage={[Function: getFileAddedMessage]} getFileRemovedMessage={[Function: getFileRemovedMessage]} getDropRejectMessage={[Function: getDropRejectMessage]} />
console.log(dzwrapper.props().children.props):
{
onChange: [Function: mockConstructor] {
_isMockFunction: true,
getMockImplementation: [Function (anonymous)],
mock: [Getter/Setter],
mockClear: [Function (anonymous)],
mockReset: [Function (anonymous)],
mockRestore: [Function (anonymous)],
mockReturnValueOnce: [Function (anonymous)],
mockResolvedValueOnce: [Function (anonymous)],
mockRejectedValueOnce: [Function (anonymous)],
mockReturnValue: [Function (anonymous)],
mockResolvedValue: [Function (anonymous)],
mockRejectedValue: [Function (anonymous)],
mockImplementationOnce: [Function (anonymous)],
mockImplementation: [Function (anonymous)],
mockReturnThis: [Function (anonymous)],
mockName: [Function (anonymous)],
getMockName: [Function (anonymous)]
},
filesLimit: 1,
dropzoneText: 'Drop your csv file here',
dropzoneClass: undefined,
acceptedFiles: [ 'text/csv', '.csv' ],
initialFiles: [ undefined ],
onDelete: undefined,
showAlerts: true,
alertSnackbarProps: {
anchorOrigin: { horizontal: 'center', vertical: 'bottom' },
autoHideDuration: 6000
},
clearOnUnmount: true,
previewGridClasses: { container: 'makeStyles-borderWidth-7' },
'data-test': 'component-dropzone',
maxFileSize: 3000000,
previewText: 'Preview:',
disableRejectionFeedback: false,
showPreviews: false,
showPreviewsInDropzone: true,
showFileNames: false,
showFileNamesInPreview: false,
useChipsForPreview: false,
previewChipProps: {},
previewGridProps: {},
getFileLimitExceedMessage: [Function: getFileLimitExceedMessage],
getFileAddedMessage: [Function: getFileAddedMessage],
getFileRemovedMessage: [Function: getFileRemovedMessage],
getDropRejectMessage: [Function: getDropRejectMessage]
}
这是组件的样子。当我在添加文件后单击下一步时,文件的内容将得到验证。所以对于测试用例,我想我只是确保调用 onChange 处理程序。然后我将添加另一个测试用例来测试单击下一个按钮时会发生什么。
最佳答案
你可以这样测试:
import DropzoneArea from 'DropzoneArea';
it("should fire onChange handler", () => {
const handleDropzoneChange = jest.fn();
const dzwrapper = shallow(
<DropZone handleDropzoneChange={handleDropzoneChange} />
);
// find the DropzoneArea node
const dropzoneAreaWrapper = dzwrapper.find(DropzoneArea);
// call its onChange prop
dropzoneAreaWrapper.prop('onChange')();
// check handleDropzoneChange has been called
expect(handleDropzoneChange).toHaveBeenCalled();
});
关于reactjs - enzyme 和 Jest : How to simulate/test material-ui dropzone onChange handler when dropzone component is third party module?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61853862/
在我的应用中,我使用 IntentService 发送短信。 @Override protected void onHandleIntent(Intent intent) { Bund
Handler(android.os.Handler.Callback) 已弃用,我应该改用什么? Handler handler = new Handler(new Handler.Callback
机器人Handler类包含此方法: public final boolean postAtTime (Runnable r, Object token, long uptimeMillis) 在给定时
我不明白怎么用这个方法, sensorManager.registerListener(SensorEventListener listener, Sensor sensor, int rate, H
请告诉我 handler.postAtTime 和 handler.postDelayed 在 android 中的区别,也请指导我何时使用 handler.postAtTime 以及何时使用 han
我有以下代码。 function myFun() { alert(5) } $(document).ready(fu
我有this jsfiddle 它使用 toggle event - 不要与 toggle 混淆- jQuery 版本设置为 EDGE 它突然停止工作并删除了我想要作为触发器的单元格,因为它显然恢复为
在我的应用程序中,我定义了一个自定义事件,我希望为其设置默认处理程序。如果任何 Controller /服务想要覆盖默认处理,他们可以通过添加自己的处理程序来实现。 为了实现这个场景,我在 $root
我在我的网页中使用了 jquery .toggle(between two functions) : $( ".cpUpbtnsclass" ).toggle(function() { c
我有this jsfiddle 它使用 toggle event - 不要与 toggle 混淆- jQuery 版本设置为 EDGE 它突然停止工作并删除了我想要作为触发器的单元格,因为它显然恢复为
我浏览了官方文档,但我似乎找不到 new Handler() 之间是否有任何区别和new Handler(Looper.myLooper()) new Handler() Default constr
当我在 faces-config.xml 文件中添加以下行时: " com.sun.facelets.FaceletViewHandler " eclipse 说: " view-handler re
当我使用 Handler.dispatchMessage(msg) 时,handleMessage(Message msg) 将在新线程上运行,但是当我使用 Handler.sendMessage(
如何禁用当前将模态库导航到下一张图像的鼠标滚轮处理程序和键盘箭头键? 这里是演示站点:http://blueimp.github.com/Bootstrap-Image-Gallery/ . 如果您单
我正在尝试关注 this关于 Win32 结构化异常处理的文章。这篇文章很老了,但仍然被认为是对该主题的一个很好的介绍。 我正在尝试从下面转载的文章中编译代码示例 - //==============
我正在尝试使用 HibernateValidator 使用 Spring 和 Hibernate 在 JSP 中验证一个简单的表单. JSP页面Temp.jsp如下(web.xml中的url ptte
问题几乎概括了它。我错误地导入了 java.util.logging 并且没有获得所需的功能。现在我解决了我的问题,但我想知道为什么 android 创建了两个 Handler 。我们可能会错误地导入
我有一个主页,其中有一个链接按钮。在其中一个内容页面中,我需要隐藏链接按钮并替换为图像按钮。图像按钮的单击事件处理程序应该与母版页中链接按钮的单击事件完全相同。那么有没有办法从内容页面中的图像按钮单击
我有一个用 2.5 编写的现有 Spring MVC 应用程序。 我想使用新的注释 Controller 。我在某种程度上发现它非常灵活并且可以满足我的其他需求。 我的问题是,我似乎无法将它们两者混合
使用最新的 XCode,我收到此错误: 'logInWithReadPermissions(_:handler:)' is deprecated: use logInWithReadPermissi
我是一名优秀的程序员,十分优秀!