From 41396d0fb66cf26a05fb29b5acb0bd872ebff34f Mon Sep 17 00:00:00 2001 From: Erisu Date: Thu, 23 Jul 2020 16:28:02 +0900 Subject: [PATCH] chore: remove deprecated file transfer plugin --- tests/plugin.xml | 2 -- tests/tests.js | 26 +------------------------- 2 files changed, 1 insertion(+), 27 deletions(-) diff --git a/tests/plugin.xml b/tests/plugin.xml index cb903031c..ea2a188d3 100644 --- a/tests/plugin.xml +++ b/tests/plugin.xml @@ -26,8 +26,6 @@ Cordova Camera Plugin Tests Apache 2.0 - - diff --git a/tests/tests.js b/tests/tests.js index 23bc470f3..2e7658150 100644 --- a/tests/tests.js +++ b/tests/tests.js @@ -19,7 +19,7 @@ * */ -/* globals Camera, resolveLocalFileSystemURL, FileEntry, CameraPopoverOptions, FileTransfer, FileUploadOptions, LocalFileSystem, MSApp */ +/* globals Camera, resolveLocalFileSystemURL, FileEntry, CameraPopoverOptions, LocalFileSystem, MSApp */ /* eslint-env jasmine */ exports.defineAutoTests = function () { @@ -167,26 +167,6 @@ exports.defineManualTests = function (contentEl, createActionButton) { }; } - function uploadImage () { - var ft = new FileTransfer(); - var options = new FileUploadOptions(); - options.fileKey = 'photo'; - options.fileName = 'test.jpg'; - options.mimeType = 'image/jpeg'; - ft.onprogress = function (progressEvent) { - console.log('progress: ' + progressEvent.loaded + ' of ' + progressEvent.total); - }; - var server = 'http://sheltered-retreat-43956.herokuapp.com'; - - ft.upload(pictureUrl, server + '/upload', win, fail, options); - function win (information_back) { - log('upload complete'); - } - function fail (message) { - log('upload failed: ' + JSON.stringify(message)); - } - } - function logCallback (apiName, success) { return function () { log('Call to ' + apiName + (success ? ' success: ' : ' failed: ') + JSON.stringify([].slice.call(arguments))); @@ -498,10 +478,6 @@ exports.defineManualTests = function (contentEl, createActionButton) { writeImage(); }, 'write'); - createActionButton('Upload Image', function () { - uploadImage(); - }, 'upload'); - createActionButton('Draw Using Canvas', function () { displayImageUsingCanvas(); }, 'draw_canvas');