mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
[ACS-5725]fixed failing e2es
This commit is contained in:
committed by
Anukriti Singh
parent
3e314e74ad
commit
c142ca1a30
@@ -231,7 +231,7 @@ describe('Aspect oriented config', () => {
|
|||||||
await expect(await metadataViewPage.getMetadataGroupTitle('GROUP-TITLE2-TRANSLATION-KEY')).toBe('CUSTOM TITLE TRANSLATION TWO');
|
await expect(await metadataViewPage.getMetadataGroupTitle('GROUP-TITLE2-TRANSLATION-KEY')).toBe('CUSTOM TITLE TRANSLATION TWO');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('[C279968] Should be possible use a custom preset', async () => {
|
fit('[C279968] Should be possible use a custom preset', async () => {
|
||||||
await LocalStorageUtil.setConfigField('content-metadata', '{' +
|
await LocalStorageUtil.setConfigField('content-metadata', '{' +
|
||||||
' "presets": {' +
|
' "presets": {' +
|
||||||
' "custom-preset": {' +
|
' "custom-preset": {' +
|
||||||
|
|||||||
@@ -114,7 +114,6 @@ describe('CardView Component - properties', () => {
|
|||||||
await viewerPage.checkInfoSideBarIsDisplayed();
|
await viewerPage.checkInfoSideBarIsDisplayed();
|
||||||
await metadataViewPage.clickOnPropertiesTab();
|
await metadataViewPage.clickOnPropertiesTab();
|
||||||
|
|
||||||
|
|
||||||
await metadataViewPage.checkMetadataGroupIsExpand('properties');
|
await metadataViewPage.checkMetadataGroupIsExpand('properties');
|
||||||
await metadataViewPage.checkMetadataGroupIsNotExpand('EXIF');
|
await metadataViewPage.checkMetadataGroupIsNotExpand('EXIF');
|
||||||
|
|
||||||
|
|||||||
@@ -179,6 +179,7 @@ describe('Metadata component', () => {
|
|||||||
await expect(await metadataViewPage.getPropertyText('properties.cm:name')).toEqual(browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name);
|
await expect(await metadataViewPage.getPropertyText('properties.cm:name')).toEqual(browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name);
|
||||||
await metadataViewPage.clickSaveGeneralMetadata();
|
await metadataViewPage.clickSaveGeneralMetadata();
|
||||||
});
|
});
|
||||||
|
|
||||||
it('[C260181] Should be possible edit all the metadata aspect', async () => {
|
it('[C260181] Should be possible edit all the metadata aspect', async () => {
|
||||||
await viewerPage.clickInfoButton();
|
await viewerPage.clickInfoButton();
|
||||||
await viewerPage.checkInfoSideBarIsDisplayed();
|
await viewerPage.checkInfoSideBarIsDisplayed();
|
||||||
@@ -225,13 +226,13 @@ describe('Metadata component', () => {
|
|||||||
await BrowserActions.closeMenuAndDialogs();
|
await BrowserActions.closeMenuAndDialogs();
|
||||||
});
|
});
|
||||||
|
|
||||||
fit('[C261158] Should be possible edit the metadata When the node is a Folder', async () => {
|
it('[C261158] Should be possible edit the metadata When the node is a Folder', async () => {
|
||||||
await contentServicesPage.metadataContent(folderName);
|
await contentServicesPage.metadataContent(folderName);
|
||||||
|
|
||||||
await metadataViewPage.clickEditIconGeneral();
|
await metadataViewPage.clickEditIconGeneral();
|
||||||
|
|
||||||
await metadataViewPage.enterPropertyText('properties.cm:name', 'newnameFolder');
|
await metadataViewPage.enterPropertyText('properties.cm:name', 'newnameFolder');
|
||||||
await metadataViewPage.generaleditIconDisplayed();
|
await metadataViewPage.clickResetButton();
|
||||||
await expect(await metadataViewPage.getPropertyText('properties.cm:name')).toEqual(folderName);
|
await expect(await metadataViewPage.getPropertyText('properties.cm:name')).toEqual(folderName);
|
||||||
|
|
||||||
await metadataViewPage.clickEditIconGeneral();
|
await metadataViewPage.clickEditIconGeneral();
|
||||||
|
|||||||
+4
@@ -514,6 +514,10 @@ export class ContentMetadataComponent implements OnChanges, OnInit, OnDestroy {
|
|||||||
return !this.expanded || this.displayAspect === 'Properties';
|
return !this.expanded || this.displayAspect === 'Properties';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
hasAllowableOperations() {
|
||||||
|
return this.contentService.hasAllowableOperations(this.node, AllowableOperationsEnum.UPDATE);
|
||||||
|
}
|
||||||
|
|
||||||
keyDown(event: KeyboardEvent) {
|
keyDown(event: KeyboardEvent) {
|
||||||
if (event.keyCode === 37 || event.keyCode === 39) {
|
if (event.keyCode === 37 || event.keyCode === 39) {
|
||||||
// ArrowLeft && ArrowRight
|
// ArrowLeft && ArrowRight
|
||||||
|
|||||||
Reference in New Issue
Block a user