Code coverage report for lib/http.js

Statements: 88.52% (54 / 61)      Branches: 50% (6 / 12)      Functions: 77.78% (7 / 9)      Lines: 90% (54 / 60)      Ignored: none     

All files » lib/ » http.js
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102    173 173     173     173 173     173     173 173 173     173 173 173   173 173   173 762     173 428 427 427     173 173   173 126           173 3 3   3 3 3 3 3   173 173 5 5 5 5 5 4 4 4   5 5 5 5 5 5           5 5                 5     173     173 3        
(function () { 'use strict';
 
const util = require('util');
const EventEmitter = require('events').EventEmitter;
 
 
exports.IncomingMessage = require('_http_incoming').IncomingMessage;
 
 
const common = require('_http_common');
exports.METHODS = common.methods.slice().sort();
 
 
exports.OutgoingMessage = require('_http_outgoing').OutgoingMessage;
 
 
const server = require('_http_server');
exports.ServerResponse = server.ServerResponse;
exports.STATUS_CODES = server.STATUS_CODES;
 
 
const agent = require('_http_agent');
const Agent = exports.Agent = agent.Agent;
exports.globalAgent = agent.globalAgent;
 
const client = require('_http_client');
const ClientRequest = exports.ClientRequest = client.ClientRequest;
 
exports.request = function(options, cb) {
  return new ClientRequest(options, cb);
};
 
exports.get = function(options, cb) {
  var req = exports.request(options, cb);
  req.end();
  return req;
};
 
exports._connectionListener = server._connectionListener;
const Server = exports.Server = server.Server;
 
exports.createServer = function(requestListener) {
  return new Server(requestListener);
};
 
 
// Legacy Interface
 
function Client(port, host) {
  Iif (!(this instanceof Client)) return new Client(port, host);
  EventEmitter.call(this);
 
  host = host || 'localhost';
  port = port || 80;
  this.host = host;
  this.port = port;
  this.agent = new Agent({ host: host, port: port, maxSockets: 1 });
}
util.inherits(Client, EventEmitter);
Client.prototype.request = function(method, path, headers) {
  var self = this;
  var options = {};
  options.host = self.host;
  options.port = self.port;
  if (method[0] === '/') {
    headers = path;
    path = method;
    method = 'GET';
  }
  options.method = method;
  options.path = path;
  options.headers = headers;
  options.agent = self.agent;
  var c = new ClientRequest(options);
  c.on('error', function(e) {
    self.emit('error', e);
  });
  // The old Client interface emitted 'end' on socket end.
  // This doesn't map to how we want things to operate in the future
  // but it will get removed when we remove this legacy interface.
  c.on('socket', function(s) {
    s.on('end', function() {
      if (self._decoder) {
        var ret = self._decoder.end();
        if (ret)
          self.emit('data', ret);
      }
      self.emit('end');
    });
  });
  return c;
};
 
exports.Client = util.deprecate(Client,
    'http.Client will be removed soon. Do not use it.');
 
exports.createClient = util.deprecate(function(port, host) {
  return new Client(port, host);
}, 'http.createClient is deprecated. Use `http.request` instead.');
 
}());