summaryrefslogtreecommitdiff
path: root/spec/frontend/issuable/issuable_form_spec.js
blob: 99ed18cf5bd51f69c60f8989f67c261e940910ba (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
import $ from 'jquery';

import IssuableForm from '~/issuable/issuable_form';
import setWindowLocation from 'helpers/set_window_location_helper';

describe('IssuableForm', () => {
  let instance;

  const createIssuable = (form) => {
    instance = new IssuableForm(form);
  };

  beforeEach(() => {
    setFixtures(`
      <form>
        <input name="[title]" />
      </form>
    `);
    createIssuable($('form'));
  });

  describe('initAutosave', () => {
    it('creates autosave with the searchTerm included', () => {
      setWindowLocation('https://gitlab.test/foo?bar=true');
      const autosave = instance.initAutosave();

      expect(autosave.key.includes('bar=true')).toBe(true);
    });

    it("creates autosave fields without the searchTerm if it's an issue new form", () => {
      setFixtures(`
        <form data-new-issue-path="/issues/new">
          <input name="[title]" />
        </form>
      `);
      createIssuable($('form'));

      setWindowLocation('https://gitlab.test/issues/new?bar=true');

      const autosave = instance.initAutosave();

      expect(autosave.key.includes('bar=true')).toBe(false);
    });
  });

  describe('removeWip', () => {
    it.each`
      prefix
      ${'draFT: '}
      ${'  [DRaft] '}
      ${'drAft:'}
      ${'[draFT]'}
      ${'(draft) '}
      ${' (DrafT)'}
      ${'draft: [draft] (draft)'}
    `('removes "$prefix" from the beginning of the title', ({ prefix }) => {
      instance.titleField.val(`${prefix}The Issuable's Title Value`);

      instance.removeWip();

      expect(instance.titleField.val()).toBe("The Issuable's Title Value");
    });
  });

  describe('addWip', () => {
    it("properly adds the work in progress prefix to the Issuable's title", () => {
      instance.titleField.val("The Issuable's Title Value");

      instance.addWip();

      expect(instance.titleField.val()).toBe("Draft: The Issuable's Title Value");
    });
  });

  describe('workInProgress', () => {
    it.each`
      title                                 | expected
      ${'draFT: something is happening'}    | ${true}
      ${'draft something is happening'}     | ${false}
      ${'something is happening to drafts'} | ${false}
      ${'something is happening'}           | ${false}
    `('returns $expected with "$title"', ({ title, expected }) => {
      instance.titleField.val(title);

      expect(instance.workInProgress()).toBe(expected);
    });
  });
});