2022-05-04 05:09:02 -04:00
|
|
|
import { within } from '@testing-library/dom';
|
|
|
|
|
2018-12-07 22:12:23 -05:00
|
|
|
import UsersCache from '~/lib/utils/users_cache';
|
2021-02-14 13:09:20 -05:00
|
|
|
import initUserPopovers from '~/user_popovers';
|
2022-05-04 05:09:02 -04:00
|
|
|
import waitForPromises from 'helpers/wait_for_promises';
|
|
|
|
|
|
|
|
jest.mock('~/api/user_api', () => ({
|
|
|
|
followUser: jest.fn().mockResolvedValue({}),
|
|
|
|
unfollowUser: jest.fn().mockResolvedValue({}),
|
|
|
|
}));
|
2018-12-07 22:12:23 -05:00
|
|
|
|
|
|
|
describe('User Popovers', () => {
|
2020-02-17 16:09:20 -05:00
|
|
|
const fixtureTemplate = 'merge_requests/merge_request_with_mentions.html';
|
2018-12-12 16:49:10 -05:00
|
|
|
|
2020-02-17 16:09:20 -05:00
|
|
|
const selector = '.js-user-link, .gfm-project_member';
|
2021-02-18 07:09:34 -05:00
|
|
|
const findFixtureLinks = () => {
|
|
|
|
return Array.from(document.querySelectorAll(selector)).filter(
|
|
|
|
({ dataset }) => dataset.user || dataset.userId,
|
|
|
|
);
|
|
|
|
};
|
|
|
|
const createUserLink = () => {
|
|
|
|
const link = document.createElement('a');
|
|
|
|
|
|
|
|
link.classList.add('js-user-link');
|
|
|
|
link.setAttribute('data-user', '1');
|
|
|
|
|
|
|
|
return link;
|
|
|
|
};
|
2018-12-07 22:12:23 -05:00
|
|
|
|
2022-05-04 05:09:02 -04:00
|
|
|
const dummyUser = { name: 'root', username: 'root', is_followed: false };
|
2018-12-07 22:12:23 -05:00
|
|
|
const dummyUserStatus = { message: 'active' };
|
|
|
|
|
2022-04-13 17:09:57 -04:00
|
|
|
let popovers;
|
|
|
|
|
2018-12-07 22:12:23 -05:00
|
|
|
const triggerEvent = (eventName, el) => {
|
2020-01-30 16:08:47 -05:00
|
|
|
const event = new MouseEvent(eventName, {
|
|
|
|
bubbles: true,
|
|
|
|
cancelable: true,
|
|
|
|
view: window,
|
|
|
|
});
|
2018-12-07 22:12:23 -05:00
|
|
|
|
|
|
|
el.dispatchEvent(event);
|
|
|
|
};
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2018-12-12 16:49:10 -05:00
|
|
|
loadFixtures(fixtureTemplate);
|
2018-12-07 22:12:23 -05:00
|
|
|
|
|
|
|
const usersCacheSpy = () => Promise.resolve(dummyUser);
|
2020-12-23 16:10:24 -05:00
|
|
|
jest.spyOn(UsersCache, 'retrieveById').mockImplementation((userId) => usersCacheSpy(userId));
|
2018-12-07 22:12:23 -05:00
|
|
|
|
|
|
|
const userStatusCacheSpy = () => Promise.resolve(dummyUserStatus);
|
2020-06-08 05:08:23 -04:00
|
|
|
jest
|
|
|
|
.spyOn(UsersCache, 'retrieveStatusById')
|
2020-12-23 16:10:24 -05:00
|
|
|
.mockImplementation((userId) => userStatusCacheSpy(userId));
|
2022-05-04 05:09:02 -04:00
|
|
|
jest.spyOn(UsersCache, 'updateById');
|
|
|
|
|
|
|
|
window.gon = {
|
|
|
|
features: {
|
|
|
|
followInUserPopover: true,
|
|
|
|
},
|
|
|
|
};
|
2018-12-07 22:12:23 -05:00
|
|
|
|
2022-04-13 17:09:57 -04:00
|
|
|
popovers = initUserPopovers(document.querySelectorAll(selector));
|
2018-12-07 22:12:23 -05:00
|
|
|
});
|
|
|
|
|
2022-04-13 17:09:57 -04:00
|
|
|
it('initializes a popover for each user link with a user id', () => {
|
|
|
|
const linksWithUsers = findFixtureLinks();
|
2020-02-17 16:09:20 -05:00
|
|
|
|
2022-04-13 17:09:57 -04:00
|
|
|
expect(linksWithUsers.length).toBe(popovers.length);
|
|
|
|
});
|
2021-02-18 07:09:34 -05:00
|
|
|
|
2022-04-13 17:09:57 -04:00
|
|
|
it('adds popovers to user links added to the DOM tree after the initial call', async () => {
|
|
|
|
document.body.appendChild(createUserLink());
|
|
|
|
document.body.appendChild(createUserLink());
|
2021-02-18 07:09:34 -05:00
|
|
|
|
2022-04-13 17:09:57 -04:00
|
|
|
const linksWithUsers = findFixtureLinks();
|
2022-03-29 11:09:53 -04:00
|
|
|
|
2022-04-13 17:09:57 -04:00
|
|
|
expect(linksWithUsers.length).toBe(popovers.length + 2);
|
2021-02-18 07:09:34 -05:00
|
|
|
});
|
|
|
|
|
2020-02-06 07:10:29 -05:00
|
|
|
it('does not initialize the user popovers twice for the same element', () => {
|
2022-04-13 17:09:57 -04:00
|
|
|
const newPopovers = initUserPopovers(document.querySelectorAll(selector));
|
|
|
|
const samePopovers = popovers.every((popover, index) => newPopovers[index] === popover);
|
2020-02-06 07:10:29 -05:00
|
|
|
|
2022-04-13 17:09:57 -04:00
|
|
|
expect(samePopovers).toBe(true);
|
2020-02-06 07:10:29 -05:00
|
|
|
});
|
|
|
|
|
2020-01-30 16:08:47 -05:00
|
|
|
describe('when user link emits mouseenter event', () => {
|
|
|
|
let userLink;
|
2018-12-07 22:12:23 -05:00
|
|
|
|
2020-01-30 16:08:47 -05:00
|
|
|
beforeEach(() => {
|
2020-06-08 05:08:23 -04:00
|
|
|
UsersCache.retrieveById.mockReset();
|
|
|
|
|
2020-01-30 16:08:47 -05:00
|
|
|
userLink = document.querySelector(selector);
|
2018-12-07 22:12:23 -05:00
|
|
|
|
2020-01-30 16:08:47 -05:00
|
|
|
triggerEvent('mouseenter', userLink);
|
|
|
|
});
|
2018-12-07 22:12:23 -05:00
|
|
|
|
2020-01-30 16:08:47 -05:00
|
|
|
it('removes title attribute from user links', () => {
|
|
|
|
expect(userLink.getAttribute('title')).toBeFalsy();
|
|
|
|
expect(userLink.dataset.originalTitle).toBeFalsy();
|
|
|
|
});
|
2018-12-07 22:12:23 -05:00
|
|
|
|
2022-04-13 17:09:57 -04:00
|
|
|
it('populates popovers with preloaded user data', () => {
|
2020-01-30 16:08:47 -05:00
|
|
|
const { name, userId, username } = userLink.dataset;
|
2022-04-13 17:09:57 -04:00
|
|
|
const [firstPopover] = popovers;
|
2020-01-30 16:08:47 -05:00
|
|
|
|
2022-04-13 17:09:57 -04:00
|
|
|
expect(firstPopover.$props.user).toEqual(
|
2020-06-08 05:08:23 -04:00
|
|
|
expect.objectContaining({
|
2020-01-30 16:08:47 -05:00
|
|
|
name,
|
|
|
|
userId,
|
|
|
|
username,
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
});
|
2018-12-07 22:12:23 -05:00
|
|
|
|
2020-01-30 16:08:47 -05:00
|
|
|
it('fetches user info and status from the user cache', () => {
|
|
|
|
const { userId } = userLink.dataset;
|
2018-12-07 22:12:23 -05:00
|
|
|
|
2020-01-30 16:08:47 -05:00
|
|
|
expect(UsersCache.retrieveById).toHaveBeenCalledWith(userId);
|
|
|
|
expect(UsersCache.retrieveStatusById).toHaveBeenCalledWith(userId);
|
|
|
|
});
|
|
|
|
});
|
2018-12-07 22:12:23 -05:00
|
|
|
|
2020-01-30 16:08:47 -05:00
|
|
|
it('removes aria-describedby attribute from the user link on mouseleave', () => {
|
|
|
|
const userLink = document.querySelector(selector);
|
2018-12-07 22:12:23 -05:00
|
|
|
|
2020-01-30 16:08:47 -05:00
|
|
|
userLink.setAttribute('aria-describedby', 'popover');
|
|
|
|
triggerEvent('mouseleave', userLink);
|
|
|
|
|
|
|
|
expect(userLink.getAttribute('aria-describedby')).toBe(null);
|
2018-12-07 22:12:23 -05:00
|
|
|
});
|
2022-05-04 05:09:02 -04:00
|
|
|
|
|
|
|
it('updates toggle follow button and `UsersCache` when toggle follow button is clicked', async () => {
|
|
|
|
const [firstPopover] = popovers;
|
|
|
|
const withinFirstPopover = within(firstPopover.$el);
|
|
|
|
const findFollowButton = () => withinFirstPopover.queryByRole('button', { name: 'Follow' });
|
|
|
|
const findUnfollowButton = () => withinFirstPopover.queryByRole('button', { name: 'Unfollow' });
|
|
|
|
|
|
|
|
const userLink = document.querySelector(selector);
|
|
|
|
triggerEvent('mouseenter', userLink);
|
|
|
|
|
|
|
|
await waitForPromises();
|
|
|
|
|
|
|
|
const { userId } = document.querySelector(selector).dataset;
|
|
|
|
|
|
|
|
triggerEvent('click', findFollowButton());
|
|
|
|
|
|
|
|
await waitForPromises();
|
|
|
|
|
|
|
|
expect(findUnfollowButton()).not.toBe(null);
|
|
|
|
expect(UsersCache.updateById).toHaveBeenCalledWith(userId, { is_followed: true });
|
|
|
|
|
|
|
|
triggerEvent('click', findUnfollowButton());
|
|
|
|
|
|
|
|
await waitForPromises();
|
|
|
|
|
|
|
|
expect(findFollowButton()).not.toBe(null);
|
|
|
|
expect(UsersCache.updateById).toHaveBeenCalledWith(userId, { is_followed: false });
|
|
|
|
});
|
2018-12-07 22:12:23 -05:00
|
|
|
});
|