summaryrefslogtreecommitdiff
path: root/spec/frontend/issues/show/components/fields/description_template_spec.js
blob: abe2805e5b252feb1e50c93ad00da15f4934056d (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
import Vue from 'vue';
import descriptionTemplate from '~/issues/show/components/fields/description_template.vue';

describe('Issue description template component with templates as hash', () => {
  let vm;
  let formState;

  beforeEach(() => {
    const Component = Vue.extend(descriptionTemplate);
    formState = {
      description: 'test',
    };

    vm = new Component({
      propsData: {
        formState,
        issuableTemplates: {
          test: [{ name: 'test', id: 'test', project_path: '/', namespace_path: '/' }],
        },
        projectId: 1,
        projectPath: '/',
        namespacePath: '/',
        projectNamespace: '/',
      },
    }).$mount();
  });

  it('renders templates as JSON hash in data attribute', () => {
    expect(vm.$el.querySelector('.js-issuable-selector').getAttribute('data-data')).toBe(
      '{"test":[{"name":"test","id":"test","project_path":"/","namespace_path":"/"}]}',
    );
  });

  it('updates formState when changing template', () => {
    vm.issuableTemplate.editor.setValue('test new template');

    expect(formState.description).toBe('test new template');
  });

  it('returns formState description with editor getValue', () => {
    formState.description = 'testing new template';

    expect(vm.issuableTemplate.editor.getValue()).toBe('testing new template');
  });
});

describe('Issue description template component with templates as array', () => {
  let vm;
  let formState;

  beforeEach(() => {
    const Component = Vue.extend(descriptionTemplate);
    formState = {
      description: 'test',
    };

    vm = new Component({
      propsData: {
        formState,
        issuableTemplates: [{ name: 'test', id: 'test', project_path: '/', namespace_path: '/' }],
        projectId: 1,
        projectPath: '/',
        namespacePath: '/',
        projectNamespace: '/',
      },
    }).$mount();
  });

  it('renders templates as JSON array in data attribute', () => {
    expect(vm.$el.querySelector('.js-issuable-selector').getAttribute('data-data')).toBe(
      '[{"name":"test","id":"test","project_path":"/","namespace_path":"/"}]',
    );
  });
});