You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

55 lines
1.2 KiB

// 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);
});