12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064 |
- /**
- * 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/>.
- *
- */
- /* global oc_appconfig */
- describe('OC.Share.ShareDialogView', function() {
- var $container;
- var oldAppConfig;
- var autocompleteStub;
- var oldEnableAvatars;
- var avatarStub;
- var placeholderStub;
- var oldCurrentUser;
- var saveLinkShareStub;
- var fetchStub;
- var notificationStub;
- var configModel;
- var shareModel;
- var fileInfoModel;
- var dialog;
- beforeEach(function() {
- // horrible parameters
- $('#testArea').append('<input id="allowShareWithLink" type="hidden" value="yes">');
- $('#testArea').append('<input id="mailPublicNotificationEnabled" name="mailPublicNotificationEnabled" type="hidden" value="yes">');
- $container = $('#shareContainer');
- /* jshint camelcase:false */
- oldAppConfig = _.extend({}, oc_appconfig.core);
- oc_appconfig.core.enforcePasswordForPublicLink = false;
- fetchStub = sinon.stub(OC.Share.ShareItemModel.prototype, 'fetch');
- saveLinkShareStub = sinon.stub(OC.Share.ShareItemModel.prototype, 'saveLinkShare');
- fileInfoModel = new OCA.Files.FileInfoModel({
- id: 123,
- name: 'shared_file_name.txt',
- path: '/subdir',
- size: 100,
- mimetype: 'text/plain',
- permissions: 31,
- sharePermissions: 31
- });
- var attributes = {
- itemType: fileInfoModel.isDirectory() ? 'folder' : 'file',
- itemSource: fileInfoModel.get('id'),
- possiblePermissions: 31,
- permissions: 31
- };
- configModel = new OC.Share.ShareConfigModel({
- enforcePasswordForPublicLink: false,
- isResharingAllowed: true,
- enforcePasswordForPublicLink: false,
- isDefaultExpireDateEnabled: false,
- isDefaultExpireDateEnforced: false,
- defaultExpireDate: 7
- });
- shareModel = new OC.Share.ShareItemModel(attributes, {
- configModel: configModel,
- fileInfoModel: fileInfoModel
- });
- dialog = new OC.Share.ShareDialogView({
- configModel: configModel,
- model: shareModel
- });
- // required for proper event propagation when simulating clicks in some cases (jquery bugs)
- $('#testArea').append(dialog.$el);
- // triggers rendering
- shareModel.set({
- shares: [],
- linkShare: {isLinkShare: false}
- });
- autocompleteStub = sinon.stub($.fn, 'autocomplete', function() {
- // dummy container with the expected attributes
- if (!$(this).length) {
- // simulate the real autocomplete that returns
- // nothing at all when no element is specified
- // (and potentially break stuff)
- return null;
- }
- var $el = $('<div></div>').data('ui-autocomplete', {});
- return $el;
- });
- oldEnableAvatars = oc_config.enable_avatars;
- oc_config.enable_avatars = false;
- avatarStub = sinon.stub($.fn, 'avatar');
- placeholderStub = sinon.stub($.fn, 'imageplaceholder');
- oldCurrentUser = OC.currentUser;
- OC.currentUser = 'user0';
- });
- afterEach(function() {
- OC.currentUser = oldCurrentUser;
- /* jshint camelcase:false */
- oc_appconfig.core = oldAppConfig;
- dialog.remove();
- fetchStub.restore();
- saveLinkShareStub.restore();
- autocompleteStub.restore();
- avatarStub.restore();
- placeholderStub.restore();
- oc_config.enable_avatars = oldEnableAvatars;
- });
- describe('Share with link', function() {
- // TODO: test ajax calls
- // TODO: test password field visibility (whenever enforced or not)
- it('update password on focus out', function() {
- $('#allowShareWithLink').val('yes');
- dialog.model.set('linkShare', {
- isLinkShare: true
- });
- dialog.render();
- // Enable password, enter password and focusout
- dialog.$el.find('[name=showPassword]').click();
- dialog.$el.find('.linkPassText').focus();
- dialog.$el.find('.linkPassText').val('foo');
- dialog.$el.find('.linkPassText').focusout();
- expect(saveLinkShareStub.calledOnce).toEqual(true);
- expect(saveLinkShareStub.firstCall.args[0]).toEqual({
- password: 'foo'
- });
- });
- it('update password on enter', function() {
- $('#allowShareWithLink').val('yes');
- dialog.model.set('linkShare', {
- isLinkShare: true
- });
- dialog.render();
- // Toggle linkshare
- dialog.$el.find('.linkCheckbox').click();
- // Enable password and enter password
- dialog.$el.find('[name=showPassword]').click();
- dialog.$el.find('.linkPassText').focus();
- dialog.$el.find('.linkPassText').val('foo');
- dialog.$el.find('.linkPassText').trigger(new $.Event('keyup', {keyCode: 13}));
- expect(saveLinkShareStub.calledOnce).toEqual(true);
- expect(saveLinkShareStub.firstCall.args[0]).toEqual({
- password: 'foo'
- });
- });
- it('shows share with link checkbox when allowed', function() {
- $('#allowShareWithLink').val('yes');
- dialog.render();
- expect(dialog.$el.find('.linkCheckbox').length).toEqual(1);
- });
- it('does not show share with link checkbox when not allowed', function() {
- $('#allowShareWithLink').val('no');
- dialog.render();
- expect(dialog.$el.find('.linkCheckbox').length).toEqual(0);
- expect(dialog.$el.find('.shareWithField').length).toEqual(1);
- });
- it('shows populated link share when a link share exists', function() {
- // this is how the OC.Share class does it...
- var link = parent.location.protocol + '//' + location.host +
- OC.generateUrl('/s/') + 'tehtoken';
- shareModel.set('linkShare', {
- isLinkShare: true,
- token: 'tehtoken',
- link: link,
- expiration: '',
- permissions: OC.PERMISSION_READ,
- stime: 1403884258,
- });
- dialog.render();
- expect(dialog.$el.find('.linkCheckbox').prop('checked')).toEqual(true);
- expect(dialog.$el.find('.linkText').val()).toEqual(link);
- });
- it('autofocus link text when clicked', function() {
- $('#allowShareWithLink').val('yes');
- dialog.model.set('linkShare', {
- isLinkShare: true
- });
- dialog.render();
- var focusStub = sinon.stub($.fn, 'focus');
- var selectStub = sinon.stub($.fn, 'select');
- dialog.$el.find('.linkText').click();
- expect(focusStub.calledOnce).toEqual(true);
- expect(selectStub.calledOnce).toEqual(true);
- focusStub.restore();
- selectStub.restore();
- });
- describe('password', function() {
- var slideToggleStub;
- beforeEach(function() {
- $('#allowShareWithLink').val('yes');
- configModel.set({
- enforcePasswordForPublicLink: false
- });
- slideToggleStub = sinon.stub($.fn, 'slideToggle');
- });
- afterEach(function() {
- slideToggleStub.restore();
- });
- it('enforced but toggled does not fire request', function() {
- configModel.set('enforcePasswordForPublicLink', true);
- dialog.render();
- dialog.$el.find('.linkCheckbox').click();
- // The password linkPass field is shown (slideToggle is called).
- // No request is made yet
- expect(slideToggleStub.callCount).toEqual(1);
- expect(slideToggleStub.getCall(0).thisValue.eq(0).attr('id')).toEqual('linkPass');
- expect(fakeServer.requests.length).toEqual(0);
-
- // Now untoggle share by link
- dialog.$el.find('.linkCheckbox').click();
- dialog.render();
- // Password field disappears and no ajax requests have been made
- expect(fakeServer.requests.length).toEqual(0);
- expect(slideToggleStub.callCount).toEqual(2);
- expect(slideToggleStub.getCall(1).thisValue.eq(0).attr('id')).toEqual('linkPass');
- });
- });
- describe('expiration date', function() {
- var shareData;
- var shareItem;
- var clock;
- var expectedMinDate;
- beforeEach(function() {
- // pick a fake date
- clock = sinon.useFakeTimers(new Date(2014, 0, 20, 14, 0, 0).getTime());
- expectedMinDate = new Date(2014, 0, 21, 14, 0, 0);
- configModel.set({
- enforcePasswordForPublicLink: false,
- isDefaultExpireDateEnabled: false,
- isDefaultExpireDateEnforced: false,
- defaultExpireDate: 7
- });
- shareModel.set('linkShare', {
- isLinkShare: true,
- token: 'tehtoken',
- permissions: OC.PERMISSION_READ,
- expiration: null
- });
- });
- afterEach(function() {
- clock.restore();
- });
- it('does not check expiration date checkbox when no date was set', function() {
- shareModel.get('linkShare').expiration = null;
- dialog.render();
- expect(dialog.$el.find('[name=expirationCheckbox]').prop('checked')).toEqual(false);
- expect(dialog.$el.find('.datepicker').val()).toEqual('');
- });
- it('does not check expiration date checkbox for new share', function() {
- dialog.render();
- expect(dialog.$el.find('[name=expirationCheckbox]').prop('checked')).toEqual(false);
- expect(dialog.$el.find('.datepicker').val()).toEqual('');
- });
- it('checks expiration date checkbox and populates field when expiration date was set', function() {
- shareModel.get('linkShare').expiration = '2014-02-01 00:00:00';
- dialog.render();
- expect(dialog.$el.find('[name=expirationCheckbox]').prop('checked')).toEqual(true);
- expect(dialog.$el.find('.datepicker').val()).toEqual('01-02-2014');
- });
- it('sets default date when default date setting is enabled', function() {
- configModel.set('isDefaultExpireDateEnabled', true);
- dialog.render();
- dialog.$el.find('.linkCheckbox').click();
- // here fetch would be called and the server returns the expiration date
- shareModel.get('linkShare').expiration = '2014-1-27 00:00:00';
- dialog.render();
- // enabled by default
- expect(dialog.$el.find('[name=expirationCheckbox]').prop('checked')).toEqual(true);
- expect(dialog.$el.find('.datepicker').val()).toEqual('27-01-2014');
- // disabling is allowed
- dialog.$el.find('[name=expirationCheckbox]').click();
- expect(dialog.$el.find('[name=expirationCheckbox]').prop('checked')).toEqual(false);
- });
- it('enforces default date when enforced date setting is enabled', function() {
- configModel.set({
- isDefaultExpireDateEnabled: true,
- isDefaultExpireDateEnforced: true
- });
- dialog.render();
- dialog.$el.find('.linkCheckbox').click();
- // here fetch would be called and the server returns the expiration date
- shareModel.get('linkShare').expiration = '2014-1-27 00:00:00';
- dialog.render();
- expect(dialog.$el.find('[name=expirationCheckbox]').prop('checked')).toEqual(true);
- expect(dialog.$el.find('.datepicker').val()).toEqual('27-01-2014');
- // disabling is not allowed
- expect(dialog.$el.find('[name=expirationCheckbox]').prop('disabled')).toEqual(true);
- dialog.$el.find('[name=expirationCheckbox]').click();
- expect(dialog.$el.find('[name=expirationCheckbox]').prop('checked')).toEqual(true);
- });
- it('enforces default date when enforced date setting is enabled and password is enforced', function() {
- configModel.set({
- enforcePasswordForPublicLink: true,
- isDefaultExpireDateEnabled: true,
- isDefaultExpireDateEnforced: true
- });
- dialog.render();
- dialog.$el.find('.linkCheckbox').click();
- // here fetch would be called and the server returns the expiration date
- shareModel.get('linkShare').expiration = '2014-1-27 00:00:00';
- dialog.render();
- //Enter password
- dialog.$el.find('.linkPassText').val('foo');
- dialog.$el.find('.linkPassText').trigger(new $.Event('keyup', {keyCode: 13}));
- fakeServer.requests[0].respond(
- 200,
- { 'Content-Type': 'application/json' },
- JSON.stringify({data: {token: 'xyz'}, status: 'success'})
- );
- expect(dialog.$el.find('[name=expirationCheckbox]').prop('checked')).toEqual(true);
- expect(dialog.$el.find('.datepicker').val()).toEqual('27-01-2014');
- // disabling is not allowed
- expect(dialog.$el.find('[name=expirationCheckbox]').prop('disabled')).toEqual(true);
- dialog.$el.find('[name=expirationCheckbox]').click();
- expect(dialog.$el.find('[name=expirationCheckbox]').prop('checked')).toEqual(true);
- });
- it('sets picker minDate to today and no maxDate by default', function() {
- dialog.render();
- dialog.$el.find('.linkCheckbox').click();
- dialog.$el.find('[name=expirationCheckbox]').click();
- expect($.datepicker._defaults.minDate).toEqual(expectedMinDate);
- expect($.datepicker._defaults.maxDate).toEqual(null);
- });
- it('limits the date range to X days after share time when enforced', function() {
- configModel.set({
- isDefaultExpireDateEnabled: true,
- isDefaultExpireDateEnforced: true
- });
- dialog.render();
- dialog.$el.find('.linkCheckbox').click();
- expect($.datepicker._defaults.minDate).toEqual(expectedMinDate);
- expect($.datepicker._defaults.maxDate).toEqual(new Date(2014, 0, 27, 0, 0, 0, 0));
- });
- it('limits the date range to X days after share time when enforced, even when redisplayed the next days', function() {
- // item exists, was created two days ago
- var shareItem = shareModel.get('linkShare');
- shareItem.expiration = '2014-1-27';
- // share time has time component but must be stripped later
- shareItem.stime = new Date(2014, 0, 20, 11, 0, 25).getTime() / 1000;
- configModel.set({
- isDefaultExpireDateEnabled: true,
- isDefaultExpireDateEnforced: true
- });
- dialog.render();
- expect($.datepicker._defaults.minDate).toEqual(expectedMinDate);
- expect($.datepicker._defaults.maxDate).toEqual(new Date(2014, 0, 27, 0, 0, 0, 0));
- });
- });
- describe('send link by email', function() {
- var sendEmailPrivateLinkStub;
- var clock;
- beforeEach(function() {
- configModel.set({
- isMailPublicNotificationEnabled: true
- });
- shareModel.set('linkShare', {
- isLinkShare: true,
- token: 'tehtoken',
- permissions: OC.PERMISSION_READ,
- expiration: null
- });
- sendEmailPrivateLinkStub = sinon.stub(dialog.model, "sendEmailPrivateLink");
- clock = sinon.useFakeTimers();
- });
- afterEach(function() {
- sendEmailPrivateLinkStub.restore();
- clock.restore();
- });
- it('displays form when sending emails is enabled', function() {
- $('input[name=mailPublicNotificationEnabled]').val('yes');
- dialog.render();
- expect(dialog.$('.emailPrivateLinkForm').length).toEqual(1);
- });
- it('form not rendered when sending emails is disabled', function() {
- $('input[name=mailPublicNotificationEnabled]').val('no');
- dialog.render();
- expect(dialog.$('.emailPrivateLinkForm').length).toEqual(0);
- });
- it('input cleared on success', function() {
- var defer = $.Deferred();
- sendEmailPrivateLinkStub.returns(defer.promise());
- $('input[name=mailPublicNotificationEnabled]').val('yes');
- dialog.render();
- dialog.$el.find('.emailPrivateLinkForm .emailField').val('a@b.c');
- dialog.$el.find('.emailPrivateLinkForm').trigger('submit');
- expect(sendEmailPrivateLinkStub.callCount).toEqual(1);
- expect(dialog.$el.find('.emailPrivateLinkForm .emailField').val()).toEqual('Sending ...');
- defer.resolve();
- expect(dialog.$el.find('.emailPrivateLinkForm .emailField').val()).toEqual('Email sent');
- clock.tick(2000);
- expect(dialog.$el.find('.emailPrivateLinkForm .emailField').val()).toEqual('');
- });
- it('input not cleared on failure', function() {
- var defer = $.Deferred();
- sendEmailPrivateLinkStub.returns(defer.promise());
- $('input[name=mailPublicNotificationEnabled]').val('yes');
- dialog.render();
- dialog.$el.find('.emailPrivateLinkForm .emailField').val('a@b.c');
- dialog.$el.find('.emailPrivateLinkForm').trigger('submit');
- expect(sendEmailPrivateLinkStub.callCount).toEqual(1);
- expect(dialog.$el.find('.emailPrivateLinkForm .emailField').val()).toEqual('Sending ...');
- defer.reject();
- expect(dialog.$el.find('.emailPrivateLinkForm .emailField').val()).toEqual('a@b.c');
- });
- });
- });
- describe('check for avatar', function() {
- beforeEach(function() {
- shareModel.set({
- reshare: {
- share_type: OC.Share.SHARE_TYPE_USER,
- uid_owner: 'owner',
- displayname_owner: 'Owner',
- permissions: 31
- },
- shares: [{
- id: 100,
- item_source: 123,
- permissions: 31,
- share_type: OC.Share.SHARE_TYPE_USER,
- share_with: 'user1',
- share_with_displayname: 'User One'
- },{
- id: 101,
- item_source: 123,
- permissions: 31,
- share_type: OC.Share.SHARE_TYPE_GROUP,
- share_with: 'group',
- share_with_displayname: 'group'
- },{
- id: 102,
- item_source: 123,
- permissions: 31,
- share_type: OC.Share.SHARE_TYPE_REMOTE,
- share_with: 'foo@bar.com/baz',
- share_with_displayname: 'foo@bar.com/baz'
- }]
- });
- });
- describe('avatars enabled', function() {
- beforeEach(function() {
- oc_config.enable_avatars = true;
- avatarStub.reset();
- dialog.render();
- });
- afterEach(function() {
- oc_config.enable_avatars = false;
- });
- it('test correct function calls', function() {
- expect(avatarStub.calledTwice).toEqual(true);
- expect(placeholderStub.calledTwice).toEqual(true);
- expect(dialog.$('.shareWithList').children().length).toEqual(3);
- expect(dialog.$('.avatar').length).toEqual(4);
- });
- it('test avatar owner', function() {
- var args = avatarStub.getCall(0).args;
- expect(args.length).toEqual(2);
- expect(args[0]).toEqual('owner');
- });
- it('test avatar user', function() {
- var args = avatarStub.getCall(1).args;
- expect(args.length).toEqual(2);
- expect(args[0]).toEqual('user1');
- });
- it('test avatar for groups', function() {
- var args = placeholderStub.getCall(0).args;
- expect(args.length).toEqual(1);
- expect(args[0]).toEqual('group ' + OC.Share.SHARE_TYPE_GROUP);
- });
- it('test avatar for remotes', function() {
- var args = placeholderStub.getCall(1).args;
- expect(args.length).toEqual(1);
- expect(args[0]).toEqual('foo@bar.com/baz ' + OC.Share.SHARE_TYPE_REMOTE);
- });
- });
- describe('avatars disabled', function() {
- beforeEach(function() {
- dialog.render();
- });
- it('no avatar classes', function() {
- expect($('.avatar').length).toEqual(0);
- expect(avatarStub.callCount).toEqual(0);
- expect(placeholderStub.callCount).toEqual(0);
- });
- });
- });
- describe('remote sharing', function() {
- it('shows remote share info when allowed', function() {
- configModel.set({
- isRemoteShareAllowed: true
- });
- dialog.render();
- expect(dialog.$el.find('.shareWithRemoteInfo').length).toEqual(1);
- });
- it('does not show remote share info when not allowed', function() {
- configModel.set({
- isRemoteShareAllowed: false
- });
- dialog.render();
- expect(dialog.$el.find('.shareWithRemoteInfo').length).toEqual(0);
- });
- });
- describe('autocompletion of users', function() {
- it('triggers autocomplete display and focus with data when ajax search succeeds', function () {
- dialog.render();
- var response = sinon.stub();
- dialog.autocompleteHandler({term: 'bob'}, response);
- var jsonData = JSON.stringify({
- 'ocs' : {
- 'meta' : {
- 'status' : 'success',
- 'statuscode' : 100,
- 'message' : null
- },
- 'data' : {
- 'exact' : {
- 'users' : [],
- 'groups' : [],
- 'remotes': []
- },
- 'users' : [{'label': 'bob', 'value': {'shareType': 0, 'shareWith': 'test'}}],
- 'groups' : [],
- 'remotes': []
- }
- }
- });
- fakeServer.requests[0].respond(
- 200,
- {'Content-Type': 'application/json'},
- jsonData
- );
- expect(response.calledWithExactly(JSON.parse(jsonData).ocs.data.users)).toEqual(true);
- expect(autocompleteStub.calledWith("option", "autoFocus", true)).toEqual(true);
- });
- describe('filter out', function() {
- it('the current user', function () {
- dialog.render();
- var response = sinon.stub();
- dialog.autocompleteHandler({term: 'bob'}, response);
- var jsonData = JSON.stringify({
- 'ocs': {
- 'meta': {
- 'status': 'success',
- 'statuscode': 100,
- 'message': null
- },
- 'data': {
- 'exact': {
- 'users': [],
- 'groups': [],
- 'remotes': []
- },
- 'users': [
- {
- 'label': 'bob',
- 'value': {
- 'shareType': 0,
- 'shareWith': OC.currentUser
- }
- },
- {
- 'label': 'bobby',
- 'value': {
- 'shareType': 0,
- 'shareWith': 'imbob'
- }
- }
- ],
- 'groups': [],
- 'remotes': []
- }
- }
- });
- fakeServer.requests[0].respond(
- 200,
- {'Content-Type': 'application/json'},
- jsonData
- );
- expect(response.calledWithExactly([{
- 'label': 'bobby',
- 'value': {'shareType': 0, 'shareWith': 'imbob'}
- }])).toEqual(true);
- expect(autocompleteStub.calledWith("option", "autoFocus", true)).toEqual(true);
- });
- it('the share owner', function () {
- shareModel.set({
- reshare: {
- uid_owner: 'user1'
- },
- shares: [],
- permissions: OC.PERMISSION_READ
- });
- dialog.render();
- var response = sinon.stub();
- dialog.autocompleteHandler({term: 'bob'}, response);
- var jsonData = JSON.stringify({
- 'ocs': {
- 'meta': {
- 'status': 'success',
- 'statuscode': 100,
- 'message': null
- },
- 'data': {
- 'exact': {
- 'users': [],
- 'groups': [],
- 'remotes': []
- },
- 'users': [
- {
- 'label': 'bob',
- 'value': {
- 'shareType': 0,
- 'shareWith': 'user1'
- }
- },
- {
- 'label': 'bobby',
- 'value': {
- 'shareType': 0,
- 'shareWith': 'imbob'
- }
- }
- ],
- 'groups': [],
- 'remotes': []
- }
- }
- });
- fakeServer.requests[0].respond(
- 200,
- {'Content-Type': 'application/json'},
- jsonData
- );
- expect(response.calledWithExactly([{
- 'label': 'bobby',
- 'value': {'shareType': 0, 'shareWith': 'imbob'}
- }])).toEqual(true);
- expect(autocompleteStub.calledWith("option", "autoFocus", true)).toEqual(true);
- });
- describe('already shared with', function () {
- beforeEach(function() {
- shareModel.set({
- reshare: {},
- shares: [{
- id: 100,
- item_source: 123,
- permissions: 31,
- share_type: OC.Share.SHARE_TYPE_USER,
- share_with: 'user1',
- share_with_displayname: 'User One'
- },{
- id: 101,
- item_source: 123,
- permissions: 31,
- share_type: OC.Share.SHARE_TYPE_GROUP,
- share_with: 'group',
- share_with_displayname: 'group'
- },{
- id: 102,
- item_source: 123,
- permissions: 31,
- share_type: OC.Share.SHARE_TYPE_REMOTE,
- share_with: 'foo@bar.com/baz',
- share_with_displayname: 'foo@bar.com/baz'
- }]
- });
- });
- it('users', function () {
- dialog.render();
- var response = sinon.stub();
- dialog.autocompleteHandler({term: 'bob'}, response);
- var jsonData = JSON.stringify({
- 'ocs': {
- 'meta': {
- 'status': 'success',
- 'statuscode': 100,
- 'message': null
- },
- 'data': {
- 'exact': {
- 'users': [],
- 'groups': [],
- 'remotes': []
- },
- 'users': [
- {
- 'label': 'bob',
- 'value': {
- 'shareType': OC.Share.SHARE_TYPE_USER,
- 'shareWith': 'user1'
- }
- },
- {
- 'label': 'bobby',
- 'value': {
- 'shareType': OC.Share.SHARE_TYPE_USER,
- 'shareWith': 'imbob'
- }
- }
- ],
- 'groups': [],
- 'remotes': []
- }
- }
- });
- fakeServer.requests[0].respond(
- 200,
- {'Content-Type': 'application/json'},
- jsonData
- );
- expect(response.calledWithExactly([{
- 'label': 'bobby',
- 'value': {'shareType': OC.Share.SHARE_TYPE_USER, 'shareWith': 'imbob'}
- }])).toEqual(true);
- expect(autocompleteStub.calledWith("option", "autoFocus", true)).toEqual(true);
- });
- it('groups', function () {
- dialog.render();
- var response = sinon.stub();
- dialog.autocompleteHandler({term: 'group'}, response);
- var jsonData = JSON.stringify({
- 'ocs': {
- 'meta': {
- 'status': 'success',
- 'statuscode': 100,
- 'message': null
- },
- 'data': {
- 'exact': {
- 'users': [],
- 'groups': [],
- 'remotes': []
- },
- 'users': [],
- 'groups': [
- {
- 'label': 'group',
- 'value': {
- 'shareType': OC.Share.SHARE_TYPE_GROUP,
- 'shareWith': 'group'
- }
- },
- {
- 'label': 'group2',
- 'value': {
- 'shareType': OC.Share.SHARE_TYPE_GROUP,
- 'shareWith': 'group2'
- }
- }
- ],
- 'remotes': []
- }
- }
- });
- fakeServer.requests[0].respond(
- 200,
- {'Content-Type': 'application/json'},
- jsonData
- );
- expect(response.calledWithExactly([{
- 'label': 'group2',
- 'value': {'shareType': OC.Share.SHARE_TYPE_GROUP, 'shareWith': 'group2'}
- }])).toEqual(true);
- expect(autocompleteStub.calledWith("option", "autoFocus", true)).toEqual(true);
- });
- it('remotes', function () {
- dialog.render();
- var response = sinon.stub();
- dialog.autocompleteHandler({term: 'bob'}, response);
- var jsonData = JSON.stringify({
- 'ocs': {
- 'meta': {
- 'status': 'success',
- 'statuscode': 100,
- 'message': null
- },
- 'data': {
- 'exact': {
- 'users': [],
- 'groups': [],
- 'remotes': []
- },
- 'users': [],
- 'groups': [],
- 'remotes': [
- {
- 'label': 'foo@bar.com/baz',
- 'value': {
- 'shareType': OC.Share.SHARE_TYPE_REMOTE,
- 'shareWith': 'foo@bar.com/baz'
- }
- },
- {
- 'label': 'foo2@bar.com/baz',
- 'value': {
- 'shareType': OC.Share.SHARE_TYPE_REMOTE,
- 'shareWith': 'foo2@bar.com/baz'
- }
- }
- ]
- }
- }
- });
- fakeServer.requests[0].respond(
- 200,
- {'Content-Type': 'application/json'},
- jsonData
- );
- expect(response.calledWithExactly([{
- 'label': 'foo2@bar.com/baz',
- 'value': {'shareType': OC.Share.SHARE_TYPE_REMOTE, 'shareWith': 'foo2@bar.com/baz'}
- }])).toEqual(true);
- expect(autocompleteStub.calledWith("option", "autoFocus", true)).toEqual(true);
- });
- });
- });
- it('gracefully handles successful ajax call with failure content', function () {
- dialog.render();
- var response = sinon.stub();
- dialog.autocompleteHandler({term: 'bob'}, response);
- var jsonData = JSON.stringify({
- 'ocs' : {
- 'meta' : {
- 'status': 'failure',
- 'statuscode': 400
- }
- }
- });
- fakeServer.requests[0].respond(
- 200,
- {'Content-Type': 'application/json'},
- jsonData
- );
- expect(response.calledWithExactly()).toEqual(true);
- });
- it('throws a notification when the ajax search lookup fails', function () {
- notificationStub = sinon.stub(OC.Notification, 'show');
- dialog.render();
- dialog.autocompleteHandler({term: 'bob'}, sinon.stub());
- fakeServer.requests[0].respond(500);
- expect(notificationStub.calledOnce).toEqual(true);
- notificationStub.restore();
- });
- describe('renders the autocomplete elements', function() {
- it('renders a group element', function() {
- dialog.render();
- var el = dialog.autocompleteRenderItem(
- $("<ul></ul>"),
- {label: "1", value: { shareType: OC.Share.SHARE_TYPE_GROUP }}
- );
- expect(el.is('li')).toEqual(true);
- expect(el.hasClass('group')).toEqual(true);
- });
- it('renders a remote element', function() {
- dialog.render();
- var el = dialog.autocompleteRenderItem(
- $("<ul></ul>"),
- {label: "1", value: { shareType: OC.Share.SHARE_TYPE_REMOTE }}
- );
- expect(el.is('li')).toEqual(true);
- expect(el.hasClass('user')).toEqual(true);
- });
- });
- it('calls addShare after selection', function() {
- dialog.render();
- var shareWith = $('.shareWithField')[0];
- var $shareWith = $(shareWith);
- var addShareStub = sinon.stub(shareModel, 'addShare');
- var autocompleteOptions = autocompleteStub.getCall(0).args[0];
- autocompleteOptions.select(new $.Event('select', {target: shareWith}), {
- item: {
- label: 'User Two',
- value: {
- shareType: OC.Share.SHARE_TYPE_USER,
- shareWith: 'user2'
- }
- }
- });
- expect(addShareStub.calledOnce).toEqual(true);
- expect(addShareStub.firstCall.args[0]).toEqual({
- shareType: OC.Share.SHARE_TYPE_USER,
- shareWith: 'user2'
- });
- //Input is locked
- expect($shareWith.val()).toEqual('User Two');
- expect($shareWith.attr('disabled')).toEqual('disabled');
- //Callback is called
- addShareStub.firstCall.args[1].success();
- //Input is unlocked
- expect($shareWith.val()).toEqual('');
- expect($shareWith.attr('disabled')).toEqual(undefined);
- addShareStub.restore();
- });
- it('calls addShare after selection and fail to share', function() {
- dialog.render();
- var shareWith = $('.shareWithField')[0];
- var $shareWith = $(shareWith);
- var addShareStub = sinon.stub(shareModel, 'addShare');
- var autocompleteOptions = autocompleteStub.getCall(0).args[0];
- autocompleteOptions.select(new $.Event('select', {target: shareWith}), {
- item: {
- label: 'User Two',
- value: {
- shareType: OC.Share.SHARE_TYPE_USER,
- shareWith: 'user2'
- }
- }
- });
- expect(addShareStub.calledOnce).toEqual(true);
- expect(addShareStub.firstCall.args[0]).toEqual({
- shareType: OC.Share.SHARE_TYPE_USER,
- shareWith: 'user2'
- });
- //Input is locked
- expect($shareWith.val()).toEqual('User Two');
- expect($shareWith.attr('disabled')).toEqual('disabled');
- //Callback is called
- addShareStub.firstCall.args[1].error();
- //Input is unlocked
- expect($shareWith.val()).toEqual('User Two');
- expect($shareWith.attr('disabled')).toEqual(undefined);
- addShareStub.restore();
- });
- });
- describe('reshare permissions', function() {
- it('does not show sharing options when sharing not allowed', function() {
- shareModel.set({
- reshare: {},
- shares: [],
- permissions: OC.PERMISSION_READ
- });
- dialog.render();
- expect(dialog.$el.find('.shareWithField').prop('disabled')).toEqual(true);
- });
- it('shows reshare owner', function() {
- shareModel.set({
- reshare: {
- uid_owner: 'user1'
- },
- shares: [],
- permissions: OC.PERMISSION_READ
- });
- dialog.render();
- expect(dialog.$el.find('.resharerInfoView .reshare').length).toEqual(1);
- });
- it('does not show reshare owner if owner is current user', function() {
- shareModel.set({
- reshare: {
- uid_owner: OC.currentUser
- },
- shares: [],
- permissions: OC.PERMISSION_READ
- });
- dialog.render();
- expect(dialog.$el.find('.resharerInfoView .reshare').length).toEqual(0);
- });
- });
- });
|