302 lines
11 KiB
JavaScript
302 lines
11 KiB
JavaScript
import config from '../helpers/config.js';
|
|
import createNightmare from '../helpers/nightmare';
|
|
import selectors from '../helpers/selectors.js';
|
|
import {catchErrors} from '../../services/utils/jasmineHelpers';
|
|
const nightmare = createNightmare();
|
|
const moduleAccessViewHashURL = '#!/';
|
|
|
|
jasmine.DEFAULT_TIMEOUT_INTERVAL = 10000;
|
|
|
|
describe('Edit addresses path', () => {
|
|
describe('warm up', () => {
|
|
it('should warm up login and fixtures', done => {
|
|
nightmare
|
|
.login()
|
|
.waitForURL(moduleAccessViewHashURL)
|
|
.waitToClick(selectors.globalItems.logOutButton)
|
|
.then(() => {
|
|
done();
|
|
})
|
|
.catch(catchErrors(done));
|
|
});
|
|
});
|
|
|
|
it('should log in', done => {
|
|
nightmare
|
|
.login()
|
|
.waitForURL(moduleAccessViewHashURL)
|
|
.url()
|
|
.then(url => {
|
|
expect(url).toEqual(config.url + moduleAccessViewHashURL);
|
|
done();
|
|
})
|
|
.catch(catchErrors(done));
|
|
});
|
|
|
|
it('should make sure the language is English', done => {
|
|
nightmare
|
|
.changeLanguageToEnglish()
|
|
.then(() => {
|
|
done();
|
|
})
|
|
.catch(catchErrors(done));
|
|
});
|
|
|
|
it('should click on the Clients button of the top bar menu', done => {
|
|
nightmare
|
|
.waitToClick(selectors.globalItems.applicationsMenuButton)
|
|
.wait(selectors.globalItems.applicationsMenuVisible)
|
|
.waitToClick(selectors.globalItems.clientsButton)
|
|
.wait(selectors.clientsIndex.createClientButton)
|
|
.url()
|
|
.then(url => {
|
|
expect(url).toEqual(config.url + '#!/clients');
|
|
done();
|
|
})
|
|
.catch(catchErrors(done));
|
|
});
|
|
|
|
it('should search for the user Bruce Banner', done => {
|
|
nightmare
|
|
.wait(selectors.clientsIndex.searchResult)
|
|
.type(selectors.clientsIndex.searchClientInput, 'Bruce Banner')
|
|
.click(selectors.clientsIndex.searchButton)
|
|
.waitForNumberOfElements(selectors.clientsIndex.searchResult, 1)
|
|
.countSearchResults(selectors.clientsIndex.searchResult)
|
|
.then(result => {
|
|
expect(result).toEqual(1);
|
|
done();
|
|
})
|
|
.catch(catchErrors(done));
|
|
});
|
|
|
|
it(`should click on the search result to access to the client's pay method`, done => {
|
|
nightmare
|
|
.waitForTextInElement(selectors.clientsIndex.searchResult, 'Bruce Banner')
|
|
.waitToClick(selectors.clientsIndex.searchResult)
|
|
.waitToClick(selectors.addresses.addressesButton)
|
|
.waitForURL('addresses/list')
|
|
.url()
|
|
.then(url => {
|
|
expect(url).toContain('addresses/list');
|
|
done();
|
|
})
|
|
.catch(catchErrors(done));
|
|
});
|
|
|
|
it(`should click on the add new address button to access to the new address form`, done => {
|
|
nightmare
|
|
.waitToClick(selectors.addresses.createAddress)
|
|
.waitForURL('addresses/create')
|
|
.url()
|
|
.then(url => {
|
|
expect(url).toContain('addresses/create');
|
|
done();
|
|
})
|
|
.catch(catchErrors(done));
|
|
});
|
|
|
|
it('should check the default checkbox then receive an error after clicking save button as the form is empty', done => {
|
|
nightmare
|
|
.waitToClick(selectors.addresses.defaultCheckboxInput)
|
|
.waitToClick(selectors.fiscalData.saveButton)
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
.then(result => {
|
|
expect(result).toContain('Error');
|
|
done();
|
|
})
|
|
.catch(catchErrors(done));
|
|
});
|
|
|
|
it('should receive an error when clicking the save button having all the form fields empty but consignee', done => {
|
|
nightmare
|
|
.waitForSnackbarReset()
|
|
.type(selectors.addresses.consigneeInput, 'Bruce Bunner')
|
|
.click(selectors.createClientView.createButton)
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
.then(result => {
|
|
expect(result).toContain('Error');
|
|
done();
|
|
})
|
|
.catch(catchErrors(done));
|
|
});
|
|
|
|
it('should receive an error when clicking the save button having all the form fields empty but Street', done => {
|
|
nightmare
|
|
.waitForSnackbarReset()
|
|
.clearInput(selectors.addresses.consigneeInput)
|
|
.type(selectors.addresses.streetAddressInput, '320 Park Avenue New York')
|
|
.click(selectors.createClientView.createButton)
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
.then(result => {
|
|
expect(result).toContain('Error');
|
|
done();
|
|
})
|
|
.catch(catchErrors(done));
|
|
});
|
|
|
|
it('should receive an error when clicking the save button having all the form fields empty but postcode', done => {
|
|
nightmare
|
|
.waitForSnackbarReset()
|
|
.clearInput(selectors.addresses.streetAddressInput)
|
|
.type(selectors.addresses.postcodeInput, '10022')
|
|
.click(selectors.createClientView.createButton)
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
.then(result => {
|
|
expect(result).toContain('Error');
|
|
done();
|
|
})
|
|
.catch(catchErrors(done));
|
|
});
|
|
|
|
it('should receive an error when clicking the save button having all the form fields empty but city', done => {
|
|
nightmare
|
|
.waitForSnackbarReset()
|
|
.clearInput(selectors.addresses.postcodeInput)
|
|
.type(selectors.addresses.cityInput, 'New York')
|
|
.click(selectors.createClientView.createButton)
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
.then(result => {
|
|
expect(result).toContain('Error');
|
|
done();
|
|
})
|
|
.catch(catchErrors(done));
|
|
});
|
|
|
|
it('should receive an error when clicking the save button having all the form fields empty but province', done => {
|
|
nightmare
|
|
.waitForSnackbarReset()
|
|
.clearInput(selectors.addresses.cityInput)
|
|
.waitToClick(selectors.addresses.provinceInput)
|
|
.waitToClick(selectors.addresses.provinceSecondOption)
|
|
.click(selectors.createClientView.createButton)
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
.then(result => {
|
|
expect(result).toContain('Error');
|
|
done();
|
|
})
|
|
.catch(catchErrors(done));
|
|
});
|
|
|
|
it('should receive an error when clicking the save button having all the form fields empty but province and agency', done => {
|
|
nightmare
|
|
.waitForSnackbarReset()
|
|
.waitToClick(selectors.addresses.agencyInput)
|
|
.waitToClick(selectors.addresses.agenctySecondOption)
|
|
.click(selectors.createClientView.createButton)
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
.then(result => {
|
|
expect(result).toContain('Error');
|
|
done();
|
|
})
|
|
.catch(catchErrors(done));
|
|
});
|
|
|
|
it('should receive an error when clicking the save button having all the form fields empty but province, agency and phone', done => {
|
|
nightmare
|
|
.waitForSnackbarReset()
|
|
.type(selectors.addresses.phoneInput, '999887744')
|
|
.click(selectors.createClientView.createButton)
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
.then(result => {
|
|
expect(result).toContain('Error');
|
|
done();
|
|
})
|
|
.catch(catchErrors(done));
|
|
});
|
|
|
|
it('should receive an error when clicking the save button having all the form fields empty but province, agency and mobile', done => {
|
|
nightmare
|
|
.waitForSnackbarReset()
|
|
.clearInput(selectors.addresses.phoneInput)
|
|
.type(selectors.addresses.mobileInput, '999887744')
|
|
.click(selectors.createClientView.createButton)
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
.then(result => {
|
|
expect(result).toContain('Error');
|
|
done();
|
|
})
|
|
.catch(catchErrors(done));
|
|
});
|
|
|
|
it(`should create a new address with all it's data`, done => {
|
|
nightmare
|
|
.waitForSnackbarReset()
|
|
.type(selectors.addresses.consigneeInput, 'Bruce Bunner')
|
|
.type(selectors.addresses.streetAddressInput, '320 Park Avenue New York')
|
|
.type(selectors.addresses.postcodeInput, '10022')
|
|
.type(selectors.addresses.cityInput, 'New York')
|
|
.type(selectors.addresses.phoneInput, '999887744')
|
|
.click(selectors.addresses.saveButton)
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
.then(result => {
|
|
expect(result).toContain('Data saved!');
|
|
done();
|
|
})
|
|
.catch(catchErrors(done));
|
|
});
|
|
|
|
it(`should click on the addresses button confirm the new address exists and it's the default one`, done => {
|
|
nightmare
|
|
.waitForSnackbarReset()
|
|
.waitToClick(selectors.addresses.addressesButton)
|
|
.wait(selectors.addresses.defaultAddress)
|
|
.getInnerText(selectors.addresses.defaultAddress)
|
|
.then(result => {
|
|
expect(result).toContain('320 Park Avenue New York');
|
|
done();
|
|
})
|
|
.catch(catchErrors(done));
|
|
});
|
|
|
|
it(`should click on the make default icon of the second address then confirm it is the default one now`, done => {
|
|
nightmare
|
|
.waitForSnackbarReset()
|
|
.waitToClick(selectors.addresses.secondMakeDefaultStar)
|
|
.waitForTextInElement(selectors.addresses.defaultAddress, 'Somewhere in Thailand')
|
|
.getInnerText(selectors.addresses.defaultAddress)
|
|
.then(result => {
|
|
expect(result).toContain('Somewhere in Thailand');
|
|
done();
|
|
})
|
|
.catch(catchErrors(done));
|
|
});
|
|
|
|
it(`should click on the edit icon of the default address`, done => {
|
|
nightmare
|
|
.waitForTextInElement(selectors.addresses.defaultAddress, 'Somewhere in Thailand')
|
|
.waitToClick(selectors.addresses.firstEditButton)
|
|
.waitForURL('/edit')
|
|
.url()
|
|
.then(result => {
|
|
expect(result).toContain('/edit');
|
|
done();
|
|
})
|
|
.catch(catchErrors(done));
|
|
});
|
|
|
|
it(`should click on the active checkbox and receive an error to save it becouse it is the default address`, done => {
|
|
nightmare
|
|
.waitForSnackbarReset()
|
|
.waitToClick(selectors.addresses.activeCheckbox)
|
|
.waitToClick(selectors.addresses.saveButton)
|
|
.wait(selectors.globalItems.snackbarIsActive)
|
|
.getInnerText(selectors.globalItems.snackbarIsActive)
|
|
.then(result => {
|
|
expect(result).toContain('Error');
|
|
done();
|
|
})
|
|
.catch(catchErrors(done));
|
|
});
|
|
});
|