File size: 8,532 Bytes
eb67da4 |
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 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 |
/* eslint-env mocha */
'use strict';
const os = require('os');
const path = require('path');
const fs = require('mz/fs');
const madge = require('../lib/api');
require('should');
describe('API', () => {
it('throws error on missing path argument', () => {
(() => {
madge();
}).should.throw('path argument not provided');
});
it('returns a Promise', () => {
madge(__dirname + '/cjs/a.js').should.be.Promise(); // eslint-disable-line new-cap
});
it('throws error if file or directory does not exists', (done) => {
madge(__dirname + '/missing.js').catch((err) => {
err.message.should.match(/no such file or directory/);
done();
}).catch(done);
});
it('takes single file as path', (done) => {
madge(__dirname + '/cjs/a.js').then((res) => {
res.obj().should.eql({
'a.js': ['b.js', 'c.js'],
'b.js': ['c.js'],
'c.js': []
});
done();
}).catch(done);
});
it('takes an array of files as path and combines the result', (done) => {
madge([__dirname + '/cjs/a.js', __dirname + '/cjs/normal/d.js']).then((res) => {
res.obj().should.eql({
'a.js': ['b.js', 'c.js'],
'b.js': ['c.js'],
'c.js': [],
'normal/d.js': []
});
done();
}).catch(done);
});
it('take a single directory as path and find files in it', (done) => {
madge(__dirname + '/cjs/normal').then((res) => {
res.obj().should.eql({
'a.js': ['sub/b.js'],
'd.js': [],
'sub/b.js': ['sub/c.js'],
'sub/c.js': ['d.js']
});
done();
}).catch(done);
});
it('takes an array of directories as path and compute the basedir correctly', (done) => {
madge([__dirname + '/cjs/multibase/1', __dirname + '/cjs/multibase/2']).then((res) => {
res.obj().should.eql({
'1/a.js': [],
'2/b.js': []
});
done();
}).catch(done);
});
it('takes a predefined tree', (done) => {
madge({
a: ['b', 'c', 'd'],
b: ['c'],
c: [],
d: ['a']
}).then((res) => {
res.obj().should.eql({
a: ['b', 'c', 'd'],
b: ['c'],
c: [],
d: ['a']
});
done();
}).catch(done);
});
it('can exclude modules using RegExp', (done) => {
madge(__dirname + '/cjs/a.js', {
excludeRegExp: ['^b.js$']
}).then((res) => {
res.obj().should.eql({
'a.js': ['c.js'],
'c.js': []
});
done();
}).catch(done);
});
it('extracts dependencies but excludes .git', (done) => {
// eslint-disable-next-line no-sync
fs.renameSync(`${__dirname}/git/.git_tmp`, `${__dirname}/git/.git`);
madge(__dirname + '/git/a.js', {}).then((res) => {
res.obj().should.eql({
'a.js': ['b.js', 'c.js'],
'b.js': ['c.js'],
'c.js': []
});
done();
}).catch(() => {
done();
}).finally(() => {
// eslint-disable-next-line no-sync
fs.renameSync(`${__dirname}/git/.git`, `${__dirname}/git/.git_tmp`);
});
});
describe('dependencyFilter', () => {
it('will stop traversing when returning false', (done) => {
madge(__dirname + '/cjs/a.js', {
dependencyFilter: () => {
return false;
}
}).then((res) => {
res.obj().should.eql({
'a.js': []
});
done();
}).catch(done);
});
it('will not stop traversing when not returning anything', (done) => {
madge(__dirname + '/cjs/a.js', {
dependencyFilter: () => {}
}).then((res) => {
res.obj().should.eql({
'a.js': ['b.js', 'c.js'],
'b.js': ['c.js'],
'c.js': []
});
done();
}).catch(done);
});
it('will pass arguments to the function', (done) => {
let counter = 0;
madge(__dirname + '/cjs/a.js', {
dependencyFilter: (dependencyFilePath, traversedFilePath, baseDir) => {
if (counter === 0) {
dependencyFilePath.should.match(/test\/cjs\/b\.js$/);
traversedFilePath.should.match(/test\/cjs\/a\.js$/);
baseDir.should.match(/test\/cjs$/);
}
if (counter === 1) {
dependencyFilePath.should.match(/test\/cjs\/c\.js$/);
traversedFilePath.should.match(/test\/cjs\/a\.js$/);
baseDir.should.match(/test\/cjs$/);
}
if (counter === 2) {
dependencyFilePath.should.match(/test\/cjs\/c\.js$/);
traversedFilePath.should.match(/test\/cjs\/b\.js$/);
baseDir.should.match(/test\/cjs$/);
}
counter++;
}
}).then(() => {
done();
}).catch(done);
});
});
describe('obj()', () => {
it('returns dependency object', (done) => {
madge(__dirname + '/cjs/a.js').then((res) => {
res.obj().should.eql({
'a.js': ['b.js', 'c.js'],
'b.js': ['c.js'],
'c.js': []
});
done();
}).catch(done);
});
});
describe('circular()', () => {
it('returns list of circular dependencies', (done) => {
madge(__dirname + '/cjs/circular/a.js').then((res) => {
res.circular().should.eql([
['a.js', 'd.js']
]);
done();
}).catch(done);
});
});
describe('circularGraph()', () => {
it('returns graph with only circular dependencies', (done) => {
madge(__dirname + '/cjs/circular/a.js').then((res) => {
res.circularGraph().should.eql({
'a.js': ['d.js'],
'd.js': ['a.js']
});
done();
}).catch(done);
});
});
describe('warnings()', () => {
it('returns an array of skipped files', (done) => {
madge(__dirname + '/cjs/missing.js').then((res) => {
res.obj().should.eql({
'missing.js': ['c.js'],
'c.js': []
});
res.warnings().should.eql({
skipped: ['./path/non/existing/file']
});
done();
}).catch(done);
});
});
describe('dot()', () => {
it('returns a promise resolved with graphviz DOT output', async () => {
const res = await madge(__dirname + '/cjs/b.js');
const output = await res.dot();
output.should.match(/digraph G/);
output.should.match(/bgcolor="#111111"/);
output.should.match(/fontcolor="#c6c5fe"/);
output.should.match(/color="#757575"/);
output.should.match(/fontcolor="#cfffac"/);
});
});
describe('depends()', () => {
it('returns modules that depends on another', (done) => {
madge(__dirname + '/cjs/a.js').then((res) => {
res.depends('c.js').should.eql(['a.js', 'b.js']);
done();
}).catch(done);
});
});
describe('orphans()', () => {
it('returns modules that no one is depending on', (done) => {
madge(__dirname + '/cjs/normal').then((res) => {
res.orphans().should.eql(['a.js']);
done();
}).catch(done);
});
});
describe('leaves()', () => {
it('returns modules that have no dependencies', (done) => {
madge(__dirname + '/cjs/normal').then((res) => {
res.leaves().should.eql(['d.js']);
done();
}).catch(done);
});
});
describe('svg()', () => {
it('returns a promise resolved with XML SVG output in a Buffer', (done) => {
madge(__dirname + '/cjs/b.js')
.then((res) => res.svg())
.then((output) => {
output.should.instanceof(Buffer);
output.toString().should.match(/<svg.*/);
done();
})
.catch(done);
});
});
describe('image()', () => {
let imagePath;
beforeEach(() => {
imagePath = path.join(os.tmpdir(), 'madge_' + Date.now() + '_image.png');
});
afterEach(() => {
return fs.unlink(imagePath).catch(() => {});
});
it('rejects if a filename is not supplied', (done) => {
madge(__dirname + '/cjs/a.js')
.then((res) => res.image())
.catch((err) => {
err.message.should.eql('imagePath not provided');
done();
});
});
it('rejects on unsupported image format', (done) => {
madge(__dirname + '/cjs/a.js')
.then((res) => res.image('image.zyx'))
.catch((err) => {
err.message.should.match(/Format: "zyx" not recognized/);
done();
});
});
it('rejects if graphviz is not installed', (done) => {
madge(__dirname + '/cjs/a.js', {graphVizPath: '/invalid/path'})
.then((res) => res.image('image.png'))
.catch((err) => {
// BUG: CWE-89 Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection')
// err.message.should.match(/Could not execute .*gvpr \-V/);
// FIXED:
err.message.should.eql('Graphviz could not be found. Ensure that "gvpr" is in your $PATH. Error: spawn /invalid/path/gvpr ENOENT');
done();
});
});
it('writes image to file', (done) => {
madge(__dirname + '/cjs/a.js')
.then((res) => res.image(imagePath))
.then((writtenImagePath) => {
writtenImagePath.should.eql(imagePath);
return fs
.exists(imagePath)
.then((exists) => {
if (!exists) {
throw new Error(imagePath + ' not created');
}
done();
});
})
.catch(done);
});
});
});
|