Welcome to mirror list, hosted at ThFree Co, Russian Federation.

message_field_spec.js « commit_sidebar « components « ide « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c2ef29c10590525d306d1191bb2b8a8594f917d0 (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
110
111
112
113
114
115
116
117
118
119
120
121
import { nextTick } from 'vue';
import { mount } from '@vue/test-utils';
import CommitMessageField from '~/ide/components/commit_sidebar/message_field.vue';

describe('IDE commit message field', () => {
  let wrapper;

  beforeEach(() => {
    wrapper = mount(CommitMessageField, {
      propsData: {
        text: '',
        placeholder: 'testing',
      },
      attachTo: document.body,
    });
  });

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

  const findMessage = () => wrapper.find('textarea');
  const findHighlights = () => wrapper.findAll('.highlights span');
  const findMarks = () => wrapper.findAll('mark');

  it('adds is-focused class on focus', async () => {
    await findMessage().trigger('focus');

    expect(wrapper.find('.is-focused').exists()).toBe(true);
  });

  it('removed is-focused class on blur', async () => {
    await findMessage().trigger('focus');

    expect(wrapper.find('.is-focused').exists()).toBe(true);

    await findMessage().trigger('blur');

    expect(wrapper.find('.is-focused').exists()).toBe(false);
  });

  it('emits input event on input', async () => {
    await findMessage().setValue('testing');

    expect(wrapper.emitted('input')[0]).toStrictEqual(['testing']);
  });

  describe('highlights', () => {
    describe('subject line', () => {
      it('does not highlight less than 50 characters', async () => {
        await wrapper.setProps({ text: 'text less than 50 chars' });

        expect(findHighlights()).toHaveLength(1);
        expect(findHighlights().at(0).text()).toContain('text less than 50 chars');

        expect(findMarks()).toHaveLength(1);
        expect(findMarks().at(0).isVisible()).toBe(false);
      });

      it('highlights characters over 50 length', async () => {
        await wrapper.setProps({
          text:
            'text less than 50 chars that should not highlighted. text more than 50 should be highlighted',
        });

        expect(findHighlights()).toHaveLength(1);
        expect(findHighlights().at(0).text()).toContain(
          'text less than 50 chars that should not highlighte',
        );

        expect(findMarks()).toHaveLength(1);
        expect(findMarks().at(0).isVisible()).toBe(true);
        expect(findMarks().at(0).text()).toBe('d. text more than 50 should be highlighted');
      });
    });

    describe('body text', () => {
      it('does not highlight body text less tan 72 characters', async () => {
        await wrapper.setProps({ text: 'subject line\nbody content' });

        expect(findHighlights()).toHaveLength(2);
        expect(findMarks().at(1).isVisible()).toBe(false);
      });

      it('highlights body text more than 72 characters', async () => {
        await wrapper.setProps({
          text:
            'subject line\nbody content that will be highlighted when it is more than 72 characters in length',
        });

        expect(findHighlights()).toHaveLength(2);
        expect(findMarks().at(1).isVisible()).toBe(true);
        expect(findMarks().at(1).text()).toBe('in length');
      });

      it('highlights body text & subject line', async () => {
        await wrapper.setProps({
          text:
            'text less than 50 chars that should not highlighted\nbody content that will be highlighted when it is more than 72 characters in length',
        });

        expect(findHighlights()).toHaveLength(2);
        expect(findMarks()).toHaveLength(2);

        expect(findMarks().at(0).text()).toContain('d');
        expect(findMarks().at(1).text()).toBe('in length');
      });
    });
  });

  describe('scrolling textarea', () => {
    it('updates transform of highlights', async () => {
      await wrapper.setProps({ text: 'subject line\n\n\n\n\n\n\n\n\n\n\nbody content' });

      findMessage().element.scrollTo(0, 50);
      await nextTick();

      expect(wrapper.find('.highlights').element.style.transform).toBe('translate3d(0, -50px, 0)');
    });
  });
});