mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.1 KiB
64 lines
1.1 KiB
'use strict'
|
|
var test = require('tap').test
|
|
var sortActions = require('../../lib/install/diff-trees.js').sortActions
|
|
var top = {
|
|
location: '/',
|
|
package: {},
|
|
requiredBy: [],
|
|
requires: [a, b],
|
|
isTop: true
|
|
}
|
|
var a = {
|
|
location: '/a',
|
|
package: {},
|
|
requiredBy: [],
|
|
requires: [c],
|
|
isTop: false,
|
|
userRequired: false,
|
|
existing: false,
|
|
parent: top
|
|
}
|
|
var b = {
|
|
location: '/b',
|
|
package: {},
|
|
requiredBy: [],
|
|
requires: [c],
|
|
isTop: false,
|
|
userRequired: false,
|
|
existing: false,
|
|
parent: top
|
|
}
|
|
var c = {
|
|
location: '/c',
|
|
package: {},
|
|
requiredBy: [a, b],
|
|
requires: [],
|
|
isTop: false,
|
|
userRequired: false,
|
|
existing: false,
|
|
parent: top
|
|
}
|
|
|
|
test('install-order when installing deps', function (t) {
|
|
var plain = [
|
|
['add', a],
|
|
['add', b],
|
|
['add', c]]
|
|
var sorted = [
|
|
['add', c],
|
|
['add', a],
|
|
['add', b]]
|
|
t.isDeeply(sortActions(plain), sorted)
|
|
t.end()
|
|
})
|
|
|
|
test('install-order when not installing deps', function (t) {
|
|
var plain = [
|
|
['add', a],
|
|
['add', b]]
|
|
var sorted = [
|
|
['add', a],
|
|
['add', b]]
|
|
t.isDeeply(sortActions(plain), sorted)
|
|
t.end()
|
|
})
|
|
|