How do I write FileReader test in Jasmine?(如何在 Jasmine 中编写 FileReader 测试?)
问题描述
我正在尝试进行此测试,但我不知道如何使用 FileReader 编写测试.这是我的代码
<上一页><代码>功能上传器(文件){this.file = 文件;}Uploader.prototype = (function() {函数上传文件(文件,文件内容){var file_data = new FormData()file_data.append('文件名', 文件名)file_data.append('mimetype', file.type)file_data.append('data', file_contents)file_data.append('size', file.size)$.ajax({url: "/上传/文件",类型:发布",数据:文件内容,内容类型:文件类型,成功:函数(){//$("#thumbnail").attr("src", "/upload/thumbnail");},错误:函数(){警报(失败");},xhr:函数(){myXhr = $.ajaxSettings.xhr();如果(myXhr.upload){myXhr.upload.addEventListener('progress',showProgress, false);} 别的 {console.log("不支持上传进度");}返回我的Xhr;}});}返回 {上传:函数(){var self = 这个,阅读器=新文件阅读器(),文件内容 = {};reader.onload = 函数(e){file_content = e.target.result.split(',')[1];上传文件(self.file,文件内容);}}};})();代码>这是我的测试
<上一页><代码>描述(上传者",函数(){it("应该上传文件成功", function() {spyOn($, "ajax");var fakeFile = {};var uploader = new Uploader(fakeFile);上传者.上传();期望($.ajax.mostRecentCall.args[0]["url"]).toEqual("/upload/file");})});代码>但它永远不会到达 reader.onload.
这里的问题是 reader.onload 的使用很难测试.您可以使用 reader.addEventListener 代替,这样您就可以监视全局 FileReader 对象并返回一个模拟:
eventListener = jasmine.createSpy();spyOn(window, "FileReader").andReturn({添加事件监听器:事件监听器})然后你可以自己触发 onload 回调:
expect(eventListener.mostRecentCall.args[0]).toEqual('load');eventListener.mostRecentCall.args[1]({目标:{result:'你要测试的结果'}})I'm trying to make this test work, but I couldn't get my head around how to write a test with FileReader. This is my code
function Uploader(file) {
this.file = file;
}
Uploader.prototype = (function() {
function upload_file(file, file_contents) {
var file_data = new FormData()
file_data.append('filename', file.name)
file_data.append('mimetype', file.type)
file_data.append('data', file_contents)
file_data.append('size', file.size)
$.ajax({
url: "/upload/file",
type: "POST",
data: file_contents,
contentType: file.type,
success: function(){
// $("#thumbnail").attr("src", "/upload/thumbnail");
},
error: function(){
alert("Failed");
},
xhr: function() {
myXhr = $.ajaxSettings.xhr();
if(myXhr.upload){
myXhr.upload.addEventListener('progress',showProgress, false);
} else {
console.log("Upload progress is not supported.");
}
return myXhr;
}
});
}
return {
upload : function() {
var self = this,
reader = new FileReader(),
file_content = {};
reader.onload = function(e) {
file_content = e.target.result.split(',')[1];
upload_file(self.file, file_content);
}
}
};
})();
And this is my test
describe("Uploader", function() {
it("should upload a file successfully", function() {
spyOn($, "ajax");
var fakeFile = {};
var uploader = new Uploader(fakeFile);
uploader.upload();
expect($.ajax.mostRecentCall.args[0]["url"]).toEqual("/upload/file");
})
});
But it never gets to reader.onload.
The problem here is the use of reader.onload which is hard to test. You could use reader.addEventListener instead so you can spy on the global FileReader object and return a mock:
eventListener = jasmine.createSpy();
spyOn(window, "FileReader").andReturn({
addEventListener: eventListener
})
then you can fire the onload callback by yourself:
expect(eventListener.mostRecentCall.args[0]).toEqual('load');
eventListener.mostRecentCall.args[1]({
target:{
result:'the result you wanna test'
}
})
这篇关于如何在 Jasmine 中编写 FileReader 测试?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Jasmine 中编写 FileReader 测试?
- 如何向 ipc 渲染器发送添加回调 2022-01-01
- 是否可以将标志传递给 Gulp 以使其以不同的方式 2022-01-01
- 在不使用循环的情况下查找数字数组中的一项 2022-01-01
- 如何调试 CSS/Javascript 悬停问题 2022-01-01
- 为什么悬停在委托事件处理程序中不起作用? 2022-01-01
- 从原点悬停时触发 translateY() 2022-01-01
- 使用 iframe URL 的 jQuery UI 对话框 2022-01-01
- 为什么我的页面无法在 Github 上加载? 2022-01-01
- 如何显示带有换行符的文本标签? 2022-01-01
- 我不能使用 json 使用 react 向我的 web api 发出 Post 请求 2022-01-01
