about summary refs log tree commit diff
path: root/__tests__/lib/async/bundle.test.ts
blob: 8718f54a602bec5702561a14fa817b45782e0f0b (plain) (blame)
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
import {bundleAsync} from '../../../src/lib/async/bundle'

describe('bundle', () => {
  it('bundles multiple simultaneous calls into one execution', async () => {
    let calls = 0
    const fn = bundleAsync(async () => {
      calls++
      await new Promise(r => setTimeout(r, 1))
      return 'hello'
    })
    const [res1, res2, res3] = await Promise.all([fn(), fn(), fn()])
    expect(calls).toEqual(1)
    expect(res1).toEqual('hello')
    expect(res2).toEqual('hello')
    expect(res3).toEqual('hello')
  })
  it('does not bundle non-simultaneous calls', async () => {
    let calls = 0
    const fn = bundleAsync(async () => {
      calls++
      await new Promise(r => setTimeout(r, 1))
      return 'hello'
    })
    const res1 = await fn()
    const res2 = await fn()
    const res3 = await fn()
    expect(calls).toEqual(3)
    expect(res1).toEqual('hello')
    expect(res2).toEqual('hello')
    expect(res3).toEqual('hello')
  })
  it('is not affected by rejections', async () => {
    let calls = 0
    const fn = bundleAsync(async () => {
      calls++
      await new Promise(r => setTimeout(r, 1))
      throw new Error()
    })
    const res1 = await fn().catch(() => 'reject')
    const res2 = await fn().catch(() => 'reject')
    const res3 = await fn().catch(() => 'reject')
    expect(calls).toEqual(3)
    expect(res1).toEqual('reject')
    expect(res2).toEqual('reject')
    expect(res3).toEqual('reject')
  })
})