123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349 |
- /**
- *
- * @copyright Copyright (c) 2015, Tom Needham (tom@owncloud.com)
- * @copyright Copyright (c) 2017, Daniel Calviño Sánchez (danxuliu@gmail.com)
- *
- * @license GNU AGPL version 3 or any later version
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program 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 program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- describe('OC.Share.ShareDialogLinkShareView', function () {
- var configModel;
- var shareModel;
- var view;
- beforeEach(function () {
- var fileInfoModel = new OCA.Files.FileInfoModel({
- id: 123,
- name: 'shared_file_name.txt',
- path: '/subdir',
- size: 100,
- mimetype: 'text/plain',
- permissions: OC.PERMISSION_ALL,
- sharePermissions: OC.PERMISSION_ALL
- });
- var attributes = {
- itemType: fileInfoModel.isDirectory() ? 'folder' : 'file',
- itemSource: fileInfoModel.get('id'),
- possiblePermissions: OC.PERMISSION_ALL,
- permissions: OC.PERMISSION_ALL
- };
- configModel = new OC.Share.ShareConfigModel({
- enforcePasswordForPublicLink: false,
- isResharingAllowed: true,
- isDefaultExpireDateEnabled: false,
- isDefaultExpireDateEnforced: false,
- defaultExpireDate: 7
- });
- sinon.stub(configModel, 'isShareWithLinkAllowed');
- shareModel = new OC.Share.ShareItemModel(attributes, {
- configModel: configModel,
- fileInfoModel: fileInfoModel
- });
- view = new OC.Share.ShareDialogLinkShareView({
- configModel: configModel,
- model: shareModel
- });
- });
- afterEach(function () {
- view.remove();
- configModel.isShareWithLinkAllowed.restore();
- });
- describe('hide download', function () {
- var $hideDownloadCheckbox;
- var $workingIcon;
- beforeEach(function () {
- // Needed to render the view
- configModel.isShareWithLinkAllowed.returns(true);
- shareModel.set({
- linkShares: [{
- id: 123
- }]
- });
- view.render();
- $hideDownloadCheckbox = view.$el.find('.hideDownloadCheckbox');
- $workingIcon = $hideDownloadCheckbox.prev('.icon-loading-small');
- sinon.stub(shareModel, 'saveLinkShare');
- expect($workingIcon.hasClass('hidden')).toBeTruthy();
- });
- afterEach(function () {
- shareModel.saveLinkShare.restore();
- });
- it('is shown if the share is a file', function() {
- expect($hideDownloadCheckbox.length).toBeTruthy();
- });
- it('is not shown if the share is a folder', function() {
- shareModel.fileInfoModel.set('mimetype', 'httpd/unix-directory');
- // Setting the item type also triggers the rendering
- shareModel.set({
- itemType: 'folder'
- });
- $hideDownloadCheckbox = view.$el.find('.hideDownloadCheckbox');
- expect($hideDownloadCheckbox.length).toBeTruthy();
- });
- it('checkbox is checked when the setting is enabled', function () {
- shareModel.set({
- linkShares: [{
- id: 123,
- hideDownload: true
- }]
- });
- view.render();
- $hideDownloadCheckbox = view.$el.find('.hideDownloadCheckbox');
- expect($hideDownloadCheckbox.is(':checked')).toEqual(true);
- });
- it('checkbox is not checked when the setting is disabled', function () {
- expect($hideDownloadCheckbox.is(':checked')).toEqual(false);
- });
- it('enables the setting if clicked when unchecked', function () {
- // Simulate the click by checking the checkbox and then triggering
- // the "change" event.
- $hideDownloadCheckbox.prop('checked', true);
- $hideDownloadCheckbox.change();
- expect($workingIcon.hasClass('hidden')).toBeFalsy();
- expect(shareModel.saveLinkShare.withArgs({ hideDownload: true, cid: 123 }).calledOnce).toBeTruthy();
- });
- it('disables the setting if clicked when checked', function () {
- shareModel.set({
- linkShares: [{
- id: 123,
- hideDownload: true
- }]
- });
- view.render();
- $hideDownloadCheckbox = view.$el.find('.hideDownloadCheckbox');
- $workingIcon = $hideDownloadCheckbox.prev('.icon-loading-small');
- // Simulate the click by unchecking the checkbox and then triggering
- // the "change" event.
- $hideDownloadCheckbox.prop('checked', false);
- $hideDownloadCheckbox.change();
- expect($workingIcon.hasClass('hidden')).toBeFalsy();
- expect(shareModel.saveLinkShare.withArgs({ hideDownload: false, cid: 123 }).calledOnce).toBeTruthy();
- });
- });
- describe('onPasswordEntered', function () {
- var $passwordText;
- var $workingIcon;
- beforeEach(function () {
- // Needed to render the view
- configModel.isShareWithLinkAllowed.returns(true);
- shareModel.set({
- linkShares: [{
- id: 123,
- password: 'password'
- }]
- });
- view.render();
- $passwordText = view.$el.find('.linkPassText');
- $workingIcon = view.$el.find('.linkPassMenu .icon-loading-small');
- sinon.stub(shareModel, 'saveLinkShare');
- expect($passwordText.hasClass('hidden')).toBeFalsy();
- expect($workingIcon.hasClass('hidden')).toBeTruthy();
- $passwordText.val('myPassword');
- });
- afterEach(function () {
- shareModel.saveLinkShare.restore();
- });
- it('shows the working icon when called', function () {
- view.onPasswordEntered({target: view.$el.find('.linkPassText')});
- expect($workingIcon.hasClass('hidden')).toBeFalsy();
- expect(shareModel.saveLinkShare.withArgs({ password: 'myPassword', cid: 123 }).calledOnce).toBeTruthy();
- });
- it('hides the working icon when saving the password succeeds', function () {
- view.onPasswordEntered({target: view.$el.find('.linkPassText')});
- expect($workingIcon.hasClass('hidden')).toBeFalsy();
- expect(shareModel.saveLinkShare.withArgs({ password: 'myPassword', cid: 123 }).calledOnce).toBeTruthy();
- shareModel.saveLinkShare.yieldTo("complete", [shareModel]);
- expect($workingIcon.hasClass('hidden')).toBeTruthy();
- });
- it('hides the working icon when saving the password fails', function () {
- view.onPasswordEntered({target: view.$el.find('.linkPassText')});
- expect($workingIcon.hasClass('hidden')).toBeFalsy();
- expect(shareModel.saveLinkShare.withArgs({ password: 'myPassword', cid: 123 }).calledOnce).toBeTruthy();
- shareModel.saveLinkShare.yieldTo("complete", [shareModel]);
- shareModel.saveLinkShare.yieldTo("error", [shareModel, "The error message"]);
- expect($workingIcon.hasClass('hidden')).toBeTruthy();
- });
- });
- describe('protect password by Talk', function () {
- var $passwordByTalkCheckbox;
- var $workingIcon;
- beforeEach(function () {
- // Needed to render the view
- configModel.isShareWithLinkAllowed.returns(true);
- // "Enable" Talk
- window.oc_appswebroots['spreed'] = window.oc_webroot + '/apps/files/';
- shareModel.set({
- linkShares: [{
- id: 123,
- password: 'password'
- }]
- });
- view.render();
- $passwordByTalkCheckbox = view.$el.find('.passwordByTalkCheckbox');
- $workingIcon = $passwordByTalkCheckbox.prev('.icon-loading-small');
- sinon.stub(shareModel, 'saveLinkShare');
- expect($workingIcon.hasClass('hidden')).toBeTruthy();
- });
- afterEach(function () {
- shareModel.saveLinkShare.restore();
- });
- it('is shown if Talk is enabled and there is a password set', function() {
- expect($passwordByTalkCheckbox.length).toBeTruthy();
- });
- it('is not shown if Talk is enabled but there is no password set', function() {
- // Changing the password value also triggers the rendering
- shareModel.set({
- linkShares: [{
- id: 123
- }]
- });
- $passwordByTalkCheckbox = view.$el.find('.passwordByTalkCheckbox');
- expect($passwordByTalkCheckbox.length).toBeFalsy();
- });
- it('is not shown if there is a password set but Talk is not enabled', function() {
- // "Disable" Talk
- delete window.oc_appswebroots['spreed'];
- view.render();
- $passwordByTalkCheckbox = view.$el.find('.passwordByTalkCheckbox');
- expect($passwordByTalkCheckbox.length).toBeFalsy();
- });
- it('checkbox is checked when the setting is enabled', function () {
- shareModel.set({
- linkShares: [{
- id: 123,
- password: 'password',
- sendPasswordByTalk: true
- }]
- });
- view.render();
- $passwordByTalkCheckbox = view.$el.find('.passwordByTalkCheckbox');
- expect($passwordByTalkCheckbox.is(':checked')).toEqual(true);
- });
- it('checkbox is not checked when the setting is disabled', function () {
- expect($passwordByTalkCheckbox.is(':checked')).toEqual(false);
- });
- it('enables the setting if clicked when unchecked', function () {
- // Simulate the click by checking the checkbox and then triggering
- // the "change" event.
- $passwordByTalkCheckbox.prop('checked', true);
- $passwordByTalkCheckbox.change();
- expect($workingIcon.hasClass('hidden')).toBeFalsy();
- expect(shareModel.saveLinkShare.withArgs({ sendPasswordByTalk: true, cid: 123 }).calledOnce).toBeTruthy();
- });
- it('disables the setting if clicked when checked', function () {
- shareModel.set({
- linkShares: [{
- id: 123,
- password: 'password',
- sendPasswordByTalk: true
- }]
- });
- view.render();
- $passwordByTalkCheckbox = view.$el.find('.passwordByTalkCheckbox');
- $workingIcon = $passwordByTalkCheckbox.prev('.icon-loading-small');
- // Simulate the click by unchecking the checkbox and then triggering
- // the "change" event.
- $passwordByTalkCheckbox.prop('checked', false);
- $passwordByTalkCheckbox.change();
- expect($workingIcon.hasClass('hidden')).toBeFalsy();
- expect(shareModel.saveLinkShare.withArgs({ sendPasswordByTalk: false, cid: 123 }).calledOnce).toBeTruthy();
- });
- });
- });
|