summaryrefslogtreecommitdiff
path: root/spec/frontend/blob/components/blob_edit_content_spec.js
blob: 971ef72521ddc639c0406776c11afd18ffdb556b (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
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
import { shallowMount } from '@vue/test-utils';
import BlobEditContent from '~/blob/components/blob_edit_content.vue';
import { initEditorLite } from '~/blob/utils';
import { nextTick } from 'vue';

jest.mock('~/blob/utils', () => ({
  initEditorLite: jest.fn(),
}));

describe('Blob Header Editing', () => {
  let wrapper;
  const value = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.';
  const fileName = 'lorem.txt';

  function createComponent(props = {}) {
    wrapper = shallowMount(BlobEditContent, {
      propsData: {
        value,
        fileName,
        ...props,
      },
    });
  }

  beforeEach(() => {
    createComponent();
  });

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

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

    it('renders content', () => {
      expect(wrapper.text()).toContain(value);
    });
  });

  describe('functionality', () => {
    it('does not fail without content', () => {
      const spy = jest.spyOn(global.console, 'error');
      createComponent({ value: undefined });

      expect(spy).not.toHaveBeenCalled();
      expect(wrapper.contains('#editor')).toBe(true);
    });

    it('initialises Editor Lite', () => {
      const el = wrapper.find({ ref: 'editor' }).element;
      expect(initEditorLite).toHaveBeenCalledWith({
        el,
        blobPath: fileName,
        blobContent: value,
      });
    });

    it('reacts to the changes in fileName', () => {
      wrapper.vm.editor = {
        updateModelLanguage: jest.fn(),
      };

      const newFileName = 'ipsum.txt';

      wrapper.setProps({
        fileName: newFileName,
      });

      return nextTick().then(() => {
        expect(wrapper.vm.editor.updateModelLanguage).toHaveBeenCalledWith(newFileName);
      });
    });

    it('emits input event when the blob content is changed', () => {
      const editorEl = wrapper.find({ ref: 'editor' });
      wrapper.vm.editor = {
        getValue: jest.fn().mockReturnValue(value),
      };

      editorEl.trigger('keyup');

      return nextTick().then(() => {
        expect(wrapper.emitted().input[0]).toEqual([value]);
      });
    });
  });
});