-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.test.js
263 lines (230 loc) · 5.91 KB
/
index.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
258
259
260
261
262
263
import each from 'lodash/each';
import keys from 'lodash/keys';
import find from 'lodash/find';
import { assignVehicles } from './index';
describe('Principal vehicle assignment', () => {
// Test 1
it('Assigns one vehicle to one driver', () => {
const vehicles = [{
id: '1',
year: 2011,
}];
const drivers = [{
id: '101',
age: 35,
principalVehicleID: null,
}];
expect(assignVehicles(vehicles, drivers)).toEqual({
vehicles: { '1': '101' },
drivers: { '101': '1' },
});
});
// Test 2
it('Assigns three vehicles to three drivers', () => {
const vehicles = [{
id: '1',
year: 2011,
}, {
id: '2',
year: 2011,
}, {
id: '3',
year: 2011,
}];
const drivers = [{
id: '101',
principalVehicleID: null,
age: 35,
}, {
id: '102',
principalVehicleID: null,
age: 35,
}, {
id: '103',
principalVehicleID: null,
age: 35,
}];
const res = assignVehicles(vehicles, drivers);
// Check output
expect(keys(res.vehicles).length).toEqual(vehicles.length);
expect(keys(res.drivers).length).toEqual(drivers.length);
each(keys(res.vehicles), (vehID) => {
// Vehicle must exist in input list
expect(find(vehicles, veh => veh.id === vehID)).toBeTruthy();
// Driver must exist in input list
const drvID = res.vehicles[vehID];
expect(drvID).toBeTruthy();
expect(find(drivers, drv => drv.id === drvID)).toBeTruthy();
// Mapping of driver -> vehicle should match
expect(res.drivers[drvID]).toEqual(vehID);
});
});
// Test 3
it('Assigns three vehicles to two drivers', () => {
const vehicles = [{
id: '1',
year: 2011,
}, {
id: '2',
year: 2011,
}, {
id: '3',
year: 2011,
}];
const drivers = [{
id: '101',
principalVehicleID: null,
age: 35,
}, {
id: '102',
principalVehicleID: null,
age: 35,
}];
const res = assignVehicles(vehicles, drivers);
// Check output
expect(keys(res.vehicles).length).toEqual(vehicles.length);
expect(keys(res.drivers).length).toEqual(drivers.length);
let matchCnt = 0;
each(keys(res.vehicles), (vehID) => {
// Vehicle must exist in input list
expect(find(vehicles, veh => veh.id === vehID)).toBeTruthy();
// Driver must exist in input list
const drvID = res.vehicles[vehID];
expect(drvID).toBeTruthy();
expect(find(drivers, drv => drv.id === drvID)).toBeTruthy();
// Mapping of driver -> vehicle should match, except once.
if (res.drivers[drvID] === vehID) {
matchCnt += 1;
}
});
expect(matchCnt).toEqual(2);
});
// Test 4
it('Assigns two vehicles to three drivers', () => {
const vehicles = [{
id: '1',
year: 2011,
}, {
id: '2',
year: 2011,
}];
const drivers = [{
id: '101',
principalVehicleID: null,
age: 35,
}, {
id: '102',
principalVehicleID: null,
age: 35,
}, {
id: '103',
principalVehicleID: null,
age: 35,
}];
const res = assignVehicles(vehicles, drivers);
// Check output
expect(keys(res.vehicles).length).toEqual(vehicles.length);
expect(keys(res.drivers).length).toEqual(drivers.length);
let matchCnt = 0;
each(keys(res.drivers), (drvID) => {
// Driver must exist in input list
expect(find(drivers, drv => drv.id === drvID)).toBeTruthy();
// Vehicle must exist in input list
const vehID = res.drivers[drvID];
expect(vehID).toBeTruthy();
expect(find(vehicles, veh => veh.id === vehID)).toBeTruthy();
// Mapping of vehicle -> driver should match, except once.
if (res.vehicles[vehID] === drvID) {
matchCnt += 1;
}
});
expect(matchCnt).toEqual(2);
});
// Test 5
it('Assigns three vehicles to three drivers, respecting prior assignment via principalVehicleID', () => {
const vehicles = [{
id: '1',
year: 2011,
}, {
id: '2',
year: 2011,
}, {
id: '3',
year: 2011,
}];
const drivers = [{
id: '101',
principalVehicleID: '3',
age: 35,
}, {
id: '102',
principalVehicleID: '1',
age: 35,
}, {
id: '103',
principalVehicleID: null,
age: 35,
}];
expect(assignVehicles(vehicles, drivers)).toEqual({
vehicles: { '1': '102', '2': '103', '3': '101'},
drivers: { '101': '3', '102': '1', '103': '2' },
});
});
// Test 6
it('Assigns three vehicles to three drivers, respecting prior assignment via principalVehicleID and assigning oldest car to youngest driver', () => {
const vehicles = [{
id: '1',
year: 2015,
}, {
id: '2',
year: 2001,
}, {
id: '3',
year: 2011,
}];
const drivers = [{
id: '101',
principalVehicleID: '2',
age: 38,
}, {
id: '102',
principalVehicleID: null,
age: 19,
}, {
id: '103',
principalVehicleID: null,
age: 35,
}];
expect(assignVehicles(vehicles, drivers)).toEqual({
vehicles: { '1': '103', '2': '101', '3': '102'},
drivers: { '101': '2', '102': '3', '103': '1' },
});
});
// Test 7
it('Assigns two vehicles to three drivers, respecting prior assignment via principalVehicleID and assigning oldest car to youngest driver', () => {
const vehicles = [{
id: '1',
year: 2015,
}, {
id: '2',
year: 2001,
}];
const drivers = [{
id: '101',
principalVehicleID: '2',
age: 38,
}, {
id: '102',
principalVehicleID: null,
age: 19,
}, {
id: '103',
principalVehicleID: null,
age: 35,
}];
expect(assignVehicles(vehicles, drivers)).toEqual({
vehicles: { '1': '103', '2': '101' },
drivers: { '101': '2', '102': '2', '103': '1' },
});
});
});