summaryrefslogtreecommitdiff
path: root/spec/javascripts/header_spec.js
blob: 0e01934d3a3eb249dd851519f6470c01213ee073 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/* eslint-disable space-before-function-paren, no-var */

import '~/header';
import '~/lib/utils/text_utility';

(function() {
  describe('Header', function() {
    var todosPendingCount = '.todos-count';
    var fixtureTemplate = 'issues/open-issue.html.raw';

    function isTodosCountHidden() {
      return $(todosPendingCount).hasClass('hidden');
    }

    function triggerToggle(newCount) {
      $(document).trigger('todo:toggle', newCount);
    }

    preloadFixtures(fixtureTemplate);
    beforeEach(function() {
      loadFixtures(fixtureTemplate);
    });

    it('should update todos-count after receiving the todo:toggle event', function() {
      triggerToggle(5);
      expect($(todosPendingCount).text()).toEqual('5');
    });

    it('should hide todos-count when it is 0', function() {
      triggerToggle(0);
      expect(isTodosCountHidden()).toEqual(true);
    });

    it('should show todos-count when it is more than 0', function() {
      triggerToggle(10);
      expect(isTodosCountHidden()).toEqual(false);
    });

    describe('when todos-count is 1000', function() {
      beforeEach(function() {
        triggerToggle(1000);
      });

      it('should show todos-count', function() {
        expect(isTodosCountHidden()).toEqual(false);
      });

      it('should show 99+ for todos-count', function() {
        expect($(todosPendingCount).text()).toEqual('99+');
      });
    });
  });
}).call(window);