]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix(tests): update jsunit tests after dep and files update
authorJohn Molakvoæ <skjnldsv@protonmail.com>
Tue, 4 Apr 2023 16:42:29 +0000 (18:42 +0200)
committerJohn Molakvoæ <skjnldsv@protonmail.com>
Thu, 6 Apr 2023 13:31:37 +0000 (15:31 +0200)
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
apps/files/tests/js/fileUploadSpec.js
apps/files/tests/js/filelistSpec.js
apps/files/tests/js/filesummarySpec.js
apps/files/tests/js/mainfileinfodetailviewSpec.js
core/js/tests/specs/appsSpec.js [deleted file]

index 1fac63228089abf2bfe8f7004032516a663b331f..e15514b39e2246275f08ac60b83363f106e89af6 100644 (file)
@@ -119,7 +119,7 @@ describe('OC.Upload tests', function() {
                                expect(failStub.calledOnce).toEqual(true);
                                expect(failStub.getCall(0).args[1].textStatus).toEqual('notenoughspace');
                                expect(failStub.getCall(0).args[1].errorThrown).toEqual(
-                                       'Not enough free space, you are uploading 5 KB but only 1000 B is left'
+                                       'Not enough free space, you are uploading 5 KB but only 1 KB is left'
                                );
                                setTimeout(done, 0);
                        });
