-
-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
considering extended content-type header format (#62)
* considering extended content-type header format * adding content-type parsing unit tests
- Loading branch information
1 parent
4e8718d
commit c47969d
Showing
2 changed files
with
66 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
'use strict' | ||
|
||
const t = require('tap') | ||
const Fastify = require('fastify') | ||
const From = require('..') | ||
const http = require('http') | ||
const get = require('simple-get') | ||
|
||
const instance = Fastify() | ||
instance.register(From) | ||
|
||
t.plan(9) | ||
t.tearDown(instance.close.bind(instance)) | ||
|
||
const target = http.createServer((req, res) => { | ||
t.pass('request proxied') | ||
t.equal(req.method, 'POST') | ||
t.equal(req.headers['content-type'].startsWith('application/json'), true) | ||
var data = '' | ||
req.setEncoding('utf8') | ||
req.on('data', (d) => { | ||
data += d | ||
}) | ||
req.on('end', () => { | ||
t.deepEqual(JSON.parse(data), { hello: 'world' }) | ||
res.statusCode = 200 | ||
res.setHeader('content-type', 'application/json') | ||
res.end(JSON.stringify({ something: 'else' })) | ||
}) | ||
}) | ||
|
||
instance.post('/', (request, reply) => { | ||
reply.from(`http://localhost:${target.address().port}`) | ||
}) | ||
|
||
t.tearDown(target.close.bind(target)) | ||
|
||
instance.listen(0, (err) => { | ||
t.error(err) | ||
|
||
target.listen(0, (err) => { | ||
t.error(err) | ||
|
||
get.concat({ | ||
url: `http://localhost:${instance.server.address().port}`, | ||
method: 'POST', | ||
body: JSON.stringify({ | ||
hello: 'world' | ||
}), | ||
headers: { | ||
'content-type': 'application/json;charset=utf-8' | ||
} | ||
}, (err, res, data) => { | ||
t.error(err) | ||
t.equal(res.headers['content-type'], 'application/json') | ||
t.deepEqual(JSON.parse(data.toString()), { something: 'else' }) | ||
}) | ||
}) | ||
}) |