mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ADF-4735] - Automation for visiblity condition on APS1 (#4920)
* [ADF-4735] - Automation for visiblity condition on APS1 * [ADF-4735] - remove unused class and change click actions method * [ADF-4735] - PR changes * [ADF-4735] - PR changes * ceck undefined smart build
This commit is contained in:
committed by
Eugenio Romano
parent
123e9b2c77
commit
098577f6e5
@@ -16,7 +16,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
import { ConfigEditorPage } from '../../configEditorPage';
|
import { ConfigEditorPage } from '../../configEditorPage';
|
||||||
import { BrowserVisibility } from '@alfresco/adf-testing';
|
import { BrowserActions } from '@alfresco/adf-testing';
|
||||||
import { by, element, browser } from 'protractor';
|
import { by, element, browser } from 'protractor';
|
||||||
|
|
||||||
export class FormCloudDemoPage {
|
export class FormCloudDemoPage {
|
||||||
@@ -27,13 +27,11 @@ export class FormCloudDemoPage {
|
|||||||
configEditorPage = new ConfigEditorPage();
|
configEditorPage = new ConfigEditorPage();
|
||||||
|
|
||||||
goToEditor() {
|
goToEditor() {
|
||||||
BrowserVisibility.waitUntilElementIsVisible(this.formCloudEditor);
|
BrowserActions.click(this.formCloudEditor);
|
||||||
this.formCloudEditor.click();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
goToRenderedForm() {
|
goToRenderedForm() {
|
||||||
BrowserVisibility.waitUntilElementIsVisible(this.formCloudRender);
|
BrowserActions.click(this.formCloudRender);
|
||||||
this.formCloudRender.click();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
setConfigToEditor(text) {
|
setConfigToEditor(text) {
|
||||||
|
148
e2e/process-services/widgets/widget-visibility-condition.e2e.ts
Normal file
148
e2e/process-services/widgets/widget-visibility-condition.e2e.ts
Normal file
@@ -0,0 +1,148 @@
|
|||||||
|
/*!
|
||||||
|
* @license
|
||||||
|
* Copyright 2019 Alfresco Software, Ltd.
|
||||||
|
*
|
||||||
|
* 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 { AlfrescoApiCompatibility as AlfrescoApi } from '@alfresco/js-api';
|
||||||
|
import { LoginPage, Widget, BrowserActions } from '@alfresco/adf-testing';
|
||||||
|
import { browser } from 'protractor';
|
||||||
|
import resources = require('../../util/resources');
|
||||||
|
import { UsersActions } from '../../actions/users.actions';
|
||||||
|
import CONSTANTS = require('../../util/constants');
|
||||||
|
import { AppsActions } from '../../actions/APS/apps.actions';
|
||||||
|
import { TasksPage } from '../../pages/adf/process-services/tasksPage';
|
||||||
|
|
||||||
|
const widgets = {
|
||||||
|
textOneId: 'text1',
|
||||||
|
textTwoId: 'text2'
|
||||||
|
};
|
||||||
|
|
||||||
|
const value = {
|
||||||
|
displayCheckbox: 'showCheck',
|
||||||
|
displayFieldVariableCheckbox: 'showCheckText1',
|
||||||
|
showVariableFieldCheckbox: 'showCheckText1',
|
||||||
|
notDisplayCheckbox: 'anythingElse',
|
||||||
|
displayVariableValueCheckbox: 'showCheck2'
|
||||||
|
};
|
||||||
|
|
||||||
|
const checkbox = {
|
||||||
|
checkboxFieldValue : 'text1value',
|
||||||
|
checkboxVariableField: 'variablefield',
|
||||||
|
checkboxFieldVariable: 'text1variable',
|
||||||
|
checkboxFieldField: 'text1text2',
|
||||||
|
checkboxVariableValue: 'variablevalue',
|
||||||
|
checkboxVariableVariable: 'variablevariable'
|
||||||
|
};
|
||||||
|
|
||||||
|
describe('Process-Services - Visibility conditions', () => {
|
||||||
|
|
||||||
|
const loginPage = new LoginPage();
|
||||||
|
|
||||||
|
let processUserModel;
|
||||||
|
const taskPage = new TasksPage();
|
||||||
|
const widget = new Widget();
|
||||||
|
let alfrescoJsApi;
|
||||||
|
const appsActions = new AppsActions();
|
||||||
|
let appModel;
|
||||||
|
const app = resources.Files.WIDGET_CHECK_APP.VISIBILITY;
|
||||||
|
let deployedApp, process;
|
||||||
|
|
||||||
|
beforeAll(async (done) => {
|
||||||
|
const users = new UsersActions();
|
||||||
|
|
||||||
|
alfrescoJsApi = new AlfrescoApi({
|
||||||
|
provider: 'BPM',
|
||||||
|
hostBpm: browser.params.testConfig.adf.url
|
||||||
|
});
|
||||||
|
|
||||||
|
await alfrescoJsApi.login(browser.params.testConfig.adf.adminEmail, browser.params.testConfig.adf.adminPassword);
|
||||||
|
|
||||||
|
processUserModel = await users.createTenantAndUser(alfrescoJsApi);
|
||||||
|
|
||||||
|
await alfrescoJsApi.login(processUserModel.email, processUserModel.password);
|
||||||
|
appModel = await appsActions.importPublishDeployApp(alfrescoJsApi, resources.Files.WIDGET_CHECK_APP.file_location);
|
||||||
|
|
||||||
|
const appDefinitions = await alfrescoJsApi.activiti.appsApi.getAppDefinitions();
|
||||||
|
deployedApp = appDefinitions.data.find((currentApp) => {
|
||||||
|
return currentApp.modelId === appModel.id;
|
||||||
|
});
|
||||||
|
process = await appsActions.startProcess(alfrescoJsApi, appModel, app.processName);
|
||||||
|
await loginPage.loginToProcessServicesUsingUserModel(processUserModel);
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
const urlToNavigateTo = `${browser.params.testConfig.adf.url}/activiti/apps/${deployedApp.id}/tasks/`;
|
||||||
|
BrowserActions.getUrl(urlToNavigateTo);
|
||||||
|
taskPage.filtersPage().goToFilter(CONSTANTS.TASK_FILTERS.MY_TASKS);
|
||||||
|
taskPage.formFields().checkFormIsDisplayed();
|
||||||
|
});
|
||||||
|
|
||||||
|
afterAll(async (done) => {
|
||||||
|
await alfrescoJsApi.activiti.processApi.deleteProcessInstance(process.id);
|
||||||
|
await alfrescoJsApi.login(browser.params.testConfig.adf.adminEmail, browser.params.testConfig.adf.adminPassword);
|
||||||
|
await alfrescoJsApi.activiti.adminTenantsApi.deleteTenant(processUserModel.tenantId);
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('[C309647] Should be able to see Checkbox widget when visibility condition refers to another field with specific value', () => {
|
||||||
|
|
||||||
|
expect(widget.textWidget().isWidgetVisible(widgets.textOneId)).toBe(true);
|
||||||
|
expect(widget.checkboxWidget().isCheckboxHidden(checkbox.checkboxFieldValue)).toBe(true);
|
||||||
|
widget.textWidget().setValue(widgets.textOneId, value.displayCheckbox);
|
||||||
|
expect(widget.checkboxWidget().isCheckboxDisplayed(checkbox.checkboxFieldValue)).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('[C309648] Should be able to see Checkbox widget when visibility condition refers to a form variable and a field', () => {
|
||||||
|
|
||||||
|
widget.textWidget().isWidgetVisible(widgets.textOneId);
|
||||||
|
expect(widget.checkboxWidget().isCheckboxHidden(checkbox.checkboxVariableField)).toBe(true);
|
||||||
|
|
||||||
|
widget.textWidget().setValue(widgets.textOneId, value.showVariableFieldCheckbox);
|
||||||
|
expect(widget.checkboxWidget().isCheckboxDisplayed(checkbox.checkboxVariableField)).toBe(true);
|
||||||
|
|
||||||
|
widget.textWidget().setValue(widgets.textOneId, value.notDisplayCheckbox);
|
||||||
|
expect(widget.checkboxWidget().isCheckboxHidden(checkbox.checkboxVariableField)).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('[C309649] Should be able to see Checkbox widget when visibility condition refers to a field and a form variable', () => {
|
||||||
|
|
||||||
|
widget.textWidget().isWidgetVisible(widgets.textOneId);
|
||||||
|
expect(widget.checkboxWidget().isCheckboxHidden(checkbox.checkboxFieldVariable)).toBe(true);
|
||||||
|
|
||||||
|
widget.textWidget().setValue(widgets.textOneId, value.displayFieldVariableCheckbox);
|
||||||
|
expect(widget.checkboxWidget().isCheckboxDisplayed(checkbox.checkboxFieldVariable)).toBe(true);
|
||||||
|
|
||||||
|
widget.textWidget().setValue(widgets.textOneId, value.notDisplayCheckbox);
|
||||||
|
widget.checkboxWidget().isCheckboxHidden(checkbox.checkboxFieldVariable);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('[C311425] Should be able to see Checkbox widget when visibility condition refers to a field and another field', () => {
|
||||||
|
|
||||||
|
widget.textWidget().isWidgetVisible(widgets.textOneId);
|
||||||
|
expect(widget.checkboxWidget().isCheckboxHidden(checkbox.checkboxFieldField)).toBe(true);
|
||||||
|
widget.textWidget().setValue(widgets.textOneId, value.displayCheckbox);
|
||||||
|
widget.textWidget().setValue(widgets.textTwoId, value.displayCheckbox);
|
||||||
|
expect(widget.checkboxWidget().isCheckboxDisplayed(checkbox.checkboxFieldField)).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('[C311424] Should be able to see Checkbox widget when visibility condition refers to a variable with specific value', () => {
|
||||||
|
expect(widget.checkboxWidget().isCheckboxDisplayed(checkbox.checkboxVariableValue)).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('[C311426] Should be able to see Checkbox widget when visibility condition refers to form variable and another form variable', () => {
|
||||||
|
expect(widget.checkboxWidget().isCheckboxDisplayed(checkbox.checkboxVariableVariable)).toBe(true);
|
||||||
|
});
|
||||||
|
});
|
Binary file not shown.
@@ -225,6 +225,12 @@ exports.Files = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
VISIBILITY: {
|
||||||
|
formName: "visibility-process",
|
||||||
|
title: "visibility-process",
|
||||||
|
processName: "visibility-process"
|
||||||
|
},
|
||||||
|
|
||||||
AMOUNT: {
|
AMOUNT: {
|
||||||
formName: "AmountProcess",
|
formName: "AmountProcess",
|
||||||
title: "AmountProcess",
|
title: "AmountProcess",
|
||||||
|
@@ -42,12 +42,12 @@ export class FormFields {
|
|||||||
|
|
||||||
checkWidgetIsVisible(fieldId) {
|
checkWidgetIsVisible(fieldId) {
|
||||||
const fieldElement = element.all(by.css(`adf-form-field div[id='field-${fieldId}-container']`)).first();
|
const fieldElement = element.all(by.css(`adf-form-field div[id='field-${fieldId}-container']`)).first();
|
||||||
BrowserVisibility.waitUntilElementIsOnPage(fieldElement);
|
return BrowserVisibility.waitUntilElementIsOnPage(fieldElement);
|
||||||
}
|
}
|
||||||
|
|
||||||
checkWidgetIsHidden(fieldId) {
|
checkWidgetIsHidden(fieldId) {
|
||||||
const hiddenElement = element(by.css(`adf-form-field div[id='field-${fieldId}-container'][hidden]`));
|
const hiddenElement = element(by.css(`adf-form-field div[id='field-${fieldId}-container'][hidden]`));
|
||||||
BrowserVisibility.waitUntilElementIsVisible(hiddenElement);
|
return BrowserVisibility.waitUntilElementIsVisible(hiddenElement);
|
||||||
}
|
}
|
||||||
|
|
||||||
checkWidgetIsNotHidden(fieldId) {
|
checkWidgetIsNotHidden(fieldId) {
|
||||||
|
Reference in New Issue
Block a user