index cd3510c2faaf9a3bda78290c881edbf77a22dac7..f2caa176973295ddb04f853e6033be437bef9099 100644 (file)
@@ -539,7 +539,7 @@ describe('OCA.Files.FileList tests', function() {
                        expect($summary.find('.fileinfo').text()).toEqual('2 files');
                        expect($summary.find('.dirinfo').hasClass('hidden')).toEqual(false);
                        expect($summary.find('.fileinfo').hasClass('hidden')).toEqual(false);
-                       expect($summary.find('.filesize').text()).toEqual('69 KB');
+                       expect($summary.find('.filesize').text()).toEqual('70 KB');
                        expect(fileList.isEmpty).toEqual(false);
                });
                it('Shows empty content when removing last file', function() {
@@ -609,7 +609,7 @@ describe('OCA.Files.FileList tests', function() {
                                expect($summary.find('.fileinfo').text()).toEqual('1 file');
                                expect($summary.find('.dirinfo').hasClass('hidden')).toEqual(false);
                                expect($summary.find('.fileinfo').hasClass('hidden')).toEqual(false);
-                               expect($summary.find('.filesize').text()).toEqual('57 KB');
+                               expect($summary.find('.filesize').text()).toEqual('58 KB');
                                expect(fileList.isEmpty).toEqual(false);
                                expect($('.files-filestable thead th').hasClass('hidden')).toEqual(false);
                                expect($('.emptyfilelist.emptycontent').hasClass('hidden')).toEqual(true);
@@ -1138,7 +1138,7 @@ describe('OCA.Files.FileList tests', function() {
                        expect($summary.hasClass('hidden')).toEqual(false);
                        expect($summary.find('.dirinfo').text()).toEqual('1 folder');
                        expect($summary.find('.fileinfo').text()).toEqual('3 files');
-                       expect($summary.find('.filesize').text()).toEqual('69 KB');
+                       expect($summary.find('.filesize').text()).toEqual('70 KB');
                });
                it('shows headers, summary and hide empty content message after setting files', function(){
                        fileList.setFiles(testFiles);
index 8bc7bd8f995bc4827562bd69ab40737c96ccf63b..22c95abd30772e97378dfd04a0a6ae6eab5062d8 100644 (file)
@@ -44,7 +44,7 @@ describe('OCA.Files.FileSummary tests', function() {
                expect($container.hasClass('hidden')).toEqual(false);
                expect($container.find('.dirinfo').text()).toEqual('5 folders');
                expect($container.find('.fileinfo').text()).toEqual('2 files');
-               expect($container.find('.filesize').text()).toEqual('250 KB');
+               expect($container.find('.filesize').text()).toEqual('256 KB');
        });
        it('hides summary when no files or folders', function() {
                var s = new FileSummary($container);
@@ -68,7 +68,7 @@ describe('OCA.Files.FileSummary tests', function() {
                expect($container.hasClass('hidden')).toEqual(false);
                expect($container.find('.dirinfo').text()).toEqual('6 folders');
                expect($container.find('.fileinfo').text()).toEqual('3 files');
-               expect($container.find('.filesize').text()).toEqual('500 KB');
+               expect($container.find('.filesize').text()).toEqual('512 KB');
                expect(s.summary.totalDirs).toEqual(6);
                expect(s.summary.totalFiles).toEqual(3);
                expect(s.summary.totalSize).toEqual(512100);
@@ -86,7 +86,7 @@ describe('OCA.Files.FileSummary tests', function() {
                expect($container.hasClass('hidden')).toEqual(false);
                expect($container.find('.dirinfo').text()).toEqual('4 folders');
                expect($container.find('.fileinfo').text()).toEqual('1 file');
-               expect($container.find('.filesize').text()).toEqual('125 KB');
+               expect($container.find('.filesize').text()).toEqual('128 KB');
                expect(s.summary.totalDirs).toEqual(4);
                expect(s.summary.totalFiles).toEqual(1);
                expect(s.summary.totalSize).toEqual(127900);
@@ -104,7 +104,7 @@ describe('OCA.Files.FileSummary tests', function() {
                expect($container.find('.dirinfo').text()).toEqual('5 folders');
                expect($container.find('.fileinfo').text()).toEqual('2 files');
                expect($container.find('.filter').text()).toEqual(' match "foo"');
-               expect($container.find('.filesize').text()).toEqual('250 KB');
+               expect($container.find('.filesize').text()).toEqual('256 KB');
        });
        it('hides filtered summary when no files or folders', function() {
                var s = new FileSummary($container);
@@ -133,7 +133,7 @@ describe('OCA.Files.FileSummary tests', function() {
                expect($container.find('.dirinfo').text()).toEqual('6 folders');
                expect($container.find('.fileinfo').text()).toEqual('3 files');
                expect($container.find('.filter').text()).toEqual(' match "foo"');
-               expect($container.find('.filesize').text()).toEqual('500 KB');
+               expect($container.find('.filesize').text()).toEqual('512 KB');
                expect(s.summary.totalDirs).toEqual(6);
                expect(s.summary.totalFiles).toEqual(3);
                expect(s.summary.totalSize).toEqual(512103);
@@ -155,7 +155,7 @@ describe('OCA.Files.FileSummary tests', function() {
                expect($container.find('.dirinfo').text()).toEqual('4 folders');
                expect($container.find('.fileinfo').text()).toEqual('1 file');
                expect($container.find('.filter').text()).toEqual(' match "foo"');
-               expect($container.find('.filesize').text()).toEqual('125 KB');
+               expect($container.find('.filesize').text()).toEqual('128 KB');
                expect(s.summary.totalDirs).toEqual(4);
                expect(s.summary.totalFiles).toEqual(1);
                expect(s.summary.totalSize).toEqual(127903);
@@ -215,7 +215,7 @@ describe('OCA.Files.FileSummary tests', function() {
                        expect($container.find('.fileinfo').text()).toEqual('1 file');
                        expect($container.find('.hiddeninfo').hasClass('hidden')).toEqual(false);
                        expect($container.find('.hiddeninfo').text()).toEqual(' (including 1 hidden)');
-                       expect($container.find('.filesize').text()).toEqual('750 KB');
+                       expect($container.find('.filesize').text()).toEqual('768 KB');
                });
                it('does not render hidden count section when hidden files exist but are visible', function() {
                        window._nc_event_bus.emit('files:config:updated', { key: 'show_hidden', value: true });
@@ -228,7 +228,7 @@ describe('OCA.Files.FileSummary tests', function() {
                        expect($container.find('.dirinfo').text()).toEqual('2 folders');
                        expect($container.find('.fileinfo').text()).toEqual('1 file');
                        expect($container.find('.hiddeninfo').hasClass('hidden')).toEqual(true);
-                       expect($container.find('.filesize').text()).toEqual('750 KB');
+                       expect($container.find('.filesize').text()).toEqual('768 KB');
                });
                it('does not render hidden count section when no hidden files exist', function() {
                        window._nc_event_bus.emit('files:config:updated', { key: 'show_hidden', value: false });
@@ -240,7 +240,7 @@ describe('OCA.Files.FileSummary tests', function() {
                        expect($container.find('.dirinfo').text()).toEqual('1 folder');
                        expect($container.find('.fileinfo').text()).toEqual('1 file');
                        expect($container.find('.hiddeninfo').hasClass('hidden')).toEqual(true);
-                       expect($container.find('.filesize').text()).toEqual('250 KB');
+                       expect($container.find('.filesize').text()).toEqual('256 KB');
                });
        });
 });
index 5793db8fb98d5f400a8ec2f48c8c8af3b06924e5..b63c36199a662b2855dc6654c7dcbaeeef157aa4 100644 (file)
@@ -62,7 +62,7 @@ describe('OCA.Files.MainFileInfoDetailView tests', function() {
                        view.setFileInfo(testFileInfo);
                        expect(view.$el.find('.fileName h3').text()).toEqual('One.txt');
                        expect(view.$el.find('.fileName h3').attr('title')).toEqual('One.txt');
-                       expect(view.$el.find('.size').text()).toEqual('117.7 MB');
+                       expect(view.$el.find('.size').text()).toEqual('123.5 MB');
                        expect(view.$el.find('.size').attr('title')).toEqual('123456789 bytes');
                        expect(view.$el.find('.date').text()).toEqual('seconds ago');
                        expect(view.$el.find('.date').attr('title')).toEqual(dateExpected);
diff --git a/core/js/tests/specs/appsSpec.js b/core/js/tests/specs/appsSpec.js
deleted file mode 100644 (file)
index 3a4c413..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-/**
-* ownCloud
-*
-* @author Vincent Petry
-* @copyright 2015 Vincent Petry <pvince81@owncloud.com>
-*
-* This library is free software; you can redistribute it and/or
-* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
-* License as published by the Free Software Foundation; either
-* version 3 of the License, or any later version.
-*
-* This library is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
-*
-* You should have received a copy of the GNU Affero General Public
-* License along with this library.  If not, see <http://www.gnu.org/licenses/>.
-*
-*/
-
-describe('Apps base tests', function() {
-       describe('Sidebar utility functions', function() {
-               beforeEach(function() {
-                       $('#testArea').append('<div id="content"><div id="app-content">Content</div><div id="app-sidebar">The sidebar</div></div>');
-                       jQuery.fx.off = true;
-               });
-               afterEach(function() {
-                       jQuery.fx.off = false;
-               });
-               it('shows sidebar', function() {
-                       var $el = $('#app-sidebar');
-                       OC.Apps.showAppSidebar();
-                       expect($el.hasClass('disappear')).toEqual(false);
-               });
-               it('hides sidebar', function() {
-                       var $el = $('#app-sidebar');
-                       OC.Apps.showAppSidebar();
-                       OC.Apps.hideAppSidebar();
-                       expect($el.hasClass('disappear')).toEqual(true);
-               });
-               it('triggers appresize event when visibility changed', function() {
-                       var eventStub = sinon.stub();
-                       $('#content').on('appresized', eventStub);
-                       OC.Apps.showAppSidebar();
-                       expect(eventStub.calledOnce).toEqual(true);
-                       OC.Apps.hideAppSidebar();
-                       expect(eventStub.calledTwice).toEqual(true);
-               });
-       });
-});
-