summaryrefslogtreecommitdiff
path: root/spec/javascripts/merge_request_notes_spec.js
blob: ac6ace48108f2479be565bf59d1c828041eb71dd (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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/* global Notes */

import 'vendor/autosize';
import '~/gl_form';
import '~/lib/utils/text_utility';
import '~/render_gfm';
import '~/render_math';
import '~/notes';

const upArrowKeyCode = 38;

describe('Merge request notes', () => {
  window.gon = window.gon || {};
  window.gl = window.gl || {};
  gl.utils = gl.utils || {};

  const discussionTabFixture = 'merge_requests/diff_comment.html.raw';
  const changesTabJsonFixture = 'merge_request_diffs/inline_changes_tab_with_comments.json';
  preloadFixtures(discussionTabFixture, changesTabJsonFixture);

  describe('Discussion tab with diff comments', () => {
    beforeEach(() => {
      loadFixtures(discussionTabFixture);
      gl.utils.disableButtonIfEmptyField = _.noop;
      window.project_uploads_path = 'http://test.host/uploads';
      $('body').attr('data-page', 'projects:merge_requests:show');
      window.gon.current_user_id = $('.note:last').data('author-id');

      return new Notes('', []);
    });

    afterEach(() => {
      // Undo what we did to the shared <body>
      $('body').removeAttr('data-page');
    });

    describe('up arrow', () => {
      it('edits last comment when triggered in main form', () => {
        const upArrowEvent = $.Event('keydown');
        upArrowEvent.which = upArrowKeyCode;

        spyOnEvent('.note:last .js-note-edit', 'click');

        $('.js-note-text').trigger(upArrowEvent);

        expect('click').toHaveBeenTriggeredOn('.note:last .js-note-edit');
      });

      it('edits last comment in discussion when triggered in discussion form', (done) => {
        const upArrowEvent = $.Event('keydown');
        upArrowEvent.which = upArrowKeyCode;

        spyOnEvent('.note-discussion .js-note-edit', 'click');

        $('.js-discussion-reply-button').click();

        setTimeout(() => {
          expect(
            $('.note-discussion .js-note-text'),
          ).toExist();

          $('.note-discussion .js-note-text').trigger(upArrowEvent);

          expect('click').toHaveBeenTriggeredOn('.note-discussion .js-note-edit');

          done();
        });
      });
    });
  });

  describe('Changes tab with diff comments', () => {
    beforeEach(() => {
      const diffsResponse = getJSONFixture(changesTabJsonFixture);
      const noteFormHtml = `<form class="js-new-note-form">
        <textarea class="js-note-text"></textarea>
      </form>`;
      setFixtures(diffsResponse.html + noteFormHtml);
      $('body').attr('data-page', 'projects:merge_requests:show');
      window.gon.current_user_id = $('.note:last').data('author-id');

      return new Notes('', []);
    });

    afterEach(() => {
      // Undo what we did to the shared <body>
      $('body').removeAttr('data-page');
    });

    describe('up arrow', () => {
      it('edits last comment in discussion when triggered in discussion form', (done) => {
        const upArrowEvent = $.Event('keydown');
        upArrowEvent.which = upArrowKeyCode;

        spyOnEvent('.note:last .js-note-edit', 'click');

        $('.js-discussion-reply-button').trigger('click');

        setTimeout(() => {
          $('.js-note-text').trigger(upArrowEvent);

          expect('click').toHaveBeenTriggeredOn('.note:last .js-note-edit');

          done();
        });
      });
    });
  });
});