forked from valhalla/valhalla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparse_request.cc
2894 lines (2547 loc) · 137 KB
/
parse_request.cc
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
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include <iostream>
#include <string>
#include <vector>
#include "proto/options.pb.h"
#include "proto_conversions.h"
#include "sif/costconstants.h"
#include "sif/costfactory.h"
#include "worker.h"
#include "test.h"
using namespace valhalla;
namespace {
// Base defaults
constexpr float kDefaultClosureFactor = 9.0f;
// Auto defaults
constexpr float kDefaultAuto_ManeuverPenalty = 5.0f; // Seconds
constexpr float kDefaultAuto_DestinationOnlyPenalty = 600.0f; // Seconds
constexpr float kDefaultAuto_AlleyPenalty = 5.0f; // Seconds
constexpr float kDefaultAuto_GateCost = 30.0f; // Seconds
constexpr float kDefaultAuto_GatePenalty = 300.0f; // Seconds
constexpr float kDefaultAuto_PrivateAccessPenalty = 450.0f; // Seconds
constexpr float kDefaultAuto_TollBoothCost = 15.0f; // Seconds
constexpr float kDefaultAuto_TollBoothPenalty = 0.0f; // Seconds
constexpr float kDefaultAuto_FerryCost = 300.0f; // Seconds
constexpr float kDefaultAuto_CountryCrossingCost = 600.0f; // Seconds
constexpr float kDefaultAuto_CountryCrossingPenalty = 0.0f; // Seconds
constexpr float kDefaultAuto_UseFerry = 0.5f; // Factor between 0 and 1
constexpr float kDefaultAuto_UseHighways = 0.5f; // Factor between 0 and 1
constexpr float kDefaultAuto_UseTolls = 0.5f; // Factor between 0 and 1
constexpr float kDefaultAuto_UseTracks = 0.f; // Factor between 0 and 1
constexpr float kDefaultAuto_UseLivingStreets = 0.1f; // Factor between 0 and 1
constexpr float kDefaultAuto_ServicePenalty = 75.0f; // Seconds
constexpr float kDefaultAuto_ServiceFactor = 1.f; // Positive factor
// Motor Scooter defaults
constexpr float kDefaultMotorScooter_ManeuverPenalty = 5.0f; // Seconds
constexpr float kDefaultMotorScooter_AlleyPenalty = 5.0f; // Seconds
constexpr float kDefaultMotorScooter_GateCost = 30.0f; // Seconds
constexpr float kDefaultMotorScooter_GatePenalty = 300.0f; // Seconds
constexpr float kDefaultMotorScooter_PrivateAccessPenalty = 450.0f; // Seconds
constexpr float kDefaultMotorScooter_FerryCost = 300.0f; // Seconds
constexpr float kDefaultMotorScooter_CountryCrossingCost = 600.0f; // Seconds
constexpr float kDefaultMotorScooter_CountryCrossingPenalty = 0.0f; // Seconds
constexpr float kDefaultMotorScooter_UseFerry = 0.5f; // Factor between 0 and 1
constexpr float kDefaultMotorScooter_DestinationOnlyPenalty = 120.0f; // Seconds
constexpr float kDefaultMotorScooter_UseHills = 0.5f; // Factor between 0 and 1
constexpr float kDefaultMotorScooter_UsePrimary = 0.5f; // Factor between 0 and 1
constexpr float kDefaultMotorScooter_UseLivingStreets = 0.1f; // Factor between 0 and 1
constexpr uint32_t kDefaultMotorScooter_TopSpeed = 45; // Kilometers per hour
constexpr float kDefaultMotorScooter_ServicePenalty = 15.0f; // Seconds
constexpr float kDefaultMotorScooter_ServiceFactor = 1.f; // Positive factor
// Motorcycle defaults
constexpr float kDefaultMotorcycle_ManeuverPenalty = 5.0f; // Seconds
constexpr float kDefaultMotorcycle_AlleyPenalty = 5.0f; // Seconds
constexpr float kDefaultMotorcycle_GateCost = 30.0f; // Seconds
constexpr float kDefaultMotorcycle_GatePenalty = 300.0f; // Seconds
constexpr float kDefaultMotorcycle_PrivateAccessPenalty = 450.0f; // Seconds
constexpr float kDefaultMotorcycle_TollBoothCost = 15.0f; // Seconds
constexpr float kDefaultMotorcycle_TollBoothPenalty = 0.0f; // Seconds
constexpr float kDefaultMotorcycle_FerryCost = 300.0f; // Seconds
constexpr float kDefaultMotorcycle_CountryCrossingCost = 600.0f; // Seconds
constexpr float kDefaultMotorcycle_CountryCrossingPenalty = 0.0f; // Seconds
constexpr float kDefaultMotorcycle_UseFerry = 0.5f; // Factor between 0 and 1
constexpr float kDefaultMotorcycle_UseHighways = 0.5f; // Factor between 0 and 1
constexpr float kDefaultMotorcycle_UseTolls = 0.5f; // Factor between 0 and 1
constexpr float kDefaultMotorcycle_UseTrails = 0.0f; // Factor between 0 and 1
constexpr float kDefaultMotorcycle_UseLivingStreets = 0.1f; // Factor between 0 and 1
constexpr float kDefaultMotorcycle_DestinationOnlyPenalty = 600.0f; // Seconds
constexpr float kDefaultMotorcycle_ServicePenalty = 15.0f; // Seconds
constexpr float kDefaultMotorcycle_ServiceFactor = 1.f; // Positive factor
// Pedestrian defaults
constexpr uint32_t kDefaultPedestrian_MaxDistanceFoot = 100000; // 100 km
constexpr uint32_t kDefaultPedestrian_MaxDistanceWheelchair = 10000; // 10 km
constexpr float kDefaultPedestrian_SpeedFoot = 5.1f; // 3.16 MPH
constexpr float kDefaultPedestrian_SpeedWheelchair = 4.0f; // 2.5 MPH TODO
constexpr float kDefaultPedestrian_StepPenaltyFoot = 30.0f; // 30 seconds
constexpr float kDefaultPedestrian_StepPenaltyWheelchair = 600.0f; // 10 minutes
constexpr uint32_t kDefaultPedestrian_MaxGradeFoot = 90;
constexpr uint32_t kDefaultPedestrian_MaxGradeWheelchair = 12; // Conservative for now...
constexpr uint8_t kDefaultPedestrian_MaxHikingDifficulty = 1; // T1 (kHiking)
constexpr float kDefaultPedestrian_ModeFactor = 1.5f; // Favor this mode?
constexpr float kDefaultPedestrian_ManeuverPenalty = 5.0f; // Seconds
constexpr float kDefaultPedestrian_GatePenalty = 10.0f; // Seconds
constexpr float kDefaultPedestrian_WalkwayFactor = 1.0f; // Neutral value for walkways
constexpr float kDefaultPedestrian_SideWalkFactor = 1.0f; // Neutral value for sidewalks
constexpr float kDefaultPedestrian_AlleyFactor = 2.0f; // Avoid alleys
constexpr float kDefaultPedestrian_DrivewayFactor = 5.0f; // Avoid driveways
constexpr float kDefaultPedestrian_FerryCost = 300.0f; // Seconds
constexpr float kDefaultPedestrian_CountryCrossingCost = 600.0f; // Seconds
constexpr float kDefaultPedestrian_CountryCrossingPenalty = 0.0f; // Seconds
constexpr float kDefaultPedestrian_UseFerry = 1.0f;
constexpr float kDefaultPedestrian_UseLivingStreets = 0.6f; // Factor between 0 and 1
constexpr uint32_t kDefaultPedestrian_TransitStartEndMaxDistance = 2415; // 1.5 miles
constexpr uint32_t kDefaultPedestrian_TransitTransferMaxDistance = 805; // 0.5 miles
constexpr float kDefaultPedestrian_ServicePenalty = 0.0f; // Seconds
constexpr float kDefaultPedestrian_ServiceFactor = 1.f; // Positive factor
// Bicycle defaults
constexpr float kDefaultBicycle_ManeuverPenalty = 5.0f; // Seconds
constexpr float kDefaultBicycle_AlleyPenalty = 60.0f; // Seconds
constexpr float kDefaultBicycle_GateCost = 30.0f; // Seconds
constexpr float kDefaultBicycle_GatePenalty = 300.0f; // Seconds
constexpr float kDefaultBicycle_PrivateAccessPenalty = 450.0f; // Seconds
constexpr float kDefaultBicycle_FerryCost = 300.0f; // Seconds
constexpr float kDefaultBicycle_CountryCrossingCost = 600.0f; // Seconds
constexpr float kDefaultBicycle_CountryCrossingPenalty = 0.0f; // Seconds
constexpr float kDefaultBicycle_UseRoad = 0.25f; // Factor between 0 and 1
constexpr float kDefaultBicycle_UseFerry = 0.5f; // Factor between 0 and 1
constexpr float kDefaultBicycle_UseHills = 0.25f;
constexpr float kDefaultBicycle_AvoidBadSurfaces = 0.25f; // Factor between 0 and 1
constexpr float kDefaultBicycle_UseLivingStreets = 0.5f; // Factor between 0 and 1
constexpr float kDefaultBicycle_ServicePenalty = 15.0f; // Seconds
const std::string kDefaultBicycle_BicycleType = "Hybrid"; // Bicycle type
constexpr float kDefaultBicycle_CyclingSpeed[] = {
25.0f, // Road bicycle: ~15.5 MPH
20.0f, // Cross bicycle: ~13 MPH
18.0f, // Hybrid or "city" bicycle: ~11.5 MPH
16.0f // Mountain bicycle: ~10 MPH
};
// Truck defaults
constexpr float kDefaultTruck_ManeuverPenalty = 5.0f; // Seconds
constexpr float kDefaultTruck_DestinationOnlyPenalty = 600.0f; // Seconds
constexpr float kDefaultTruck_AlleyPenalty = 5.0f; // Seconds
constexpr float kDefaultTruck_GateCost = 30.0f; // Seconds
constexpr float kDefaultTruck_GatePenalty = 300.0f; // Seconds
constexpr float kDefaultTruck_PrivateAccessPenalty = 450.0f; // Seconds
constexpr float kDefaultTruck_TollBoothCost = 15.0f; // Seconds
constexpr float kDefaultTruck_TollBoothPenalty = 0.0f; // Seconds
constexpr float kDefaultTruck_CountryCrossingCost = 600.0f; // Seconds
constexpr float kDefaultTruck_CountryCrossingPenalty = 0.0f; // Seconds
constexpr float kDefaultTruck_LowClassPenalty = 30.0f; // Seconds
constexpr float kDefaultTruck_TruckWeight = 21.77f; // Metric Tons (48,000 lbs)
constexpr float kDefaultTruck_TruckAxleLoad = 9.07f; // Metric Tons (20,000 lbs)
constexpr uint32_t kDefaultTruck_TruckAxles = 5; // Count
constexpr float kDefaultTruck_TruckHeight = 4.11f; // Meters (13 feet 6 inches)
constexpr float kDefaultTruck_TruckWidth = 2.6f; // Meters (102.36 inches)
constexpr float kDefaultTruck_TruckLength = 21.64f; // Meters (71 feet)
constexpr float kDefaultTruck_UseTracks = 0.f; // Factor between 0 and 1
constexpr float kDefaultTruck_UseLivingStreets = 0.f; // Factor between 0 and 1
constexpr float kDefaultTruck_ServicePenalty = 0.0f; // Seconds
constexpr float kDefaultTruck_ServiceFactor = 1.f; // Positive factor
// Transit defaults
constexpr float kDefaultTransit_ModeFactor = 1.0f; // Favor this mode?
constexpr float kDefaultTransit_TransferCost = 15.0f;
constexpr float kDefaultTransit_TransferPenalty = 300.0f;
constexpr float kDefaultTransit_UseBus = 0.3f;
constexpr float kDefaultTransit_UseRail = 0.6f;
constexpr float kDefaultTransit_UseTransfers = 0.3f;
///////////////////////////////////////////////////////////////////////////////
// validate by type methods
void validate(const std::string& key, const bool expected_value, const bool pbf_value) {
EXPECT_EQ(pbf_value, expected_value) << "incorrect " << key;
}
void validate(const std::string& key,
const bool expected_value,
const bool has_pbf_value,
const bool pbf_value) {
ASSERT_TRUE(has_pbf_value) << "bool value not found in pbf for key=" + key;
EXPECT_EQ(pbf_value, expected_value) << "incorrect " << key;
}
void validate(const std::string& key, const float expected_value, const float pbf_value) {
EXPECT_EQ(pbf_value, expected_value) << "incorrect " << key;
}
void validate(const std::string& key,
const float expected_value,
const bool has_pbf_value,
const float pbf_value) {
ASSERT_TRUE(has_pbf_value) << "float value not found in pbf for key=" + key;
EXPECT_EQ(pbf_value, expected_value) << "incorrect " << key;
}
void validate(const std::string& key, const uint32_t expected_value, const uint32_t pbf_value) {
EXPECT_EQ(pbf_value, expected_value) << "incorrect " << key;
}
void validate(const std::string& key,
const uint32_t expected_value,
const bool has_pbf_value,
const uint32_t pbf_value) {
ASSERT_TRUE(has_pbf_value) << "uint32_t value not found in pbf for key=" + key;
EXPECT_EQ(pbf_value, expected_value) << "incorrect " << key;
}
void validate(const std::string& key,
const std::string& expected_value,
const std::string& pbf_value) {
EXPECT_EQ(pbf_value, expected_value) << "incorrect " << key;
}
void validate(const std::string& key,
const std::string& expected_value,
const bool has_pbf_value,
const std::string& pbf_value) {
ASSERT_TRUE(has_pbf_value) << "string value not found in pbf for key=" + key;
EXPECT_EQ(pbf_value, expected_value) << "incorrect " << key;
}
void validate(const std::string& key,
const ShapeMatch expected_value,
const bool has_pbf_value,
const ShapeMatch pbf_value) {
ASSERT_TRUE(has_pbf_value) << "ShapeMatch value not found in pbf for key=" + key;
EXPECT_EQ(pbf_value, expected_value)
<< "Incorrect " + key + " ShapeMatch | expected_value=" + ShapeMatch_Enum_Name(expected_value) +
" | found=" + ShapeMatch_Enum_Name(pbf_value);
}
void validate(const std::string& key,
const valhalla::FilterAction expected_value,
const bool has_pbf_value,
const valhalla::FilterAction pbf_value) {
ASSERT_TRUE(has_pbf_value) << "FilterAction value not found in pbf for key=" + key;
EXPECT_EQ(pbf_value, expected_value)
<< "Incorrect " + key +
" FilterAction | expected_value=" + FilterAction_Enum_Name(expected_value) +
" | found=" + FilterAction_Enum_Name(pbf_value);
}
void validate(const std::string& key,
const std::vector<std::string>& expected_values,
const bool has_pbf_values,
const google::protobuf::RepeatedPtrField<std::string>& pbf_values) {
ASSERT_TRUE(has_pbf_values) << "string values not found in pbf for key=" + key;
ASSERT_EQ(expected_values.size(), pbf_values.size()) << "invalid count in pbf for key=" + key;
for (size_t i = 0; i < expected_values.size(); ++i) {
ASSERT_EQ(pbf_values.Get(i), expected_values.at(i)) << "incorrect " << key;
}
}
///////////////////////////////////////////////////////////////////////////////
// get request methods
std::string get_request_str(const std::string& key, const bool expected_value) {
return R"({")" + key + R"(":)" + std::string(expected_value ? "true" : "false") + R"(})";
}
std::string get_request_str(const std::string& grandparent_key,
const std::string& parent_key,
const std::string& key,
const bool specified_value) {
return R"({"costing":")" + parent_key + R"(",")" + grandparent_key + R"(":{")" + parent_key +
R"(":{")" + key + R"(":)" + std::string(specified_value ? "true" : "false") + R"(}}})";
}
std::string get_request_str(const std::string& key, const float expected_value) {
return R"({")" + key + R"(":)" + std::to_string(expected_value) + R"(})";
}
std::string
get_request_str(const std::string& parent_key, const std::string& key, const float expected_value) {
return R"({")" + parent_key + R"(":{")" + key + R"(":)" + std::to_string(expected_value) + R"(}})";
}
std::string get_request_str(const std::string& grandparent_key,
const std::string& parent_key,
const std::string& key,
const float specified_value) {
return R"({"costing":")" + parent_key + R"(",")" + grandparent_key + R"(":{")" + parent_key +
R"(":{")" + key + R"(":)" + std::to_string(specified_value) + R"(}}})";
}
std::string get_request_str(const std::string& grandparent_key,
const std::string& parent_key,
const std::string& sibling_key,
const std::string& sibling_value,
const std::string& key,
const float specified_value) {
return R"({"costing":")" + parent_key + R"(",")" + grandparent_key + R"(":{")" + parent_key +
R"(":{")" + sibling_key + R"(":")" + sibling_value + R"(",")" + key + R"(":)" +
std::to_string(specified_value) + R"(}}})";
}
std::string get_request_str(const std::string& grandparent_key,
const std::string& parent_key,
const std::string& key,
const uint32_t specified_value) {
return R"({"costing":")" + parent_key + R"(",")" + grandparent_key + R"(":{")" + parent_key +
R"(":{")" + key + R"(":)" + std::to_string(specified_value) + R"(}}})";
}
std::string get_request_str(const std::string& grandparent_key,
const std::string& parent_key,
const std::string& sibling_key,
const std::string& sibling_value,
const std::string& key,
const uint32_t specified_value) {
return R"({"costing":")" + parent_key + R"(",")" + grandparent_key + R"(":{")" + parent_key +
R"(":{")" + sibling_key + R"(":")" + sibling_value + R"(",")" + key + R"(":)" +
std::to_string(specified_value) + R"(}}})";
}
std::string get_request_str(const std::string& grandparent_key,
const std::string& parent_key,
const std::string& key,
const std::string& specified_value) {
return R"({"costing":")" + parent_key + R"(",")" + grandparent_key + R"(":{")" + parent_key +
R"(":{")" + key + R"(":")" + specified_value + R"("}}})";
}
std::string get_request_str(const std::string& key, const uint32_t expected_value) {
return R"({")" + key + R"(":)" + std::to_string(expected_value) + R"(})";
}
std::string get_request_str(const std::string& key, const std::string& expected_value) {
return R"({")" + key + R"(":")" + expected_value + R"("})";
}
std::string get_request_str(const std::string& key, const ShapeMatch expected_value) {
return R"({")" + key + R"(":")" + ShapeMatch_Enum_Name(expected_value) + R"("})";
}
std::string get_kv_str(const std::string& key, const valhalla::FilterAction value) {
return R"(")" + key + R"(":")" + FilterAction_Enum_Name(value) + R"(")";
}
std::string get_request_str(const std::string& parent_key,
const std::string& key,
const valhalla::FilterAction expected_value) {
return R"({")" + parent_key + R"(":{)" + get_kv_str(key, expected_value) + R"(}})";
}
std::string get_kv_str(const std::string& key, const std::vector<std::string>& values) {
std::string kv_str = R"(")" + key + R"(":[)";
bool first = true;
for (const auto& value : values) {
if (first) {
kv_str += R"(")";
first = false;
} else {
kv_str += R"(,")";
}
kv_str += value + R"(")";
}
kv_str += R"(])";
return kv_str;
}
std::string get_request_str(const std::string& parent_key,
const std::string& key,
const std::vector<std::string>& expected_values) {
return R"({")" + parent_key + R"(":{)" + get_kv_str(key, expected_values) + R"(}})";
}
std::string get_filter_request_str(const std::string& costing,
const std::string& filter_type,
const valhalla::FilterAction filter_action,
const std::vector<std::string>& filter_ids) {
return R"({"costing":")" + costing + R"(",)" + R"("costing_options":{")" + costing +
R"(":{"filters":{")" + filter_type + R"(":{)" + get_kv_str("action", filter_action) +
R"(,)" + get_kv_str("ids", filter_ids) + R"(}}}}})";
}
Api get_request(const std::string& request_str, const Options::Action action) {
// std::cout << ">>>>> request_str=" << request_str << "<<<<<" << std::endl;
Api request;
ParseApi(request_str, action, request);
return request;
}
///////////////////////////////////////////////////////////////////////////////
// test parsing methods
std::string get_costing_str(Costing::Type costing) {
// Create the costing string
auto costing_str = Costing_Enum_Name(costing);
return costing_str;
}
void test_polygons_parsing(const bool expected_value,
const Options::Action action = Options::isochrone) {
const std::string key = "polygons";
Api request = get_request(get_request_str(key, expected_value), action);
validate(key, expected_value, request.options().has_polygons_case(), request.options().polygons());
}
void test_denoise_parsing(const float expected_value,
const Options::Action action = Options::isochrone) {
const std::string key = "denoise";
Api request = get_request(get_request_str(key, expected_value), action);
validate(key, expected_value, request.options().has_denoise_case(), request.options().denoise());
}
void test_generalize_parsing(const float expected_value,
const Options::Action action = Options::isochrone) {
const std::string key = "generalize";
Api request = get_request(get_request_str(key, expected_value), action);
validate(key, expected_value, request.options().has_generalize_case(),
request.options().generalize());
}
void test_show_locations_parsing(const bool expected_value,
const Options::Action action = Options::isochrone) {
const std::string key = "show_locations";
Api request = get_request(get_request_str(key, expected_value), action);
validate(key, expected_value, request.options().has_show_locations_case(),
request.options().show_locations());
}
void test_shape_match_parsing(const ShapeMatch expected_value, const Options::Action action) {
const std::string key = "shape_match";
Api request = get_request(get_request_str(key, expected_value), action);
validate(key, expected_value, true, request.options().shape_match());
}
void test_best_paths_parsing(const uint32_t expected_value,
const Options::Action action = Options::isochrone) {
const std::string key = "best_paths";
Api request = get_request(get_request_str(key, expected_value), action);
validate(key, expected_value, request.options().has_alternates_case(),
request.options().alternates() + 1);
}
void test_gps_accuracy_parsing(const float expected_value,
const Options::Action action = Options::isochrone) {
const std::string parent_key = "trace_options";
const std::string key = "gps_accuracy";
Api request = get_request(get_request_str(parent_key, key, expected_value), action);
validate(key, expected_value, request.options().has_gps_accuracy_case(),
request.options().gps_accuracy());
}
void test_search_radius_parsing(const float expected_value,
const Options::Action action = Options::isochrone) {
const std::string parent_key = "trace_options";
const std::string key = "search_radius";
Api request = get_request(get_request_str(parent_key, key, expected_value), action);
validate(key, expected_value, request.options().has_search_radius_case(),
request.options().search_radius());
}
void test_turn_penalty_factor_parsing(const float expected_value,
const Options::Action action = Options::isochrone) {
const std::string parent_key = "trace_options";
const std::string key = "turn_penalty_factor";
Api request = get_request(get_request_str(parent_key, key, expected_value), action);
validate(key, expected_value, request.options().has_turn_penalty_factor_case(),
request.options().turn_penalty_factor());
}
void test_filter_action_parsing(const valhalla::FilterAction expected_value,
const Options::Action action = Options::trace_attributes) {
const std::string parent_key = "filters";
const std::string key = "action";
Api request = get_request(get_request_str(parent_key, key, expected_value), action);
validate(key, expected_value, true, request.options().filter_action());
}
void test_filter_attributes_parsing(const std::vector<std::string>& expected_values,
const Options::Action action = Options::trace_attributes) {
const std::string parent_key = "filters";
const std::string key = "attributes";
Api request = get_request(get_request_str(parent_key, key, expected_values), action);
validate(key, expected_values, (request.options().filter_attributes_size() > 0),
request.options().filter_attributes());
}
void test_default_base_auto_cost_options(const Costing::Type costing_type,
const Options::Action action) {
// Create the costing string
auto costing_str = get_costing_str(costing_type);
const std::string key = "costing";
// Get cost request with no cost options
Api request = get_request(get_request_str(key, costing_str), action);
const auto& costing = request.options().costings().find(costing_type)->second;
const auto& options = costing.options();
validate("maneuver_penalty", kDefaultAuto_ManeuverPenalty, options.maneuver_penalty());
validate("destination_only_penalty", kDefaultAuto_DestinationOnlyPenalty,
options.destination_only_penalty());
validate("gate_cost", kDefaultAuto_GateCost, options.gate_cost());
validate("gate_penalty", kDefaultAuto_GatePenalty, options.gate_penalty());
validate("private_access_penalty", kDefaultAuto_PrivateAccessPenalty,
options.private_access_penalty());
validate("toll_booth_cost", kDefaultAuto_TollBoothCost, options.toll_booth_cost());
validate("toll_booth_penalty", kDefaultAuto_TollBoothPenalty, options.toll_booth_penalty());
validate("alley_penalty", kDefaultAuto_AlleyPenalty, options.alley_penalty());
validate("country_crossing_cost", kDefaultAuto_CountryCrossingCost,
options.country_crossing_cost());
validate("country_crossing_penalty", kDefaultAuto_CountryCrossingPenalty,
options.country_crossing_penalty());
validate("ferry_cost", kDefaultAuto_FerryCost, options.ferry_cost());
validate("use_ferry", kDefaultAuto_UseFerry, options.use_ferry());
validate("use_highways", kDefaultAuto_UseHighways, options.use_highways());
validate("use_tolls", kDefaultAuto_UseTolls, options.use_tolls());
validate("use_tracks", kDefaultAuto_UseTracks, options.use_tracks());
validate("use_living_streets", kDefaultAuto_UseLivingStreets, options.use_living_streets());
validate("service_penalty", kDefaultAuto_ServicePenalty, options.service_penalty());
validate("service_factor", kDefaultAuto_ServiceFactor, options.service_factor());
}
void test_default_motor_scooter_cost_options(const Costing::Type costing_type,
const Options::Action action) {
// Create the costing string
auto costing_str = get_costing_str(costing_type);
const std::string key = "costing";
// Get cost request with no cost options
Api request = get_request(get_request_str(key, costing_str), action);
const auto& costing = request.options().costings().find(costing_type)->second;
const auto& options = costing.options();
validate("maneuver_penalty", kDefaultMotorScooter_ManeuverPenalty, options.maneuver_penalty());
validate("destination_only_penalty", kDefaultMotorScooter_DestinationOnlyPenalty,
options.destination_only_penalty());
validate("gate_cost", kDefaultMotorScooter_GateCost, options.gate_cost());
validate("gate_penalty", kDefaultMotorScooter_GatePenalty, options.gate_penalty());
validate("private_access_penalty", kDefaultMotorScooter_PrivateAccessPenalty,
options.private_access_penalty());
validate("alley_penalty", kDefaultMotorScooter_AlleyPenalty, options.alley_penalty());
validate("country_crossing_cost", kDefaultMotorScooter_CountryCrossingCost,
options.country_crossing_cost());
validate("country_crossing_penalty", kDefaultMotorScooter_CountryCrossingPenalty,
options.country_crossing_penalty());
validate("ferry_cost", kDefaultMotorScooter_FerryCost, options.ferry_cost());
validate("use_ferry", kDefaultMotorScooter_UseFerry, options.use_ferry());
validate("top_speed", static_cast<float>(kDefaultMotorScooter_TopSpeed), options.top_speed());
validate("use_hills", kDefaultMotorScooter_UseHills, options.use_hills());
validate("use_primary", kDefaultMotorScooter_UsePrimary, options.use_primary());
validate("use_living_streets", kDefaultMotorScooter_UseLivingStreets, options.use_living_streets());
validate("service_penalty", kDefaultMotorScooter_ServicePenalty, options.service_penalty());
validate("service_factor", kDefaultMotorcycle_ServiceFactor, options.service_factor());
}
void test_default_motorcycle_cost_options(const Costing::Type costing_type,
const Options::Action action) {
// Create the costing string
auto costing_str = get_costing_str(costing_type);
const std::string key = "costing";
// Get cost request with no cost options
Api request = get_request(get_request_str(key, costing_str), action);
const auto& costing = request.options().costings().find(costing_type)->second;
const auto& options = costing.options();
validate("maneuver_penalty", kDefaultMotorcycle_ManeuverPenalty, options.maneuver_penalty());
validate("destination_only_penalty", kDefaultMotorcycle_DestinationOnlyPenalty,
options.destination_only_penalty());
validate("gate_cost", kDefaultMotorcycle_GateCost, options.gate_cost());
validate("gate_penalty", kDefaultMotorcycle_GatePenalty, options.gate_penalty());
validate("private_access_penalty", kDefaultMotorcycle_PrivateAccessPenalty,
options.private_access_penalty());
validate("alley_penalty", kDefaultMotorcycle_AlleyPenalty, options.alley_penalty());
validate("country_crossing_cost", kDefaultMotorcycle_CountryCrossingCost,
options.country_crossing_cost());
validate("country_crossing_penalty", kDefaultMotorcycle_CountryCrossingPenalty,
options.country_crossing_penalty());
validate("ferry_cost", kDefaultMotorcycle_FerryCost, options.ferry_cost());
validate("use_ferry", kDefaultMotorcycle_UseFerry, options.use_ferry());
validate("use_trails", kDefaultMotorcycle_UseTrails, options.use_trails());
validate("use_living_streets", kDefaultMotorcycle_UseLivingStreets, options.use_living_streets());
validate("service_penalty", kDefaultMotorcycle_ServicePenalty, options.service_penalty());
validate("service_factor", kDefaultMotorcycle_ServiceFactor, options.service_factor());
}
void test_default_pedestrian_cost_options(const Costing::Type costing_type,
const Options::Action action) {
// Create the costing string
auto costing_str = get_costing_str(costing_type);
const std::string key = "costing";
// Get cost request with no cost options
Api request = get_request(get_request_str(key, costing_str), action);
const auto& costing = request.options().costings().find(costing_type)->second;
const auto& options = costing.options();
validate("type", "foot", options.transport_type());
validate("maneuver_penalty", kDefaultPedestrian_ManeuverPenalty, options.maneuver_penalty());
validate("gate_penalty", kDefaultPedestrian_GatePenalty, options.gate_penalty());
validate("country_crossing_cost", kDefaultPedestrian_CountryCrossingCost,
options.country_crossing_cost());
validate("country_crossing_penalty", kDefaultPedestrian_CountryCrossingPenalty,
options.country_crossing_penalty());
validate("ferry_cost", kDefaultPedestrian_FerryCost, options.ferry_cost());
validate("use_ferry", kDefaultPedestrian_UseFerry, options.use_ferry());
validate("max_distance", kDefaultPedestrian_MaxDistanceFoot, options.max_distance());
validate("walking_speed", kDefaultPedestrian_SpeedFoot, options.walking_speed());
validate("walking_speed", kDefaultPedestrian_SpeedFoot, options.walking_speed());
validate("step_penalty", kDefaultPedestrian_StepPenaltyFoot, options.step_penalty());
validate("max_grade", kDefaultPedestrian_MaxGradeFoot, options.max_grade());
validate("max_hiking_difficulty", kDefaultPedestrian_MaxHikingDifficulty,
options.max_hiking_difficulty());
validate("mode_factor", kDefaultPedestrian_ModeFactor, options.mode_factor());
validate("walkway_factor", kDefaultPedestrian_WalkwayFactor, options.walkway_factor());
validate("sidewalk_factor", kDefaultPedestrian_SideWalkFactor, options.sidewalk_factor());
validate("alley_factor", kDefaultPedestrian_AlleyFactor, options.alley_factor());
validate("driveway_factor", kDefaultPedestrian_DrivewayFactor, options.driveway_factor());
validate("use_living_streets", kDefaultPedestrian_UseLivingStreets, options.use_living_streets());
validate("service_penalty", kDefaultPedestrian_ServicePenalty, options.service_penalty());
validate("service_factor", kDefaultPedestrian_ServiceFactor, options.service_factor());
validate("transit_start_end_max_distance", kDefaultPedestrian_TransitStartEndMaxDistance,
options.transit_start_end_max_distance());
validate("transit_transfer_max_distance", kDefaultPedestrian_TransitTransferMaxDistance,
options.transit_transfer_max_distance());
}
void test_default_bicycle_cost_options(const Costing::Type costing_type,
const Options::Action action) {
// Create the costing string
auto costing_str = get_costing_str(costing_type);
const std::string key = "costing";
// Get cost request with no cost options
Api request = get_request(get_request_str(key, costing_str), action);
const auto& costing = request.options().costings().find(costing_type)->second;
const auto& options = costing.options();
validate("bicycle_type", kDefaultBicycle_BicycleType, options.transport_type());
validate("maneuver_penalty", kDefaultBicycle_ManeuverPenalty, options.maneuver_penalty());
validate("alley_penalty", kDefaultBicycle_AlleyPenalty, options.alley_penalty());
validate("gate_cost", kDefaultBicycle_GateCost, options.gate_cost());
validate("gate_penalty", kDefaultBicycle_GatePenalty, options.gate_penalty());
validate("private_access_penalty", kDefaultBicycle_PrivateAccessPenalty,
options.private_access_penalty());
validate("country_crossing_cost", kDefaultBicycle_CountryCrossingCost,
options.country_crossing_cost());
validate("country_crossing_penalty", kDefaultBicycle_CountryCrossingPenalty,
options.country_crossing_penalty());
validate("ferry_cost", kDefaultBicycle_FerryCost, options.ferry_cost());
validate("use_ferry", kDefaultBicycle_UseFerry, options.use_ferry());
validate("use_roads", kDefaultBicycle_UseRoad, options.use_roads());
validate("use_hills", kDefaultBicycle_UseHills, options.use_hills());
validate("avoid_bad_surfaces", kDefaultBicycle_AvoidBadSurfaces, options.avoid_bad_surfaces());
validate("use_living_streets", kDefaultBicycle_UseLivingStreets, options.use_living_streets());
validate("service_penalty", kDefaultBicycle_ServicePenalty, options.service_penalty());
validate("cycling_speed",
kDefaultBicycle_CyclingSpeed[static_cast<uint32_t>(valhalla::sif::BicycleType::kHybrid)],
options.cycling_speed());
}
void test_default_truck_cost_options(const Costing::Type costing_type, const Options::Action action) {
// Create the costing string
auto costing_str = get_costing_str(costing_type);
const std::string key = "costing";
// Get cost request with no cost options
Api request = get_request(get_request_str(key, costing_str), action);
const auto& costing = request.options().costings().find(costing_type)->second;
const auto& options = costing.options();
validate("maneuver_penalty", kDefaultTruck_ManeuverPenalty, options.maneuver_penalty());
validate("destination_only_penalty", kDefaultTruck_DestinationOnlyPenalty,
options.destination_only_penalty());
validate("alley_penalty", kDefaultTruck_AlleyPenalty, options.alley_penalty());
validate("gate_cost", kDefaultTruck_GateCost, options.gate_cost());
validate("gate_penalty", kDefaultTruck_GatePenalty, options.gate_penalty());
validate("private_access_penalty", kDefaultTruck_PrivateAccessPenalty,
options.private_access_penalty());
validate("toll_booth_cost", kDefaultTruck_TollBoothCost, options.toll_booth_cost());
validate("toll_booth_penalty", kDefaultTruck_TollBoothPenalty, options.toll_booth_penalty());
validate("country_crossing_cost", kDefaultTruck_CountryCrossingCost,
options.country_crossing_cost());
validate("country_crossing_penalty", kDefaultTruck_CountryCrossingPenalty,
options.country_crossing_penalty());
validate("low_class_penalty", kDefaultTruck_LowClassPenalty, options.low_class_penalty());
validate("hazmat", false, options.hazmat());
validate("weight", kDefaultTruck_TruckWeight, options.weight());
validate("axle_load", kDefaultTruck_TruckAxleLoad, options.axle_load());
validate("axle_count", kDefaultTruck_TruckAxles, options.axle_count());
validate("height", kDefaultTruck_TruckHeight, options.height());
validate("width", kDefaultTruck_TruckWidth, options.width());
validate("length", kDefaultTruck_TruckLength, options.length());
validate("use_tracks", kDefaultTruck_UseTracks, options.use_tracks());
validate("use_living_streets", kDefaultTruck_UseLivingStreets, options.use_living_streets());
validate("service_penalty", kDefaultTruck_ServicePenalty, options.service_penalty());
validate("service_factor", kDefaultTruck_ServiceFactor, options.service_factor());
}
void test_default_transit_cost_options(const Costing::Type costing_type,
const Options::Action action) {
// Create the costing string
auto costing_str = get_costing_str(costing_type);
const std::string key = "costing";
// Get cost request with no cost options
Api request = get_request(get_request_str(key, costing_str), action);
const auto& costing = request.options().costings().find(costing_type)->second;
const auto& options = costing.options();
validate("mode_factor", kDefaultTransit_ModeFactor, options.mode_factor());
validate("wheelchair", false, options.wheelchair());
validate("bicycle", false, options.bicycle());
validate("use_bus", kDefaultTransit_UseBus, options.use_bus());
validate("use_rail", kDefaultTransit_UseRail, options.use_rail());
validate("use_transfers", kDefaultTransit_UseTransfers, options.use_transfers());
validate("transfer_cost", kDefaultTransit_TransferCost, options.transfer_cost());
validate("transfer_penalty", kDefaultTransit_TransferPenalty, options.transfer_penalty());
}
void test_default_base_cost_options(const Costing::Type costing_type, const Options::Action action) {
// Create the costing string
auto costing_str = get_costing_str(costing_type);
const std::string key = "costing";
// Get cost request with no cost options
Api request = get_request(get_request_str(key, costing_str), action);
const auto& options = request.options().costings().find(costing_type)->second.options();
validate(costing_str + " closure_factor", kDefaultClosureFactor, options.closure_factor());
// TODO: Validate more common cost attributes
}
void test_transport_type_parsing(const Costing::Type costing_type,
const std::string& key,
const std::string& specified_value,
const std::string& expected_value,
const Options::Action action = Options::route) {
// Create the costing string
auto costing_str = get_costing_str(costing_type);
const std::string grandparent_key = "costing_options";
const std::string& parent_key = costing_str;
Api request =
get_request(get_request_str(grandparent_key, parent_key, key, specified_value), action);
const auto& options = request.options().costings().find(costing_type)->second.options();
validate(key, expected_value, options.transport_type());
}
void test_maneuver_penalty_parsing(const Costing::Type costing_type,
const float specified_value,
const float expected_value,
const Options::Action action = Options::route) {
// Create the costing string
auto costing_str = get_costing_str(costing_type);
const std::string grandparent_key = "costing_options";
const std::string& parent_key = costing_str;
const std::string key = "maneuver_penalty";
Api request =
get_request(get_request_str(grandparent_key, parent_key, key, specified_value), action);
const auto& options = request.options().costings().find(costing_type)->second.options();
validate(key, expected_value, options.maneuver_penalty());
}
void test_destination_only_penalty_parsing(const Costing::Type costing_type,
const float specified_value,
const float expected_value,
const Options::Action action = Options::route) {
// Create the costing string
auto costing_str = get_costing_str(costing_type);
const std::string grandparent_key = "costing_options";
const std::string& parent_key = costing_str;
const std::string key = "destination_only_penalty";
Api request =
get_request(get_request_str(grandparent_key, parent_key, key, specified_value), action);
const auto& options = request.options().costings().find(costing_type)->second.options();
validate(key, expected_value, options.destination_only_penalty());
}
void test_gate_cost_parsing(const Costing::Type costing_type,
const float specified_value,
const float expected_value,
const Options::Action action = Options::route) {
// Create the costing string
auto costing_str = get_costing_str(costing_type);
const std::string grandparent_key = "costing_options";
const std::string& parent_key = costing_str;
const std::string key = "gate_cost";
Api request =
get_request(get_request_str(grandparent_key, parent_key, key, specified_value), action);
const auto& options = request.options().costings().find(costing_type)->second.options();
validate(key, expected_value, options.gate_cost());
}
void test_gate_penalty_parsing(const Costing::Type costing_type,
const float specified_value,
const float expected_value,
const Options::Action action = Options::route) {
// Create the costing string
auto costing_str = get_costing_str(costing_type);
const std::string grandparent_key = "costing_options";
const std::string& parent_key = costing_str;
const std::string key = "gate_penalty";
Api request =
get_request(get_request_str(grandparent_key, parent_key, key, specified_value), action);
const auto& options = request.options().costings().find(costing_type)->second.options();
validate(key, expected_value, options.gate_penalty());
}
void test_private_access_penalty_parsing(const Costing::Type costing_type,
const float specified_value,
const float expected_value,
const Options::Action action = Options::route) {
// Create the costing string
auto costing_str = get_costing_str(costing_type);
const std::string grandparent_key = "costing_options";
const std::string& parent_key = costing_str;
const std::string key = "private_access_penalty";
Api request =
get_request(get_request_str(grandparent_key, parent_key, key, specified_value), action);
const auto& options = request.options().costings().find(costing_type)->second.options();
validate(key, expected_value, options.private_access_penalty());
}
void test_toll_booth_cost_parsing(const Costing::Type costing_type,
const float specified_value,
const float expected_value,
const Options::Action action = Options::route) {
// Create the costing string
auto costing_str = get_costing_str(costing_type);
const std::string grandparent_key = "costing_options";
const std::string& parent_key = costing_str;
const std::string key = "toll_booth_cost";
Api request =
get_request(get_request_str(grandparent_key, parent_key, key, specified_value), action);
const auto& options = request.options().costings().find(costing_type)->second.options();
validate(key, expected_value, options.toll_booth_cost());
}
void test_toll_booth_penalty_parsing(const Costing::Type costing_type,
const float specified_value,
const float expected_value,
const Options::Action action = Options::route) {
// Create the costing string
auto costing_str = get_costing_str(costing_type);
const std::string grandparent_key = "costing_options";
const std::string& parent_key = costing_str;
const std::string key = "toll_booth_penalty";
Api request =
get_request(get_request_str(grandparent_key, parent_key, key, specified_value), action);
const auto& options = request.options().costings().find(costing_type)->second.options();
validate(key, expected_value, options.toll_booth_penalty());
}
void test_alley_penalty_parsing(const Costing::Type costing_type,
const float specified_value,
const float expected_value,
const Options::Action action = Options::route) {
// Create the costing string
auto costing_str = get_costing_str(costing_type);
const std::string grandparent_key = "costing_options";
const std::string& parent_key = costing_str;
const std::string key = "alley_penalty";
Api request =
get_request(get_request_str(grandparent_key, parent_key, key, specified_value), action);
const auto& options = request.options().costings().find(costing_type)->second.options();
validate(key, expected_value, options.alley_penalty());
}
void test_country_crossing_cost_parsing(const Costing::Type costing_type,
const float specified_value,
const float expected_value,
const Options::Action action = Options::route) {
// Create the costing string
auto costing_str = get_costing_str(costing_type);
const std::string grandparent_key = "costing_options";
const std::string& parent_key = costing_str;
const std::string key = "country_crossing_cost";
Api request =
get_request(get_request_str(grandparent_key, parent_key, key, specified_value), action);
const auto& options = request.options().costings().find(costing_type)->second.options();
validate(key, expected_value, options.country_crossing_cost());
}
void test_country_crossing_penalty_parsing(const Costing::Type costing_type,
const float specified_value,
const float expected_value,
const Options::Action action = Options::route) {
// Create the costing string
auto costing_str = get_costing_str(costing_type);
const std::string grandparent_key = "costing_options";
const std::string& parent_key = costing_str;
const std::string key = "country_crossing_penalty";
Api request =
get_request(get_request_str(grandparent_key, parent_key, key, specified_value), action);
const auto& options = request.options().costings().find(costing_type)->second.options();
validate(key, expected_value, options.country_crossing_penalty());
}
void test_ferry_cost_parsing(const Costing::Type costing_type,
const float specified_value,
const float expected_value,
const Options::Action action = Options::route) {
// Create the costing string
auto costing_str = get_costing_str(costing_type);
const std::string grandparent_key = "costing_options";
const std::string& parent_key = costing_str;
const std::string key = "ferry_cost";
Api request =
get_request(get_request_str(grandparent_key, parent_key, key, specified_value), action);
const auto& options = request.options().costings().find(costing_type)->second.options();
validate(key, expected_value, options.ferry_cost());
}
void test_use_ferry_parsing(const Costing::Type costing_type,
const float specified_value,
const float expected_value,
const Options::Action action = Options::route) {
// Create the costing string
auto costing_str = get_costing_str(costing_type);
const std::string grandparent_key = "costing_options";
const std::string& parent_key = costing_str;
const std::string key = "use_ferry";
Api request =
get_request(get_request_str(grandparent_key, parent_key, key, specified_value), action);
const auto& options = request.options().costings().find(costing_type)->second.options();
validate(key, expected_value, options.use_ferry());
}
void test_use_highways_parsing(const Costing::Type costing_type,
const float specified_value,
const float expected_value,
const Options::Action action = Options::route) {
// Create the costing string
auto costing_str = get_costing_str(costing_type);
const std::string grandparent_key = "costing_options";
const std::string& parent_key = costing_str;
const std::string key = "use_highways";
Api request =
get_request(get_request_str(grandparent_key, parent_key, key, specified_value), action);
const auto& options = request.options().costings().find(costing_type)->second.options();
validate(key, expected_value, options.use_highways());
}
void test_use_tolls_parsing(const Costing::Type costing_type,
const float specified_value,
const float expected_value,
const Options::Action action = Options::route) {
// Create the costing string
auto costing_str = get_costing_str(costing_type);
const std::string grandparent_key = "costing_options";
const std::string& parent_key = costing_str;
const std::string key = "use_tolls";
Api request =
get_request(get_request_str(grandparent_key, parent_key, key, specified_value), action);
const auto& options = request.options().costings().find(costing_type)->second.options();
validate(key, expected_value, options.use_tolls());
}
void test_use_tracks_parsing(const Costing::Type costing_type,
const float specified_value,
const float expected_value,
const Options::Action action = Options::route) {
// Create the costing string
auto costing_str = get_costing_str(costing_type);
const std::string grandparent_key = "costing_options";
const std::string& parent_key = costing_str;
const std::string key = "use_tracks";
Api request =
get_request(get_request_str(grandparent_key, parent_key, key, specified_value), action);
const auto& options = request.options().costings().find(costing_type)->second.options();
validate(key, expected_value, options.use_tracks());
}
void test_use_living_streets_parsing(const Costing::Type costing_type,
const float specified_value,
const float expected_value,
const Options::Action action = Options::route) {
// Create the costing string
auto costing_str = get_costing_str(costing_type);
const std::string grandparent_key = "costing_options";
const std::string& parent_key = costing_str;
const std::string key = "use_living_streets";
Api request =
get_request(get_request_str(grandparent_key, parent_key, key, specified_value), action);
const auto& options = request.options().costings().find(costing_type)->second.options();
validate(key, expected_value, options.use_living_streets());
}
void test_use_hills_parsing(const Costing::Type costing_type,
const float specified_value,
const float expected_value,
const Options::Action action = Options::route) {
// Create the costing string
auto costing_str = get_costing_str(costing_type);
const std::string grandparent_key = "costing_options";
const std::string& parent_key = costing_str;
const std::string key = "use_hills";
Api request =
get_request(get_request_str(grandparent_key, parent_key, key, specified_value), action);
const auto& options = request.options().costings().find(costing_type)->second.options();
validate(key, expected_value, options.use_hills());
}
void test_use_primary_parsing(const Costing::Type costing_type,
const float specified_value,
const float expected_value,