summaryrefslogtreecommitdiff
path: root/spec/frontend/vue_shared/components/identicon_spec.js
blob: 24fc3713e2b4b9bc060830e841ba1601b775881d (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
import { shallowMount } from '@vue/test-utils';
import IdenticonComponent from '~/vue_shared/components/identicon.vue';

describe('Identicon', () => {
  let wrapper;

  const defaultProps = {
    entityId: 1,
    entityName: 'entity-name',
    sizeClass: 's40',
  };

  const createComponent = (props = {}) => {
    wrapper = shallowMount(IdenticonComponent, {
      propsData: {
        ...defaultProps,
        ...props,
      },
    });
  };

  afterEach(() => {
    wrapper.destroy();
    wrapper = null;
  });

  describe('entity id is a number', () => {
    beforeEach(() => createComponent());

    it('matches snapshot', () => {
      expect(wrapper.element).toMatchSnapshot();
    });

    it('adds a correct class to identicon', () => {
      expect(wrapper.find({ ref: 'identicon' }).classes()).toContain('bg2');
    });
  });

  describe('entity id is a GraphQL id', () => {
    beforeEach(() => createComponent({ entityId: 'gid://gitlab/Project/8' }));

    it('matches snapshot', () => {
      expect(wrapper.element).toMatchSnapshot();
    });

    it('adds a correct class to identicon', () => {
      expect(wrapper.find({ ref: 'identicon' }).classes()).toContain('bg2');
    });
  });
});