summaryrefslogtreecommitdiff
path: root/spec/javascripts/ide/components/commit_sidebar/message_field_spec.js
blob: c06dfa46303238938e772a32f86b6c1f37fc36c9 (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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
import Vue from 'vue';
import CommitMessageField from '~/ide/components/commit_sidebar/message_field.vue';
import createComponent from 'spec/helpers/vue_mount_component_helper';

describe('IDE commit message field', () => {
  const Component = Vue.extend(CommitMessageField);
  let vm;

  beforeEach(() => {
    setFixtures('<div id="app"></div>');

    vm = createComponent(
      Component,
      {
        text: '',
        placeholder: 'testing',
      },
      '#app',
    );
  });

  afterEach(() => {
    vm.$destroy();
  });

  it('adds is-focused class on focus', done => {
    vm.$el.querySelector('textarea').focus();

    vm.$nextTick(() => {
      expect(vm.$el.querySelector('.is-focused')).not.toBeNull();

      done();
    });
  });

  it('removed is-focused class on blur', done => {
    vm.$el.querySelector('textarea').focus();

    vm
      .$nextTick()
      .then(() => {
        expect(vm.$el.querySelector('.is-focused')).not.toBeNull();

        vm.$el.querySelector('textarea').blur();

        return vm.$nextTick();
      })
      .then(() => {
        expect(vm.$el.querySelector('.is-focused')).toBeNull();

        done();
      })
      .then(done)
      .catch(done.fail);
  });

  it('emits input event on input', () => {
    spyOn(vm, '$emit');

    const textarea = vm.$el.querySelector('textarea');
    textarea.value = 'testing';

    textarea.dispatchEvent(new Event('input'));

    expect(vm.$emit).toHaveBeenCalledWith('input', 'testing');
  });

  describe('highlights', () => {
    describe('subject line', () => {
      it('does not highlight less than 50 characters', done => {
        vm.text = 'text less than 50 chars';

        vm
          .$nextTick()
          .then(() => {
            expect(vm.$el.querySelector('.highlights span').textContent).toContain(
              'text less than 50 chars',
            );

            expect(vm.$el.querySelector('mark').style.display).toBe('none');
          })
          .then(done)
          .catch(done.fail);
      });

      it('highlights characters over 50 length', done => {
        vm.text =
          'text less than 50 chars that should not highlighted. text more than 50 should be highlighted';

        vm
          .$nextTick()
          .then(() => {
            expect(vm.$el.querySelector('.highlights span').textContent).toContain(
              'text less than 50 chars that should not highlighte',
            );

            expect(vm.$el.querySelector('mark').style.display).not.toBe('none');
            expect(vm.$el.querySelector('mark').textContent).toBe(
              'd. text more than 50 should be highlighted',
            );
          })
          .then(done)
          .catch(done.fail);
      });
    });

    describe('body text', () => {
      it('does not highlight body text less tan 72 characters', done => {
        vm.text = 'subject line\nbody content';

        vm
          .$nextTick()
          .then(() => {
            expect(vm.$el.querySelectorAll('.highlights span').length).toBe(2);
            expect(vm.$el.querySelectorAll('mark')[1].style.display).toBe('none');
          })
          .then(done)
          .catch(done.fail);
      });

      it('highlights body text more than 72 characters', done => {
        vm.text =
          'subject line\nbody content that will be highlighted when it is more than 72 characters in length';

        vm
          .$nextTick()
          .then(() => {
            expect(vm.$el.querySelectorAll('.highlights span').length).toBe(2);
            expect(vm.$el.querySelectorAll('mark')[1].style.display).not.toBe('none');
            expect(vm.$el.querySelectorAll('mark')[1].textContent).toBe(' in length');
          })
          .then(done)
          .catch(done.fail);
      });

      it('highlights body text & subject line', done => {
        vm.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';

        vm
          .$nextTick()
          .then(() => {
            expect(vm.$el.querySelectorAll('.highlights span').length).toBe(2);
            expect(vm.$el.querySelectorAll('mark').length).toBe(2);

            expect(vm.$el.querySelectorAll('mark')[0].textContent).toContain('d');
            expect(vm.$el.querySelectorAll('mark')[1].textContent).toBe(' in length');
          })
          .then(done)
          .catch(done.fail);
      });
    });
  });

  describe('scrolling textarea', () => {
    it('updates transform of highlights', done => {
      vm.text = 'subject line\n\n\n\n\n\n\n\n\n\n\nbody content';

      vm
        .$nextTick()
        .then(() => {
          vm.$el.querySelector('textarea').scrollTo(0, 50);

          vm.handleScroll();
        })
        .then(vm.$nextTick)
        .then(() => {
          expect(vm.scrollTop).toBe(50);
          expect(vm.$el.querySelector('.highlights').style.transform).toBe(
            'translate3d(0px, -50px, 0px)',
          );
        })
        .then(done)
        .catch(done.fail);
    });
  });
});