2020-07-03 17:25:23 +00:00
|
|
|
/// <reference types="Cypress" />
|
|
|
|
/* globals cy, expect */
|
|
|
|
|
|
|
|
context('Edit Job Offer Browser Testing', () => {
|
|
|
|
let jobDate = '',
|
|
|
|
jobTitle = 'Edited Test Job Offer ',
|
|
|
|
description = 'Edited Test Description ',
|
|
|
|
menuQuery = [
|
|
|
|
'solid-display.job-board__list',
|
|
|
|
'solid-display:last-child'
|
|
|
|
];
|
|
|
|
before(() => {
|
|
|
|
cy.nextYear(2).then(year => {
|
|
|
|
jobDate = year + '-12-31';
|
|
|
|
});
|
|
|
|
cy.randomNum().then(num => {
|
|
|
|
jobTitle += num;
|
|
|
|
description += num;
|
|
|
|
});
|
2020-07-08 13:41:05 +00:00
|
|
|
cy.clearLocalStorageSnapshot();
|
2020-07-03 17:25:23 +00:00
|
|
|
cy.clearLocalStorage({ domain: null });
|
|
|
|
cy.clearCookies({ domain: null });
|
|
|
|
});
|
2020-07-08 13:41:05 +00:00
|
|
|
beforeEach(() => cy.restoreLocalStorage());
|
|
|
|
afterEach(() => cy.saveLocalStorage());
|
2020-07-03 17:25:23 +00:00
|
|
|
it('should visit user login screen', () => cy.userLogin());
|
2020-07-16 13:50:16 +00:00
|
|
|
it('should login', () => cy.login());
|
2020-07-03 17:25:23 +00:00
|
|
|
describe('Job Offer Edition process', () => {
|
2020-09-17 11:08:44 +00:00
|
|
|
it('should visit the job offers list screen', () => {
|
|
|
|
cy.visit('/job-offers');
|
|
|
|
cy.location().should((loc) => {
|
|
|
|
expect(loc.pathname).to.eq('/job-offers');
|
|
|
|
});
|
|
|
|
});
|
2020-07-16 13:50:16 +00:00
|
|
|
it('should visit the last job offer edit screen', () => {
|
2020-07-03 17:25:23 +00:00
|
|
|
cy.get(menuQuery.join(' '))
|
|
|
|
.invoke('attr', 'data-src')
|
|
|
|
.then(url => cy.encodeUrl(url).then(id => {
|
2020-09-17 11:08:44 +00:00
|
|
|
cy.visit('/job-offers/job-offers-edit/@' + id);
|
|
|
|
cy.location().should((loc) => {
|
|
|
|
expect(loc.pathname).to.eq('/job-offers/job-offers-edit/@' + id);
|
|
|
|
});
|
2020-07-03 17:25:23 +00:00
|
|
|
}));
|
|
|
|
});
|
|
|
|
it('should enter new job offer data', () => {
|
|
|
|
cy.get('#job-offers-edit input[name="closingDate"]').clear().type(jobDate);
|
|
|
|
cy.get('#job-offers-edit input[name="closingDate"]').should('have.value', jobDate);
|
|
|
|
cy.get('#job-offers-edit input[name="title"]').clear().type(jobTitle);
|
|
|
|
cy.get('#job-offers-edit input[name="title"]').should('have.value', jobTitle);
|
|
|
|
cy.get('#job-offers-edit textarea[name="description"]').clear().type(description);
|
|
|
|
cy.get('#job-offers-edit textarea[name="description"]').should('have.value', description);
|
|
|
|
});
|
|
|
|
it('should click button to save the job offer', () => {
|
|
|
|
cy.get('#job-offers-edit input[type="submit"]').click();
|
|
|
|
});
|
|
|
|
it('should land on job offers list screen', () => {
|
|
|
|
cy.location().should((loc) => {
|
|
|
|
expect(loc.pathname).to.eq('/job-offers');
|
|
|
|
});
|
|
|
|
});
|
2020-07-16 13:50:16 +00:00
|
|
|
it('should show edited job offer data on job offer information screen', () => {
|
2020-07-03 17:25:23 +00:00
|
|
|
cy.contains('solid-display-value[name="title"]', jobTitle).should("exist");
|
|
|
|
cy.contains('solid-display-value[name="description"]', description).should("exist");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|