2018-03-22 14:01:36 +00:00
|
|
|
import selectors from '../../helpers/selectors.js';
|
|
|
|
import createNightmare from '../../helpers/helpers';
|
|
|
|
|
2018-04-05 06:55:47 +00:00
|
|
|
describe('Ticket', () => {
|
|
|
|
describe('Delete expeditions path', () => {
|
|
|
|
const nightmare = createNightmare();
|
2018-03-22 14:01:36 +00:00
|
|
|
|
2018-04-05 06:55:47 +00:00
|
|
|
beforeAll(() => {
|
|
|
|
return nightmare
|
2018-10-11 07:14:26 +00:00
|
|
|
.waitForLogin('production');
|
2018-04-05 06:55:47 +00:00
|
|
|
});
|
2018-03-22 14:01:36 +00:00
|
|
|
|
2018-10-22 15:12:41 +00:00
|
|
|
it('should access to the tickets index by clicking the tickets button', done => {
|
2018-04-05 06:55:47 +00:00
|
|
|
return nightmare
|
|
|
|
.click(selectors.moduleAccessView.ticketsSectionButton)
|
2018-10-20 10:07:48 +00:00
|
|
|
.wait(selectors.ticketsIndex.searchResult)
|
2018-04-05 06:55:47 +00:00
|
|
|
.parsedUrl()
|
|
|
|
.then(url => {
|
2018-05-25 08:03:45 +00:00
|
|
|
expect(url.hash).toEqual('#!/ticket/index');
|
2018-10-22 15:12:41 +00:00
|
|
|
done();
|
|
|
|
}).catch(done.fail);
|
2018-03-22 14:01:36 +00:00
|
|
|
});
|
|
|
|
|
2018-10-22 15:12:41 +00:00
|
|
|
it('should search for the ticket with id 1', done => {
|
2018-04-05 06:55:47 +00:00
|
|
|
return nightmare
|
|
|
|
.wait(selectors.ticketsIndex.searchTicketInput)
|
2018-06-07 21:47:19 +00:00
|
|
|
.type(selectors.ticketsIndex.searchTicketInput, 'id:1')
|
2018-04-05 06:55:47 +00:00
|
|
|
.click(selectors.ticketsIndex.searchButton)
|
|
|
|
.waitForNumberOfElements(selectors.ticketsIndex.searchResult, 1)
|
2018-08-02 12:04:46 +00:00
|
|
|
.countElement(selectors.ticketsIndex.searchResult)
|
2018-04-05 06:55:47 +00:00
|
|
|
.then(result => {
|
|
|
|
expect(result).toEqual(1);
|
2018-10-22 15:12:41 +00:00
|
|
|
done();
|
|
|
|
}).catch(done.fail);
|
2018-03-22 14:01:36 +00:00
|
|
|
});
|
|
|
|
|
2018-10-22 15:12:41 +00:00
|
|
|
it(`should click on the search result to access to the ticket expeditions`, done => {
|
2018-04-05 06:55:47 +00:00
|
|
|
return nightmare
|
|
|
|
.waitForTextInElement(selectors.ticketsIndex.searchResult, '1')
|
|
|
|
.waitToClick(selectors.ticketsIndex.searchResult)
|
|
|
|
.waitToClick(selectors.ticketExpedition.expeditionButton)
|
|
|
|
.waitForURL('expedition')
|
|
|
|
.url()
|
|
|
|
.then(url => {
|
|
|
|
expect(url).toContain('expedition');
|
2018-10-22 15:12:41 +00:00
|
|
|
done();
|
|
|
|
}).catch(done.fail);
|
2018-03-22 14:01:36 +00:00
|
|
|
});
|
|
|
|
|
2018-10-22 15:12:41 +00:00
|
|
|
it(`should delete a former expedition and confirm the remaining expedition is the expected one`, done => {
|
2018-04-05 06:55:47 +00:00
|
|
|
return nightmare
|
|
|
|
.waitToClick(selectors.ticketExpedition.secondExpeditionRemoveButton)
|
|
|
|
.click(selectors.ticketPackages.packagesButton)
|
|
|
|
.wait(selectors.ticketPackages.firstPackageSelect)
|
|
|
|
.click(selectors.ticketExpedition.expeditionButton)
|
|
|
|
.wait(selectors.ticketExpedition.secondExpeditionText)
|
|
|
|
.getInnerText(selectors.ticketExpedition.secondExpeditionText)
|
|
|
|
.then(value => {
|
|
|
|
expect(value).toContain('Iron Patriot');
|
|
|
|
expect(value).toContain('root');
|
2018-10-22 15:12:41 +00:00
|
|
|
done();
|
|
|
|
}).catch(done.fail);
|
2018-03-22 14:01:36 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|