99 lines
2.6 KiB
JavaScript
99 lines
2.6 KiB
JavaScript
var utils = require('../../../utils');
|
|
|
|
var adminAttributesHelper = require('../../../helpers').adminAttributes;
|
|
|
|
var chai = require('chai');
|
|
var chaiAsPromised = require('chai-as-promised');
|
|
|
|
chai.use(chaiAsPromised);
|
|
var expect = chai.expect;
|
|
|
|
describe('attributes - severities', function() {
|
|
before(async function(){
|
|
browser.get(browser.params.glob.host + 'project/project-0/admin/project-values/severities');
|
|
|
|
await adminAttributesHelper.waitLoad();
|
|
|
|
utils.common.takeScreenshot('attributes', 'severities');
|
|
});
|
|
|
|
it('new severity', async function() {
|
|
let section = adminAttributesHelper.getSection(0);
|
|
let rows = section.rows();
|
|
let count = await rows.count();
|
|
|
|
let formWrapper = section.openNew();
|
|
|
|
let form = adminAttributesHelper.getGenericForm(formWrapper);
|
|
|
|
await form.name().sendKeys('test test');
|
|
|
|
await form.save();
|
|
|
|
await browser.waitForAngular();
|
|
|
|
let newCount = await rows.count();
|
|
|
|
expect(newCount).to.be.equal(count + 1);
|
|
});
|
|
|
|
it('delete', async function() {
|
|
let section = adminAttributesHelper.getSection(0);
|
|
let rows = section.rows();
|
|
|
|
let count = await rows.count();
|
|
|
|
let row = rows.get(count - 1);
|
|
|
|
section.delete(row);
|
|
|
|
let el = $('.lightbox-ask-choice');
|
|
|
|
await utils.lightbox.open(el);
|
|
|
|
utils.common.takeScreenshot('attributes', 'delete-severity');
|
|
|
|
el.$('.button-green').click();
|
|
|
|
await utils.lightbox.close(el);
|
|
|
|
let newCount = await rows.count();
|
|
|
|
expect(newCount).to.be.equal(count - 1);
|
|
});
|
|
|
|
it('edit', async function() {
|
|
let section = adminAttributesHelper.getSection(0);
|
|
let rows = section.rows();
|
|
let row = rows.get(0);
|
|
|
|
await section.edit(row);
|
|
|
|
let form = adminAttributesHelper.getGenericForm(row.$('form'));
|
|
|
|
let newName = 'test test' + Date.now();
|
|
await form.name().clear();
|
|
await form.name().sendKeys(newName);
|
|
|
|
await form.save();
|
|
|
|
await browser.waitForAngular();
|
|
|
|
let newObjs = await adminAttributesHelper.getGenericNames(section.el);
|
|
|
|
expect(newObjs.indexOf(newName)).to.be.not.equal(-1);
|
|
});
|
|
|
|
it('drag', async function() {
|
|
let section = adminAttributesHelper.getSection(0);
|
|
let rows = section.rows();
|
|
let objs = await adminAttributesHelper.getGenericNames(section.el);
|
|
|
|
await utils.common.drag(rows.get(0), rows.get(2));
|
|
|
|
let newObjs = await adminAttributesHelper.getGenericNames(section.el);
|
|
|
|
expect(objs[0]).to.be.equal(newObjs[1]);
|
|
});
|
|
});
|