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

event_hub_factory_spec.js « helpers « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2491e8d5ddaee57d8ce8be9638b31a677ea5890a (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
import createEventHub from '~/helpers/event_hub_factory';

const TEST_EVENT = 'foobar';
const TEST_EVENT_2 = 'testevent';

describe('event bus factory', () => {
  let eventBus;
  let handler;
  let otherHandlers;

  beforeEach(() => {
    eventBus = createEventHub();
    handler = jest.fn();
    otherHandlers = [jest.fn(), jest.fn()];
  });

  afterEach(() => {
    eventBus.dispose();
    eventBus = null;
  });

  describe('instance', () => {
    it.each`
      method
      ${'$on'}
      ${'$once'}
      ${'$off'}
      ${'$emit'}
    `('has $method method', ({ method }) => {
      expect(eventBus[method]).toEqual(expect.any(Function));
    });
  });

  describe('$on', () => {
    beforeEach(() => {
      eventBus.$on(TEST_EVENT, handler);
    });

    it('calls handler when event is emitted', () => {
      eventBus.$emit(TEST_EVENT);
      expect(handler).toHaveBeenCalledWith();
    });

    it('calls handler with multiple args', () => {
      eventBus.$emit(TEST_EVENT, 'arg1', 'arg2', 'arg3');
      expect(handler).toHaveBeenCalledWith('arg1', 'arg2', 'arg3');
    });

    it('calls handler multiple times', () => {
      eventBus.$emit(TEST_EVENT, 'arg1', 'arg2', 'arg3');
      eventBus.$emit(TEST_EVENT, 'arg1', 'arg2', 'arg3');

      expect(handler).toHaveBeenCalledTimes(2);
    });
  });

  describe('$once', () => {
    beforeEach(() => {
      eventBus.$once(TEST_EVENT, handler);
    });

    it('calls handler when event is emitted', () => {
      eventBus.$emit(TEST_EVENT);
      expect(handler).toHaveBeenCalled();
    });

    it('calls the handler only once when event is emitted multiple times', () => {
      eventBus.$emit(TEST_EVENT);
      eventBus.$emit(TEST_EVENT);
      expect(handler).toHaveBeenCalledTimes(1);
    });

    describe('when the handler thows an error', () => {
      beforeEach(() => {
        handler = jest.fn().mockImplementation(() => {
          throw new Error();
        });
        eventBus.$once(TEST_EVENT, handler);
      });

      it('calls off when event is emitted', () => {
        expect(() => {
          eventBus.$emit(TEST_EVENT);
        }).toThrow();
        expect(() => {
          eventBus.$emit(TEST_EVENT);
        }).not.toThrow();

        expect(handler).toHaveBeenCalledTimes(1);
      });
    });
  });

  describe('$off', () => {
    beforeEach(() => {
      otherHandlers.forEach((x) => eventBus.$on(TEST_EVENT, x));
      eventBus.$on(TEST_EVENT, handler);
    });

    it('can be called on event with no handlers', () => {
      expect(() => {
        eventBus.$off(TEST_EVENT_2);
      }).not.toThrow();
    });

    it('can be called on event with no handlers, with a handler', () => {
      expect(() => {
        eventBus.$off(TEST_EVENT_2, handler);
      }).not.toThrow();
    });

    it('with a handler, will no longer call that handler', () => {
      eventBus.$off(TEST_EVENT, handler);

      eventBus.$emit(TEST_EVENT);

      expect(handler).not.toHaveBeenCalled();
      expect(otherHandlers.map((x) => x.mock.calls.length)).toEqual(otherHandlers.map(() => 1));
    });

    it('without a handler, will no longer call any handlers', () => {
      eventBus.$off(TEST_EVENT);

      eventBus.$emit(TEST_EVENT);

      expect(handler).not.toHaveBeenCalled();
      expect(otherHandlers.map((x) => x.mock.calls.length)).toEqual(otherHandlers.map(() => 0));
    });
  });

  describe('$emit', () => {
    beforeEach(() => {
      otherHandlers.forEach((x) => eventBus.$on(TEST_EVENT_2, x));
      eventBus.$on(TEST_EVENT, handler);
    });

    it('only calls handlers for given type', () => {
      eventBus.$emit(TEST_EVENT, 'arg1');

      expect(handler).toHaveBeenCalledWith('arg1');
      expect(otherHandlers.map((x) => x.mock.calls.length)).toEqual(otherHandlers.map(() => 0));
    });
  });
});