npmtest-auto-install (v0.0.1)

Code coverage report for node-npmtest-auto-install/auto-install/node_modules/glob/common.js

Statements: 68.67% (103 / 150)      Branches: 45% (45 / 100)      Functions: 81.25% (13 / 16)      Lines: 68.67% (103 / 150)      Ignored: none     

All files » node-npmtest-auto-install/auto-install/node_modules/glob/ » common.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 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 2381 1 1 1 1 1 1 1 1   1 28003     1 1 1 1   1       1 1129     1 1   1     1 1         1 1 1         1           1 1       1             1 1 1 1 1 1 1 1 1 1   1 1 1 1 1 1 1 1   1 1 1 1   1   1 1 1 1           1 1 1     1 1       1 1   1 1     1 1 1   1 1 1                     1 1     1 161         1 1   1 1     1                             1 1 161     1     1                                               1 18588 18588 1 18587   18587     18587     18588     18588           1 9954     9954 9954       1 18268     18268 18268        
exports.alphasort = alphasort
exports.alphasorti = alphasorti
exports.setopts = setopts
exports.ownProp = ownProp
exports.makeAbs = makeAbs
exports.finish = finish
exports.mark = mark
exports.isIgnored = isIgnored
exports.childrenIgnored = childrenIgnored
 
function ownProp (obj, field) {
  return Object.prototype.hasOwnProperty.call(obj, field)
}
 
var path = require("path")
var minimatch = require("minimatch")
var isAbsolute = require("path-is-absolute")
var Minimatch = minimatch.Minimatch
 
function alphasorti (a, b) {
  return a.toLowerCase().localeCompare(b.toLowerCase())
}
 
function alphasort (a, b) {
  return a.localeCompare(b)
}
 
function setupIgnores (self, options) {
  self.ignore = options.ignore || []
 
  Iif (!Array.isArray(self.ignore))
    self.ignore = [self.ignore]
 
  Eif (self.ignore.length) {
    self.ignore = self.ignore.map(ignoreMap)
  }
}
 
// ignore patterns are always in dot:true mode.
function ignoreMap (pattern) {
  var gmatcher = null
  Iif (pattern.slice(-3) === '/**') {
    var gpattern = pattern.replace(/(\/\*\*)+$/, '')
    gmatcher = new Minimatch(gpattern, { dot: true })
  }
 
  return {
    matcher: new Minimatch(pattern, { dot: true }),
    gmatcher: gmatcher
  }
}
 
function setopts (self, pattern, options) {
  Iif (!options)
    options = {}
 
  // base-matching: just use globstar for that.
  Iif (options.matchBase && -1 === pattern.indexOf("/")) {
    if (options.noglobstar) {
      throw new Error("base matching requires globstar")
    }
    pattern = "**/" + pattern
  }
 
  self.silent = !!options.silent
  self.pattern = pattern
  self.strict = options.strict !== false
  self.realpath = !!options.realpath
  self.realpathCache = options.realpathCache || Object.create(null)
  self.follow = !!options.follow
  self.dot = !!options.dot
  self.mark = !!options.mark
  self.nodir = !!options.nodir
  Iif (self.nodir)
    self.mark = true
  self.sync = !!options.sync
  self.nounique = !!options.nounique
  self.nonull = !!options.nonull
  self.nosort = !!options.nosort
  self.nocase = !!options.nocase
  self.stat = !!options.stat
  self.noprocess = !!options.noprocess
  self.absolute = !!options.absolute
 
  self.maxLength = options.maxLength || Infinity
  self.cache = options.cache || Object.create(null)
  self.statCache = options.statCache || Object.create(null)
  self.symlinks = options.symlinks || Object.create(null)
 
  setupIgnores(self, options)
 
  self.changedCwd = false
  var cwd = process.cwd()
  Eif (!ownProp(options, "cwd"))
    self.cwd = cwd
  else {
    self.cwd = path.resolve(options.cwd)
    self.changedCwd = self.cwd !== cwd
  }
 
  self.root = options.root || path.resolve(self.cwd, "/")
  self.root = path.resolve(self.root)
  Iif (process.platform === "win32")
    self.root = self.root.replace(/\\/g, "/")
 
  self.cwdAbs = makeAbs(self, self.cwd)
  self.nomount = !!options.nomount
 
  // disable comments and negation in Minimatch.
  // Note that they are not supported in Glob itself anyway.
  options.nonegate = true
  options.nocomment = true
 
  self.minimatch = new Minimatch(pattern, options)
  self.options = self.minimatch.options
}
 
function finish (self) {
  var nou = self.nounique
  var all = nou ? [] : Object.create(null)
 
  for (var i = 0, l = self.matches.length; i < l; i ++) {
    var matches = self.matches[i]
    Iif (!matches || Object.keys(matches).length === 0) {
      if (self.nonull) {
        // do like the shell, and spit out the literal glob
        var literal = self.minimatch.globSet[i]
        if (nou)
          all.push(literal)
        else
          all[literal] = true
      }
    } else {
      // had matches
      var m = Object.keys(matches)
      Iif (nou)
        all.push.apply(all, m)
      else
        m.forEach(function (m) {
          all[m] = true
        })
    }
  }
 
  Eif (!nou)
    all = Object.keys(all)
 
  Eif (!self.nosort)
    all = all.sort(self.nocase ? alphasorti : alphasort)
 
  // at *some* point we statted all of these
  Iif (self.mark) {
    for (var i = 0; i < all.length; i++) {
      all[i] = self._mark(all[i])
    }
    if (self.nodir) {
      all = all.filter(function (e) {
        var notDir = !(/\/$/.test(e))
        var c = self.cache[e] || self.cache[makeAbs(self, e)]
        if (notDir && c)
          notDir = c !== 'DIR' && !Array.isArray(c)
        return notDir
      })
    }
  }
 
  Eif (self.ignore.length)
    all = all.filter(function(m) {
      return !isIgnored(self, m)
    })
 
  self.found = all
}
 
function mark (self, p) {
  var abs = makeAbs(self, p)
  var c = self.cache[abs]
  var m = p
  if (c) {
    var isDir = c === 'DIR' || Array.isArray(c)
    var slash = p.slice(-1) === '/'
 
    if (isDir && !slash)
      m += '/'
    else if (!isDir && slash)
      m = m.slice(0, -1)
 
    if (m !== p) {
      var mabs = makeAbs(self, m)
      self.statCache[mabs] = self.statCache[abs]
      self.cache[mabs] = self.cache[abs]
    }
  }
 
  return m
}
 
// lotta situps...
function makeAbs (self, f) {
  var abs = f
  if (f.charAt(0) === '/') {
    abs = path.join(self.root, f)
  } else Iif (isAbsolute(f) || f === '') {
    abs = f
  } else Iif (self.changedCwd) {
    abs = path.resolve(self.cwd, f)
  } else {
    abs = path.resolve(f)
  }
 
  Iif (process.platform === 'win32')
    abs = abs.replace(/\\/g, '/')
 
  return abs
}
 
 
// Return true, if pattern ends with globstar '**', for the accompanying parent directory.
// Ex:- If node_modules/** is the pattern, add 'node_modules' to ignore list along with it's contents
function isIgnored (self, path) {
  Iif (!self.ignore.length)
    return false
 
  return self.ignore.some(function(item) {
    return item.matcher.match(path) || !!(item.gmatcher && item.gmatcher.match(path))
  })
}
 
function childrenIgnored (self, path) {
  Iif (!self.ignore.length)
    return false
 
  return self.ignore.some(function(item) {
    return !!(item.gmatcher && item.gmatcher.match(path))
  })
}