view core/tests/Drupal/Nightwatch/Commands/drupalCreateRole.js @ 19:fa3358dc1485 tip

Add ndrum files
author Chris Cannam
date Wed, 28 Aug 2019 13:14:47 +0100
parents 129ea1e6d783
children
line wrap: on
line source
/**
 * Creates role with given permissions.
 *
 * @param {object} settings
 *   Settings object
 * @param {array} settings.permissions
 *   The list of roles granted for the user.
 * @param {string} [settings.name=null]
 *   The role name.
 * @param {function} callback
 *   A callback which will be called, when creating the role is finished.
 * @return {object}
 *   The drupalCreateRole command.
 */
exports.command = function drupalCreateRole(
  { permissions, name = null },
  callback,
) {
  const self = this;
  const roleName =
    name ||
    Math.random()
      .toString(36)
      .substring(2, 15);

  let machineName;
  this.drupalLoginAsAdmin(() => {
    this.drupalRelativeURL('/admin/people/roles/add')
      .setValue('input[name="label"]', roleName)
      // Wait for the machine name to appear so that it can be used later to
      // select the permissions from the permission page.
      .expect.element('.user-role-form .machine-name-value')
      .to.be.visible.before(2000);

    this.perform(done => {
      this.getText('.user-role-form .machine-name-value', element => {
        machineName = element.value;
        done();
      });
    })
      .submitForm('#user-role-form')
      .drupalRelativeURL('/admin/people/permissions')
      .perform((client, done) => {
        Promise.all(
          permissions.map(
            permission =>
              new Promise(resolve => {
                client.click(
                  `input[name="${machineName}[${permission}]"]`,
                  () => {
                    resolve();
                  },
                );
              }),
          ),
        ).then(() => {
          done();
        });
      })
      .submitForm('#user-admin-permissions');
  }).perform(() => {
    if (typeof callback === 'function') {
      callback.call(self, machineName);
    }
  });

  return this;
};