-
-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add failing test * Resolve issue 59
- Loading branch information
Showing
2 changed files
with
60 additions
and
2 deletions.
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,56 @@ | ||
'use strict' | ||
|
||
const t = require('tap') | ||
const Fastify = require('fastify') | ||
const From = require('..') | ||
const http = require('http') | ||
const get = require('simple-get').concat | ||
|
||
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'], 'text/plain') | ||
var data = '' | ||
req.setEncoding('utf8') | ||
req.on('data', (d) => { | ||
data += d | ||
}) | ||
req.on('end', () => { | ||
const str = data.toString() | ||
t.deepEqual(str, 'this is plain text') | ||
res.statusCode = 200 | ||
res.setHeader('content-type', 'text/plain') | ||
res.end(str) | ||
}) | ||
}) | ||
|
||
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({ | ||
url: `http://localhost:${instance.server.address().port}`, | ||
method: 'POST', | ||
headers: { 'content-type': 'text/plain' }, | ||
body: 'this is plain text' | ||
}, (err, res, data) => { | ||
t.error(err) | ||
t.equal(res.headers['content-type'], 'text/plain') | ||
t.deepEqual(data.toString(), 'this is plain text') | ||
}) | ||
}) | ||
}) |