-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtest-coverageAPI.js
More file actions
621 lines (502 loc) · 24.9 KB
/
Copy pathtest-coverageAPI.js
File metadata and controls
621 lines (502 loc) · 24.9 KB
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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
'use strict';
var request = require('supertest');
var server = require('../app.js');
var chai = require('chai');
var expect = chai.expect;
var should = chai.should();
describe('Coverage API test', function() {
describe('/lat/lon/nradial/rcamsl/erp/channel/field/curve/serviceType', function(done) {
it('should return contour based on lat, lon, nradial, rcamsl, erp, channel, field, curve, serviceType', function(done) {
request(server)
.get('/coverage.json?lat=38.95039&lon=-77.07942&src=ned_1&rcamsl=309&nradial=360&unit=m&channel=9&field=28&erp=52&curve=0&serviceType=fm')
.expect('Content-Type', /json/)
.expect(200)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('statusMessage').be.equal('ok');
done();
});
});
});
describe('lat parameter', function(done) {
it('should not return contour if lat value is invalid', function(done) {
request(server)
.get('/coverage.json?lat=xxx&lon=-77.07942&src=ned_1&rcamsl=309&nradial=360&unit=m&channel=9&field=28&erp=52&curve=0&serviceType=fm')
.expect('Content-Type', /json/)
.expect(400)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('statusMessage').be.equal('invalid lat value');
done();
});
});
it('should not return contour if lat input is missing', function(done) {
request(server)
.get('/coverage.json?lon=-77.07942&src=ned_1&rcamsl=309&nradial=360&unit=m&channel=9&field=28&erp=52&curve=0&serviceType=fm&outputcache=false')
.expect('Content-Type', /json/)
.expect(400)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('statusMessage').be.equal('missing lat');
done();
});
});
it('should not return contour if lat has more than 10 decimal places', function(done) {
request(server)
.get('/coverage.json?lat=38.1234567890123&lon=-77.07942&src=ned_1&rcamsl=309&nradial=360&unit=m&channel=9&field=28&erp=52&curve=0&serviceType=fm&outputcache=false')
.expect('Content-Type', /json/)
.expect(400)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('statusMessage').be.equal('number of decimal places for lat is larger than 10');
done();
});
});
it('should not return contour if lat value is out of range [-90, 90]', function(done) {
request(server)
.get('/coverage.json?lat=99&lon=-77.07942&src=ned_1&rcamsl=309&nradial=360&unit=m&channel=9&field=28&erp=52&curve=0&serviceType=fm&outputcache=false')
.expect('Content-Type', /json/)
.expect(400)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('statusMessage').be.equal('lat value out of range');
done();
});
});
});
describe('lon parameter', function(done) {
it('should not return contour if lon value is invalid', function(done) {
request(server)
.get('/coverage.json?lat=38.95039&lon=xxx&src=ned_1&rcamsl=309&nradial=360&unit=m&channel=9&field=28&erp=52&curve=0&serviceType=fm&outputcache=false')
.expect('Content-Type', /json/)
.expect(400)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('statusMessage').be.equal('invalid lon value');
done();
});
});
it('should not return contour if lon input is missing', function(done) {
request(server)
.get('/coverage.json?lat=38.95039&src=ned_1&rcamsl=309&nradial=360&unit=m&channel=9&field=28&erp=52&curve=0&serviceType=fm&outputcache=false')
.expect('Content-Type', /json/)
.expect(400)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('statusMessage').be.equal('missing lon');
done();
});
});
it('should not return contour if lon has more then 10 decimal places', function(done) {
request(server)
.get('/coverage.json?lat=38.95039&lon=-77.1234567890123&src=ned_1&rcamsl=309&nradial=360&unit=m&channel=9&field=28&erp=52&curve=0&serviceType=fm&outputcache=false')
.expect('Content-Type', /json/)
.expect(400)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('statusMessage').be.equal('number of decimal places for lon is larger than 10');
done();
});
});
it('should not return contour if lon value is out of range [-180, 180]', function(done) {
request(server)
.get('/coverage.json?lat=38.95039&lon=-181&src=ned_1&rcamsl=309&nradial=360&unit=m&channel=9&field=28&erp=52&curve=0&serviceType=fm&outputcache=false')
.expect('Content-Type', /json/)
.expect(400)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('statusMessage').be.equal('lon value out of range');
done();
});
});
});
describe('channel parameter', function(done) {
it('should not return contour data if serviceType = tv and channel = 200', function(done) {
request(server)
.get('/coverage.json?lat=38.95039&lon=-77.07942&src=ned_1&rcamsl=309&nradial=360&unit=m&field=28&erp=52&curve=0&channel=200&serviceType=tv&outputcache=false')
.expect('Content-Type', /json/)
.expect(200)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('channel').be.equal(200);
done();
});
});
it('should not return contour data if channel = 100', function(done) {
request(server)
.get('/coverage.json?lat=38.95039&lon=-77.07942&src=ned_1&rcamsl=309&nradial=360&unit=m&field=28&erp=52&curve=0&channel=100&serviceType=tv')
.expect('Content-Type', /json/)
.expect(400)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('statusMessage').be.equal('error in distance calculation');
done();
});
});
it('should return contour if serviceType = fm and channel input is missing', function(done) {
request(server)
.get('/coverage.json?lat=38.95039&lon=-77.07942&src=ned_1&rcamsl=309&nradial=360&unit=m&field=28&erp=52&curve=0&serviceType=fm')
.expect('Content-Type', /json/)
.expect(200)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('serviceType').be.equal('fm');
done();
});
});
it('should not return contour if channel value is invalid', function(done) {
request(server)
.get('/coverage.json?lat=38.95039&lon=-77.07942&src=ned_1&rcamsl=309&nradial=360&unit=m&channel=xxx&field=28&erp=52&curve=0&serviceType=tv')
.expect('Content-Type', /json/)
.expect(400)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('statusMessage').be.equal('invalid channel value');
done();
});
});
it('should not return contour if serviceType=tv and channel is not provided', function(done) {
request(server)
.get('/coverage.json?lat=38.95039&lon=-77.07942&src=ned_1&rcamsl=309&nradial=360&unit=m&field=28&erp=52&curve=0&serviceType=tv')
.expect('Content-Type', /json/)
.expect(400)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('statusMessage').be.equal('missing channel');
done();
});
});
});
describe('nradial parameter', function(done) {
it('should not return contour if nradial value is invalid', function(done) {
request(server)
.get('/coverage.json?lat=38.95039&lon=-77.07942&src=ned_1&rcamsl=309&nradial=xxx&unit=m&channel=9&field=28&erp=52&curve=0&serviceType=fm&outputcache=false')
.expect('Content-Type', /json/)
.expect(400)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('statusMessage').be.equal('invalid nradial value');
done();
});
});
it('should not return contour if nradial input is missing', function(done) {
request(server)
.get('/coverage.json?lat=38.95039&lon=-77.07942&src=ned_1&rcamsl=309&unit=m&channel=9&field=28&erp=52&curve=0&serviceType=fm&outputcache=false')
.expect('Content-Type', /json/)
.expect(400)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('statusMessage').be.equal('missing nradial');
done();
});
});
it('should not return contour if nradial value is out of range [3, 360]', function(done) {
request(server)
.get('/coverage.json?lat=38.95039&lon=-77.07942&src=ned_1&rcamsl=309&nradial=2&unit=m&channel=9&field=28&erp=52&curve=0&serviceType=fm&outputcache=false')
.expect('Content-Type', /json/)
.expect(400)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('statusMessage').be.equal('nradial value out of range [3, 360]');
done();
});
});
});
describe('curve parameter', function(done) {
it('should not return contour if curve input is missing', function(done) {
request(server)
.get('/coverage.json?lat=38.95039&lon=-77.07942&src=ned_1&rcamsl=309&nradial=360&unit=m&channel=9&field=28&erp=52&serviceType=fm&outputcache=false')
.expect('Content-Type', /json/)
.expect(400)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('statusMessage').be.equal('missing curve');
done();
});
});
it('should return contour data if curve value is 0', function(done) {
request(server)
.get('/coverage.json?lat=38.95039&lon=-77.07942&src=ned_1&rcamsl=309&nradial=360&unit=m&channel=9&field=28&erp=52&serviceType=fm&curve=0&outputcache=false')
.set('Accept', 'application/json')
.expect(200)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('curve').be.equal(0);
done();
});
});
it('should return contour data if curve value is 1', function(done) {
request(server)
.get('/coverage.json?lat=38.95039&lon=-77.07942&src=ned_1&rcamsl=309&nradial=360&unit=m&channel=9&field=28&erp=52&serviceType=fm&outputcache=false&curve=1')
.expect('Content-Type', /json/)
.expect(200)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('curve').be.equal(1);
done();
});
});
it('should return contour data if curve value is 2', function(done) {
request(server)
.get('/coverage.json?lat=38.95039&lon=-77.07942&src=ned_1&rcamsl=309&nradial=360&unit=m&channel=9&field=28&erp=52&serviceType=fm&outputcache=false&curve=2')
.expect('Content-Type', /json/)
.expect(200)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('curve').be.equal(2);
done();
});
});
it('should not return contour if curve value is out of range [0, 2]', function(done) {
request(server)
.get('/coverage.json?lat=38.95039&lon=-77.07942&src=ned_1&rcamsl=309&nradial=360&unit=m&channel=9&field=28&erp=52&curve=3&serviceType=fm&outputcache=false')
.expect('Content-Type', /json/)
.expect(400)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('statusMessage').be.equal('curve value out of range [0, 2]');
done();
});
});
it('should not return contour if curve value is invalid', function(done) {
request(server)
.get('/coverage.json?lat=38.95039&lon=-77.07942&src=ned_1&rcamsl=309&nradial=360&unit=m&channel=9&field=28&erp=52&curve=afds&serviceType=fm&outputcache=false')
.expect('Content-Type', /json/)
.expect(400)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('statusMessage').be.equal('invalid curve value');
done();
});
});
});
describe('erp parameter', function(done) {
it('should not return contour if erp input is missing', function(done) {
request(server)
.get('/coverage.json?lat=38.95039&lon=-77.07942&src=ned_1&rcamsl=309&nradial=360&unit=m&channel=9&field=28&curve=0&serviceType=fm&outputcache=false')
.expect('Content-Type', /json/)
.expect(400)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('statusMessage').be.equal('missing erp');
done();
});
});
it('should not return contour if erp value is invalid', function(done) {
request(server)
.get('/coverage.json?lat=38.95039&lon=-77.07942&src=ned_1&rcamsl=309&nradial=360&unit=m&channel=9&field=28&erp=xxx&curve=0&serviceType=fm&outputcache=false')
.expect('Content-Type', /json/)
.expect(400)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('statusMessage').be.equal('invalid erp value');
done();
});
});
});
describe('rcamsl parameter', function(done) {
it('should not return contour if rcamsl input is missing', function(done) {
request(server)
.get('/coverage.json?lat=38.95039&lon=-77.07942&src=ned_1&nradial=360&unit=m&channel=9&field=28&erp=52&curve=0&serviceType=fm&outputcache=false')
.expect('Content-Type', /json/)
.expect(400)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('statusMessage').be.equal('missing rcamsl');
done();
});
});
it('should not return contour if rcamsl value is invalid', function(done) {
request(server)
.get('/coverage.json?lat=38.95039&lon=-77.07942&src=ned_1&rcamsl=xxx&nradial=360&unit=m&channel=9&field=28&erp=52&curve=0&serviceType=fm&outputcache=false')
.expect('Content-Type', /json/)
.expect(400)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('statusMessage').be.equal('invalid rcamsl value');
done();
});
});
});
describe('field parameter', function(done) {
it('should not return contour if field input is missing', function(done) {
request(server)
.get('/coverage.json?lat=38.95039&lon=-77.07942&src=ned_1&rcamsl=309&nradial=360&unit=m&channel=9&erp=52&curve=0&serviceType=fm&outputcache=false')
.set('Accept', 'application/json')
.expect(400)
.expect(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('statusMessage').be.equal('missing field');
done();
});
});
it('should not return contour if field value is invalid', function(done) {
request(server)
.get('/coverage.json?lat=38.95039&lon=-77.07942&src=ned_1&rcamsl=309&field=dsk&nradial=360&unit=m&channel=9&erp=52&curve=0&serviceType=fm')
.expect('Content-Type', /json/)
.expect(400)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('statusMessage').be.equal('invalid dbu value');
done();
});
});
});
describe('serviceType parameter', function(done) {
it('should not return contour if serviceType input is missing', function(done) {
request(server)
.get('/coverage.json?lat=38.95039&lon=-77.07942&src=ned_1&rcamsl=309&nradial=360&unit=m&channel=9&field=28&erp=52&curve=0&outputcache=false')
.expect('Content-Type', /json/)
.expect(400)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('statusMessage').be.equal('missing serviceType');
done();
});
});
it('should not return contour if serviceType value is invalid', function(done) {
request(server)
.get('/coverage.json?lat=38.95039&lon=-77.07942&src=ned_1&rcamsl=309&nradial=360&unit=m&channel=9&field=28&erp=52&curve=0&serviceType=3kaf&outputcache=false')
.expect('Content-Type', /json/)
.expect(400)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('statusMessage').be.equal('invalid serviceType value');
done();
});
});
});
describe('src parameter', function(done) {
it('should return contour based on ned_1 if src is undefined', function(done) {
request(server)
.get('/coverage.json?lat=38.95039&lon=-77.07942&rcamsl=309&nradial=360&unit=m&channel=9&field=28&erp=52&curve=0&serviceType=fm&outputcache=false')
.set('Accept', 'application/json')
.expect(200)
.expect(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('elevation_data_source').be.equal('ned_1');
done();
});
});
});
describe('unit parameter', function(done) {
it('should return contour based on meters if unit is undefined', function(done) {
request(server)
.get('/coverage.json?lat=38.95039&lon=-77.07942&rcamsl=309&nradial=360&channel=9&field=28&erp=52&curve=0&serviceType=fm')
.expect('Content-Type', /json/)
.expect(200)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('unit').be.equal('m');
done();
});
});
});
describe('pattern parameter', function(done) {
it('should return contour based on pattern value', function(done) {
request(server)
.get('/coverage.json?serviceType=tv&lat=38.95039108&lon=-77.07942&nradial=360&rcamsl=309.5&field=36&channel=9&erp=52&curve=2&src=globe30&unit=m&pattern=0,0.63;10,0.57;20,0.58;30,0.595;40,0.62;50,0.64;60,0.72;70,0.82;80,0.925;90,0.99;94,1;100,1;110,1;120,1;130,1;140,1;150,1;160,1;170,1;180,1;190,1;200,1;210,1;220,1;230,1;240,1;250,1;260,1;270,1;280,1;290,1;300,1;310,1;320,0.96;330,0.9;340,0.8;350,0.72&outputcache=false')
.expect('Content-Type', /json/)
.expect(200)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('statusMessage').be.equal('ok');
done();
});
});
it('should return contour if pattern value is not provided', function(done) {
request(server)
.get('/coverage.json?serviceType=tv&lat=38.95039108&lon=-77.07942&nradial=360&rcamsl=309.5&field=36&channel=9&erp=52&curve=2&src=globe30&unit=m&pattern=&outputcache=false')
.expect('Content-Type', /json/)
.expect(200)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('statusMessage').be.equal('ok');
done();
});
});
it('should return contour if pattern parameter is not provided', function(done) {
request(server)
.get('/coverage.json?serviceType=tv&lat=38.95039108&lon=-77.07942&nradial=360&rcamsl=309.5&field=36&channel=9&erp=52&curve=2&src=globe30&unit=m&outputcache=false')
.expect('Content-Type', /json/)
.expect(200)
.end(function(err, res) {
if (err) {
throw err;
}
res.body.features[0].properties.should.have.property('statusMessage').be.equal('ok');
done();
});
});
});
});