debian-mirror-gitlab/spec/frontend/header_spec.js

95 lines
2.8 KiB
JavaScript
Raw Normal View History

2018-05-09 12:01:36 +05:30
import $ from 'jquery';
2020-04-22 19:07:51 +05:30
import { mockTracking, unmockTracking } from 'helpers/tracking_helper';
2020-10-24 23:57:45 +05:30
import initTodoToggle, { initNavUserDropdownTracking } from '~/header';
2017-08-17 22:00:37 +05:30
2020-03-13 15:44:24 +05:30
describe('Header', () => {
2020-04-22 19:07:51 +05:30
describe('Todos notification', () => {
2020-11-24 15:15:51 +05:30
const todosPendingCount = '.js-todos-count';
2020-04-22 19:07:51 +05:30
const fixtureTemplate = 'issues/open-issue.html';
2017-08-17 22:00:37 +05:30
2020-04-22 19:07:51 +05:30
function isTodosCountHidden() {
return $(todosPendingCount).hasClass('hidden');
}
2017-08-17 22:00:37 +05:30
2020-04-22 19:07:51 +05:30
function triggerToggle(newCount) {
$(document).trigger('todo:toggle', newCount);
}
2017-08-17 22:00:37 +05:30
2020-04-22 19:07:51 +05:30
beforeEach(() => {
initTodoToggle();
loadFixtures(fixtureTemplate);
});
2017-08-17 22:00:37 +05:30
2020-04-22 19:07:51 +05:30
it('should update todos-count after receiving the todo:toggle event', () => {
triggerToggle(5);
2018-12-13 13:39:08 +05:30
2020-04-22 19:07:51 +05:30
expect($(todosPendingCount).text()).toEqual('5');
});
2017-08-17 22:00:37 +05:30
2020-04-22 19:07:51 +05:30
it('should hide todos-count when it is 0', () => {
triggerToggle(0);
2018-12-13 13:39:08 +05:30
2020-04-22 19:07:51 +05:30
expect(isTodosCountHidden()).toEqual(true);
});
it('should show todos-count when it is more than 0', () => {
triggerToggle(10);
expect(isTodosCountHidden()).toEqual(false);
});
describe('when todos-count is 1000', () => {
beforeEach(() => {
triggerToggle(1000);
});
2017-08-17 22:00:37 +05:30
2020-04-22 19:07:51 +05:30
it('should show todos-count', () => {
expect(isTodosCountHidden()).toEqual(false);
});
2018-12-13 13:39:08 +05:30
2020-04-22 19:07:51 +05:30
it('should show 99+ for todos-count', () => {
expect($(todosPendingCount).text()).toEqual('99+');
});
});
2018-03-17 18:26:18 +05:30
});
2020-04-22 19:07:51 +05:30
describe('Track user dropdown open', () => {
let trackingSpy;
2018-03-17 18:26:18 +05:30
beforeEach(() => {
2020-04-22 19:07:51 +05:30
setFixtures(`
<li class="js-nav-user-dropdown">
2021-11-11 11:23:49 +05:30
<a class="js-buy-pipeline-minutes-link" data-track-action="click_buy_ci_minutes" data-track-label="free" data-track-property="user_dropdown">Buy Pipeline minutes</a>
<a class="js-upgrade-plan-link" data-track-action="click_upgrade_link" data-track-label="free" data-track-property="user_dropdown">Upgrade</a>
2020-04-22 19:07:51 +05:30
</li>`);
trackingSpy = mockTracking('_category_', $('.js-nav-user-dropdown').element, jest.spyOn);
document.body.dataset.page = 'some:page';
initNavUserDropdownTracking();
2017-08-17 22:00:37 +05:30
});
2020-04-22 19:07:51 +05:30
afterEach(() => {
unmockTracking();
2017-08-17 22:00:37 +05:30
});
2020-06-23 00:09:42 +05:30
it('sends a tracking event when the dropdown is opened and contains Buy Pipeline minutes link', () => {
2020-04-22 19:07:51 +05:30
$('.js-nav-user-dropdown').trigger('shown.bs.dropdown');
2020-05-24 23:13:21 +05:30
expect(trackingSpy).toHaveBeenCalledWith('some:page', 'show_buy_ci_minutes', {
label: 'free',
property: 'user_dropdown',
});
});
it('sends a tracking event when the dropdown is opened and contains Upgrade link', () => {
$('.js-nav-user-dropdown').trigger('shown.bs.dropdown');
expect(trackingSpy).toHaveBeenCalledWith('some:page', 'show_upgrade_link', {
2020-04-22 19:07:51 +05:30
label: 'free',
property: 'user_dropdown',
});
2017-08-17 22:00:37 +05:30
});
});
2018-03-17 18:26:18 +05:30
});