diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2011-09-26 11:42:48 +0200 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2011-09-26 11:42:48 +0200 |
commit | 5792b3d3580b9f09460305858293398d8d8a9abf (patch) | |
tree | 90d60e9db4ed733a60c2890c7305d45ddd48be42 /addon/js_upload/file-uploader/tests/test-handler-queue.htm | |
parent | 991656a3ef396d9a6bd43ddb752627c2880b17ba (diff) | |
parent | 428e6766411d2c6708ad25f726c4bcf1d64af1cc (diff) | |
download | volse-hubzilla-5792b3d3580b9f09460305858293398d8d8a9abf.tar.gz volse-hubzilla-5792b3d3580b9f09460305858293398d8d8a9abf.tar.bz2 volse-hubzilla-5792b3d3580b9f09460305858293398d8d8a9abf.zip |
Merge branch 'master' into newui
Diffstat (limited to 'addon/js_upload/file-uploader/tests/test-handler-queue.htm')
-rw-r--r-- | addon/js_upload/file-uploader/tests/test-handler-queue.htm | 81 |
1 files changed, 0 insertions, 81 deletions
diff --git a/addon/js_upload/file-uploader/tests/test-handler-queue.htm b/addon/js_upload/file-uploader/tests/test-handler-queue.htm deleted file mode 100644 index 52e3b3a58..000000000 --- a/addon/js_upload/file-uploader/tests/test-handler-queue.htm +++ /dev/null @@ -1,81 +0,0 @@ -<!DOCTYPE HTML> -<html> -<head> - <script src="jquery-1.4.2.min.js" type="text/javascript"></script> - - <link href="qunit/qunit/qunit.css" rel="stylesheet" type="text/css" media="screen" /> - <script src="qunit/qunit/qunit.js" type="text/javascript"></script> - - <script src="../client/fileuploader.js" type="text/javascript" ></script> - <script> -jQuery(function(){ - - function getHandler(){ - if(qq.UploadHandlerXhr.isSupported()){ - return qq.UploadHandlerXhr; - } else { - return qq.UploadHandlerForm; - } - } - - asyncTest("upload", function() { - expect(2); - - var data = {stringOne: 'rtdfghdfhfh',stringTwo: 'dfsgsdfgsdg',stringThree: 'dfsgfhdfhdg'}; - var savedId; - - var uploadHandler = new (getHandler())({ - action: 'action-handler-queue-test.php', - maxConnections: 1, - onComplete: function(id, fileName, response){ - if (!response.success){ - ok(false, 'server did not receive file') - return; - } - - delete response.success; - delete response.qqfile; - - same(response, data, 'server received file and data'); - } - }); - - - $('#testinput1, #testinput2').change(upload); - - function upload(){ - setTimeout(start, 9000); - - var file = this; - if (uploadHandler instanceof qq.UploadHandlerXhr){ - file = this.files[0]; - } - var id = uploadHandler.add(file); - uploadHandler.upload(id, data); - } - - - }); -}); - </script> -</head> -<body> - <h1 id="qunit-header">File uploader tests</h1> - <h2 id="qunit-banner"></h2> - <h2 id="qunit-userAgent"></h2> - <ol id="qunit-tests"></ol> - - - <p> - Please select a file for each input below, - should be less than 4 sec, between selection. - </p> - - - <input id="testinput1" type="file"> - <input id="testinput2" type="file"> - -</body> -</html> - - |