summaryrefslogtreecommitdiff
path: root/spec/frontend/snippets/components/snippet_blob_edit_spec.js
blob: 75688e618925b75f57c3e180e4b939c2d74023d1 (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
import SnippetBlobEdit from '~/snippets/components/snippet_blob_edit.vue';
import BlobHeaderEdit from '~/blob/components/blob_edit_header.vue';
import BlobContentEdit from '~/blob/components/blob_edit_content.vue';
import { GlLoadingIcon } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import { nextTick } from 'vue';

jest.mock('~/blob/utils', () => jest.fn());

describe('Snippet Blob Edit component', () => {
  let wrapper;
  const value = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.';
  const fileName = 'lorem.txt';
  const findHeader = () => wrapper.find(BlobHeaderEdit);
  const findContent = () => wrapper.find(BlobContentEdit);

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

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

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

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

    it('renders required components', () => {
      expect(findHeader().exists()).toBe(true);
      expect(findContent().exists()).toBe(true);
    });

    it('renders loader if isLoading equals true', () => {
      createComponent({ isLoading: true });
      expect(wrapper.contains(GlLoadingIcon)).toBe(true);
      expect(findContent().exists()).toBe(false);
    });
  });

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

      expect(spy).not.toHaveBeenCalled();
      expect(findContent().exists()).toBe(true);
    });

    it('emits "name-change" event when the file name gets changed', () => {
      expect(wrapper.emitted('name-change')).toBeUndefined();
      const newFilename = 'foo.bar';
      findHeader().vm.$emit('input', newFilename);

      return nextTick().then(() => {
        expect(wrapper.emitted('name-change')[0]).toEqual([newFilename]);
      });
    });

    it('emits "input" event when the file content gets changed', () => {
      expect(wrapper.emitted('input')).toBeUndefined();
      const newValue = 'foo.bar';
      findContent().vm.$emit('input', newValue);

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