56 lines
1.3 KiB
JavaScript
56 lines
1.3 KiB
JavaScript
'use strict'
|
|
|
|
const { test } = require('tap')
|
|
const inject = require('../index')
|
|
|
|
test('basic async await', async t => {
|
|
const dispatch = function (req, res) {
|
|
res.writeHead(200, { 'Content-Type': 'text/plain' })
|
|
res.end('hello')
|
|
}
|
|
|
|
try {
|
|
const res = await inject(dispatch, { method: 'GET', url: 'http://example.com:8080/hello' })
|
|
t.equal(res.payload, 'hello')
|
|
} catch (err) {
|
|
t.fail(err)
|
|
}
|
|
})
|
|
|
|
test('basic async await (errored)', async t => {
|
|
const dispatch = function (req, res) {
|
|
res.connection.destroy(new Error('kaboom'))
|
|
}
|
|
|
|
await t.rejects(inject(dispatch, { method: 'GET', url: 'http://example.com:8080/hello' }))
|
|
})
|
|
|
|
test('chainable api with async await', async t => {
|
|
const dispatch = function (req, res) {
|
|
res.writeHead(200, { 'Content-Type': 'text/plain' })
|
|
res.end('hello')
|
|
}
|
|
|
|
try {
|
|
const chain = inject(dispatch).get('http://example.com:8080/hello')
|
|
const res = await chain.end()
|
|
t.equal(res.payload, 'hello')
|
|
} catch (err) {
|
|
t.fail(err)
|
|
}
|
|
})
|
|
|
|
test('chainable api with async await without end()', async t => {
|
|
const dispatch = function (req, res) {
|
|
res.writeHead(200, { 'Content-Type': 'text/plain' })
|
|
res.end('hello')
|
|
}
|
|
|
|
try {
|
|
const res = await inject(dispatch).get('http://example.com:8080/hello')
|
|
t.equal(res.payload, 'hello')
|
|
} catch (err) {
|
|
t.fail(err)
|
|
}
|
|
})
|