mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
* in progress * moved UserInfoDialogPage, AppListCloudPage, LoginSSOPage and TabsPage. ADF-4166 * moved UserInfoDialogPage, AppListCloudPage, LoginSSOPage and TabsPage. ADF-4166 * linting fixes * crc's * crc's * added adf-testing to package.json file * fix for failing unit tests * fixes * test failure fixes * test failure fixes * reverted ot old location pages/adf/navigationBarPage * added the testing variable to affected-libs file and changed the version to 3.1.0-beta5 and added the missing adf-content-services dependency. * Fix the material export * Remove the reference to the tse2econfig not allowed * fix failing test * Update user-info.page.ts
167 lines
7.8 KiB
TypeScript
167 lines
7.8 KiB
TypeScript
/*!
|
|
* @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 { LoginSSOPage } from '@alfresco/adf-testing';
|
|
import { SettingsPage } from '../pages/adf/settingsPage';
|
|
import { AppListCloudPage } from '@alfresco/adf-testing';
|
|
import TestConfig = require('../test.config');
|
|
import { NavigationBarPage } from '../pages/adf/navigationBarPage';
|
|
import { TasksCloudDemoPage } from '../pages/adf/demo-shell/process-services/tasksCloudDemoPage';
|
|
import { StartTasksCloudComponent } from '../pages/adf/process-cloud/startTasksCloudComponent';
|
|
import { Util } from '../util/util';
|
|
import { PeopleCloudComponent } from '../pages/adf/process-cloud/peopleCloudComponent';
|
|
import { TaskDetailsPage } from '../pages/adf/demo-shell/process-services/taskDetailsPage';
|
|
import { browser } from 'protractor';
|
|
|
|
describe('Start Task', () => {
|
|
|
|
const settingsPage = new SettingsPage();
|
|
const loginSSOPage = new LoginSSOPage();
|
|
const taskDetailsPage = new TaskDetailsPage();
|
|
const navigationBarPage = new NavigationBarPage();
|
|
const appListCloudComponent = new AppListCloudPage();
|
|
const tasksCloudDemoPage = new TasksCloudDemoPage();
|
|
const startTask = new StartTasksCloudComponent();
|
|
const peopleCloudComponent = new PeopleCloudComponent();
|
|
const standaloneTaskName = Util.generateRandomString(5);
|
|
const unassignedTaskName = Util.generateRandomString(5);
|
|
const taskName255Characters = Util.generateRandomString(255);
|
|
const taskNameBiggerThen255Characters = Util.generateRandomString(256);
|
|
const lengthValidationError = 'Length exceeded, 255 characters max.';
|
|
const requiredError = 'Field required';
|
|
const dateValidationError = 'Date format DD/MM/YYYY';
|
|
const user = TestConfig.adf.adminEmail, password = TestConfig.adf.adminPassword;
|
|
const appName = 'simple-app';
|
|
let silentLogin;
|
|
|
|
beforeAll((done) => {
|
|
silentLogin = false;
|
|
settingsPage.setProviderBpmSso(TestConfig.adf.hostBPM, TestConfig.adf.hostSso, TestConfig.adf.hostIdentity, silentLogin);
|
|
loginSSOPage.clickOnSSOButton();
|
|
browser.ignoreSynchronization = true;
|
|
loginSSOPage.loginAPS(user, password);
|
|
navigationBarPage.navigateToProcessServicesCloudPage();
|
|
appListCloudComponent.checkApsContainer();
|
|
appListCloudComponent.checkAppIsDisplayed(appName);
|
|
appListCloudComponent.goToApp(appName);
|
|
tasksCloudDemoPage.taskListCloudComponent().getDataTable().waitForTableBody();
|
|
done();
|
|
});
|
|
|
|
it('[C290166] Should be possible to cancel a task', () => {
|
|
tasksCloudDemoPage.openNewTaskForm();
|
|
startTask.checkFormIsDisplayed();
|
|
startTask.checkStartButtonIsDisabled()
|
|
.blur(startTask.name)
|
|
.checkValidationErrorIsDisplayed(requiredError);
|
|
startTask.addName(standaloneTaskName)
|
|
.addDescription('descriptions')
|
|
.addDueDate('12/12/2018');
|
|
startTask.checkStartButtonIsEnabled();
|
|
startTask.clickCancelButton();
|
|
tasksCloudDemoPage.taskListCloudComponent().checkContentIsNotDisplayedByName(standaloneTaskName);
|
|
});
|
|
|
|
it('[C290180] Should be able to create a new standalone task', () => {
|
|
tasksCloudDemoPage.openNewTaskForm();
|
|
startTask.checkFormIsDisplayed();
|
|
startTask.addName(standaloneTaskName)
|
|
.addDescription('descriptions')
|
|
.addDueDate('12/12/2018')
|
|
.addPriority('50')
|
|
.clickStartButton();
|
|
tasksCloudDemoPage.taskListCloudComponent().checkContentIsDisplayedByName(standaloneTaskName);
|
|
});
|
|
|
|
it('[C290181] Should be displayed an error message if task name exceed 255 characters', () => {
|
|
tasksCloudDemoPage.openNewTaskForm();
|
|
startTask.checkFormIsDisplayed();
|
|
startTask.addName(taskName255Characters)
|
|
.checkStartButtonIsEnabled();
|
|
startTask.addName(taskNameBiggerThen255Characters)
|
|
.blur(startTask.name)
|
|
.checkValidationErrorIsDisplayed(lengthValidationError)
|
|
.checkStartButtonIsDisabled()
|
|
.clickCancelButton();
|
|
});
|
|
|
|
it('[C291774] Should be displayed an error message if the date is invalid', () => {
|
|
tasksCloudDemoPage.openNewTaskForm();
|
|
startTask.addDueDate('12/12/2018')
|
|
.checkStartButtonIsEnabled();
|
|
startTask.addDueDate('invalid date')
|
|
.blur(startTask.dueDate)
|
|
.validateDate(dateValidationError)
|
|
.checkStartButtonIsDisabled()
|
|
.clickCancelButton();
|
|
});
|
|
|
|
it('[C290182] Should be possible to assign the task to another user', () => {
|
|
tasksCloudDemoPage.openNewTaskForm();
|
|
startTask.checkFormIsDisplayed();
|
|
startTask.addName(standaloneTaskName);
|
|
peopleCloudComponent.searchAssigneeAndSelect('Super Admin');
|
|
startTask.checkStartButtonIsEnabled();
|
|
startTask.clickStartButton();
|
|
tasksCloudDemoPage.myTasksFilter().clickTaskFilter();
|
|
expect(tasksCloudDemoPage.getActiveFilterName()).toBe('My Tasks');
|
|
tasksCloudDemoPage.taskListCloudComponent().checkContentIsNotDisplayedByName(standaloneTaskName);
|
|
});
|
|
|
|
it('[C291953] Assignee field should display the logged user as default', () => {
|
|
tasksCloudDemoPage.openNewTaskForm();
|
|
startTask.checkFormIsDisplayed();
|
|
expect(peopleCloudComponent.getAssignee()).toContain('Admin', 'does not contain Admin');
|
|
startTask.clickCancelButton();
|
|
});
|
|
|
|
it('[C291956] Should be able to create a new standalone task without assignee', () => {
|
|
tasksCloudDemoPage.openNewTaskForm();
|
|
startTask.checkFormIsDisplayed();
|
|
startTask.clearField(peopleCloudComponent.peopleCloudSearch);
|
|
startTask.addName(unassignedTaskName);
|
|
startTask.clickStartButton();
|
|
startTask.checkStartButtonIsEnabled();
|
|
tasksCloudDemoPage.editTaskFilterCloudComponent()
|
|
.clickCustomiseFilterHeader()
|
|
.setStateFilterDropDown('CREATED')
|
|
.clearAssignment();
|
|
tasksCloudDemoPage.taskListCloudComponent().checkContentIsDisplayedByName(unassignedTaskName);
|
|
});
|
|
|
|
it('[C297675] Should create a task unassigned when assignee field is empty in Start Task form', () => {
|
|
|
|
tasksCloudDemoPage.openNewTaskForm();
|
|
startTask.checkFormIsDisplayed();
|
|
startTask.addName(unassignedTaskName);
|
|
startTask.clearField(peopleCloudComponent.peopleCloudSearch);
|
|
startTask.clickStartButton();
|
|
tasksCloudDemoPage.editTaskFilterCloudComponent()
|
|
.clickCustomiseFilterHeader()
|
|
.clearAssignment()
|
|
.setStateFilterDropDown('CREATED');
|
|
tasksCloudDemoPage.taskListCloudComponent().getDataTable().waitForTableBody();
|
|
tasksCloudDemoPage.taskListCloudComponent().checkContentIsDisplayedByName(unassignedTaskName);
|
|
let taskId = tasksCloudDemoPage.taskListCloudComponent().getIdCellValue(unassignedTaskName);
|
|
tasksCloudDemoPage.taskListCloudComponent().getRow(unassignedTaskName).click();
|
|
expect(taskDetailsPage.getTaskDetailsHeader()).toContain(taskId);
|
|
expect(taskDetailsPage.getPropertyLabel('assignee')).toBe('Assignee');
|
|
expect(taskDetailsPage.getPropertyValue('assignee')).toBe('No assignee');
|
|
});
|
|
|
|
});
|