summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-agent-no-protocol.js
blob: 1f910c33e53932116b607190dd4f16dba585cf9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
var common = require('../common');
var assert = require('assert');
var http = require('http');
var url = require('url');

var request = 0;
var response = 0;
process.on('exit', function() {
  assert.equal(1, request, 'http server "request" callback was not called');
  assert.equal(1, response, 'http client "response" callback was not called');
});

var server = http.createServer(function(req, res) {
  res.end();
  request++;
}).listen(common.PORT, '127.0.0.1', function() {
  var opts = url.parse('http://127.0.0.1:' + common.PORT + '/');

  // remove the `protocol` field… the `http` module should fall back
  // to "http:", as defined by the global, default `http.Agent` instance.
  opts.agent = new http.Agent();
  opts.agent.protocol = null;

  http.get(opts, function (res) {
    response++;
    res.resume();
    server.close();
  });
});