salix/e2e/paths/item-module/06_create_item_botanical.sp...

146 lines
5.8 KiB
JavaScript
Raw Normal View History

2018-02-21 11:02:47 +00:00
import selectors from '../../helpers/selectors.js';
import createNightmare from '../../helpers/nightmare';
2018-02-21 11:02:47 +00:00
describe('Item', () => {
describe('Create botanical path', () => {
const nightmare = createNightmare();
2018-02-21 11:02:47 +00:00
beforeAll(() => {
return nightmare
2018-10-11 07:14:26 +00:00
.waitForLogin('buyer');
});
2018-10-22 15:12:41 +00:00
it('should access to the items index by clicking the items button', done => {
return nightmare
.click(selectors.moduleAccessView.itemsSectionButton)
.wait(selectors.itemsIndex.createItemButton)
.parsedUrl()
.then(url => {
expect(url.hash).toEqual('#!/item/index');
2018-10-22 15:12:41 +00:00
done();
}).catch(done.fail);
2018-02-21 11:02:47 +00:00
});
2018-10-22 15:12:41 +00:00
it('should search for the item Mjolnir', done => {
return nightmare
.wait(selectors.itemsIndex.searchResult)
.type(selectors.itemsIndex.searchItemInput, 'Mjolnir')
.click(selectors.itemsIndex.searchButton)
.waitForNumberOfElements(selectors.itemsIndex.searchResult, 1)
.countElement(selectors.itemsIndex.searchResult)
.then(result => {
expect(result).toEqual(1);
2018-10-22 15:12:41 +00:00
done();
}).catch(done.fail);
2018-02-21 11:02:47 +00:00
});
2018-10-22 15:12:41 +00:00
it(`should click on the search result to access to the item botanical`, done => {
return nightmare
.waitForTextInElement(selectors.itemsIndex.searchResult, 'Mjolnir')
.waitToClick(selectors.itemsIndex.searchResult)
.waitToClick(selectors.itemBotanical.botanicalButton)
.waitForURL('botanical')
.url()
.then(url => {
expect(url).toContain('botanical');
2018-10-22 15:12:41 +00:00
done();
}).catch(done.fail);
2018-02-21 11:02:47 +00:00
});
2018-10-22 15:12:41 +00:00
it(`should create a new botanical for the item with id Mjolnir`, done => {
return nightmare
.type(selectors.itemBotanical.botanicalInput, 'Cicuta maculata')
.waitToClick(selectors.itemBotanical.genusSelect)
.waitToClick(selectors.itemBotanical.genusSelectOptionOne)
.waitToClick(selectors.itemBotanical.speciesSelect)
.waitToClick(selectors.itemBotanical.speciesSelectOptionOne)
.waitToClick(selectors.itemBotanical.submitBotanicalButton)
.waitForLastSnackbar()
.then(result => {
expect(result).toEqual('Data saved!');
2018-10-22 15:12:41 +00:00
done();
}).catch(done.fail);
2018-02-21 11:02:47 +00:00
});
2018-10-22 15:12:41 +00:00
it(`should confirm the botanical for item Mjolnir was created`, done => {
return nightmare
.click(selectors.itemBasicData.basicDataButton)
.wait(selectors.itemBasicData.nameInput)
.click(selectors.itemBotanical.botanicalButton)
.waitForTextInInput(selectors.itemBotanical.botanicalInput, 'Cicuta maculata')
.getInputValue(selectors.itemBotanical.botanicalInput)
.then(result => {
expect(result).toEqual('Cicuta maculata');
2018-10-22 15:12:41 +00:00
done();
}).catch(done.fail);
2018-02-21 11:02:47 +00:00
});
2018-10-22 15:12:41 +00:00
it(`should confirm the Genus for item Mjolnir was created`, done => {
return nightmare
.waitForTextInInput(selectors.itemBotanical.genusSelect, 'Abelia')
.getInputValue(selectors.itemBotanical.genusSelect)
.then(result => {
expect(result).toEqual('Abelia');
2018-10-22 15:12:41 +00:00
done();
}).catch(done.fail);
2018-02-21 11:02:47 +00:00
});
2018-10-22 15:12:41 +00:00
it(`should confirm the Species for item Mjolnir was created`, done => {
return nightmare
.getInputValue(selectors.itemBotanical.speciesSelect)
.then(result => {
expect(result).toEqual('dealbata');
2018-10-22 15:12:41 +00:00
done();
}).catch(done.fail);
2018-02-21 11:02:47 +00:00
});
2018-02-21 11:47:48 +00:00
2018-10-22 15:12:41 +00:00
it(`should edit botanical for the item Mjolnir`, done => {
return nightmare
.clearInput(selectors.itemBotanical.botanicalInput)
.type(selectors.itemBotanical.botanicalInput, 'Herp Derp')
.waitToClick(selectors.itemBotanical.genusSelect)
.waitToClick(selectors.itemBotanical.genusSelectOptionTwo)
.waitToClick(selectors.itemBotanical.speciesSelect)
.waitToClick(selectors.itemBotanical.speciesSelectOptionTwo)
.waitToClick(selectors.itemBotanical.submitBotanicalButton)
.waitForLastSnackbar()
.then(result => {
expect(result).toEqual('Data saved!');
2018-10-22 15:12:41 +00:00
done();
}).catch(done.fail);
2018-02-21 11:47:48 +00:00
});
2018-10-22 15:12:41 +00:00
it(`should confirm the botanical for item Mjolnir was edited`, done => {
return nightmare
.click(selectors.itemBasicData.basicDataButton)
.wait(selectors.itemBasicData.nameInput)
.click(selectors.itemBotanical.botanicalButton)
.waitForTextInInput(selectors.itemBotanical.botanicalInput, 'Herp Derp')
.getInputValue(selectors.itemBotanical.botanicalInput)
.then(result => {
expect(result).toEqual('Herp Derp');
2018-10-22 15:12:41 +00:00
done();
}).catch(done.fail);
2018-02-21 11:47:48 +00:00
});
2018-10-22 15:12:41 +00:00
it(`should confirm the Genus for item Mjolnir was edited`, done => {
return nightmare
.waitForTextInInput(selectors.itemBotanical.genusSelect, 'Abies')
.getInputValue(selectors.itemBotanical.genusSelect)
.then(result => {
expect(result).toEqual('Abies');
2018-10-22 15:12:41 +00:00
done();
}).catch(done.fail);
2018-02-21 11:47:48 +00:00
});
2018-10-22 15:12:41 +00:00
it(`should confirm the Species for item Mjolnir was edited`, done => {
return nightmare
.getInputValue(selectors.itemBotanical.speciesSelect)
.then(result => {
expect(result).toEqual('decurrens');
2018-10-22 15:12:41 +00:00
done();
}).catch(done.fail);
2018-02-21 11:47:48 +00:00
});
});
2018-02-21 11:02:47 +00:00
});