Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: 🤖 add test selectors to roles grants tests #2749

Merged
merged 11 commits into from
Mar 31, 2025
156 changes: 78 additions & 78 deletions ui/admin/tests/acceptance/roles/grants-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,24 @@
*/

import { module, test } from 'qunit';
import {
visit,
currentURL,
click,
fillIn,
find,
findAll,
} from '@ember/test-helpers';
import { visit, currentURL, click, fillIn } from '@ember/test-helpers';
import { setupApplicationTest } from 'admin/tests/helpers';
import setupMirage from 'ember-cli-mirage/test-support/setup-mirage';
import a11yAudit from 'ember-a11y-testing/test-support/audit';
import { Response } from 'miragejs';
import { authenticateSession } from 'ember-simple-auth/test-support';
import * as selectors from './selectors';
import * as commonSelectors from 'admin/tests/helpers/selectors';

module('Acceptance | roles | grants', function (hooks) {
setupApplicationTest(hooks);
setupMirage(hooks);

// This is unique to permissions tests and only used once here
const FIELD_GRANT_DISABLED = 'input[disabled]';

let grantsCount;

const instances = {
scopes: {
global: null,
Expand All @@ -31,14 +30,10 @@ module('Acceptance | roles | grants', function (hooks) {
role: null,
};
const urls = {
orgScope: null,
roles: null,
role: null,
newRole: null,
};
const newGrantForm = 'form:nth-child(1)';
const grantsForm = 'form:nth-child(2)';
let grantsCount;

hooks.beforeEach(async function () {
await authenticateSession({ username: 'admin' });
Expand All @@ -50,20 +45,19 @@ module('Acceptance | roles | grants', function (hooks) {
instances.role = this.server.create('role', {
scope: instances.scopes.org,
});
grantsCount = this.server.db.roles[0].grant_strings.length;
urls.roles = `/scopes/${instances.scopes.org.id}/roles`;
urls.role = `${urls.roles}/${instances.role.id}`;
urls.grants = `${urls.role}/grants`;
grantsCount = () =>
this.server.schema.roles.all().models[0].grant_strings.length;
});

test('visiting role grants', async function (assert) {
await visit(urls.grants);
await a11yAudit();

assert.strictEqual(currentURL(), urls.grants);
assert.strictEqual(
findAll(`${grantsForm} [name="grant"]`).length,
grantsCount,
);
assert.dom(selectors.FIELD_GRANT).exists({ count: grantsCount() });
});

test('cannot set grants without proper authorization', async function (assert) {
Expand All @@ -72,17 +66,13 @@ module('Acceptance | roles | grants', function (hooks) {
);
instances.role.update({ authorized_actions });
await visit(urls.grants);
assert.strictEqual(
findAll('main form').length,
1,
'New grant form is not displayed.',
);
assert.notOk(
find('main form button:not([type="submit"])'),
'Grant delete button is not displayed.',
);
assert.notOk(find('.rose-form-actions'), 'Form actions are not displayed.');
assert.ok(find('main form input[disabled]'), 'Grant fields are disabled.');

// This checks that only the form for existing grants is displayed
assert.dom(commonSelectors.FORM).exists({ count: 1 });
assert.dom(selectors.FIELD_NEW_GRANT_ADD_BTN).doesNotExist();
assert.dom(FIELD_GRANT_DISABLED).exists({ count: grantsCount() });
assert.dom(selectors.SAVE_BTN).doesNotExist();
assert.dom(commonSelectors.CANCEL_BTN).doesNotExist();
});

test('update a grant', async function (assert) {
Expand All @@ -93,26 +83,28 @@ module('Acceptance | roles | grants', function (hooks) {
const attrs = JSON.parse(requestBody);
assert.strictEqual(
attrs.grant_strings[0],
'ids=123,action=delete',
selectors.FIELD_GRANT_VALUE,
'A grant is updated',
);
const id = idMethod.split(':')[0];
return { id };
},
);
await visit(urls.grants);
await fillIn(`${grantsForm} [name="grant"]`, 'ids=123,action=delete');
await click('.rose-form-actions [type="submit"]:not(:disabled)');

await fillIn(selectors.FIELD_GRANT, selectors.FIELD_GRANT_VALUE);
await click(selectors.SAVE_BTN);
});

test('cancel a grant update', async function (assert) {
await visit(urls.grants);
await fillIn(`${grantsForm} [name="grant"]`, 'ids=123,action=delete');
await click('.rose-form-actions button:not([type="submit"])');
assert.notEqual(
find(`${grantsForm} [name="grant"]`).value,
'ids=123,action=delete',
);

await fillIn(selectors.FIELD_GRANT, selectors.FIELD_GRANT_VALUE);
await click(commonSelectors.CANCEL_BTN);

assert
.dom(selectors.FIELD_GRANT)
.doesNotIncludeText(selectors.FIELD_GRANT_VALUE);
});

test('shows error message on grant update', async function (assert) {
Expand All @@ -129,12 +121,12 @@ module('Acceptance | roles | grants', function (hooks) {
);
});
await visit(urls.grants);
assert.strictEqual(
findAll(`${grantsForm} [name="grant"]`).length,
grantsCount,
);
await fillIn(`${grantsForm} [name="grant"]`, 'ids=123,action=delete');
await click('.rose-form-actions [type="submit"]:not(:disabled)');

assert.dom(selectors.FIELD_GRANT).exists({ count: grantsCount() });

await fillIn(selectors.FIELD_GRANT, selectors.FIELD_GRANT_VALUE);
await click(selectors.SAVE_BTN);

assert
.dom(commonSelectors.ALERT_TOAST_BODY)
.hasText('The request was invalid.');
Expand All @@ -148,25 +140,31 @@ module('Acceptance | roles | grants', function (hooks) {
const attrs = JSON.parse(requestBody);
assert.strictEqual(
attrs.grant_strings.length,
grantsCount + 1,
grantsCount() + 1,
'A grant is created',
);
const id = idMethod.split(':')[0];
return { id };
},
);
await visit(urls.grants);
await fillIn(`${newGrantForm} [name="grant"]`, 'ids=123,action=delete');
await click(`${newGrantForm} [type="submit"]:not(:disabled)`);
await click('.rose-form-actions [type="submit"]:not(:disabled)');

await fillIn(selectors.FIELD_NEW_GRANT, selectors.FIELD_GRANT_VALUE);
await click(selectors.FIELD_NEW_GRANT_ADD_BTN);
await click(selectors.SAVE_BTN);
});

test('cancel a grant creation', async function (assert) {
await visit(urls.grants);
await fillIn(`${newGrantForm} [name="grant"]`, 'ids=123,action=delete');
await click(`${newGrantForm} [type="submit"]:not(:disabled)`);
await click('.rose-form-actions button:not([type="submit"])');
assert.notOk(find(`${newGrantForm} [name="grant"]`).value);

assert.dom(selectors.FIELD_GRANT).exists({ count: grantsCount() });

await fillIn(selectors.FIELD_NEW_GRANT, selectors.FIELD_GRANT_VALUE);
await click(selectors.FIELD_NEW_GRANT_ADD_BTN);
await click(commonSelectors.CANCEL_BTN);

assert.dom(selectors.FIELD_NEW_GRANT).hasNoText();
assert.dom(selectors.FIELD_GRANT).exists({ count: grantsCount() });
});

test('shows error message on grant create', async function (assert) {
Expand All @@ -183,34 +181,34 @@ module('Acceptance | roles | grants', function (hooks) {
);
});
await visit(urls.grants);
assert.strictEqual(
findAll(`${grantsForm} [name="grant"]`).length,
grantsCount,
);
await fillIn(`${newGrantForm} [name="grant"]`, 'ids=123,action=delete');
await click(`${newGrantForm} [type="submit"]:not(:disabled)`);
await click('.rose-form-actions [type="submit"]:not(:disabled)');
assert.ok(find(commonSelectors.ALERT_TOAST_BODY));

assert.dom(selectors.FIELD_GRANT).exists({ count: grantsCount() });

await fillIn(selectors.FIELD_NEW_GRANT, selectors.FIELD_GRANT_VALUE);
await click(selectors.FIELD_NEW_GRANT_ADD_BTN);
await click(selectors.SAVE_BTN);

assert
.dom(commonSelectors.ALERT_TOAST_BODY)
.hasText('The request was invalid.');
});

test('delete a grant', async function (assert) {
await visit(urls.grants);
await click(`${grantsForm} button:not([type="submit"])`);
await click('.rose-form-actions [type="submit"]:not(:disabled)');
assert.strictEqual(
findAll(`${grantsForm} [name="grant"]`).length,
grantsCount - 1,
);

await click(selectors.FIELD_GRANT_REMOVE_BTN);
await click(selectors.SAVE_BTN);

assert.dom(selectors.FIELD_GRANT).exists({ count: grantsCount() - 1 });
});

test('cancel a grant remove', async function (assert) {
await visit(urls.grants);
await click(`${grantsForm} button`);
await click('.rose-form-actions button:not([type="submit"])');
assert.strictEqual(
findAll(`${grantsForm} [name="grant"]`).length,
grantsCount,
);

await click(selectors.FIELD_GRANT_REMOVE_BTN);
await click(commonSelectors.CANCEL_BTN);

assert.dom(selectors.FIELD_GRANT).exists({ count: grantsCount() });
});

test('shows error message on grant remove', async function (assert) {
Expand All @@ -227,12 +225,14 @@ module('Acceptance | roles | grants', function (hooks) {
);
});
await visit(urls.grants);
assert.strictEqual(
findAll(`${grantsForm} [name="grant"]`).length,
grantsCount,
);
await click(`${grantsForm} button:not([type="submit"])`);
await click('.rose-form-actions [type="submit"]:not(:disabled)');
assert.ok(find(commonSelectors.ALERT_TOAST_BODY));

assert.dom(selectors.FIELD_GRANT).exists({ count: grantsCount() });

await click(selectors.FIELD_GRANT_REMOVE_BTN);
await click(selectors.SAVE_BTN);

assert
.dom(commonSelectors.ALERT_TOAST_BODY)
.hasText('The request was invalid.');
});
});
12 changes: 12 additions & 0 deletions ui/admin/tests/acceptance/roles/selectors.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,15 @@ export const REMOVE_ORG_ONLY_BTN = (name) =>
`[data-test-manage-scopes-remove-${name}-modal] div:nth-child(3) button:last-of-type`;
export const REMOVE_ORG_PROJECTS_BTN = (name) =>
`[data-test-manage-scopes-remove-${name}-modal] div:nth-child(3) button`;

// Role grants
export const FIELD_NEW_GRANT = 'form:nth-child(1) [name="grant"]';
export const FIELD_NEW_GRANT_ADD_BTN = 'form:nth-child(1) [type="submit"]';
export const FIELD_GRANT = 'form:nth-child(2) [name="grant"]';
export const FIELD_GRANT_VALUE = 'ids=123,action=delete';
export const FIELD_GRANT_REMOVE_BTN =
'form:nth-child(2) button[title="Remove"]';
export const GRANTS_FORM = 'form:nth-child(2)';
// We need to use a different selector for the grants form because the
// grants form has multiple submit buttons
export const SAVE_BTN = '.rose-form-actions [type=submit]';