header_spec.js 1.5 KB
Newer Older
1
/* eslint-disable space-before-function-paren, padded-blocks, no-var */
2

3 4 5
require('./spec_helper');
require('header');
require('lib/utils/text_utility');
C
Clement Ho 已提交
6 7 8 9 10

(function() {

  describe('Header', function() {
    var todosPendingCount = '.todos-pending-count';
11
    var fixtureTemplate = 'static/header.html.raw';
C
Clement Ho 已提交
12 13 14 15 16 17 18 19 20

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

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

21
    preloadFixtures(fixtureTemplate);
C
Clement Ho 已提交
22
    beforeEach(function() {
23
      loadFixtures(fixtureTemplate);
C
Clement Ho 已提交
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 54 55 56
    });

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

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

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

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

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

      it('should add delimiter to todos-pending-count', function() {
        expect($(todosPendingCount).text()).toEqual('1,000');
      });
    });
  });

}).call(this);