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

54 lines
1.2 KiB
JavaScript
Raw Normal View History

2018-05-09 12:01:36 +05:30
import $ from 'jquery';
2018-03-17 18:26:18 +05:30
import initTodoToggle from '~/header';
2017-08-17 22:00:37 +05:30
2018-12-13 13:39:08 +05:30
describe('Header', function() {
2018-03-17 18:26:18 +05:30
const todosPendingCount = '.todos-count';
2019-07-07 11:18:12 +05:30
const fixtureTemplate = 'issues/open-issue.html';
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
function isTodosCountHidden() {
return $(todosPendingCount).hasClass('hidden');
}
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
function triggerToggle(newCount) {
$(document).trigger('todo:toggle', newCount);
}
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
preloadFixtures(fixtureTemplate);
beforeEach(() => {
initTodoToggle();
loadFixtures(fixtureTemplate);
});
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
it('should update todos-count after receiving the todo:toggle event', () => {
2019-12-21 20:55:43 +05:30
triggerToggle(5);
2018-12-13 13:39:08 +05:30
2018-03-17 18:26:18 +05:30
expect($(todosPendingCount).text()).toEqual('5');
});
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
it('should hide todos-count when it is 0', () => {
2019-12-21 20:55:43 +05:30
triggerToggle(0);
2018-12-13 13:39:08 +05:30
2018-03-17 18:26:18 +05:30
expect(isTodosCountHidden()).toEqual(true);
});
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
it('should show todos-count when it is more than 0', () => {
2019-12-21 20:55:43 +05:30
triggerToggle(10);
2018-12-13 13:39:08 +05:30
2018-03-17 18:26:18 +05:30
expect(isTodosCountHidden()).toEqual(false);
});
describe('when todos-count is 1000', () => {
beforeEach(() => {
2019-12-21 20:55:43 +05:30
triggerToggle(1000);
2017-08-17 22:00:37 +05:30
});
2018-03-17 18:26:18 +05:30
it('should show todos-count', () => {
2017-08-17 22:00:37 +05:30
expect(isTodosCountHidden()).toEqual(false);
});
2018-03-17 18:26:18 +05:30
it('should show 99+ for todos-count', () => {
expect($(todosPendingCount).text()).toEqual('99+');
2017-08-17 22:00:37 +05:30
});
});
2018-03-17 18:26:18 +05:30
});