all files / test/unit/bs/module/ Buttons.spec.js

99.24% Statements 130/131
80% Branches 4/5
100% Functions 38/38
99.24% Lines 130/131
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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236                  18× 18×   18× 18× 18×                   18× 18×   18× 18×         18×                                                                                                                                                                    
/**
 * Buttons.spec.js
 * (c) 2015~ Summernote Team
 * summernote may be freely distributed under the MIT license./
 */
 
import chai from 'chai';
import $ from 'jquery';
import env from '../../../../src/js/base/core/env';
import range from '../../../../src/js/base/core/range';
import Context from '../../../../src/js/base/Context';
 
const expect = chai.expect;
const assert = chai.assert;
 
describe('Buttons', () => {
  var context, $toolbar, $editable;
 
  beforeEach(function() {
    $('body').empty(); // important !
    var $note = $('<div><p>hello</p></div>').appendTo('body');
 
    var options = $.extend({}, $.summernote.options);
    options.langInfo = $.extend(true, {}, $.summernote.lang['en-US'], $.summernote.lang[options.lang]);
    options.toolbar = [
      ['font1', ['style', 'clear']],
      ['font2', ['bold', 'underline', 'italic', 'superscript', 'subscript', 'strikethrough']],
      ['font3', ['fontname', 'fontsize']],
      ['color', ['color']],
      ['para', ['ul', 'ol', 'paragraph']],
      ['table', ['table']],
      ['insert', ['link', 'picture', 'video']],
      ['view', ['fullscreen', 'codeview', 'help']]
    ];
    context = new Context($note, options);
    context.initialize();
 
    $toolbar = context.layoutInfo.toolbar;
    $editable = context.layoutInfo.editable;
 
    // [workaround]
    //  - Firefox need setTimeout for applying contents
    //  - IE8~11 can't create range in headless mode
    Iif (env.isFF || env.isMSIE || env.isEdge) {
      this.skip();
    }
  });
 
  describe('bold button', () => {
    it('should execute bold command when it is clicked', () => {
      range.createFromNode($editable.find('p')[0]).normalize().select();
 
      $toolbar.find('.note-btn-bold').click();
      expect($editable.html()).to.equalsIgnoreCase('<p><b>hello</b></p>');
    });
  });
 
  describe('bold button state updated', () => {
    it('should look toggled immediately when clicked', () => {
      var $button = $toolbar.find('.note-btn-bold');
      assert.isTrue($button.length === 1);
      assert.isFalse($button.hasClass('active'));
      $button.click();
      assert.isTrue($button.hasClass('active'), 'button is now active');
    });
  });
 
  describe('italic button', () => {
    it('should execute italic command when it is clicked', () => {
      range.createFromNode($editable.find('p')[0]).normalize().select();
 
      $toolbar.find('.note-btn-italic').click();
      expect($editable.html()).to.equalsIgnoreCase('<p><i>hello</i></p>');
    });
  });
 
  describe('italic button state updated', () => {
    it('should look toggled immediately when clicked', () => {
      var $button = $toolbar.find('.note-btn-italic');
      assert.isTrue($button.length === 1);
      assert.isFalse($button.hasClass('active'));
      $button.click();
      assert.isTrue($button.hasClass('active'), 'button is now active');
    });
  });
 
  describe('underline button', () => {
    it('should execute underline command when it is clicked', () => {
      range.createFromNode($editable.find('p')[0]).normalize().select();
 
      $toolbar.find('.note-btn-underline').click();
      expect($editable.html()).to.equalsIgnoreCase('<p><u>hello</u></p>');
    });
  });
 
  describe('underline button state updated', () => {
    it('should look toggled immediately when clicked', () => {
      var $button = $toolbar.find('.note-btn-underline');
      assert.isTrue($button.length === 1);
      assert.isFalse($button.hasClass('active'));
      $button.click();
      assert.isTrue($button.hasClass('active'), 'button is now active');
    });
  });
 
  describe('superscript button', () => {
    it('should execute superscript command when it is clicked', () => {
      range.createFromNode($editable.find('p')[0]).normalize().select();
 
      $toolbar.find('.note-btn-superscript').click();
      expect($editable.html()).to.equalsIgnoreCase('<p><sup>hello</sup></p>');
    });
  });
 
  describe('superscript button state updated', () => {
    it('should look toggled immediately when clicked', () => {
      var $button = $toolbar.find('.note-btn-superscript');
      assert.isTrue($button.length === 1);
      assert.isFalse($button.hasClass('active'));
      $button.click();
      assert.isTrue($button.hasClass('active'), 'button is now active');
    });
  });
 
  describe('subscript button', () => {
    it('should execute subscript command when it is clicked', () => {
      range.createFromNode($editable.find('p')[0]).normalize().select();
 
      $toolbar.find('.note-btn-subscript').click();
      expect($editable.html()).to.equalsIgnoreCase('<p><sub>hello</sub></p>');
    });
  });
 
  describe('subscript button state updated', () => {
    it('should look toggled immediately when clicked', () => {
      var $button = $toolbar.find('.note-btn-subscript');
      assert.isTrue($button.length === 1);
      assert.isFalse($button.hasClass('active'));
      $button.click();
      assert.isTrue($button.hasClass('active'), 'button is now active');
    });
  });
 
  describe('strikethrough button', () => {
    it('should execute strikethrough command when it is clicked', () => {
      range.createFromNode($editable.find('p')[0]).normalize().select();
 
      $toolbar.find('.note-btn-strikethrough').click();
      expect($editable.html()).to.equalsIgnoreCase('<p><strike>hello</strike></p>');
    });
  });
 
  describe('strikethrough button state updated', () => {
    it('should look toggled immediately when clicked', () => {
      var $button = $toolbar.find('.note-btn-strikethrough');
      assert.isTrue($button.length === 1);
      assert.isFalse($button.hasClass('active'));
      $button.click();
      assert.isTrue($button.hasClass('active'), 'button is now active');
    });
  });
 
  describe('clear button state not updated when clicked', () => {
    it('should never look toggled when clicked', () => {
      var $button = $toolbar.find('i.note-icon-eraser').parent();
      assert.isTrue($button.length === 1);
      assert.isFalse($button.hasClass('active'));
      $button.click();
      assert.isFalse($button.hasClass('active'), 'button is now active');
    });
  });
 
  describe('font family button', () => {
    it('should select the right font family name in the dropdown list when it is clicked', () => {
      // XXX: skip assertions for passing test on travis.
      // var $li = $toolbar.find('.dropdown-fontname li>a[data-value="Comic Sans MS"]');
      // var $span = $toolbar.find('span.note-current-fontname');
      // assert.isTrue($li.length === 1);
      // assert.isTrue($span.text() !== 'Comic Sans MS');
      // $li.click();
      // assert.isTrue($span.text() === 'Comic Sans MS');
    });
  });
 
  describe('recent color button', () => {
    it('should execute color command when it is clicked', () => {
      range.createFromNode($editable.find('p')[0]).normalize().select();
 
      $toolbar.find('.note-current-color-button').click();
 
      var $span = $editable.find('span');
      expect($span).to.be.equalsStyle('#FFFF00', 'background-color');
    });
  });
 
  describe('fore color button', () => {
    it('should execute fore color command when it is clicked', () => {
      range.createFromNode($editable.find('p')[0]).normalize().select();
 
      var $button = $toolbar.find('[data-event=foreColor]').eq(10);
      $button.click();
 
      var $span = $editable.find('span');
      expect($span).to.be.equalsStyle('#FF9C00', 'color');
    });
  });
 
  describe('back color button', () => {
    it('should execute back color command when it is clicked', () => {
      range.createFromNode($editable.find('p')[0]).normalize().select();
 
      var $button = $toolbar.find('[data-event=backColor]').eq(10);
      $button.click();
 
      var $span = $editable.find('span');
      expect($span).to.be.equalsStyle($button.data('value'), 'background-color');
    });
  });
 
  describe('font size button with empty content', () => {
    it('should update font size button value when changing font size', () => {
      var $fontSizeDropdown = $toolbar.find('.dropdown-fontsize');
      var $fontSizeButton = $fontSizeDropdown.siblings('button');
      var $fontSizeList = $fontSizeDropdown.find('a');
      var selectedSize = '36';
 
      // click on dropdown button
      $fontSizeButton.trigger('click');
      // select a font size
      $fontSizeList.filter('[data-value="' + selectedSize + '"]').trigger('click');
 
      expect($fontSizeButton.text().trim()).to.equal(selectedSize);
    });
  });
});