From 78ee125c346e466528d2685be513dcb95258611e Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Mon, 27 Feb 2017 10:32:20 +0100 Subject: [PATCH] Fix public link download button Signed-off-by: Morris Jobke --- apps/files_sharing/tests/js/publicAppSpec.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/files_sharing/tests/js/publicAppSpec.js b/apps/files_sharing/tests/js/publicAppSpec.js index e8ec9899ec..8ea339fd9d 100644 --- a/apps/files_sharing/tests/js/publicAppSpec.js +++ b/apps/files_sharing/tests/js/publicAppSpec.js @@ -125,6 +125,10 @@ describe('OCA.Sharing.PublicApp tests', function() { expect(fileList.getAjaxUrl('test', {a:1, b:'x y'})) .toEqual(OC.webroot + '/index.php/apps/files_sharing/ajax/test.php?a=1&b=x%20y&t=sh4tok'); }); + it('returns correct download URL for downloading everything', function() { + expect(fileList.getDownloadUrl()) + .toEqual(OC.webroot + '/index.php/s/sh4tok/download?path=%2Fsubdir'); + }); }); describe('Upload Url', function() { var fileList;