summaryrefslogtreecommitdiff
path: root/spec/javascripts/vue_shared/components/icon_spec.js
blob: 7c84473456df3bb4d0e17bd2b749e3a7d91ed5cc (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
import Vue from 'vue';
import Icon from '~/vue_shared/components/icon.vue';

const IconComponent = Vue.extend(Icon);

fdescribe('Sprite Icon Component', function () {
  describe('Initialization', function () {
    beforeEach(function () {
      this.propsData = {
        name: 'test',
        size: 99,
        cssClasses: 'extraclasses',
      };

      this.icon = new IconComponent({
        propsData: this.propsData,
      }).$mount();
    });

    it('should return a defined Vue component', function () {
      expect(this.icon).toBeDefined();
    });

    it('should have <svg> as a child element', function () {
      expect(this.icon.$el.tagName).toBe('svg');
    });

    it('should have <use> as a child element with the correct href', function () {
      expect(this.icon.$el.firstChild.tagName).toBe('use');
      expect(this.icon.$el.firstChild.getAttribute('xlink:href')).toBe(`${gon.sprite_icons}#test`);
    });

    it('should properly compute iconSizeClass', function () {
      expect(this.icon.iconSizeClass).toBe('s99');
    });

    it('should properly render img css', function () {
      const classList = this.icon.$el.classList;
      const containsSizeClass = classList.contains('s99');
      const containsCustomClass = classList.contains('extraclasses');
      expect(containsSizeClass).toBe(true);
      expect(containsCustomClass).toBe(true);
    });
  });
});