scratch-www/test/integration-legacy/teacher-registration/test_teacher_registration_organization_step.js

89 lines
3.6 KiB
JavaScript
Raw Normal View History

2019-07-17 14:56:48 -04:00
/*
* Checks the behavior of the organization step in the educators registration process
*
* Test cases: https://github.com/LLK/scratch-www/wiki/Testing-Scratch-www#All_Test_Cases_Teacher_Join_Flow
*/
const seleniumWebdriver = require('selenium-webdriver');
const tap = require('tap');
2019-07-17 14:56:48 -04:00
const utils = require('./teacher_registration_utils.js');
const constants = utils.constants;
2019-07-17 14:56:48 -04:00
// Set test url through environment variable
const rootUrl = process.env.ROOT_URL || 'http://localhost:8333';
2019-07-17 14:56:48 -04:00
// chrome driver
const driver = new seleniumWebdriver.Builder().withCapabilities(seleniumWebdriver.Capabilities.chrome())
2019-07-17 14:56:48 -04:00
.build();
tap.plan(4);
tap.tearDown(() => {
2019-07-17 14:56:48 -04:00
driver.quit();
});
tap.beforeEach(function () {
driver.get(`${rootUrl}/educators/register`);
2019-07-17 14:56:48 -04:00
return utils.fillUsernameSlide(driver, seleniumWebdriver)
.then(utils.fillDemographicsSlide.bind(this, driver, seleniumWebdriver)) // eslint-disable-line no-invalid-this
.then(utils.fillNameSlide.bind(this, driver, seleniumWebdriver)) // eslint-disable-line no-invalid-this
.then(utils.fillPhoneSlide.bind(this, driver, seleniumWebdriver)); // eslint-disable-line no-invalid-this
});
tap.test('otherFieldRequiredIfChecked', t => {
const otherCheckbox = driver.findElement(seleniumWebdriver.By.xpath('//input[@type="checkbox" and @value="8"]'));
const nextStepButton = driver.findElement(seleniumWebdriver.By.xpath(constants.nextStepXpath));
const errorMessageXPath = `//div[@class="other-input"]${constants.generalErrorMessageXpath}`;
otherCheckbox.click().then(() => {
nextStepButton.click().then(() => {
2019-07-17 14:56:48 -04:00
driver.findElements(seleniumWebdriver.By.xpath(errorMessageXPath))
.then(validationMessages => {
2019-07-17 14:56:48 -04:00
t.equal(validationMessages.length, 1);
t.end();
});
});
});
});
tap.test('checkOrganizationFieldRequired', t => {
const nextStepButton = driver.findElement(seleniumWebdriver.By.xpath(constants.nextStepXpath));
const errorMessageXPath = '//input[@name="organization.name"]/following-sibling::' +
2019-07-17 14:56:48 -04:00
'span[@class="help-block validation-message"]/span[contains(text(),' +
'"This field is required")]';
nextStepButton.click().then(() => {
2019-07-17 14:56:48 -04:00
driver.findElements(seleniumWebdriver.By.xpath(errorMessageXPath))
.then(validationMessages => {
2019-07-17 14:56:48 -04:00
t.equal(validationMessages.length, 1);
t.end();
});
});
});
tap.test('checkRoleFieldRequired', t => {
const nextStepButton = driver.findElement(seleniumWebdriver.By.xpath(constants.nextStepXpath));
const errorMessageXPath = '//input[@name="organization.title"]/following-sibling::' +
2019-07-17 14:56:48 -04:00
'span[@class="help-block validation-message"]/span[contains(text(),' +
'"This field is required")]';
nextStepButton.click().then(() => {
2019-07-17 14:56:48 -04:00
driver.findElements(seleniumWebdriver.By.xpath(errorMessageXPath))
.then(validationMessages => {
2019-07-17 14:56:48 -04:00
t.equal(validationMessages.length, 1);
t.end();
});
});
});
tap.test('checkOrganizationTypeRequired', t => {
const nextStepButton = driver.findElement(seleniumWebdriver.By.xpath(constants.nextStepXpath));
const errorMessageXPath = '//div[@class="checkbox"]/following-sibling::' +
2019-07-17 14:56:48 -04:00
'span[@class="help-block validation-message" and contains(text(),' +
'"This field is required")]';
nextStepButton.click().then(() => {
2019-07-17 14:56:48 -04:00
driver.findElements(seleniumWebdriver.By.xpath(errorMessageXPath))
.then(validationMessages => {
2019-07-17 14:56:48 -04:00
t.equal(validationMessages.length, 1);
t.end();
});
});
});