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
|
'use strict'
var test = require('tap').test
var npm = require('../../lib/npm')
test('setup', function (t) {
npm.load({}, t.done)
})
test('replaceModuleByName', function (t) {
var replaceModuleByName = require('../../lib/install/deps')._replaceModuleByName
var mods = []
for (var ii = 0; ii < 10; ++ii) {
mods.push({package: {name: String(ii)}, path: '/path/to/' + ii})
}
var test = {}
test.A = mods.slice(0, 4)
replaceModuleByName(test, 'A', mods[2])
t.isDeeply(test.A, mods.slice(0, 4), 'replacing an existing module leaves the order alone')
replaceModuleByName(test, 'A', mods[7])
t.isDeeply(test.A, mods.slice(0, 4).concat(mods[7]), 'replacing a new module appends')
test.B = mods.slice(0, 4)
var replacement = {package: {name: '1'}, isReplacement: true}
replaceModuleByName(test, 'B', replacement)
t.isDeeply(test.B, [mods[0], replacement, mods[2], mods[3]], 'replacing existing module swaps out for the new version')
replaceModuleByName(test, 'C', mods[7])
t.isDeeply(test.C, [mods[7]], 'replacing when the key does not exist yet, causes its creation')
test.D = mods.slice(0, 4)
var duplicateByPath = {package: {name: 'dup'}, path: test.D[0].path}
replaceModuleByName(test, 'D', duplicateByPath)
t.isDeeply(test.D, mods.slice(0, 4).concat(duplicateByPath), 'replacing with a duplicate path but diff names appends')
t.end()
})
test('replaceModuleByPath', function (t) {
var replaceModuleByPath = require('../../lib/install/deps')._replaceModuleByPath
var mods = []
for (var ii = 0; ii < 10; ++ii) {
mods.push({package: {name: String(ii)}, path: '/path/to/' + ii})
}
var test = {}
test.A = mods.slice(0, 4)
replaceModuleByPath(test, 'A', mods[2])
t.isDeeply(test.A, mods.slice(0, 4), 'replacing an existing module leaves the order alone')
replaceModuleByPath(test, 'A', mods[7])
t.isDeeply(test.A, mods.slice(0, 4).concat(mods[7]), 'replacing a new module appends')
test.B = mods.slice(0, 4)
var replacement = {package: {name: '1'}, isReplacement: true, path: '/path/to/1'}
replaceModuleByPath(test, 'B', replacement)
t.isDeeply(test.B, [mods[0], replacement, mods[2], mods[3]], 'replacing existing module swaps out for the new version')
replaceModuleByPath(test, 'C', mods[7])
t.isDeeply(test.C, [mods[7]], 'replacing when the key does not exist yet, causes its creation')
test.D = mods.slice(0, 4)
var duplicateByPath = {package: {name: 'dup'}, path: test.D[0].path}
replaceModuleByPath(test, 'D', duplicateByPath)
t.isDeeply(test.D, [duplicateByPath].concat(mods.slice(1, 4)), 'replacing with a duplicate path but diff names replaces')
t.end()
})
|