c964eff17b
The favorite icon in the sidebar now triggers the file action and also updates itself according to the model's state when triggered from the file row. The thumbnail triggers the default action. Currently only one FileInfoModel is used for the selection and state synchronization between views. FileList reload now auto-closes the sidebar.
105 lines
3.9 KiB
JavaScript
105 lines
3.9 KiB
JavaScript
/**
|
|
* 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('OCA.Files.DetailsView tests', function() {
|
|
var detailsView;
|
|
|
|
beforeEach(function() {
|
|
detailsView = new OCA.Files.DetailsView();
|
|
});
|
|
afterEach(function() {
|
|
detailsView.remove();
|
|
detailsView = undefined;
|
|
});
|
|
it('renders itself empty when nothing registered', function() {
|
|
detailsView.render();
|
|
expect(detailsView.$el.find('.detailFileInfoContainer').length).toEqual(1);
|
|
expect(detailsView.$el.find('.tabsContainer').length).toEqual(1);
|
|
});
|
|
describe('file info detail view', function() {
|
|
it('renders registered view', function() {
|
|
var testView = new OCA.Files.DetailFileInfoView();
|
|
var testView2 = new OCA.Files.DetailFileInfoView();
|
|
detailsView.addDetailView(testView);
|
|
detailsView.addDetailView(testView2);
|
|
detailsView.render();
|
|
|
|
expect(detailsView.$el.find('.detailFileInfoContainer .detailFileInfoView').length).toEqual(2);
|
|
});
|
|
it('updates registered tabs when fileinfo is updated', function() {
|
|
var viewRenderStub = sinon.stub(OCA.Files.DetailFileInfoView.prototype, 'render');
|
|
var testView = new OCA.Files.DetailFileInfoView();
|
|
var testView2 = new OCA.Files.DetailFileInfoView();
|
|
detailsView.addDetailView(testView);
|
|
detailsView.addDetailView(testView2);
|
|
detailsView.render();
|
|
|
|
var fileInfo = {id: 5, name: 'test.txt'};
|
|
viewRenderStub.reset();
|
|
detailsView.setFileInfo(fileInfo);
|
|
|
|
expect(testView.getFileInfo()).toEqual(fileInfo);
|
|
expect(testView2.getFileInfo()).toEqual(fileInfo);
|
|
|
|
expect(viewRenderStub.callCount).toEqual(2);
|
|
viewRenderStub.restore();
|
|
});
|
|
});
|
|
describe('tabs', function() {
|
|
var testView, testView2;
|
|
|
|
beforeEach(function() {
|
|
testView = new OCA.Files.DetailTabView('test1');
|
|
testView2 = new OCA.Files.DetailTabView('test2');
|
|
detailsView.addTabView(testView);
|
|
detailsView.addTabView(testView2);
|
|
detailsView.render();
|
|
});
|
|
it('renders registered tabs', function() {
|
|
expect(detailsView.$el.find('.tab').length).toEqual(2);
|
|
});
|
|
it('updates registered tabs when fileinfo is updated', function() {
|
|
var tabRenderStub = sinon.stub(OCA.Files.DetailTabView.prototype, 'render');
|
|
var fileInfo = {id: 5, name: 'test.txt'};
|
|
tabRenderStub.reset();
|
|
detailsView.setFileInfo(fileInfo);
|
|
|
|
expect(testView.getFileInfo()).toEqual(fileInfo);
|
|
expect(testView2.getFileInfo()).toEqual(fileInfo);
|
|
|
|
expect(tabRenderStub.callCount).toEqual(2);
|
|
tabRenderStub.restore();
|
|
});
|
|
it('selects the first tab by default', function() {
|
|
expect(detailsView.$el.find('.tabHeader').eq(0).hasClass('selected')).toEqual(true);
|
|
expect(detailsView.$el.find('.tabHeader').eq(1).hasClass('selected')).toEqual(false);
|
|
expect(detailsView.$el.find('.tab').eq(0).hasClass('hidden')).toEqual(false);
|
|
expect(detailsView.$el.find('.tab').eq(1).hasClass('hidden')).toEqual(true);
|
|
});
|
|
it('switches the current tab when clicking on tab header', function() {
|
|
detailsView.$el.find('.tabHeader').eq(1).click();
|
|
expect(detailsView.$el.find('.tabHeader').eq(0).hasClass('selected')).toEqual(false);
|
|
expect(detailsView.$el.find('.tabHeader').eq(1).hasClass('selected')).toEqual(true);
|
|
expect(detailsView.$el.find('.tab').eq(0).hasClass('hidden')).toEqual(true);
|
|
expect(detailsView.$el.find('.tab').eq(1).hasClass('hidden')).toEqual(false);
|
|
});
|
|
});
|
|
});
|