nodejs/test/parallel/test-http-request-methods.js

45 lines
1.1 KiB
JavaScript
Raw Normal View History

'use strict';
const common = require('../common');
var assert = require('assert');
var net = require('net');
var http = require('http');
// Test that the DELETE, PATCH and PURGE verbs get passed through correctly
['DELETE', 'PATCH', 'PURGE'].forEach(function(method, index) {
var server = http.createServer(common.mustCall(function(req, res) {
assert.strictEqual(req.method, method);
2012-02-17 23:45:50 +01:00
res.writeHead(200, {'Content-Type': 'text/plain'});
res.write('hello ');
res.write('world\n');
res.end();
}));
server.listen(0);
server.on('listening', common.mustCall(function() {
var c = net.createConnection(this.address().port);
var server_response = '';
2012-02-17 23:45:50 +01:00
c.setEncoding('utf8');
2012-02-17 23:45:50 +01:00
c.on('connect', function() {
c.write(method + ' / HTTP/1.0\r\n\r\n');
});
2012-02-17 23:45:50 +01:00
c.on('data', function(chunk) {
console.log(chunk);
server_response += chunk;
});
c.on('end', common.mustCall(function() {
const m = server_response.split('\r\n\r\n');
assert.strictEqual(m[1], 'hello world\n');
2012-02-17 23:45:50 +01:00
c.end();
}));
2012-02-17 23:45:50 +01:00
c.on('close', function() {
server.close();
});
}));
});