summaryrefslogtreecommitdiff
path: root/spec/frontend/__helpers__/backoff_helper.js
blob: a971fcb094524a70f1294752467a683bed428208 (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
/**
 * A mock version of a commonUtils `backOff` to test multiple
 * retries.
 *
 * Usage:
 *
 * ```
 * import * as commonUtils from '~/lib/utils/common_utils';
 * import { backoffMockImplementation } from '../../helpers/backoff_helper';
 *
 * beforeEach(() => {
 *   // ...
 *   jest.spyOn(commonUtils, 'backOff').mockImplementation(backoffMockImplementation);
 * });
 * ```
 *
 * @param {Function} callback
 */
export const backoffMockImplementation = (callback) => {
  const q = new Promise((resolve, reject) => {
    const stop = (arg) => (arg instanceof Error ? reject(arg) : resolve(arg));
    const next = () => callback(next, stop);
    // Define a timeout based on a mock timer
    setTimeout(() => {
      callback(next, stop);
    });
  });
  // Run all resolved promises in chain
  jest.runOnlyPendingTimers();
  return q;
};

export default { backoffMockImplementation };