Skip to content

Commit

Permalink
WEBUI-994: prevent replacing and removing an attachment under retenti…
Browse files Browse the repository at this point in the history
…on when using nuxeo-file
  • Loading branch information
Nishant0928 authored and swarnadipa-dev committed Jul 28, 2023
1 parent f7c3ee4 commit b3136f5
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 1 deletion.
48 changes: 48 additions & 0 deletions ui/test/nuxeo-file.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
/**
@license
(C) Copyright Nuxeo Corp. (http://nuxeo.com/)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import { fixture, html } from '@nuxeo/testing-helpers';
import '../widgets/nuxeo-file';

suite('nuxeo-file', () => {
let element;
setup(async () => {
element = await fixture(
html`
<nuxeo-file></nuxeo-file>
`,
);
});

suite('should return whether property is under retention', () => {
test('when file:content is a retained property && xpath = file:content', () => {
const document = {
isUnderRetentionOrLegalHold: true,
retainedProperties: ['file:content'],
};
element.xpath = 'file:content';
expect(element._isDropzoneVisible(document)).to.eql(true);
});
test('when file:content is not a retained property && xpath = file:content', () => {
const document = {
isUnderRetentionOrLegalHold: true,
retainedProperties: [],
};
element.xpath = 'file:content';
expect(element._isDropzoneVisible(document)).to.eql(false);
});
});
});
1 change: 0 additions & 1 deletion ui/widgets/nuxeo-file.js
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,6 @@ import { UploaderBehavior } from './nuxeo-uploader-behavior.js';
return this.readonly;
}


_hasValue() {
return this.multiple ? !!this.value && this.value.length > 0 : !!this.value;
}
Expand Down

0 comments on commit b3136f5

Please sign in to comment.