blob: 503b34406d21a7e75d4ca5edb84a72f137f61ee5 (
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
|
'use strict'
const { test, skip } = require('tap')
const { nodeMajor } = require('../../lib/core/util')
if (nodeMajor === 16) {
skip('esbuild uses static blocks with --keep-names which node 16.8 does not have')
process.exit()
}
const undici = require('../..')
const { fetch: theoreticalGlobalFetch } = require('../../undici-fetch')
test('Mocking works with both fetches', async (t) => {
const mockAgent = new undici.MockAgent()
const body = JSON.stringify({ foo: 'bar' })
mockAgent.disableNetConnect()
undici.setGlobalDispatcher(mockAgent)
const pool = mockAgent.get('https://example.com')
pool.intercept({
path: '/path',
method: 'POST',
body (bodyString) {
t.equal(bodyString, body)
return true
}
}).reply(200, { ok: 1 }).times(2)
const url = new URL('https://example.com/path').href
// undici fetch from node_modules
await undici.fetch(url, {
method: 'POST',
body
})
// the global fetch bundled with esbuild
await theoreticalGlobalFetch(url, {
method: 'POST',
body
})
t.end()
})
|