request/tests/test-localAddress.js

Maintainability

77.19

Lines of code

49

Created with Raphaël 2.1.002550751002015-1-52014-12-42014-12-3

2015-5-18
Maintainability: 77.19

Created with Raphaël 2.1.0012.52537.5502015-1-52014-12-42014-12-3

2015-5-18
Lines of Code: 49

Difficulty

15.52

Estimated Errors

0.40

Function weight

By Complexity

Created with Raphaël 2.1.0<anonymous>3

By SLOC

Created with Raphaël 2.1.0<anonymous>22
1
'use strict'
Column: 0 "Use the function form of "use strict"."
Column: 1 "Missing semicolon."
2
var request = require('../index')
Column: 33 "Bad line breaking before ','."
Column: 15 "'require' is not defined."
3
  , tape = require('tape')
Column: 3 "Comma warnings can be turned off with 'laxcomma'."
Column: 27 "Missing semicolon."
Column: 12 "'require' is not defined."
4
 
5
tape('bind to invalid address', function (t) {
6
  request.get({
7
    uri: 'http://www.google.com',
8
    localAddress: '1.2.3.4'
9
  }, function (err, res) {
10
    t.notEqual(err, null)
Column: 26 "Missing semicolon."
11
    t.equal(true, /bind EADDRNOTAVAIL/.test(err.message))
Column: 58 "Missing semicolon."
12
    t.equal(res, undefined)
Column: 28 "Missing semicolon."
13
    t.end()
Column: 12 "Missing semicolon."
14
  })
Column: 5 "Missing semicolon."
15
})
Column: 3 "Missing semicolon."
16
 
17
tape('bind to local address', function (t) {
18
  request.get({
19
    uri: 'http://www.google.com',
20
    localAddress: '127.0.0.1'
21
  }, function (err, res) {
22
    t.notEqual(err, null)
Column: 26 "Missing semicolon."
23
    t.equal(res, undefined)
Column: 28 "Missing semicolon."
24
    t.end()
Column: 12 "Missing semicolon."
25
  })
Column: 5 "Missing semicolon."
26
})
Column: 3 "Missing semicolon."
27
 
28
tape('bind to local address on redirect', function (t) {
29
  var os = require('os')
Column: 25 "Missing semicolon."
Column: 12 "'require' is not defined."
30
  var localInterfaces = os.networkInterfaces()
Column: 47 "Missing semicolon."
31
  var localIPS = []
Column: 20 "Missing semicolon."
32
  Object.keys(localInterfaces).forEach(function (ifname) {
33
    localInterfaces[ifname].forEach(function (iface) {
34
      if (iface.family !== 'IPv4' || iface.internal !== false) {
35
        // skip over internal (i.e. 127.0.0.1) and non-ipv4 addresses
36
        return
Column: 15 "Missing semicolon."
37
      }
38
      localIPS.push(iface.address)
Column: 35 "Missing semicolon."
39
    })
Column: 7 "Missing semicolon."
40
  })
Column: 5 "Missing semicolon."
41
  request.get({
42
    uri: 'http://google.com', //redirects to 'http://google.com'
43
    localAddress: localIPS[0]
44
  }, function (err, res) {
45
    t.equal(err, null)
Column: 23 "Missing semicolon."
46
    t.equal(res.request.localAddress, localIPS[0])
Column: 51 "Missing semicolon."
47
    t.end()
Column: 12 "Missing semicolon."
48
  })
Column: 5 "Missing semicolon."
49
})
Column: 3 "Missing semicolon."