-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathtest.js
257 lines (243 loc) · 5.63 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
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
'use strict';
var chai = require('chai');
var expect = chai.expect;
var toTree = require('../index.js');
var initial = [
{
id: 1,
parent_id: null,
children: [{ id: 5 }]
},
{
id: 2,
parent_id: 1
},
{
id: 3,
parent_id: 2
},
{
id: 4,
parent_id: null
}
];
var current;
describe('array-to-tree', function() {
describe('with default arguments', function() {
beforeEach(function() {
current = toTree(initial);
});
it('should not modify given array', function() {
expect(initial[0]).to.be.deep.equal({
id: 1,
parent_id: null,
children: [{ id: 5 }]
});
});
it('should return an array', function() {
expect(current).to.be.an('array');
});
it('should keep parent_id property', function() {
var first = current[0];
expect(first).to.have.property('parent_id');
});
it('should create nested objects with children', function() {
var first = current[0];
expect(first)
.to.have.property('children')
.that.is.an('array')
.to.have.length.of.at.least(1);
});
it('should return an expected value', function() {
expect(current).to.be.deep.equal([
{
id: 1,
parent_id: null,
children: [
{
id: 2,
parent_id: 1,
children: [
{
id: 3,
parent_id: 2
}
]
}
]
},
{
id: 4,
parent_id: null
}
]);
});
});
describe('with invalid arguments', function() {
it('should return an empty array if the empty array passed', function() {
expect(toTree([])).to.be.deep.equal([]);
});
it('should throw an error if wrong arguments passed', function() {
expect(toTree.bind(null, 'string')).to.throw(/invalid argument/);
expect(toTree.bind(null, {})).to.throw(/invalid argument/);
});
it('returns the same array if there is no pointer to parent', function() {
var modified = initial.map(function(item) {
delete item.parent_id;
return item;
});
expect(toTree(modified)).to.be.deep.equal(modified);
});
});
describe('with custom arguments', function() {
it('should work with custom parents links', function() {
expect(
toTree(
[
{
_id: 'ec654ec1-7f8f-11e3-ae96-b385f4bc450c',
parent: null
},
{
_id: 'ec666030-7f8f-11e3-ae96-0123456789ab',
parent: 'ec654ec1-7f8f-11e3-ae96-b385f4bc450c'
},
{
_id: 'ec66fc70-7f8f-11e3-ae96-000000000000',
parent: 'ec666030-7f8f-11e3-ae96-0123456789ab'
},
{
_id: '32a4fbed-676d-47f9-a321-cb2f267e2918',
parent: null
}
],
{
parentProperty: 'parent',
customID: '_id',
childrenProperty: '_children'
}
)
).to.be.deep.equal([
{
_id: 'ec654ec1-7f8f-11e3-ae96-b385f4bc450c',
parent: null,
_children: [
{
_id: 'ec666030-7f8f-11e3-ae96-0123456789ab',
parent: 'ec654ec1-7f8f-11e3-ae96-b385f4bc450c',
_children: [
{
_id: 'ec66fc70-7f8f-11e3-ae96-000000000000',
parent: 'ec666030-7f8f-11e3-ae96-0123456789ab'
}
]
}
]
},
{
_id: '32a4fbed-676d-47f9-a321-cb2f267e2918',
parent: null
}
]);
});
it('should work with nested parent id', function() {
expect(
toTree(
[
{
id: 1,
attributes: {
name: 'Parent',
parent_id: null
}
},
{
id: 2,
attributes: {
name: 'Child One',
parent_id: 1
}
},
{
id: 3,
attributes: {
name: 'Child Two',
parent_id: 1
}
}
],
{
parentProperty: 'attributes.parent_id'
}
)
).to.be.deep.equal([
{
id: 1,
attributes: {
name: 'Parent',
parent_id: null
},
children: [
{
id: 2,
attributes: {
name: 'Child One',
parent_id: 1
}
},
{
id: 3,
attributes: {
name: 'Child Two',
parent_id: 1
}
}
]
}
]);
});
it('should work with orphan nodes', function() {
expect(
toTree([
{
id: 1,
parent_id: null
},
{
id: 2,
parent_id: 1
},
{
id: 3,
parent_id: 2
},
{
id: 4,
parent_id: 5
}
])
).to.be.deep.equal([
{
id: 1,
parent_id: null,
children: [
{
id: 2,
parent_id: 1,
children: [
{
id: 3,
parent_id: 2
}
]
}
]
},
{
id: 4,
parent_id: 5
}
]);
});
});
});