blob: 1b9f07830814215f3a5e537a57b4f7321eff9f8f [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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, by, element } from 'protractor';
import { randomize } from '../config';
import { BasePage } from './BasePage.po';
import { SideNavigationPage } from './SideNavigationPage.po';
interface CreateServiceCategory {
Name: string;
validationMessage?: string;
}
interface UpdateServiceCategory {
description: string;
NewName: string;
validationMessage?: string;
}
interface DeleteServiceCategory {
Name: string;
validationMessage?: string;
}
export class ServiceCategoriesPage extends BasePage {
private btnCreateServiceCategories = element(by.name("createServiceCategoryButton"));
private txtSearch = element(by.id('serviceCategoriesTable_filter')).element(by.css('label input'));
private txtName = element(by.id('name'));
private btnDelete = element(by.buttonText('Delete'));
private txtConfirmName = element(by.name('confirmWithNameInput'));
private randomize = randomize;
async OpenServicesMenu() {
let snp = new SideNavigationPage();
await snp.ClickServicesMenu();
}
async OpenServiceCategoriesPage() {
let snp = new SideNavigationPage();
await snp.NavigateToServiceCategoriesPage();
}
public async CreateServiceCategories(serviceCategories: CreateServiceCategory): Promise<boolean> {
let result = false;
let basePage = new BasePage();
await this.btnCreateServiceCategories.click();
await this.txtName.sendKeys(serviceCategories.Name + this.randomize);
await basePage.ClickCreate();
result = await basePage.GetOutputMessage().then(function (value) {
if (serviceCategories.validationMessage == value) {
return true;
} else {
return false;
}
})
return result;
}
public async SearchServiceCategories(nameServiceCategories: string): Promise<boolean> {
let name = nameServiceCategories + this.randomize;
await this.txtSearch.clear();
await this.txtSearch.sendKeys(name);
if (await browser.isElementPresent(element(by.xpath("//td[@data-search='^" + name + "$']"))) == true) {
await element(by.xpath("//td[@data-search='^" + name + "$']")).click();
return true;
}
return false;
}
public async UpdateServiceCategories(serviceCategories: UpdateServiceCategory): Promise<boolean | undefined> {
let basePage = new BasePage();
switch (serviceCategories.description) {
case "update service categories name":
await this.txtName.clear();
await this.txtName.sendKeys(serviceCategories.NewName + this.randomize);
await basePage.ClickUpdate();
break;
default:
return undefined;
}
return await basePage.GetOutputMessage().then(value => serviceCategories.validationMessage === value || (serviceCategories.validationMessage !== undefined && value.includes(serviceCategories.validationMessage)));
}
public async DeleteServiceCategories(serviceCategories: DeleteServiceCategory): Promise<boolean> {
let name = serviceCategories.Name + this.randomize;
let result = false;
let basePage = new BasePage();
await this.btnDelete.click();
await this.txtConfirmName.sendKeys(name);
await basePage.ClickDeletePermanently();
result = await basePage.GetOutputMessage().then(function (value) {
if (serviceCategories.validationMessage == value) {
return true;
} else {
return false;
}
})
return result;
}
}