Skip to content

Instantly share code, notes, and snippets.

@aflatter
Created March 7, 2011 10:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aflatter/b6000d5777d28f9992ac to your computer and use it in GitHub Desktop.
Save aflatter/b6000d5777d28f9992ac to your computer and use it in GitHub Desktop.
var http = require('http'),
formidable = require('formidable'),
request = require('request'),
assert = require('assert'),
sys = require('sys');
var host = '127.0.0.1',
port = 1234;
var index = [
'<form action="/" method="post" enctype="multipart/form-data">',
' <input type="text" name="foo" />',
' <input type="submit" />',
'</form>'
].join("\n");
http.createServer(function(req, res) {
// Show a form for testing purposes.
if (req.method == 'GET') {
res.writeHead(200, {'content-type': 'text/html'});
res.end(index);
return;
}
// Parse form and write results to response.
var form = new formidable.IncomingForm();
form.parse(req, function(err, fields, files) {
res.writeHead(200, {'content-type': 'text/plain'});
res.write(JSON.stringify({err: err, fields: fields, files: files}));
res.end();
});
}).listen(port, host, function() {
console.log("Server up and running...");
var server = this,
url = 'http://' + host + ':' + port;
var parts = [
{'Content-Disposition': 'form-data; name="foo"', 'body': 'bar'}
]
var req = request({method: 'POST', url: url, multipart: parts}, function(e, res, body) {
var obj = JSON.parse(body);
assert.equal("bar", obj.fields.foo);
server.close();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment