mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
* Add APS1 calls to adf testing package * no message * Change to use AlfrescoApi instead of ApiService * Refactor process-services tests to use API calls implementation from testing package * Fix resource file * no message * Fix widget tests * Fix tests * no message * Unblocking travis
84 lines
3.7 KiB
TypeScript
84 lines
3.7 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 { browser } from 'protractor';
|
|
import { AlfrescoApiCompatibility as AlfrescoApi } from '@alfresco/js-api';
|
|
import { UsersActions } from '../actions/users.actions';
|
|
import { ProcessServicesPage } from '../pages/adf/process-services/process-services.page';
|
|
import { AppsActions } from '../actions/APS/apps.actions';
|
|
import { LoginPage, ApplicationService } from '@alfresco/adf-testing';
|
|
import { NavigationBarPage } from '../pages/adf/navigation-bar.page';
|
|
import { ProcessServiceTabBarPage } from '../pages/adf/process-services/process-service-tab-bar.page';
|
|
import { ProcessListPage } from '../pages/adf/process-services/process-list.page';
|
|
import { ProcessDetailsPage } from '../pages/adf/process-services/process-details.page';
|
|
import moment = require('moment');
|
|
|
|
describe('Process Instance Details', () => {
|
|
|
|
const loginPage = new LoginPage();
|
|
const navigationBarPage = new NavigationBarPage();
|
|
const processServicesPage = new ProcessServicesPage();
|
|
const processServiceTabBarPage = new ProcessServiceTabBarPage();
|
|
const processListPage = new ProcessListPage();
|
|
const processDetailsPage = new ProcessDetailsPage();
|
|
|
|
let appModel, process, user;
|
|
const app = browser.params.resources.Files.SIMPLE_APP_WITH_USER_FORM;
|
|
const PROCESS_DATE_FORMAT = 'll';
|
|
|
|
beforeAll(async () => {
|
|
const apps = new AppsActions();
|
|
const users = new UsersActions();
|
|
|
|
this.alfrescoJsApi = new AlfrescoApi({
|
|
provider: 'BPM',
|
|
hostBpm: browser.params.testConfig.adf_aps.host
|
|
});
|
|
|
|
await this.alfrescoJsApi.login(browser.params.testConfig.adf.adminEmail, browser.params.testConfig.adf.adminPassword);
|
|
|
|
user = await users.createTenantAndUser(this.alfrescoJsApi);
|
|
|
|
await this.alfrescoJsApi.login(user.email, user.password);
|
|
|
|
const applicationsService = new ApplicationService(this.alfrescoJsApi);
|
|
appModel = await applicationsService.importPublishDeployApp(app.file_path);
|
|
const processModel = await apps.startProcess(this.alfrescoJsApi, appModel, 'process');
|
|
|
|
await loginPage.loginToProcessServicesUsingUserModel(user);
|
|
|
|
await navigationBarPage.navigateToProcessServicesPage();
|
|
await processServicesPage.checkApsContainer();
|
|
await processServicesPage.goToApp(app.title);
|
|
await processServiceTabBarPage.clickProcessButton();
|
|
await processListPage.checkProcessListIsDisplayed();
|
|
|
|
process = await this.alfrescoJsApi.activiti.processApi.getProcessInstance(processModel.id);
|
|
});
|
|
|
|
afterAll(async () => {
|
|
await this.alfrescoJsApi.activiti.modelsApi.deleteModel(appModel.id);
|
|
await this.alfrescoJsApi.login(browser.params.testConfig.adf.adminEmail, browser.params.testConfig.adf.adminPassword);
|
|
await this.alfrescoJsApi.activiti.adminTenantsApi.deleteTenant(user.tenantId);
|
|
});
|
|
|
|
it('[C307031] Should display the created date in the default format', async () => {
|
|
await processDetailsPage.checkDetailsAreDisplayed();
|
|
await expect(await processDetailsPage.getCreated()).toEqual(moment(process.started).format(PROCESS_DATE_FORMAT));
|
|
});
|
|
});
|