2018-03-09 15:18:59 -05:00
|
|
|
import $ from 'jquery';
|
2017-10-30 15:50:17 -04:00
|
|
|
import initTodoToggle from '~/header';
|
2016-08-08 17:19:46 -04:00
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
describe('Header', function() {
|
2017-10-10 03:47:42 -04:00
|
|
|
const todosPendingCount = '.todos-count';
|
2019-03-26 12:03:28 -04:00
|
|
|
const fixtureTemplate = 'issues/open-issue.html';
|
2016-08-08 17:19:46 -04:00
|
|
|
|
2017-10-10 03:47:42 -04:00
|
|
|
function isTodosCountHidden() {
|
|
|
|
return $(todosPendingCount).hasClass('hidden');
|
|
|
|
}
|
2016-08-08 17:19:46 -04:00
|
|
|
|
2017-10-10 03:47:42 -04:00
|
|
|
function triggerToggle(newCount) {
|
|
|
|
$(document).trigger('todo:toggle', newCount);
|
|
|
|
}
|
2016-08-08 17:19:46 -04:00
|
|
|
|
2017-10-10 03:47:42 -04:00
|
|
|
preloadFixtures(fixtureTemplate);
|
|
|
|
beforeEach(() => {
|
2017-10-30 15:50:17 -04:00
|
|
|
initTodoToggle();
|
2017-10-10 03:47:42 -04:00
|
|
|
loadFixtures(fixtureTemplate);
|
|
|
|
});
|
2016-08-08 17:19:46 -04:00
|
|
|
|
2017-10-10 03:47:42 -04:00
|
|
|
it('should update todos-count after receiving the todo:toggle event', () => {
|
|
|
|
triggerToggle('5');
|
2018-10-09 14:03:09 -04:00
|
|
|
|
2017-10-10 03:47:42 -04:00
|
|
|
expect($(todosPendingCount).text()).toEqual('5');
|
|
|
|
});
|
2016-08-08 17:19:46 -04:00
|
|
|
|
2017-10-10 03:47:42 -04:00
|
|
|
it('should hide todos-count when it is 0', () => {
|
|
|
|
triggerToggle('0');
|
2018-10-09 14:03:09 -04:00
|
|
|
|
2017-10-10 03:47:42 -04:00
|
|
|
expect(isTodosCountHidden()).toEqual(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should show todos-count when it is more than 0', () => {
|
|
|
|
triggerToggle('10');
|
2018-10-09 14:03:09 -04:00
|
|
|
|
2017-10-10 03:47:42 -04:00
|
|
|
expect(isTodosCountHidden()).toEqual(false);
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('when todos-count is 1000', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
triggerToggle('1000');
|
2016-08-08 17:19:46 -04:00
|
|
|
});
|
|
|
|
|
2017-10-10 03:47:42 -04:00
|
|
|
it('should show todos-count', () => {
|
2016-08-08 17:19:46 -04:00
|
|
|
expect(isTodosCountHidden()).toEqual(false);
|
|
|
|
});
|
|
|
|
|
2017-10-10 03:47:42 -04:00
|
|
|
it('should show 99+ for todos-count', () => {
|
|
|
|
expect($(todosPendingCount).text()).toEqual('99+');
|
2016-08-08 17:19:46 -04:00
|
|
|
});
|
|
|
|
});
|
2017-10-10 03:47:42 -04:00
|
|
|
});
|