-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
189 lines (165 loc) · 3.94 KB
/
test.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
'use strict';
var assert = require('assert');
var sinon = require('sinon');
//====================================================================
var koaLoadMiddlewares = (function() {
var wrapInFunc = function(value) {
return function() {
return value;
};
};
var proxyquire = require('proxyquire').noCallThru();
return proxyquire('./', {
'koa-foo': wrapInFunc({ name: 'foo' }),
'koa-bar': wrapInFunc({ name: 'bar' }),
'koa-foo-bar': wrapInFunc({ name: 'foo-bar' }),
'jack-foo': wrapInFunc({ name: 'jack-foo' }),
'koa-insert': {
'append': wrapInFunc({ name: 'insert.append' }),
'wrap': wrapInFunc({ name: 'insert.wrap' })
},
'koa.baz': wrapInFunc({ name: 'baz' }),
'findup-sync': function() { return null; }
});
})();
//====================================================================
describe('configuration', function() {
it('throws a nice error if no configuration is found', function() {
assert.throws(function() {
koaLoadMiddlewares({
config: null
});
}, /Could not find dependencies. Do you have a package.json file in your project?/);
});
});
// Contains common tests with and without lazy mode.
var commonTests = function(lazy) {
it('loads things in', function() {
var x = koaLoadMiddlewares({
lazy: lazy,
config: {
dependencies: {
'koa-foo': '1.0.0',
'koa-bar': '*',
'koa-insert': '*',
'koa.baz': '*'
}
}
});
assert.deepEqual(x.foo(), {
name: 'foo'
});
assert.deepEqual(x.bar(), {
name: 'bar'
});
assert.deepEqual(x.baz(), {
name: 'baz'
});
assert.deepEqual(x.insert.wrap(), {
name: 'insert.wrap'
});
assert.deepEqual(x.insert.append(), {
name: 'insert.append'
});
});
it('can take a pattern override', function() {
var x = koaLoadMiddlewares({
lazy: lazy,
pattern: 'jack-*',
replaceString: 'jack-',
config: {
dependencies: {
'jack-foo': '1.0.0',
'koa-bar': '*'
}
}
});
assert.deepEqual(x.foo(), {
name: 'jack-foo'
});
assert(!x.bar);
});
it('allows camelizing to be turned off', function() {
var x = koaLoadMiddlewares({
lazy: lazy,
camelize: false,
config: {
dependencies: {
'koa-foo-bar': '*'
}
}
});
assert.deepEqual(x['foo-bar'](), {
name: 'foo-bar'
});
});
it('camelizes plugins name by default', function() {
var x = koaLoadMiddlewares({
lazy: lazy,
config: {
dependencies: {
'koa-foo-bar': '*'
}
}
});
assert.deepEqual(x.fooBar(), {
name: 'foo-bar'
});
});
it('lets something be completely renamed', function() {
var x = koaLoadMiddlewares({
lazy: lazy,
config: { dependencies: { 'koa-foo': '1.0.0' } },
rename: { 'koa-foo': 'bar' }
});
assert.deepEqual(x.bar(), { name: 'foo' });
});
};
describe('no lazy loading', function() {
commonTests(false);
var x, spy;
before(function() {
spy = sinon.spy();
x = koaLoadMiddlewares({
lazy: false,
config: {
dependencies: {
'koa-insert': '*'
}
},
requireFn: function() {
spy();
return function() {};
}
});
});
it('does require at first', function() {
assert(spy.called);
});
});
describe('with lazy loading', function() {
commonTests(true);
var x, spy;
before(function() {
spy = sinon.spy();
x = koaLoadMiddlewares({
lazy: true,
config: {
dependencies: {
'koa-insert': '*'
}
},
requireFn: function() {
spy();
return function() {};
}
});
});
it('does not require at first', function() {
assert(!spy.called);
});
it('does when the property is accessed', function() {
x.insert();
assert(spy.called);
});
});