mirror of
https://github.com/nodejs/node.git
synced 2025-04-30 23:56:58 +00:00

Now returns a 417 error status or allows for an event listener on the `checkExpectation` event. Before we were ignoring requests that had misspelled `100-continue` values for expect headers. This is a quick port of the work done here: https://github.com/nodejs/node-v0.x-archive/pull/7132 by alFReD-NSH with surrounding discussion here: https://github.com/nodejs/node-v0.x-archive/issues/4651 Also updates all the instances of the deprecated EventEmitter.listenerCount to the current self.listenerCount. Most of these were in the new code ported over but there was another legacy instance. Refs: #2403 PR-URL: https://github.com/nodejs/node/pull/4501 Reviewed-By: James M Snell <jasnell@gmail.com>
56 lines
1.2 KiB
JavaScript
56 lines
1.2 KiB
JavaScript
// Spec documentation http://httpwg.github.io/specs/rfc7231.html#header.expect
|
|
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const http = require('http');
|
|
|
|
const tests = [417, 417];
|
|
|
|
let testsComplete = 0;
|
|
let testIdx = 0;
|
|
|
|
const s = http.createServer(function(req, res) {
|
|
throw new Error('this should never be executed');
|
|
});
|
|
|
|
s.listen(common.PORT, nextTest);
|
|
|
|
function nextTest() {
|
|
const options = {
|
|
port: common.PORT,
|
|
headers: { 'Expect': 'meoww' }
|
|
};
|
|
|
|
if (testIdx === tests.length) {
|
|
return s.close();
|
|
}
|
|
|
|
const test = tests[testIdx];
|
|
|
|
if (testIdx > 0) {
|
|
s.on('checkExpectation', common.mustCall((req, res) => {
|
|
res.statusCode = 417;
|
|
res.end();
|
|
}));
|
|
}
|
|
|
|
http.get(options, function(response) {
|
|
console.log('client: expected status: ' + test);
|
|
console.log('client: statusCode: ' + response.statusCode);
|
|
assert.equal(response.statusCode, test);
|
|
assert.equal(response.statusMessage, 'Expectation Failed');
|
|
|
|
response.on('end', function() {
|
|
testsComplete++;
|
|
testIdx++;
|
|
nextTest();
|
|
});
|
|
response.resume();
|
|
});
|
|
}
|
|
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(2, testsComplete);
|
|
});
|