aboutsummaryrefslogtreecommitdiffstats
path: root/addon/js_upload/file-uploader/tests/action-handler-test.php
diff options
context:
space:
mode:
authorOlivier Migeot <olivier@migeot.org>2011-10-04 11:45:57 +0200
committerOlivier Migeot <olivier@migeot.org>2011-10-04 11:45:57 +0200
commit273594af62c960b5a52da5ec1cf6d6bd450415ba (patch)
tree5f79914d28c343f7642ecb13b99f9e0e3f5090a7 /addon/js_upload/file-uploader/tests/action-handler-test.php
parent1548449586f17c0ef9bfab0ffb16f2a495fc6082 (diff)
parentdfd5cc57c2134067dc6229b8583b5e808f160004 (diff)
downloadvolse-hubzilla-273594af62c960b5a52da5ec1cf6d6bd450415ba.tar.gz
volse-hubzilla-273594af62c960b5a52da5ec1cf6d6bd450415ba.tar.bz2
volse-hubzilla-273594af62c960b5a52da5ec1cf6d6bd450415ba.zip
Merge remote branch 'upstream/master'
Diffstat (limited to 'addon/js_upload/file-uploader/tests/action-handler-test.php')
-rw-r--r--addon/js_upload/file-uploader/tests/action-handler-test.php31
1 files changed, 0 insertions, 31 deletions
diff --git a/addon/js_upload/file-uploader/tests/action-handler-test.php b/addon/js_upload/file-uploader/tests/action-handler-test.php
deleted file mode 100644
index 24466b122..000000000
--- a/addon/js_upload/file-uploader/tests/action-handler-test.php
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php
-
-usleep(300);
-
-$fileName;
-
-if (isset($_GET['qqfile'])){
- $fileName = $_GET['qqfile'];
-
- // xhr request
- $headers = apache_request_headers();
- if ((int)$headers['Content-Length'] == 0){
- die ('{error: "content length is zero"}');
- }
-} elseif (isset($_FILES['qqfile'])){
- $fileName = basename($_FILES['qqfile']['name']);
-
- // form request
- if ($_FILES['qqfile']['size'] == 0){
- die ('{error: "file size is zero"}');
- }
-} else {
- die ('{error: "file not passed"}');
-}
-
-if (count($_GET)){
- //return query params
- echo json_encode(array_merge($_GET, array('fileName'=>$fileName)));
-} else {
- die ('{error: "query params not passed"}');
-}