summaryrefslogtreecommitdiff
path: root/spec/javascripts/vue_shared/components/confirmation_input_spec.js
blob: da26efcbc13a7385767c49aaac0cdd90e41a8afa (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
import Vue from 'vue';
import ConfirmationInput from '~/vue_shared/components/confirmation_input.vue';
import mountComponent from '../../helpers/vue_mount_component_helper';

// TODO
xdescribe('Confirmation input component', () => {
  const Component = Vue.extend(ConfirmationInput);
  let vm;

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

  describe('props', () => {
    describe('confirmationValue', () => {
      const confirmationValue = 'something to confirm';

      beforeEach(() => {
        vm = mountComponent(Component, {
          confirmationValue,
        });
      });

      it('displays the confirmation value', () => {
        expect(vm.$el.innerText).toContain(confirmationValue);
      });
    });
  });

  describe('computed', () => {
    describe('inputLabel', () => {
      const confirmationValue = 'n<e></e>ds escap"ng';

      it('escapes confirmationValue by default', () => {
        vm = mountComponent(Component, {
          confirmationValue,
        });
        expect(vm.inputLabel).toBe('Type <code>n&lt;e&gt;&lt;/e&gt;ds escap&quot;ng</code> to confirm:');
      });

      it('does not escape confirmationValue if escapeValue is false', () => {
        vm = mountComponent(Component, {
          confirmationValue,
          shouldEscapeConfirmationValue: false,
        });
        expect(vm.inputLabel).toBe(`Type <code>${confirmationValue}</code> to confirm:`);
      });
    });
  });

  describe('methods', () => {
    describe('onInput', () => {
      const confirmationValue = 'some dummy value';
      const dummyEvent = inputValue => ({
        target: {
          value: inputValue,
        },
      });

      beforeEach(() => {
        vm = mountComponent(Component, {
          confirmationValue,
        });
        spyOn(vm, '$emit');
      });

      it('triggers confirmed event with false if entered value is incorrect', () => {
        vm.onInput(dummyEvent('this is incorrect'));

        expect(vm.$emit).toHaveBeenCalledWith('confirmed', false);
      });

      it('triggers confirmed event with true if entered value is correct', () => {
        vm.onInput(dummyEvent(confirmationValue));

        expect(vm.$emit).toHaveBeenCalledWith('confirmed', true);
      });
    });
  });
});