146 lines
4.1 KiB
JavaScript
146 lines
4.1 KiB
JavaScript
import { escape } from 'lodash';
|
|
import UsersSelect from '~/users_select/index';
|
|
import {
|
|
createInputsModelExpectation,
|
|
createUnassignedExpectation,
|
|
createAssignedExpectation,
|
|
createTestContext,
|
|
findDropdownItemsModel,
|
|
findDropdownItem,
|
|
findAssigneesInputsModel,
|
|
getUsersFixtureAt,
|
|
setAssignees,
|
|
toggleDropdown,
|
|
waitForDropdownItems,
|
|
} from './test_helper';
|
|
|
|
describe('~/users_select/index', () => {
|
|
const context = createTestContext({
|
|
fixturePath: 'merge_requests/merge_request_with_single_assignee_feature.html',
|
|
});
|
|
|
|
beforeEach(() => {
|
|
context.setup();
|
|
});
|
|
|
|
afterEach(() => {
|
|
context.teardown();
|
|
});
|
|
|
|
describe('when opened', () => {
|
|
beforeEach(async () => {
|
|
context.createSubject();
|
|
|
|
toggleDropdown();
|
|
await waitForDropdownItems();
|
|
});
|
|
|
|
it('shows users', () => {
|
|
expect(findDropdownItemsModel()).toEqual(createUnassignedExpectation());
|
|
});
|
|
|
|
describe('when users are selected', () => {
|
|
const selectedUsers = [getUsersFixtureAt(2), getUsersFixtureAt(4)];
|
|
const lastSelected = selectedUsers[selectedUsers.length - 1];
|
|
const expectation = createAssignedExpectation({
|
|
header: 'Assignee',
|
|
assigned: [lastSelected],
|
|
});
|
|
|
|
beforeEach(() => {
|
|
selectedUsers.forEach((user) => {
|
|
findDropdownItem(user).click();
|
|
});
|
|
});
|
|
|
|
it('shows assignee', () => {
|
|
expect(findDropdownItemsModel()).toEqual(expectation);
|
|
});
|
|
|
|
it('updates field', () => {
|
|
expect(findAssigneesInputsModel()).toEqual(createInputsModelExpectation([lastSelected]));
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('with preselected user and opened', () => {
|
|
const expectation = createAssignedExpectation({
|
|
header: 'Assignee',
|
|
assigned: [getUsersFixtureAt(0)],
|
|
});
|
|
|
|
beforeEach(async () => {
|
|
setAssignees(getUsersFixtureAt(0));
|
|
|
|
context.createSubject();
|
|
|
|
toggleDropdown();
|
|
await waitForDropdownItems();
|
|
});
|
|
|
|
it('shows users', () => {
|
|
expect(findDropdownItemsModel()).toEqual(expectation);
|
|
});
|
|
|
|
// Regression test for https://gitlab.com/gitlab-org/gitlab/-/issues/325991
|
|
describe('when closed and reopened', () => {
|
|
beforeEach(() => {
|
|
toggleDropdown();
|
|
toggleDropdown();
|
|
});
|
|
|
|
it('shows users', () => {
|
|
expect(findDropdownItemsModel()).toEqual(expectation);
|
|
});
|
|
});
|
|
|
|
describe('renderApprovalRules', () => {
|
|
const ruleNames = ['simple-name', '"\'<>&', '"><script>alert(1)<script>'];
|
|
|
|
it.each(ruleNames)('escapes rule name correctly for %s', (name) => {
|
|
const escapedName = escape(name);
|
|
|
|
expect(
|
|
UsersSelect.prototype.renderApprovalRules('reviewer', [{ name }]),
|
|
).toMatchInterpolatedText(
|
|
`<div class="gl-display-flex gl-font-sm"> <span class="gl-text-truncate" title="${escapedName}">${escapedName}</span> </div>`,
|
|
);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('XSS', () => {
|
|
const escaped = '><script>alert(1)</script>';
|
|
const issuableType = 'merge_request';
|
|
const user = {
|
|
availability: 'not_set',
|
|
can_merge: true,
|
|
name: 'name',
|
|
};
|
|
const selected = true;
|
|
const username = 'username';
|
|
const img = '<img user-avatar />';
|
|
const elsClassName = 'elsclass';
|
|
|
|
it.each`
|
|
prop | val | element
|
|
${'username'} | ${'><script>alert(1)</script>'} | ${'.dropdown-menu-user-username'}
|
|
${'name'} | ${'><script>alert(1)</script>'} | ${'.dropdown-menu-user-full-name'}
|
|
`('properly escapes the $prop $val', ({ prop, val, element }) => {
|
|
const u = prop === 'username' ? val : username;
|
|
const n = prop === 'name' ? val : user.name;
|
|
const row = UsersSelect.prototype.renderRow(
|
|
issuableType,
|
|
{ ...user, name: n },
|
|
selected,
|
|
u,
|
|
img,
|
|
elsClassName,
|
|
);
|
|
const fragment = document.createRange().createContextualFragment(row);
|
|
const output = fragment.querySelector(element).innerHTML.trim();
|
|
|
|
expect(output).toBe(escaped);
|
|
});
|
|
});
|
|
});
|