aboutsummaryrefslogtreecommitdiffstats
path: root/addon/js_upload/file-uploader/tests/action-handler-queue-test.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-09-25 01:59:14 -0700
committerFriendika <info@friendika.com>2011-09-25 01:59:14 -0700
commit4846d114a84b0c7da64501ea89a635d24e403a1d (patch)
tree565923c7932ef7fffa4e22482fce48ddb9f133e4 /addon/js_upload/file-uploader/tests/action-handler-queue-test.php
parent6a9e22550d82595c4341290ca26e3afc5fe6300f (diff)
downloadvolse-hubzilla-4846d114a84b0c7da64501ea89a635d24e403a1d.tar.gz
volse-hubzilla-4846d114a84b0c7da64501ea89a635d24e403a1d.tar.bz2
volse-hubzilla-4846d114a84b0c7da64501ea89a635d24e403a1d.zip
project fork
Diffstat (limited to 'addon/js_upload/file-uploader/tests/action-handler-queue-test.php')
-rw-r--r--addon/js_upload/file-uploader/tests/action-handler-queue-test.php31
1 files changed, 0 insertions, 31 deletions
diff --git a/addon/js_upload/file-uploader/tests/action-handler-queue-test.php b/addon/js_upload/file-uploader/tests/action-handler-queue-test.php
deleted file mode 100644
index ff13576dd..000000000
--- a/addon/js_upload/file-uploader/tests/action-handler-queue-test.php
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php
-
-sleep(4);
-
-$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)){
- $_GET['success'] = true;
- echo json_encode(array_merge($_GET));
-} else {
- die ('{error: "query params not passed"}');
-}